Skip to content
View jchevertonwynne's full-sized avatar
🏠
Working from home
🏠
Working from home
Block or Report

Block or report jchevertonwynne

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. advent-of-code-2022 advent-of-code-2022 Public

    back to rust, except i'll use libs where it makes sense

    Rust 3 1

  2. advent-of-code-2021 advent-of-code-2021 Public

    zig solutions to advent of code 2021

    Zig 3 1

  3. unphoneMazeGame unphoneMazeGame Public

    2 player game using WiFi UDP to connect two unPhones.

    C++

  4. backoff-tower backoff-tower Public

    A tower layer to apply a backoff strategy to retried requests

    Rust 1

  5. huffman.rs huffman.rs
    1
    use std::{cmp::Reverse, collections::{BTreeMap, binary_heap}};
    2
    
                  
    3
    use binary_heap::BinaryHeap;
    4
    
                  
    5
    struct BitStream {
  6. lru.zig lru.zig
    1
    const std = @import("std");
    2
    const testing = std.testing;
    3
    
                  
    4
    fn LRU(comptime T: type, comptime U: type, comptime Context: type, comptime f: fn (Context, T) U) type {
    5
        return struct {