Posted on June 30, 2014 1 Comment
Why not run WordPress on Google App Engine? You will get performance and stability while only paying for the resources you actually use. Reading the official Google tutorial “Running WordPress in App Engine” it gives you a fare idea what you are in for. But if you want to migrate a currently running site then you […]
Posted on February 1, 2014 3 Comments
Needed to clean an URL from it’s querystring in Python. Found a lot of examples telling me to use urlparse and then put all the bits and pieces back together. An easier and more efficient way is this: [py]url = ‘http://www.hackviking.com/?var=value’ url = url[:url.find(‘?’)][/py] url now reads ‘http://www.hackviking.com/’
Posted on October 30, 2013 Leave a Comment
Before you ask… Yes I struggled with the title of this post, but give me a break it’s 4:30 am here! 🙂 I’m currently developing in python for Google App Engine and are using the Picasa API. I found this great guide from Google with exampels: https://developers.google.com/picasa-web/docs/1.0/developers_guide_python It’s far from complete but the examples pushes me in […]
Posted on October 21, 2013 6 Comments
Building webapps with Google APIs are pretty straight forward for the most part. Specially when using the Google API Client Libraries! But if you want to accomplish something that are outside of all the nice tutorials that Google supply us with it get’s trickier! Being a C# programmer for many years I have noticed that […]