by timhampton | Feb 22, 2016 | Google App Engine, Learn, Web Development
I am lazy, and don’t like to have to login to check Google App Engine Error logs, so I use this script to help email me them automatically: use google\appengine\api\log\LogService; use \google\appengine\api\mail\Message; $options = [ // Fetch last 12...
by timhampton | Aug 19, 2015 | Learn, Technology, Web Development
A lot of clients ask me – what does ‘responsive’ mean or what does ‘mobile responsive’ mean. Most designers / IT people will know (so stop reading if you do!) Simply put – responsive web pages adjust and are...
by timhampton | Jun 22, 2015 | Learn, SQL
When querying the database, you use the SELECT clause to select data from the database. Example 1: Say you had a basic table, containing people, and you wanted their names and birthdays. SELECT name, birthday FROM People This query would return all the names and...