English Posts
Lisp expression parsing
Lisp expressions, also known as symbolic expressions (S-expressions), are prefixed expressions. In Lisp, the (quote)
function or '
can easily parse symbolic expressions into internal list data structures, whereas in other languages, it would take some effort to do a similar conversion.
Mikhail Smarshchok - System Design Interview – Step By Step Guide
Most valuable video channel for system design interview questions, Mikhail Smarshchok explains things very well and thorough.
Read MoreRaymond Hettinger, Keynote on Concurrency, PyBay 2017
Very intersting talk from Raymond Hettinger on Concurrency(multi-processing, threading, asyncio). And it’s a pleasure to watch and listen to.
Read MoreDavid Beazley - Python Concurrency From the Ground Up - LIVE - PyCon 2015
David Beazley writes concurrent and socket Python code live at PyCon, every time I watch this video it’s mind blowing.
Read More