Location via proxy:   [ UP ]  
[Report a bug]   [Manage cookies]                
Skip to content
View EFulmer's full-sized avatar
😄
😄
Block or Report

Block or report EFulmer

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.

Please don't include any personal information such as legal names or email addresses. Maximum 100 characters, 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. wordle-haskell wordle-haskell Public

    playing around with Wordle stuff in Haskell, only several years late

    Haskell 2

  2. dotfiles dotfiles Public

    Dotfiles, plus a Rust program that automatically updates them

    Shell 1

  3. python-emblem python-emblem Public

    GBA-style Fire Emblem game engine in Python

    Python

  4. gogit gogit Public

    git interface in golang, to help learn both

    Go

  5. git-internals-study-session git-internals-study-session Public

    Small demo of Git internals for an internal Farfetch study session

    Jupyter Notebook

  6. decorator to call function's argumen... decorator to call function's arguments in reversed order
    1
    def reverse_args(f):
    2
        def g(*args, **kwargs):
    3
            return g(*reversed(args), **kwargs)
    4
        return g
    5