We are a small, intelligent App development studio. We love "Building Amazing Apps", solving problems and cultivating strong relationships with our clients.
Project Management Tools for Start-Ups
By : Anoop Thomas Mathew
An integral part in the success or failure, of any company is the management and communication between peers within the company as well as a well formed communication with the clients itself. 1990s was marked with the rise of tools like bugzilla, trac and a few other, which allowed developers to develop collaboratively, and more over, a bit more organized with the ticketing system. One thing to be noted is that, they did what they were supposed to do, and they still do.
As the time pass by, we got a huge number of code hosting, along with project management ...
more info..Dynamically attaching SITE_ID to Django Caching
By : Anoop Thomas Mathew
It would be useful and convenient, if you have an automatic way to add the SITE_ID, especially, when you have multiple sites running on the same deployment. Django provides a cache prefix function KEY_FUNCTION in settings which can be used to achieve this.
Just follow the following steps, and your cache, automatically prepends SITE_ID to the cache key, making it unique across multiple sites.
-
Put the following into the settings file.
CACHES = { 'default': { 'BACKEND': 'django.core.cache.backends.db.DatabaseCache', 'LOCATION': 'cache_table', KEY_FUNCTION = ‘projectname.appname.modulename.functionname’, } }
-
Write a function to get current site id, say, get_current_site(), which returns current ...
- 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
Test Driven Development in Python
By : Anoop Thomas Mathew
It is your choice to select any of these methodology, while developing a software. You can either develop based on a test driven process or the recover from a fiasco with tests.
Test driven development, as the name suggests, is development based on tests. Tests for core features are written prior to the implementation for the expected output, and then necessary modules are written to satisfy the needs define the
Advantages of Test Driven Development
- application is determined by using it
- written minimal amount of ...
more info..