Skip to content
View danthedaniel's full-sized avatar
👨‍💻
⠠⠵
👨‍💻
⠠⠵

Sponsoring

@Deimos
Block or Report

Block or report danthedaniel

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
danthedaniel/README.md

Top Langs

Pinned

  1. BF-JIT BF-JIT Public

    BrainFuck just-in-time compiler

    Rust 24 2

  2. js-shaders js-shaders Public

    CPU rendered ASCII art shader writing tool with hot reloading.

    JavaScript 42

  3. gameoflife-rs gameoflife-rs Public

    A toy game of life OpenGL program

    Rust 1

  4. binimage binimage Public

    Create an image from the binary data of a file

    Rust 51 1

  5. shadron shadron Public

    Random shaders I come up with while messing around in Shadron

    GLSL 8 1

  6. busy-beaver-compiler.ts busy-beaver-compiler.ts
    1
    const stateLabels = ["A", "B", "C", "D", "E", "F", "G"] as const;
    2
    type StateLabel = typeof stateLabels[number];
    3
    
                  
    4
    type Direction = "left" | "right";
    5