We are a small, intelligent App development studio. We love "Building Amazing Apps", solving problems and cultivating strong relationships with our clients.
Django-SocialAuth - Login via twitter, facebook, openid, yahoo, google using a single app.
By : Shabda Raaj
TL;DR version: Here is an app to allow logging in via twitter, facebook, openid, yahoo, google, which should work transparently with Django authentication system. (@login_required, User and other infrastructure work as expected.) Demo and Code.Longer version follow:
We are releasing our new app. Django-Socialauth. This app makes it awfully easy, to allow users to login your site using Yahoo/Google/Twitter/Facebook/Openid. A demo is available here.
This is released under an Attribution Assurance License. A copy of the same is provided included with the code.
After installing this app, you can use @login_required on any view ...
more info..Develop Twitter API application in django and deploy on Google App Engine
By : lakshman
Twitter's robust REST API enables building of good applications that leverage its increasingly large and real-time data.
Google's cloud system App Engine not only provides a scalable platform for deploying applications, but also proves to be economically viable because of its pay per resource usage model and a large free quota.
Little wonder then, there are increasingly large number of twitter apps being deployed on App Engine.
In this post, I am going to examine how to create a simple application based on twitter's REST API and deploy it on Google App Engine. A deployed version can ...
more info..Django-subdomains - Easily create subscription based subdomains enabled webapps
By : Shabda Raaj
A common goal in web application development is creating subscription based application, where users can use their domains.
For example,
1. Basecamp allows you to manage your project, and gives users as subdomain like xyz.grouphub.com
2. Blogger goes a step further, and allows you to use arbitrary domains with your domain, using Cnames.
django-subdomains is an application which makes both these possible, and allows you to charge the users using paypal.
More details are available here, but to whet your appetite, some details
- You want to allow users to create accounts.
- Users should get a subdomain for their ...
Django with Mysql and Apache on EC2
By : Shabda Raaj
What is EC2
Unless you have been living on Mars these last few years, you are sure to have heard of EC2. Amazon's cloud offering, it offers infinite scalability. Using EC2, you can bring up any number of machines online at minutes notice, and after you are done with them, bring them down.
How does EC2 work?
A EC2 machine is nothing but a bare machine. An Amazon Machine Image (AMI) is a machine bundled as an Image, with preconfigured software which you can start at moments notice. We will take a AMI with a basic Ubuntu installed, and ...
more info..How we built a Twitter Application
By : lakshman
Twitter, just like many other Web2.0 sites, has an excellent API. So much so, writing a twitter app is considered to be "Hello World" of Web2.0 Programming.
I wrote an application recently. It is DM++. By default, this application allows you to receive direct messages from twitter users you have @replied even if you currently don't follow them. You can even configure application to be able to receive direct messages from people you have @replied in only last 2 days, or receive Dm from all other twitter users.
Look how many people are currently complaining Cant DM ...
more info..- Common testing scenarios for Django app.
- Logging in Django
- Serving static files in Django
- Two Scoops of Django: Review
- Introduction to Python Workshop on February 15th, 2013
- Easy client side form validations for Django: Django Parsley
- MoreApps - Android Library Project: Open Sourced
- Tutorial: Building a Chrome app
- Password Generator App: Open Sourced
- Todo List App: Open Sourced
- April 2013
- March 2013
- February 2013
- January 2013
- November 2012
- October 2012
- September 2012
- July 2012
- June 2012
- May 2012
- April 2012
- March 2012
- February 2012
- January 2012
- December 2011
- October 2011
- September 2011
- July 2011
- June 2011
- April 2011
- February 2011
- January 2011
- December 2010
- November 2010
- October 2010
- September 2010
- June 2010
- April 2010
- March 2010
- January 2010
- December 2009
- November 2009
- October 2009
- September 2009
- August 2009
- July 2009
- June 2009
- April 2009
- March 2009
- February 2009
- November 2008
- October 2008
- June 2008
- May 2008
- April 2008
Experiments in URL design.
By : Shabda Raaj
Keeping url structure sane plays a major role in user experience, by making it easy to go to specific pages and navigate the site. Some real world urls and how they could have been better follow.
The Bad Urls:
The Good
The Bad
Neutral:
- Easy to guess next and previous ...
more info..