Posts Tagged ‘ include-data ’

Sofistes.net: Error handling in Scrum

May 11, 2010
By

I posted a question to Stack Overflow some time ago about how to fit error handling in Scrum. I re-read the answers and the first one got me thinking and here's how I could see doing it: There is a "Defects" task in the Product Backlog. ...

Read more »

All Technical FAQs: ASP.NET Error Handling and Tracing

May 9, 2010
By

NET Error Handling and Tracing. ASP.NET Trace ASP.NET introduces tracing functionality which allows one to view diagnostic information about a single request for an ASP.NET page simply by enabling it for your page or application. ...

Read more »

Phi Infinity: Some Python tips & tricks

May 3, 2010
By

Some Python tips & tricks. Long time since my last post,i'm kinda busy with my last term as an undergrad. Anyway i'll reward you with some posts (hope so) starting with this one. Last summer i learned python as you may know from a ...

Read more »

Django tips: Tech Model: Re: Django-registration with django-profile

April 3, 2010
By

Django tips : Tech Model. Saturday, April 3, 2010. Re: Django-registration with django-profile. 2010/4/3 shacker : > On Apr 3, 2:39 am, Alessandro Ronchi > wrote: ...

Read more »

Django tips: Tech Model: Re: django authentication system

April 2, 2010
By

Django tips : Tech Model. Friday, April 2, 2010. Re: django authentication system. You have to use ``auth.models.User`` if you want to enjoy all the benefits of the auth system. Just create a model and make a onetoone to User. ...

Read more »

Django tips: Tech Model: Recipe request: Nginx, Django as fcgi …

April 2, 2010
By

Django tips : Tech Model. Friday, April 2, 2010. Recipe request: Nginx, Django as fcgi, PHP app in subdirectory also as fcgi. Hola. I'm having trouble with porting a Django site, which currently uses apache2 and mod_python with Wordpress ...

Read more »

Django tips: Tech Model: django authentication system

April 2, 2010
By

Django tips : Tech Model. Friday, April 2, 2010. django authentication system. Hello,. I'm newbie in django, reading documentation i understood that django authorization model is based on django.contrib.auth.models.User class ...

Read more »

Django tips: Tech Model: Re: Complex Django query – filtering …

April 1, 2010
By

Django tips : Tech Model. Thursday, April 1, 2010. Re: Complex Django query - filtering, joining a many-to-many table. How about just accessing the "through" models attributes using user__ : filters ...

Read more »

Django tips: Tech Model: Re: Table in models.py not being created …

April 1, 2010
By

Django tips : Tech Model. Thursday, April 1, 2010. Re: Table in models.py not being created during syncdb. Hi, Thanks for the advice. I removed the sqlite db file, changed the table name to something more random and I still hit the same ...

Read more »

Dan Dar3: XBMC Python tips – how to get build version & date

March 20, 2010
By

XBMC Python tips – how to get build version & date. Python code: import xbmc result = xbmc.executehttpapi('GetSystemInfo(120;121)') system_info = result.split(' ') print "Version = " + system_info print "Date = " + system_info ...

Read more »