Saturday, November 19, 2016
How will the Application now in Command of Your Mouth will be Android Mobile
How will the Application now in Command of Your Mouth will be Android Mobile
From now on, Your Face Will Be in Command of the Android Mobile!
Hello all My dear buddies ,We will come to you like,You will not be surprised to hear that, but I actually said this, it is for this reason that I was surprised at first to be the face of the phone by pressing the button will not be considered.Just say Ok Google
Screen touch you do not have to.That way, you can not do everything.Even the text and be able to.One thing you can do all things through your mouth.
In addition, the fact that you receive a call to the song or if you want to call or call the number on your face only Ok you will agree.Do a lot of fun?
In addition, music or videos you want to see just say and it will be done
When incoming call from an unknown number then you may see from where the call is coming up on your android mobile Google map.
Go to link download
Sunday, October 9, 2016
Running your first PHP application in Google App Engine Fix for the php executable path flag issue
Running your first PHP application in Google App Engine Fix for the php executable path flag issue
I was trying my hands on the Google App Engine. My system is Linux so I downloaded, followed the linux part of things from their official how-to-first-time page here [ https://developers.google.com/appengine/docs/php/gettingstarted/installing ]
As you can see from that page (yeah, thats a dependency) you
1. Download the PHP SDK
2. Extract it some nice place
3. Write a "hello world!" PHP script
4. Execute the python script (dev_appserver.py) in the the "google_appengine" (if you havent done it otherwise) folder.
BUT ! I got stuck here for sometime, and looked up for the fix.
Source of the problem:
Which naturally implied 2 things
_PHPBinaryError: The path specified with the --php_executable_path flag () does not exist.
I naturally believe God loves it when Im busy with my favourite thing so number 2 was obsolete. I looked up on Google for some solutions and a sudden SO page suggested that executing the appserver executable like
1. The PHP installation was NOT as the app engine wants it to be
2. God doent want me to code anymore
will solve the problem.
./dev_appserver.py --php_executable_path="...path..to..the..php-cgi..executable..." helloworld
Following this trail I came to notice that my ignorance toward the tutorials PHP installation paid of here. The problem was actually my PHP installtion was a CLI version. While the app engine essentially wants a CGI version. For doing so, the tutorial has very good instructions, and yes, php-cgi is NOT available in Ubuntu repos. So I did
And afterwards executed
sudo apt-get install gcc libmysqlclient-dev libxml2-dev
wget --trust-server-names http://us2.php.net/get/php-5.4.15.tar.bz2/from/us1.php.net/mirror
tar xjf php-5.4.15.tar.bz2
cd php-5.4.15
./configure --prefix=$PWD/installdir --enable-bcmath --with-mysql
make install
cd -
And it went smooth. :) By the way, the above method will NOT harm you normal PHP installation.
./dev_appserver.py --php_executable_path="...path..to..the..php-cgi..executable..." helloworld
Go to link download