Skip to content
View wulymammoth's full-sized avatar
processing unit
processing unit

Block or report wulymammoth

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.

Maximum 250 characters. Please don't include any personal information such as legal names or email addresses. 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
wulymammoth/README.md

tolle fuga ad astra 🚀 ✨


👋 I'm David -- I mash keys on a weird-lookin' ergo-keeb (Kinesis Advantage 2), a wonky mouse (Evoluent VMDMW), and, at times, produce things of utility.


quick-hitters/about

  • applied computer sci-fi . programming as a pastime . pickleball . sports junkie (NBA, NFL) . hip-hop . perpetual imposter-syndrome
  • programming languages (using/dabbling/dabbled) : Elixir, Erlang, Python, Ruby, Clojure, Rust, Go, JavaScript, TypeScript, Kotlin, Haskell, and cargo-culting Hacker News
  • databases : SQLite, MySQL, PostgeSQL, Cassandra, DynamoDB, Redis, Elasticsearch, Algolia (have worked with all at scale)
  • fast keyboard-centric (mouseless) workflows : Unix utilities and TUIs, Ghostty, Neovim, tmux

technical interests (present)

  • declarative programming with functional and/or reactive programming languages and how they can yield less buggy and more robust systems
  • distributed systems protocols, data-structures, algorithms

Pinned Loading

  1. elastic_price_engine elastic_price_engine Public

    Prototype of a highly concurrent dynamic pricing engine

    Elixir

  2. dotfiles dotfiles Public

    system configs (primarily for macOS)

    Shell 7 1

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

    Advent of Code is an Advent calendar of small programming puzzles for a variety of skill sets and skill levels that can be solved in any programming language you like. People use them as a speed co…

    Python

  4. xandra xandra Public

    Forked from whatyouhide/xandra

    Fast, simple, and robust Cassandra driver for Elixir.

    Elixir

  5. chained/pipeline assertions in elixir chained/pipeline assertions in elixir
    1
    defmodule TestHelper do
    2
      defmacro __using__(_opts) do
    3
        quote do
    4
          import ExUnit.Assertions, only: [assert: 1]
    5
    
                  
  6. nth-Fibonacci (in elixir) : naive an... nth-Fibonacci (in elixir) : naive and TCO (tail-call optimized)
    1
    # naive will not work for larger values of N
    2
    defmodule FibNaive do
    3
      def n(0), do: 0
    4
      def n(1), do: 1
    5
      def n(2), do: 1