Explore >> Select a destination


You are here

ntietz.com
| | akaptur.github.com
12.2 parsecs away

Travel
| | Last week at Hacker School I did a quick presentation on python bytecode and the dis module. The disassembler is a very powerful tool with a gentle ...
| | rcoh.me
11.2 parsecs away

Travel
| | As I was learning to program, Python lists seemed totally magical to me. I imagined them as being implemented by some sort of magical datastructure that was part linked-list, part array that was perfect for everything. As I grew as an engineer, it occurred that this was unlikely. I guessed (correctly) that rather than some sort of magical implementation, it was just backed by a resizable array. I decided to read the code and find out.
| | www.caichinger.com
13.4 parsecs away

Travel
| | A deep dive into Python reference counting and the GIL.
| | manybutfinite.com
96.6 parsecs away

Travel
| Earlier we've explored the anatomy of a program in memory, the landscape of how our programs run in a computer. Now we turn to the call stack, the work horse in most programming languages and virtual