Skip to content
View SamuelNittala's full-sized avatar

Block or report SamuelNittala

Report abuse

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

Report abuse

Pinned Loading

  1. tic-tac-toe tic-tac-toe Public

    Tic Tac Toe mutiplayer using websockets

    Go

  2. claude-settings-template claude-settings-template Public

    Template for syncing Claude Code settings (agents, skills, hooks) across machines via GitHub

    Shell

  3. type-level palindrome type-level palindrome
    1
    type FirstCharacter<T extends string> = T extends `${infer first}${infer rest}`
    2
     ? first
    3
     : T;
    4
     
    5
    type LastCharacter<T extends string> = T extends `${infer first}${infer rest}`
  4. tinyhttp tinyhttp Public

    HTTP/1.1 server built from raw TCP sockets using only node:net. No Express, no http module - just bytes on a wire.

    TypeScript

  5. zigds zigds Public

    Algorithms and Datastructures written in zig

    Zig