Skip to content
View gibson042's full-sized avatar

Organizations

@jquery @qunitjs @Agoric
Block or Report

Block or report gibson042

Report abuse

Contact GitHub support about this user’s behavior. Learn more about reporting abuse.

Report abuse

Pinned Loading

  1. canonicaljson-spec canonicaljson-spec Public

    Specification of canonical-form JSON for equivalence comparison.

    Awk 18 9

  2. tc39/proposal-json-parse-with-source tc39/proposal-json-parse-with-source Public

    Proposal for extending JSON.parse to expose input source text.

    HTML 208 9

  3. Focus Search user script Focus Search user script
    1
    // ==UserScript==
    2
    // @name         Focus Search
    3
    // @namespace    https://github.com/gibson042
    4
    // @description  Responds to <{Command,Ctrl}+/> by attempting to find and focus a page's search box.
    5
    // @source       https://gist.github.com/gibson042/c9b3406bc54f55726ec4
  4. highlight.awk - ANSI-format matching... highlight.awk - ANSI-format matching input (e.g. to supplement grep)
    1
    #!/usr/bin/awk -f
    2
    BEGIN {
    3
    	USAGE="Usage: %s rule=<awk ERE pattern>/<ANSI SGR format>[.<extra format>]... [rule=...]...";
    4
    	EXAMPLE="Example: </etc/resolv.conf %s rule='#.*'/dim rule='([0-9]+[.]){3}[0-9]+'/bold.red";
    5
    	CMD=ENVIRON["_"];