Blog from the Loft

Thoughts without walls

Blog from the Loft header image 4

Entries from May 2008

Design Notes from Omni Focus demo video

May 17th, 2008 · No Comments · observation

I took some notes on one of the video explaining why the Omni Focus application design is so nice. I liked the analysis, but I actually gave up on the product itself. I now use Thing. However, these are the interesting design points:
Application’s feature is “shrink to fit” — The feature set is not overwhelming [...]

[Read more →]

Tags:

Django Tip: No leading slash for upload_to for FileField and ImageField

May 9th, 2008 · No Comments · django

This is a common mistake. When defining a FileField or an ImageField, you need to specify
where the files are stored. This is done by specifying a relative path in the upload_to
argument. Django will then store your files in a subdirectory as named, under the MEDIA_ROOT
directory. But, don’t put a leading slash in the relative path. [...]

[Read more →]

Tags: