Skip to content
View dennisyau1885's full-sized avatar
👾
👾

Block or report dennisyau1885

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

d Hi, I’m @dennisyau1885

Pinned Loading

  1. git git Public

    Forked from git/git

    Colorize 'git status' and git_ps1; grey=untracked, red=unstaged, yellow=staged, green=clean

    C

  2. Convert signalling point code (SPC) ... Convert signalling point code (SPC) between itu 3-8-3, ansi 8-8-8 and decimal
    1
    #!/usr/bin/env bash
    2
    
                  
    3
    # convert to/from ITU 3-8-3 or ANSI 8-8-8 to decimal signalling pointcode
    4
    
                  
    5
    dec2itu() {
  3. monty.py monty.py Public

    WIP: Automating the deploy of a simple python lambda function that returns lines from Monty Python's Spam sketch

    Python

  4. timeis timeis Public

    Experiments with KIND (Kubernetes in Docker)

    Makefile

  5. Bash implementation of OSC52, (on re... Bash implementation of OSC52, (on remote machine) copy stdin or arg1/file to local system clipboard
    1
    #!/usr/bin/env bash
    2
    
                  
    3
    if [[ $# -eq 1 ]]; then
    4
      b64=$(base64 -w 0 "$1") # copy arg1 into clipboard
    5
    else