Skip to content
View tavisrudd's full-sized avatar

Sponsoring

@wez

Organizations

@van-clj @BirdseyeSoftware

Block or report tavisrudd

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 supported. This note will be visible to only you.
Report abuse

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

Report abuse

Pinned Loading

  1. ssh-agent-guard ssh-agent-guard Public

    Access control, policy enforcement, and audit logging for SSH agent sockets

    Go 6

  2. iidy iidy Public

    CloudFormation deployment tool with real-time event streaming, changeset workflow, template approval, and YAML preprocessing. (Rust version)

    Rust

  3. throw_out_your_templates throw_out_your_templates Public

    This module is a rant (with code) encouraging Python developers to consider using pure Python for HTML generation rather than always using template languages. Read the module docstring for the rest…

    Python 25 2

  4. Lazy, infinite recursive sequences i... Lazy, infinite recursive sequences in Bash (like in Haskell, if you squint). The result is ugly but interesting.
    1
    Lazy, infinite recursive sequences in Bash (like in Haskell, if you squint).
    2
    
                  
    3
    I was inspired by the beautiful Haskell zipWith implementation of the Fibonacci sequence `fibs = 0 : 1 : zipWith (+) fibs (tail fibs)`
    4
    to find an equivalent in bash using 'coroutines' and recursive pipes.
    5