Beyond the for-loop

Published at September 9, 2022 | Tagged with:

I gave this talk at Dev Challenge Accepted 2022, exploring Python's functional-style tools — map, filter, reduce, comprehensions, and generators — as expressive alternatives to writing everything as an explicit loop.

Video:

Check the slides here

Lessons Learned The Hard Way

Published at October 22, 2021 | Tagged with: ,

A talk I gave at HackConf 2021 sharing concrete lessons from real production experience — the subtle bugs, unexpected side effects, and costly mistakes you really don't want to discover for yourself.

Video:

Check the slides here

Python and gRPC

Published at October 14, 2021 | Tagged with: ,

The slides and demo code from my presentation in front of the DEV.BG Python user group, introducing gRPC with Python — covering Protocol Buffers, service definitions, and building a working client-server example from scratch.

Slides:

The demo code is available on GitHub.