Skip to content
View jarrodldavis's full-sized avatar
🏠
Working from home
🏠
Working from home

Sponsoring

@zkat
@postspectacular
@benjie
@eslint
Block or Report

Block or report jarrodldavis

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. dotfiles dotfiles Public

    An installer script for Homebrew, other system dependencies, and important dotfiles

    Shell 5

  2. jarrodldavis.com jarrodldavis.com Public

    My personal website, currently hosting my resume

    Ruby

  3. Nanoc `sassc` filter Nanoc `sassc` filter
    1
    > A [Nanoc](https://nanoc.ws) [filter](https://nanoc.ws/doc/filters/#writing-filters) for compiling Sass stylesheets with the [`sassc`](https://github.com/sass/sassc-ruby) gem.
  4. A Swift property wrapper for encodin... A Swift property wrapper for encoding and decoding `RawRepresentable` enums as their raw values in `Dictionary` instances as keys
    1
    @propertyWrapper
    2
    struct RawKeyedCodableDictionary<Key, Value>: Codable where Key: Hashable & RawRepresentable, Key.RawValue: Codable & Hashable, Value: Codable {
    3
        var wrappedValue: [Key: Value]
    4
    
    
    5
        init() {