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

Block or report munsel

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. JH-blinky-badge JH-blinky-badge Public

    This is an oscillator circuit baked into a logo-shaped PCB.

    4

  2. smue-keyboard smue-keyboard Public

    An ergonomic split-keyboard made with OpenScad and Clojure

    Clojure

  3. turing machine implemented in clojure. turing machine implemented in clojure.
    1
    (defn >>> [[ls l rs]] [(conj ls l) (first rs) (rest rs)])
    2
    (defn <<< [[ls l rs]] [(butlast ls) (last ls) (cons l rs)])
    3
    (defn |-| [[ls l rs]] [ls l rs])
    4
    (defn set-letter [[ls l rs] l'] [ls l' rs])
    5
    
                  
  4. CoronaAppDetector CoronaAppDetector Public

    Forked from kauzu/CoronaAppDetector

    A ESP32-based device, that shows the count of Coronaapps nearby

    C++

  5. Brainfuck Interpreter in GNU Smalltalk Brainfuck Interpreter in GNU Smalltalk
    1
    "$ gst helloworld.st "
    2
    
                  
    3
    Object subclass: Brainfuck  [
    4
        | tape readerIdx code codeIdx running jumpTable |
    5
        
  6. pid-position-control pid-position-control Public

    Arduino Code and Documentation for a PID controller implemented on an Arduino Mega

    TeX