Feb. 24, 2013 » Anže’s Blog » [Archived Version]
So you want to create a cross-platform game that works on all the major operating systems and mobile as well? Here are some of your options:
Read MoreFeb. 16, 2013 » Anže’s Blog » [Archived Version]
Google Analytics is an awesome tool. I have the utmost respect for the googlers working on it every day.
Read MoreFeb. 10, 2013 » Anže’s Blog » [Archived Version]
Hot swapping is the process of replacing code while the application is running. It allows a developer to see changes immediately - no recompiling, no waiting on page reloads, and no clicking to get to the application state where the code was changed. Just save the file and you’ll see the changes.
Read MoreJan. 20, 2013 » Anže’s Blog » [Archived Version]
GNU/Linux is awesome because it gives you a whole lot of simple but useful tools that you can play with. Utilities like dd, sed, grep, rm, find, ssh and many others all have a small sea of parameters that make them do exactly what you want.
Read MoreJan. 9, 2013 » Anže’s Blog » [Archived Version]
Programming is a lot of fun. It’s an awesome feeling when your code compiles without errors, the app passes all the tests, and runs without any (noticeable) bugs. It’s an awesome feeling even if you are working on a boring enterprise app. You made the primitive machine under your keyboard do something. If that isn’t amazing I don’t know what is.
Read MoreDec. 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 MoreDec. 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 MoreNov. 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 MoreNov. 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 MoreNov. 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