Skip navigation

Tag Archives: Google

App Engine StringListProperty and merge join queries offer the ability to perform searches for a variety of purposes.

Read More »

You can’t use ‘tidy’ python binding with App Engine as far as I know so use this for cleaning up your xml and html characters:


import cgi
string = str('I hate monkey & hyena characters')
cgi.escape(string)

Should print out:

I hate monkey & hyena characters

If you want to change the content type or mime type for your Google App Engine template:


self.response.headers['Content-Type'] = "application/xml"

Full example:


class MainPage(webapp.RequestHandler):
def get(self):
greetings_query = databasemodel.all()

template_values = {
'greetings': greetings_query
}
self.response.headers['Content-Type'] = "application/xml"
path = os.path.join(os.path.dirname(__file__), 'templates/index.xml')
self.response.out.write(template.render(path, template_values))

Here’s a quick set up for Google App Engine’s SDK on Nginx.

Read More »

Here is a nice Google Map API PHP API, class, functions, library etc.

Read More »

You can send more than 500 emails per day by using Google’s recommendation of creating more than one account for sending.

Read More »

Proper syntax for svn import on Ubuntu. Read More »

Parsing feeds in Python is best achieved with Mark Pilgrims Universal Feed Parser.

Read More »

A simple tutorial on how to obtain geo coordinates with php and the Google Maps API.

Read More »

BigTable vs MySql – whats the difference?

Read More »

Komodo Edit is one of my favorite editors. In this quick run down you can find out:

  • How to organise App Engine projects on Komodo Edit
  • Python Code Intelligence Auto-Complete
  • Launch the development server

Read More »

Another Django Helper for Google App Engine. Read the article here.

Read More »

Here’s a JavaScript Blog Client called “Blog This“.

Read More »

Use your Google Account as your OpenID account with App Engine.

Read More »

Here is a tutorial which explains how to build faster PyFacebook Facebook Apps. Will uses Django.

Read More »

Are you not so sure about Google App Engine’s BigTable ER – Entity Relationship Database Model?

Here’s a simple tutorial which shows you how to create databases the ER way plus a little bit of GQL.

Read More »

A new aggregator of Google App Engine blog posts is up and running here.

Read More »

This is the best post I’ve seen on App Engine so far.

Read More »

Update: Seems PIL does not work on App Engine yet so you may want to grab the gdata python client and use picasa to host and manipulate your photos. Otherwise we’ll have to wait until Google includes it or someone tightens up PIL so its all native Python.

How to manipulate images in Python on Google App Engine?

Read More »

Steven Osborn wrote this Django manage.py for Google App Engine. Read More »

Although I don’t agree with everything he says the success of WordPress.com blows my mind. 2 years and its one of the biggest sites on the net with very little hype. Just grassroots community and the best search engine strategy – maybe ever.

Read More »

It’s the Google vs Facebook PR Death match.

Read More »