Skip to content
View agentbellnorm's full-sized avatar
🌇
🌇
Block or Report

Block or report agentbellnorm

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

  1. ray-tracer-challenge ray-tracer-challenge Public

    Implementation of the book "The Ray Tracer Challenge" by Jamis Buck

    Rust 2 1

  2. dativity dativity Public

    data driven, stateless, process engine

    Clojure 195 12

  3. advent-of-code-2021 advent-of-code-2021 Public

    Rust

  4. controller-with-mobx controller-with-mobx Public

    TypeScript 1

  5. advent-of-code-2018 advent-of-code-2018 Public

    Clojure

  6. clojure's swap function in typescrip... clojure's swap function in typescript with proper typing.
    1
    swap<K extends unknown[]>(swapFunction: (state: T, ...args: K) => T, ...args: K): T {
    2
      this.state = swapFunction.apply(null, [this.state, ...args]);
    3
      return this.state;
    4
    }