Ultimos Posts 1. 13/01/2012 10:10 - Weird font rendering in Netbeans on Linux / Ubuntu I had the same issue using Ubuntu and I resolved it this way: Edit your netbeans.conf and add this line in your “netbeans_default_options” string -laf Nimbus -J-Dswing.aatext=true -J-Dawt.useSystemAAFontSettings=lcd” so you finally have something like: > netbeans_default_options=”-J-client -J-Xss2m -J-Xms32m -J-XX:PermSize=32m -J-Dapple.laf.useScreenMenuBar=... 2. 16/10/2011 15:47 - How to combine formtastic with Ajax form submission? This is working for Rails 3.1 true do |f| %>... 3. 28/09/2011 13:08 - Caught AttributeError while rendering: ?datetime.date? object has no attribute ?date? To fix just replace this: end = models.DateTimeField(default=datetime.date.today(), blank=True) with this: end = models.DateTimeField(default=datetime.datetime.now(), blank=True)... 4. 26/09/2011 12:47 - jpeg support not available bug in PIL 1.1.7 in Ubuntu 11.10 Before installing PIL edit the setup.py and add this line add_directory(library_dirs, "/usr/lib/i386-linux-gnu") before line 214 add_directory(library_dirs, "/usr/lib")... 5. 04/04/2011 12:25 - Chamilo 1.8.7.1 is way faster than Dokeos 2.0 You might already know the new page speed test provided by Google, so I did a quick test with the current public campus, from Chamilo and Dokeos here are the results: http://campus.chamilo.org 89/100 http://campus.dokeos.com 62/100 This is the explanation of the Page Speed Score : The Page Speed Score indicates how much faster a page could be. A high score indicates l... |