[go: up one dir, main page]

Skip to content
View jfreehill's full-sized avatar

Block or report jfreehill

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 Loading

  1. portfolio portfolio Public

    Personal Site Code

    CSS

  2. Reduce Examples Reduce Examples
    1
    // Whitelist an object
    2
    function whitelist(obj, keyList) {
    3
      return keyList.reduce((acc, key) => {
    4
        if (Object.keys(obj).indexOf(key) > -1) {
    5
          acc[key] = obj[key];
  3. Akro Akro Public

    A simplified, mobile-focused remake of a 90's classic, Acrophobia.

    JavaScript 1

  4. akro-vue akro-vue Public

    VueJS conversion of a small Angular site I made based on "Acrophobia"

    JavaScript

  5. Drop all git stashes 10 and up Drop all git stashes 10 and up
    1
    # Drop old stashes, starting in double digits
    2
    git stash list | grep -o 'stash@{[1-9][0-9]\+}' | sort -r | xargs -n 1 git stash drop
    3
    # 1. list stashes
    4
    # 2. filter all with 2 or more digits and show only found text (-o)
    5
    # 3. reverse sort to drop from highest number (may have issues once over 99)