Tag Archives: programming

Python for bash users: 1 minute introduction

If you can do something interesting in bash, then here’s how you do it in python. Suppose you have this interesting bash thing… …and you want to do some crazy python thing on it. Here’s how you do it: And … Continue reading

Posted in Stuff | Tagged , , , | Leave a comment

Arrays

A programmer working on a large project noticed that every single variable was stored in a separately named instance: int c1, c2, c3, c4, c5, c6; This meant that there was a lot of code of this sort: c1++; c2++; … Continue reading

Posted in Stuff | Tagged , , , , | Leave a comment