Skip to content
View vltr's full-sized avatar
🤓
Being nerdy ...
🤓
Being nerdy ...

Organizations

@sanic-org

Block or report vltr

Block user

Prevent this user from interacting with your repositories and sending you notifications. Learn more about blocking users.

You must be logged in to block users.

Maximum 250 characters. Please don’t include any personal information such as legal names or email addresses. Markdown is supported. This note will only be visible to you.
Report abuse

Contact GitHub support about this user’s behavior. Learn more about reporting abuse.

Report abuse
vltr/README.md

hi, I'm Richard 👋

Backend engineer / architect from southern Brazil. Twenty-five years of mostly-Python, mostly-Postgres, mostly-async — sometimes wiring network cables, often coding things that matter.

import typing as t
from dataclasses import dataclass, field, InitVar


@dataclass
class Being:
    """An entity with code, hobbies, and opinions.

    >>> me = Being(
    ...     name="Richard Kuesters",
    ...     based_in="southern Brazil",
    ...     since=2000,
    ...     stack=("Python", "PostgreSQL", "async"),
    ...     underrated=("frogs", "insects", "documentation"),
    ...     initial_loves=("wifey", "son", "dog", "beach"),
    ... )
    >>> me.based_in
    'southern Brazil'
    >>> "frogs" in me.underrated
    True
    >>> "beach" in me.loves
    True
    >>> me.love("FOSS")
    >>> "FOSS" in me.loves
    True
    """

    name: str
    based_in: str
    since: int
    stack: tuple[str, ...]
    underrated: t.Iterable[str] = ()
    initial_loves: InitVar[t.Iterable[str]] = ()
    currently: tuple[str, ...] = ()
    tooling: dict[str, str] = field(default_factory=dict)
    coffee: bool = True
    _loves: frozenset[str] = field(init=False, default_factory=frozenset)

    def __post_init__(self, initial_loves: t.Iterable[str]) -> None:
        self.underrated = frozenset(self.underrated)
        self._loves = frozenset(initial_loves)

    @property
    def loves(self) -> frozenset[str]:
        return self._loves

    def love(self, *items: str) -> None:
        """Add to loves. You can add. You can't remove."""
        self._loves = self._loves | frozenset(items)


if __name__ == "__main__":
    richard = Being(
        name="Richard Kuesters",
        based_in="southern Brazil",
        since=2000,
        stack=("Python", "PostgreSQL", "async"),
        underrated=("frogs", "insects", "documentation", "the Theory of Constraints"),
        initial_loves=("wifey", "son", "dog", "beach"),
        currently=("running the multi-quarter roadmap", "Claude Code as a platform"),
        tooling={"ai": "Claude Code", "shell": "zsh"},
    )
    assert richard.name == "Richard Kuesters"
    assert 2026 - richard.since == 26
    assert "frogs" in richard.underrated
    assert "beach" in richard.loves
    assert richard.coffee
    richard.love("FOSS", "long-running OSS friendships")
    assert "FOSS" in richard.loves

I helped run Sanic for a while (former core dev), got a public "shout out to @vltr for all his work" from the sanic-jwt lead maintainer — that one's archived in the docs, which is nice — and authored a handful of PyPI packages that did their job before the ecosystem caught up.

These days I'm the sole backend voice at a US workforce-management SaaS, running the multi-quarter roadmap that keeps the lights on. I treat Claude Code as a platform to engineer around (hooks, skills, MCP servers, agents), not just to prompt.

Off-keyboard: CNC, 3D printing, wood-carving, GNOME Shell tinkering, Arch Linux as a hobby, craft brewing, F1, and a strong opinion that insects and frogs deserve more love.

Where to find me

LinkedIn · email in profile.


         .--.
        /    \
       | o  o |
        \ ww /
         '--'
        ribbit

Pinned Loading

  1. middle middle Public

    Flexible, extensible Python data structures for general usage

    Python 10 1

  2. middle-schema middle-schema Public

    Translate your middle model declarations to OpenAPI, JSONSchema or any other schema you need

    Python 2

  3. ahopkins/sanic-jwt ahopkins/sanic-jwt Public

    Authentication, JWT, and permission scoping for Sanic

    Python 246 52

  4. sanic-boom sanic-boom Public

    Component injection and caching, faster routing system and non-global middlewares. Give your Sanic application a Boom!

    Python 8 1

  5. xrtr xrtr Public

    A Radix Tree based router for HTTP and other routing needs with support for middlewares and endpoints with a Cython boost

    Python 15

  6. sanic-org/sanic sanic-org/sanic Public

    Accelerate your web app development | Build fast. Run fast.

    Python 18.6k 1.6k