Skip to content
View sqrtM's full-sized avatar
sleepy
sleepy
  • ile-de-france

Highlights

  • Pro
Block or Report

Block or report sqrtM

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

former jazz musician, former philosophy student, former youth orchestra conductor, former school administrator, former preacher, former junior researcher, former teacher and teacher trainer, former child, former pedagogical coordinator, currently on the computer.

lots of php, typescript, and all the other web stuff at the day job. lots of rust and java for my own stuff. sometimes some C to get stuff running on weird operating systems like the PSVita. sometimes some livecoding with pattern languages, like tidalcycles and hydra.

just having fun

Pinned

  1. MkIIStepSequencer MkIIStepSequencer Public

    Step Sequencer functionality for the Arturia MkII.

    Java

  2. yabge yabge Public

    yet another bad gameboy emulator...

    Rust

  3. blog blog Public

    basically a something awful clone...🧅

    Rust

  4. serde arrays of arbitrary size serde arrays of arbitrary size
    1
    /// works for any T where T implements copy and default. 
    2
    mod array_serde {
    3
        use serde::{Deserialize, Deserializer, Serialize, Serializer};
    4
    
                  
    5
        pub fn serialize<S, T: Serialize>(array: &[T], serializer: S) -> Result<S::Ok, S::Error>