kostas

kostas

Readings in distributed systems

Below are four different (partially overlapping) lists of papers one should read in distributed systems. Dan Creswell: A Distributed Systems Reading List Swami Sivasubramanian: Building scalable systems Dr. Manish Parashar: Parallel and Distributed Computing Bytepawn: Readings in distributed systems (currently…

Python: inverse of zip

So you have a list of tuples, created with the zip built-in function in Python. Like this: z = [(1, ‘a’), (2, ‘b’), (3, ‘c’)] And you want to reverse zip, to get these two lists: x = [1, 2,…

Back on my regimen

Sometimes my head hurts from all the papers I have to read. All the lines of software I have to code. All the pages of high quality scientific output I have to write. All the people I have to impress.…

Plotting data on maps with matplotlib

I’m learning about matplotlib, and actually just bought the book Matplotlib for Python Developers. Geographical plots Browsing stackoverflow, the matplotlib homepage, and other resources, I eventually came by this stackoverflow post, which mentions BaseMap. Since the data that I’m plotting…