Social Bookmarks | Social Media CoLab - 0 views
Website Marketing SEO Score Tool - 0 views
Big list of Django tips (and some python tips too) | Surfing in Kansas - 0 views
-
Big list of Django tips
-
Writing managers is really simple, and they provide a better user interface to your code. This code snippet simply adds a latest() method to the default objects manager class ForecastDayManager(Manager): def __init__(self, *args, **kwargs): super(ForecastDayManager, self).__init__(*args, **kwargs) def latest(self): return self.get_query_set().order_by('forecast_date')[0] It can be called ForecastDay.objects.latest(). This is a trivial example, but there is a lot of power that lies in this functionality.
Capture Fox :: Firefox Add-ons - 0 views
Django | Sending e-mail | Django Documentation - 0 views
-
Testing e-mail sending¶ The are times when you do not want Django to send e-mails at all. For example, while developing a website, you probably don't want to send out thousands of e-mails -- but you may want to validate that e-mails will be sent to the right people under the right conditions, and that those e-mails will contain the correct content.
Laconica - 0 views
bookgoo - Highlight the World - 1 views
GizmoCall.com - 0 views
FUMSI - Data Visualisation: Tools and Examples - 0 views
-
The online visualisation of data continues to stretch in many directions with great effectiveness. Inspired by seminal influences, such as Edward Tufte, there's an ever growing stream of online and offline tools, projects, research and resources for visualising, interpreting and researching ultimately any type of data, for a vast range of uses.
Deploying Django applications to a production server - 0 views
-
Deploying Django applications to a production server
« First
‹ Previous
41 - 60
Next ›
Last »
Showing 20▼ items per page