Sylvan's Blog
Recent Articles
Initializing search
        • Develop a K8S authorization webhook
        • Understand Asyncio
        • Understand Generators
        • HELM - Templating in kubernetes manifests
        • JQ - CLI to query JSON in bash
        • K9S - CLI for lazy K8S administrators
    • Recent Articles
    • Suggested Articles

    Recent Articles

    Understand Generators

    2023-06-22 - sylvanld

    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

    2023-06-22 - sylvanld

    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

    2023-06-22 - sylvanld

    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.

    Made with Material for MkDocs