Skip to content

Instantly share code, notes, and snippets.

View Stoneshishang's full-sized avatar

StoneSS Stoneshishang

  • Detroit, MI
View GitHub Profile
@Stoneshishang
Stoneshishang / pair_programming_roles
Created November 9, 2021 02:18 — forked from jordanpoulton/pair_programming_roles
Pair Programming Role Definitions - Driver:Navigator
Driver:
-Write the code according to the navigator's specification
-Listen intently to the navigators instructions
-Ask questions wherever there is a lack of clarity
-Offer alternative solutions if you disagree with the navigator
-Where there is disagreement, defer to the navigator. If their idea fails, get to failure quickly and move on
-Make sure code is clean
-Own the computer / keyboard
-Ignore larger issues and focus on the task at hand
-Trust the navigator - ultimately the navigator has the final say in what is written
@Stoneshishang
Stoneshishang / hyper.js
Created March 11, 2021 14:45 — forked from coco-napky/hyper.js
Hyper config for git bash in Windows
module.exports = {
config: {
// default font size in pixels for all tabs
fontSize: 12,
// font family with optional fallbacks
fontFamily: 'Menlo, "DejaVu Sans Mono", Consolas, "Lucida Console", monospace',
// terminal cursor background color and opacity (hex, rgb, hsl, hsv, hwb or cmyk)
cursorColor: 'rgba(248,28,229,0.8)',
# Git branch in prompt.
parse_git_branch() {
git branch 2> /dev/null | sed -e '/^[^*]/d' -e 's/* \(.*\)/ (\1)/'
}
export PS1="\033[32m\u's MBP\[\033[32m\]\w\[\033[33m\]\$(parse_git_branch)\[\033[00m\]$"
export CLICOLOR=1
alias ls='ls -GFh'