In this tutorial I show you how to make a generator in Python. A generator is a function, that will serve you a sequence: it knows what "next" means in a given context. The sequence it serves can be finite or infinite. … [Read more...]
How Python is all about Trying Error Handling in Python
This is a Prezi-Tutorial that teaches you how to use the Try-Select-Clause in Python in order to write safe Python code. … [Read more...]
Django Restframework Part 1: Serialization
This article is about the django restframework's serialization. With Django Restframework your goal is to arrive at an api. Usually your data sits in the database, but the api serves it as JSON. So the task of the serializer is to transform the data in both directions. Read on to understand how you can build your own serializer for your own data with the framework! … [Read more...]
Ordered Dictionaries in Python
I just stumbled upon an ordered dict in Python and had to look it up. So here you can find how an ordered dict differs from a normal dict and why it is useful. … [Read more...]
Ethan Brown: Learning Javascript
This is the best Javascript book I know of and in this article I will tell you what is so good about it: this is Javascript as it happens today, since Javascript ist not only a language it is kind of a movement, where you have to catch the newest trends in order to understand what is happening around you on the net. And what you get from this book is just that: you start to … [Read more...]