Skip to content
View jvon1904's full-sized avatar

Block or report jvon1904

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. log-pretty log-pretty Public

    Provides intuitive methods for outputting ANSI escaped content to the terminal

    Ruby

  2. winft winft Public

    Extends Ruby's Time class for parsing Windows FILETIME formats

    Ruby

  3. stimulus-microwave stimulus-microwave Public

    A functional microwave built using Stimulus.js. Does everything except cook food.

    JavaScript

  4. farkle-game farkle-game Public

    A 1-4 player complete Farkle game built on a frontend Javascript empowered site.

    JavaScript

  5. Ruby, Pretty generate inline JSON Ruby, Pretty generate inline JSON
    1
    # Below is a way to add a JSON module method #pretty_inline to receive a Ruby Hash and generate pretty JSON.
    2
    # This is similar to #pretty_generate only instead of adding indentation and newlines, this 
    3
    # will produce an inline String.
    4
    #
    5
    # Under the hood, the method uses the JSON#generate method which accepts a 2nd optional argument of options.
  6. Ruby - pretty format and copy valid ... Ruby - pretty format and copy valid JSON or Ruby Hash to clipboard or pasteboard.
    1
    # NB: This method utilizes 'pbcopy' which is only available on MacOS.
    2
    #
    3
    # I often find myself in the IRB or Pry console needing to both format a Ruby Hash and copy it to the clipboard.
    4
    # Here is a covenient method that can accomplish both of those tasks
    5
    #