Skip to content
View taxborn's full-sized avatar
🛠️
Building
🛠️
Building
Block or Report

Block or report taxborn

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

👋 Hi, I'm Braxton! - taxborn.com

I'm a 22-year-old Software Engineer working at Thomson Reuters on their Westlaw product.

Currently working on:

  • :accessibility: Accessibility on the Westlaw project
  • 🌿 taxborn.com, my personal garden
  • ⌨️ HSS, experiments in generating hashes as fast as possible
  • 🥥 Coquito, a hobby programming language
quicksort :: Ord a => [a] -> [a]
quicksort []     = []
quicksort (x:xs) = quicksort smaller ++ [x] ++ quicksort larger
  where
    smaller = [a | a <- xs, a <= x]
    larger  = [a | a <- xs, a > x]

one of my favorite algorithms, expressed in Haskell. it reminds that simple, elegent code can wield so much power.

Pinned Loading

  1. mauth-research-project mauth-research-project Public archive

    Code repository for mAuth

    Python 3 3

  2. scf scf Public

    Student Capacity Forecaster (scf). A student project made during Winter 2022 for Minnesota State University, Mankato to a simulate number of students, courses, and sections through a given course s…

    Python 2

  3. u8read u8read Public

    UTF-8 file reader to emit utf-8 codepoints

    C 2

  4. playfair playfair Public

    A Playfair Cipher implementation in Rust

    Rust 1