Skip to content
View jhigdon's full-sized avatar
🦝
trash panda coding
🦝
trash panda coding
Block or Report

Block or report jhigdon

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

Hello fellow earthling,

I am here to write code and collaborate. Currently finding myself in a new quest to open source more of what I develop in my personal time!

Fun facts (yes very fun)

  • Not beholden to any particular programming language or framework
  • Has both vim and emacs fu
  • Constructed an atreus keyboard...(don't use it lol)
  • Try my best to keep fit

Pinned

  1. jhigdon.github.io jhigdon.github.io Public

    no idea, maybe magics

  2. go makefile go makefile
    1
    build:
    2
            rm -f ./build/protonpack && go build -o build/ ./cmd/protonpack
    3
    
                  
    4
    CMDPATHS := $(patsubst %/, %, $(dir ./cmd/*/))
    5
    buildall:
  3. paren-encode-thing.hs paren-encode-thing.hs
    1
    thing l = map (\x -> if (count x lower) > 1 then ')' else '(' ) lower 
    2
      where lower = map toLower l
    3
            count n = length . filter (==n)
    4
    
                  
    5