Blog-Einträge getaggt mit sysadmin und django

gewählte Tags:
(-)
(-)
verwandte Tags:
python(+)

Distributing Mediafiles with Django Apps

Some reuseable Django applications need mediafiles (CSS stylesheets or JavaScript files) to function properly. One common approach is to document, that the user has to copy these files to the MEDIA_ROOT directory.

Another example is django.contrib.admin. The recommended way here is to configure ...

mehr lesen »

Selbständigkeit und die Folgen

Ich bin jetzt seit 13 Monaten selbständig und so langsam wird klar, was das bedeutet. Während in der Anfangszeit die tägliche Arbeitszeit eher bei 6 bis 7 Stunden lag, liegt sie mittlerweile eher bei 12 bis 14 Stunden - hat sich also verdoppelt. Eigentlich ist mir das ...

mehr lesen »

MySQLdb unter Mac OS 10.5 installieren

Um endlich wieder vernünftig mit Django entwickeln zu können, musste ich heute MySQLdb unter OS X 10.5 Leopard installieren.

Nach dem Runterladen und dem Ausführen von python setup.py install war der erste Fehler, der zum Vorschein kam folgender:

raise EnvironmentError, "%s ...
mehr lesen »

Django GridContainer

Da fängt die Woche ja gut an! Grade lese ich, dass bald der Beta-Test für die Django GridContainer von MediaTemple startet. Richtig gutes Hosting für Django Applikationen fehlt ja nach wie vor in Deutschland, aber zumindestens in Übersee tut sich langsam was. Mit Joyent und MediaTemple hat man ...

mehr lesen »

Implementing a CompressedTextField for Django

Driving to my office today I had the idea to implement a field type in Django, which allows me to transparently save data in a compressed state to the database.

A standard Lorem Ipsum paragraph (as follows) takes 446 Bytes as ASCII and using my ...

mehr lesen »