Posts Tagged ‘ loop-values ’

Django tips: Tech Model: Django comments application. How to make …

April 2, 2010
By

Django tips : Tech Model. Friday, April 2, 2010. Django comments application. How to make comments private by default? Someone is posting many bad comments to my site. Is there possibility to make all submitted comments private by ...

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 »

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 »

Some Maya Python Tips & Tricks

March 18, 2010
By

Some useful information I found online. Thanks to all these helpful people on the net! ;) From http://riggerman.animationblogspot.com Ryan Trowbridge has pointed out a faster way of computing the deformations: ...

Read more »

Advance php error handling

March 5, 2010
By

log_errors instead of displaying error to stderr, you can choose to enable error logging to the file instead for production. More option can be study here : http://perishablepress.com/press/2008/01/30/advanced- php-error-handling -via-php/

Read more »

Django tips: Tech Model: ellipsis is not safe, use ellipsis.__new__()

March 1, 2010
By

Django tips : Tech Model. Monday, March 1, 2010. ellipsis is not safe, use ellipsis.__new__(). I've been tracking trunk on 1.2 and recently started getting this error when get_profile() is invoked: TypeError at /item/9/. object. ...

Read more »

Django tips: Tech Model: Page expired with IE

March 1, 2010
By

Django tips : Tech Model. Monday, March 1, 2010. Page expired with IE. In this page: http://trovascuola.comune.forli.fc.it/. put "saffi" and "48" respectively (as an example). Click on "Nidi d'infanzia ..." and then came back with back ...

Read more »

Django tips: Tech Model: Creating fancier views

March 1, 2010
By

Django tips : Tech Model. Monday, March 1, 2010. Creating fancier views. I am relatively new to Django and am comfortable creating views and customising templates. I am wondering if there is an easy way to spice up certain things, ...

Read more »

Django tips: Tech Model: Storing API Passwords

March 1, 2010
By

Django tips : Tech Model. Monday, March 1, 2010. Storing API Passwords. Hello,. When working with photo API's such as twitpic, what is the best way of storing the password? Since the password needs to be sent in its natural form, ...

Read more »