What's Cooking!? (without imported items) http://cooking.visualspace.nl/ What's Cooking!? (without imported items) http://cooking.visualspace.nl/ http://asset.soup.io/asset/0198/1522_49cd.png 44 44 Django projects cooking at Visualspace . [dokterbob] (Image) <p><a href=""><img alt="8930_e44e_400" height="300" src="http://asset.soup.io/asset/0919/8930_e44e_400.png" width="400" /></a></p> <p></p>Sun, 11 Jul 2010 18:39:30 GMThttp://cooking.visualspace.nl/post/64808615/Imageurn:www-soup-io:1:64808615image [dokterbob] LESS <p>Less extends CSS with: variables, mixins, operations and nested rules.</p> <p><a href="http://lesscss.org/">http://lesscss.org/</a></p>Tue, 06 Jul 2010 19:30:02 GMThttp://cooking.visualspace.nl/post/63948223/LESSurn:www-soup-io:1:63948223link [dokterbob] (Video) <object height="350" width="425"><param name="movie" value="http://www.youtube.com/v/vYMpihXHobQ" /><param name="wmode" value="transparent" /><embed src="http://www.youtube.com/v/vYMpihXHobQ" wmode="transparent" type="application/x-shockwave-flash" height="350" width="425" /></object>Sat, 29 May 2010 13:17:33 GMThttp://cooking.visualspace.nl/post/58026459/Videourn:www-soup-io:1:58026459video [dokterbob] Introduction to Surlex <p>Surlex (Simple URL Expression) is a language for matching and extracting text, similar to regex (regular expression). It works by generating a regular expression from a more concise syntax that is designed to produce easy-to-read url patterns.</p> <p><a href="http://codysoyland.com/2009/sep/6/introduction-surlex/">http://codysoyland.com/2009/sep/6/introduction-surlex/</a></p>Tue, 13 Apr 2010 09:52:43 GMThttp://cooking.visualspace.nl/post/52904706/Introduction-to-Surlexurn:www-soup-io:1:52904706link [dokterbob] Git Repository Basics Guide <p><a href="http://wiki.sourcemage.org/Git_Guide">http://wiki.sourcemage.org/Git_Guide</a></p>Fri, 24 Jul 2009 14:23:50 GMThttp://cooking.visualspace.nl/post/23864729/Git-Repository-Basics-Guideurn:www-soup-io:1:23864729link [dokterbob] Setting up a new remote git repository <p>To collaborate in a distributed development process you’ll need to push code to remotely accessible repositories.</p> <p><a href="http://toolmantim.com/articles/setting_up_a_new_remote_git_repository">http://toolmantim.com/articles/setting_up_a_new_remote_git_repository</a></p>Fri, 24 Jul 2009 13:50:32 GMThttp://cooking.visualspace.nl/post/23862874/Setting-up-a-new-remote-git-repositoryurn:www-soup-io:1:23862874link [dokterbob] Django Guestbook application <p>The other day I've written a pluggable guestbook application for Django. It is fully functioning and loosely based on the Django comments contrib. Currently, I am using it on a small website (<a href="http://www.hansenpaul120.nl/guestbook/">hansenpaul120.nl</a>, Dutch) but more websites are soon to follow.</p> <p>Current features: </p><ul> <li>Fully translatable (currently, only English and Dutch are available)</li> <li>Fully integrated with the admin</li> <li>Some barebone templates are supplied</li> </ul> <p>More features will be added as soon as I am going to use this in more sites, or when <b>you</b> do so. Some of these features may include: </p><ul> <li>(Better) documentation.</li> <li>Integration with <a href="http://docs.djangoproject.com/en/dev/ref/contrib/syndication/">Django syndication</a></li> <li>Integration with <a href="http://code.google.com/p/django-email-confirmation/">Django email confirmation</a></li> <li>Integration with <a href="http://docs.djangoproject.com/en/dev/topics/auth/">Django User authentication</a></li> </ul> <p>Installation should be pretty straight-forward for anyone who's installed a Django app before: </p><ol> <li>Get the source from <a href="http://github.com/dokterbob/django-guestbook/">GitHub</a> by either cloning or downloading the archive.</li> <li>Link the guestbook app into your project's tree:<br /> <pre>ln -s django-guestbook/guestbook guestbook</pre> </li> <li>Add the app to your <code>INSTALLED_APPS</code> in <code>settings.py</code>:<br /> <pre>INSTALLED_APPS = (<br /> ...<br /> 'django.contrib.admin',<br /> 'guestbook',<br />)</pre> </li><li>Add the guestbook app to your <code>urls.py</code>:<br /> <pre>urlpatterns = patterns('',<br /> ...<br /> (r'^guestbook/', include('guestbook.urls')), <br />)</pre> </li><li>Update the database structure:<br /> <pre>./manage.py syncdb</pre> </li> <li>You're done! Go and test your app by running:<br /> <pre>./manage.py runserver</pre> </li> </ol> <p>Feel free to provide feedback on the current state of the project, and perhaps on what features you might like. In any case, expect a more complete HOWTO here.</p> <p>The app's source code can be found <a href="http://github.com/dokterbob/django-guestbook/">here</a> on GitHub and the source for the hansenpaul120.nl website is <a href="http://github.com/dokterbob/hansenpaul/">here</a>. The latter might be a good place to see how the guestbook application can be used.</p>Tue, 23 Dec 2008 12:07:38 GMThttp://cooking.visualspace.nl/post/9992059/Django-Guestbook-applicationurn:www-soup-io:1:9992059regular