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

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.

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

tolle fuga ad astra 🚀 ✨


👋 I'm David -- I mash keys on a spaceship-lookin' keyboard (Kinesis Advantage 2), a wonky mouse (Evoluent VMDMW), and sometimes produce things of utility


quick-hitters/about

  • applied computer science . programming is a pastime . sports fanatic (NBA, NFL) . hip-hop . fueled by imposter-syndrome 😬
  • programming languages (using/dabbling/dabbled) : Solidity, PureScript, Elixir, Erlang, Python, Ruby, Clojure, Rust, Go, JavaScript, Kotlin, Haskell, and many more
  • fast keyboard-centric (mouseless) workflows : Unix utilities, Alacritty (terminal), NeoVim/Vim, fzf, ripgrep, tmux

technical interests (present)

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

Pinned

  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 5 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