Click here to check if anything new just came in.
December 19 2010
“— Django | Django settings | Django documentationThe basics
A settings file is just a Python module with module-level variables.
Here are a couple of example settings:
DEBUG = False DEFAULT_FROM_EMAIL = 'webmaster@example.com' TEMPLATE_DIRS = ('/home/templates/mike', '/home/templates/john')Because a settings file is a Python module, the following apply:
”
It doesn't allow for Python syntax errors.
It can assign settings dynamically using normal Python syntax. For example:
MY_SETTING = [str(i) for i in range(30)]It can import values from other settings files.
September 16 2009
June 15 2009
“ :set winminheight=0
-> vimeinstellung um nicht mind 1 zeile angezeigt zu bekommen ”
Firefox Addon: It's All Text | Linux Journal
Firefox Addon: It's All TextJune 14 2009
Thematic, A WordPress Theme Framework
Thematic is a free, open-source, highly extensible, search-engine optimized WordPress Theme Framework featuring 13 widget-ready areas, grid-based layout samples, styling for popular plugins, and a whole community behind it. It's perfect for beginner bloggers and WordPress development professionals.June 11 2009
“ This is a German-English translation database file ”— TU Chemnitz: URZ: Netzdienste: FTP-Archiv ftp.tu-chemnitz.de:
June 04 2009
“— FAQ - sqlalchemy - TracHow can I subclass Table/Column to provide certain behaviors/configurations? ¶
Table and Column can be subclassed but not without using code which is specific to SQLAlchemy internals (which can change at any time). To date, we have yet to see a use case for "subclassing" which goes beyond specifying a particular set of constructs and options during creation. Therefore, it is much easier and 100% future-proof to use functions that return pre-configured Table and Column instances instead.
A Table example:
def TimeStampTable(*args, **kwargs):
args = args + (Column('created_at', DateTime, nullable=False, default=datetime.now),
Column('updated_at', DateTime, onupdate=datetime.now)
)
return Table(*args, **kwargs)
my_table = TimeStampTable('my_table', metadata,
Column('id', Integer, primary_key=True)
)A Column example:
def NotNullColumn(*args, **kwargs):”
kwargs.setdefault('null', False)
return Column(*args, **kwargs)
June 03 2009
Topsy
gute twittersucheTwitter Analysed
Prezi styleMay 27 2009
snippetsEmu - An attempt to emulate TextMate's snippet expansion : vim online
Vim Snippets like TextMateMay 25 2009
Optaros OForge
Trac Clone - Multiproject supportMay 23 2009
“ Social Media Metrics Superlist: Measurement, ROI, & Key Statistics Resources ”— Social Media Metrics Superlist: Measurement, ROI, & Key Statistics Resources
May 22 2009
animoto - the end of slideshows
Vielleicht mal nicht so uninteressant - schnelles Video aus Screenshots oder BildernMay 19 2009
May 15 2009
TweetBacks for WordPress - Yoast - Tweaking Websites
Twitter Replay auf Blogposts (Wordpress Plugin)"People are talking about your posts, and not only in the comments to your post. A lot of that conversation is happening on Twitter, and now, you can take that conversation right back to your blog! This plugin imports those tweets about your posts as comments. You can display them in between the other comments on your blog, or display them separately."
Maybe Soup is currently being updated? I'll try again automatically in a few seconds...

