We are a small, intelligent App development studio. We love "Building Amazing Apps", solving problems and cultivating strong relationships with our clients.
Create a new social networking site in few hours using pinax platform (django).
By : rama
if you are excited to see how such a social networking site would like.Just follow the below link
We made the above site on pinax platform (Please note pinax has done most of things we have done very little).A platform for rapidly developing websites.
In this blogpost we will try to understand what pinax is? How it helps a developer to do things quickly? How to install & deploy? and various other things related to pinax.
What is Pinax?
In the present day world every website require components like regisration,openid support,some kind groups ...
more info..Uswaretech whitepapers
By : rama
We have released some whitepapers recently, which you can get from our whitepapers subsection
- Django and J2EE
- Challenges and solutions in Offshore software development
- Usware Technologies Value Proposition
We are going to be publishing some more whitepapers very soon, so download the whitepapers and bookmark this page.
more info..AJAX & SEO
By : rama
In today's web world we can’t underestimate the importance of search engine traffic to a website.As this traffic plays a key role we must take care that our web pages are also search engine friendly.
WebPages in which the content is constructed and displayed by AJAX is not search engine friendly.Such content is not accessible to the crawler , as the result those pages are not indexed in the search engines by which we may miss a certain amount of traffic from a search engine.
So before using AJAX on a webpage for displaying content you must ...
more info..Automatically backup mysql database to Amazon S3 using django (Python) script
By : rama
Many of us use Amazon S3 to backup their mysql databases.As we do it so often we thought of writing an automated script which does this task of taking the backup of a mysql database and then moving it to the Amazon S3 . Below is the django script .
1: def upload_db_to_Amazons3():
2: """ function which uploadd mysql database to amazon s3"""
3:
4: AWS_ACCESS_KEY_ID = settings.AWS_ACCESS_KEY_ID
5: AWS_SECRET_ACCESS_KEY = settings.AWS_SECRET_ACCESS_KEY
6: BUCKET_NAME = settings.BUCKET_NAME
7: MYSQL_DUMP_PATH = settings.MYSQL_DUMP_PATH
8: DATABASE_NAME = settings.DATABASE_NAME
9: ARCHIVE_NAME = settings.ARCHIVE_NAME
10: .....
11:
12: proc1 = subprocess.Popen(settings.MYSQL_DUMP_PATH+" --no-data -u root -pwelcome -x --databases ...
Understanding DateTime, tzinfo, timedelta & TimeZone Conversions in python
By : rama
In this post we will look at the common operations that are being performed on dates & time , converting a datetime from one timzone to another timezone.
Common Operations: How to get the present datetime?
In [189]: cdatetime = datetime.now() It returns the current localdate and time.When i print cdatetime it printed as a tuple of nine elements
In [190]: cdatetime
Out[190]: datetime.datetime(2009, 2, 17, 17, 34, 58, 407806)
(2009=year, 2=month, 17=day, 17=hour, 34=minutes, 58=seconds, 407806=microseconds, tzinfo is None and is not printed)
what each element in tuple represents ...
Django popular stories Widget
By : rama
At uswaretech we strive hard to keep track of the latest happenings in Django.To assist in this we have created a Django popular stories widget which lists down the popular stories in django.We are writing about it as we wanted to share this widget to the django community to who, it may be helpful.Please have look at the widget which is appearing at the bottom of this post.And also the source code of this widget is available to everyone who want to use in their own applications.More details at the bottom of this post.
How ...
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
Create your own online store in few hours using satchmo (django)
By : rama
What is satcmo?
Satchmo is a django based framework which allows you to create an online store very quickly. Satchmo also offers powerful customizations which allows you to tune a store to your specific business needs.
Sample Demo Store : http://www.xfgw.info/store
Login details
Email : test@test.com password : welcome
Above is the sample demo store which is being provided by satchmo outofbox just after installing it.
In this blog post we will discuss very basic ...
more info..