Search Results

5
votes

Hidden features of Python

You can easily transpose an array with zip. a = [(1,2), (3,4)] zip(*a) …
10
votes

What are the things Java got wrong?

Arrays are covariant which shouldn't be. See: Wikipedia Article …
0
votes

Reasons not to use django

I've used Django for a small site. Personally I don't like its template engine, I'm a big fan of Mako templates. That's why I've changed template engine to Mako. Maybe it's n …