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.…