Learn the Golang programming language as a Python developer in this tutorial that gets you started in the right direction. (more…)
Read more »
Next time you're in your IPython console and you get an error somewhere deep in your stack, run %debug. It's a post-mortem debugger, and it'll drop you in an interpreter right where the error happened. You can inspect all the variables, go up and down the... (more…)
Read more »
Once you learn about for loops in Python, you know that using an index to access items in a sequence isn't very Pythonic. So what do you do when you need that index value? In this tutorial, you'll learn all about Python's built-in enumerate(), where it's ... (more…)
Read more »
Some time ago I started looking for a new car. I quickly became bored with browing the biggest polish offer site - otomoto.pl, so I decided to automate the whole thing to do it for me. Obvious, right? (more…)
Read more »
I can’t seem to crack my obsession with Direct Digital Synthesis. I had to learn rather a lot about it as part of working on bFunc last year. Even though I’v... (more…)
Read more »