Oct 15

Mingus - Making the complicated simple

Making the simple complicated is commonplace; making the complicated simple, awesomely simple, that's creativity.

— Charles Mingus

Oct 15

Plomer - Creativity is the power to connect.

Creativity is the power to connect the seemingly unconnected.

— William Plomer

Oct 15

Adams - Creativity is allowing yourself to make mistakes

Creativity is allowing yourself to make mistakes. Art is knowing which ones to keep.

— Scott Adams

Oct 15

Django Community

A must subscribe resource for all things Django.

Visit: http://www.djangoproject.com/community/

Sep 03

User Based Debug your Django App

Ever wanted to view the verbose Django error page when you're live app is executing with DEBUG=False?

I'm a huge fan of this Erich Holscher djangosnippet which is included in django-sugar. This middleware allows you to easily debug your django app whether you're an admin user or your machine's IP is listed in settings.py INTERNAL_IPS tuple. Here is is in its entirety below.

from django.views.debug import technical_500_response import sys from django.conf import settings class UserBasedExceptionMiddleware(object): def process_exception(self, request, exception): if request.user.is_superuser or request.META.get('REMOTE_ADDR') in settings.INTERNAL_IPS: return technical_500_response(request, *sys.exc_info())

Sep 03

Charles Mingus -Moanin

A classic song from the "The Angry Man of Jazz", Charles Mingus.

Sometimes you just need some Mingus to get you movin' along.

Aug 23

Welcome to Mingus

Hello world.

Welcome to django-mingus powered blog engine.

About OSWCO

OSWCO is dedicated to introducing and supporting Open Source Software to the Enterprise. The Open Source movement and products have become highly sophisticated, cost effective, and mature. Many leading companies and organizations are making rapidly increasing investments in it's use.


Some organizations need help and a place to turn to for, consulting, product development or commercial support. We have developed an extensive network of reliable experts to assist you, able to take on the largest turnkey projects, or simply help you examine the options.


Subscribe to us:

Elsewhere

Categories

Recent Posts

Archive

BlogRoll

Popular Posts

Django Popular