Am Samstag lud Tschitschereengreen zu einem Django-Vortrag ein. Ziel war es einen ersten Eindruck über das Framework zu vermitteln.
Monday, November 23rd, 2009 | Posted in Django, Rapid Development Frameworks, Vorträge | 1 Comment »
Wie bereits angekündigt habe ich heute meinen Vortrag auf die Einladung von Herr Prof. Wiedemann an der HTW Dresden gehalten.
Die Folien finden sich hier zum Download: 11-2009 Allgmeine Praesentation TTS HTW – Neue Werkzeuge.pdf
Das Fazit: die Präsentation kam sehr gut an. Habe ein nettes Kompliment von einer anwesenden Professorin zum Vortrag erhalten . [...]
Thursday, November 19th, 2009 | Posted in Agile Software Development, Coders best practice, Django, From Inside, Python, Rapid Development Frameworks | 1 Comment »
Das Konzept zu meinem Vortrag zu neuen Werkzeugen in der Softwareentwicklung ist jetzt komplett fertig und mit der HTW Dresden abgestimmt. Dieses wird in den nächsten Tagen veröffentlicht.
Friday, November 6th, 2009 | Posted in Agile Software Development, Django, Rapid Development Frameworks, Symfony, Vorträge | 1 Comment »
At the weekend I held a presentation at FrOSCon 2009 about the project management perspective on Django. As agreed with the folks attending I attach here the presentation itself.
Django – lessons learned from a project management perspective
As a conclusion in the work shop we agreed, that Django is in Germany not very well known and [...]
Monday, August 24th, 2009 | Posted in Django, PHP | 1 Comment »
For using Sphinx with Symfony you got to do the following steps:
1.) Install your Symfony app as well as the Sphinx daemon
2.) Configure your Sphinx with proper indizes and start the daemon
3.) create a mySphinxSearch.class.php in your /lib directory
4.) save the PHP sphinx api providey by Sphinx in your /lib directory
5.) create a search [...]
Wednesday, August 13th, 2008 | Posted in PHP, Symfony | No Comments »
Yesterday, I tried a hint from Seb for reanimating the old yoosic system by accessing the db directly from Django. The problem was that it is an MyISAM-MySQL-System which is not really cool for the Django way of coding.
The hint from Sebastian was trying the legacy database access provided by django, which enables you [...]
Monday, April 7th, 2008 | Posted in Django | No Comments »
just repaired some minor issues this morning on yoosic.com. And in the next days I will be inserting a new flash player for replacing our current mp3-stream solution.
Furthermore I’m thinking about a way, where I can use Django or Symfony to start replacing functions in our current nasty-code-wasted yoosic-app while accessing the current yoosic database.
The [...]
Saturday, March 29th, 2008 | Posted in Django, Symfony | 4 Comments »
Just ran into errors with Lighttpd 1.5, PostgreSQL, Django (trunk) Admin and using memcached for accellerating the page.
The 500er error I got when accessing /admin looked like:
File “/usr/lib/python2.4/site-packages/django/core/cache/__init__.py”,
line 60, in get_cache
cache_class = getattr(__import__(‘django.core.cache.backends.%s’ % BACKENDS[scheme], {}, {}, ['']), ‘CacheClass’)
File “/srv/www/www.tschitschereengreen.com/tts/django/core/cache/backends/memcached.py”, line 12, in ?
raise InvalidCacheBackendError(“Memcached cache backend requires either the ‘memcache’ or ‘cmemcache’ library”)
InvalidCacheBackendError: Memcached [...]
Saturday, March 29th, 2008 | Posted in Django | 2 Comments »
After trying several tools for making the translation of a symfony project convenient for our customer, I found the following best practice:
1. Install Heartsome XLIFF Translator
2. Modify language codes (Options->Language Codes). e.g. from de-De to de_De and en-GB to en_GB by replacing the dash by a underscore.
3. Open the xml-file with the File->Open File Menue [...]
Wednesday, March 26th, 2008 | Posted in Symfony | 1 Comment »
finally just solved big problems I had with symfony – to get it running on lighttpd 1.5 with fcgi-sockets. The resulting lighttpd settings are a pure pain in the … – If you have a better solution for this, let me know. I’m pretty unhappy with these kind of hacks…
$HTTP["host"] == “###TypeYourUrlHere###” {
var.site-root [...]
Monday, March 24th, 2008 | Posted in AJAX, Symfony | No Comments »