Recent Articles
Understand Generators
Generator functions allow you to declare a function that behaves like an iterator, i.e. it can be used in a for loop.
Understand Asyncio
asyncio is a library to write concurrent code using the async/await syntax. asyncio is often a perfect fit for IO-bound and high-level structured network code.
Develop a K8S authorization webhook
A WebHook is an HTTP callback: an HTTP POST that occurs when something happens; a simple event-notification via HTTP POST. A web application implementing WebHooks will POST a message to a URL when certain things happen.