About 149 results
https://luminary.blog/techs/streamlit-workshop-beginner · 27 Aug 2025
Beginners with a basic understanding of Python. No web development experience is required.
https://luminary.blog/techs/01-cuda-intro · 28 Jul 2025
Getting started with CUDA programming: Hello Threads
https://aslakr.folk.ntnu.no/2025/06/python-kodeblokk/ · 4 Jun 2025
Eksempel på kodeblokk med Python
https://cuducos.me/tuples-and-lists-in-python.html · 24 Apr 2025
_Originally posted in Brazilian Portuguese._ The other day, on a Python forum, someone asked: > Is there any difference between tuples and lists in terms of performance? As some of you might already know, I love looking at Python with a critical eye, fr...
https://cuducos.me/python-generators.html · 24 Apr 2025
_Originally published in Brazilian Portuguese._ The other day, a friend saw me writing a function in Python that used yield instead of return, and asked: > — What's the point of that? I’ve never really got it… Actually, I was writing a generator, ...
https://rednafi.com/misc/hierarchical-rate-limiting/ · 12 Jan 2025
Build multi-level rate limiting with Redis sorted sets and Lua. Enforce global and category-specific limits with ZREMRANGEBYSCORE and ZCARD commands.
https://rednafi.com/misc/run-single-instance/ · 31 Dec 2024
Prevent multiple script instances with file locking. Use flock in Bash, fcntl in Python, and syscall.Flock in Go for single-instance processes.
https://rednafi.com/python/inject-pytest-fixture/ · 2 Dec 2024
Clean up pytest test signatures using @pytest.mark.usefixtures to inject implicit fixtures without autouse or unused parameter warnings.
https://marko.tech/journal/python-rss · 14 Nov 2024
A quick and simple Python based shell script to find RSS links from any given URL.
https://rednafi.com/python/typing-override/ · 6 Nov 2024
Catch method override errors at type-check time with Python's @override decorator from PEP 698, preventing typos and signature mismatches.