django-planet

What's new in Django community blogs?

Worst python code I’ve ever written

Dec. 17, 2012 » Anže’s Blog » [Archived Version]

I was doing my homework for the bioinformatics class when I started experimenting with scope in Python. The first thing I noticed was that Python list comprehensions don’t create a closure. This means that variables defined in the list comprehension bleed out into the current scope:

Read More

Game Development in Webgl

Dec. 12, 2012 » Anže’s Blog » [Archived Version]

I’ve started working on a simple game for the Github Game Off competition and I’d like to share my thoughts and findings on creating games with javascript and Webgl. I will not go into Webgl details, as there is a great number of tutorials that do just that, instead I’ll talk about some of the concepts that I used to make my game. You give the game a spin before you start reading, as I’ll be talking about how I implemented a few features and it will be easier for you to follow.

Read More

My Github Game Off Submission

Nov. 18, 2012 » Anže’s Blog » [Archived Version]

I’ve started working on a simple webgl game, and after just 4 days of development it’s already sort of playable. You can go ahead and try it out right now.

Read More

Nginx and VirtualBox shared folders

Nov. 7, 2012 » Anže’s Blog » [Archived Version]

I found something really peculiar. If you are trying to serve static files with Nginx from a Virtualbox Shared folder, you are going to have a bad time. I agree, you shouldn’t be doing this in the first place, but this issue is so weird I really had to write a blog post about it.

Read More

Why don’t we have code hot swapping on mobile?

Nov. 3, 2012 » Anže’s Blog » [Archived Version]

Code hot swapping is one of the most useful features a language can offer. It allows the developer to see changes as soon as he saves the source code. No restarting needed, your changes just pop up on the screen and your application state is preserved. Hot swapping magically updates method runtimes and gives you immediate feedback. This is invaluable and double so for developing graphical applications such as games. You don’t believe me, checkout this talk.

Read More

Best Github shortcut ever

Oct. 29, 2012 » Anže’s Blog » [Archived Version]

Today I watched this awesome talk and it blew my mind. I never knew how many secret features github actually has. The talk is rather long, so let me just highlight the best shortcuts mentioned.

Read More

I tried moving to Debian

Oct. 19, 2012 » Anže’s Blog » [Archived Version]

Yesterday I decided it was time to say goodbye to Ubuntu 12.04 and move to Debian Wheezy. This wasn’t due to the controversial changes Ubuntu made this release cycle, I don’t mind uninstalling a lens I find annoying. I couldn’t upgrade to 12.10 because the legacy fglrx drivers no longer work with kernel 3.5. I still wanted to try out something new though, hence Wheezy.

Read More

PyCon DE 2012 in Leipzig

Oct. 18, 2012 » Markus Holtermann » [Archived Version]

At the end of October 2012 another PyCon takes place. This time the venue is the Kubus in Leipzig, Germany. As this is my first participation at a Python conference I’m a bit excited about this event. First of all, I like the wide range of various topics that …

Read More

PyCon DE 2012 in Leipzig

Oct. 18, 2012 » Markus Holtermann » [Archived Version]

At the end of October 2012 another PyCon takes place. This time the venue is the Kubus in Leipzig, Germany. As this is my first participation at a Python conference I’m a bit excited about this event. First of all, I like the wide range of various topics that …

Read More

The Django community in 2012

March 5, 2012 » django on Jacob Kaplan-Moss » [Archived Version]

In 2007, and again in 2009, I made an attempt to measure the size of the Django community. By popular request — okay, a couple people asked for it, whatever — let’s do this thing again. Users In 2007 and 2009, I shared three ways of looking at how many people are using Django: hits to the website, downloads of the Django tarball, and sites listed as “using Django.” So, here’s an overview of users, some notes on interpreting these numbers follow:

Read More