Skip to content

Instantly share code, notes, and snippets.

View mmcgraw73's full-sized avatar
🫏
the donkey

Michael McGraw mmcgraw73

🫏
the donkey
View GitHub Profile
@mmcgraw73
mmcgraw73 / git_command_ref.sh
Created September 1, 2020 23:43
A Git Command Reference - Often Used, Sometimes Forgotten
# diff - only file names
git diff --names-only
# commit --merge
# if you want to overwrite your local copy of file1.ext and file2.ext with versions from another branch
git commit --merge origin/branch path/to/wanted/file1.ext path/to/wanted/file2.ext
@mmcgraw73
mmcgraw73 / baseDetail.png
Last active May 20, 2020 13:19
How will the data for the BaseDetail component data be stored/delivered to frontend?
baseDetail.png
@mmcgraw73
mmcgraw73 / missing_response_data.md
Last active March 26, 2020 15:48
STPR Missing Response Data
View Mode: Children/Hierarchy Missing Data View Mode: Technicians/ Service-Provider Missing Data Component: Response Breakdown Percentage Bars Missing Data Component: NPS Gauge Missing Data
Region Technicians Total Responses
Reference Total Percentage
District Current for Promoters
[
{
"id":1,
"first_name":"Celene",
"last_name":"Grigoryev",
"email":"cgrigoryev0@buzzfeed.com",
"gender":"Female",
"ip_address":"244.253.126.178"
},
{
@mmcgraw73
mmcgraw73 / .DS_Store
Last active June 14, 2019 18:50
Environment / Location Picker Views + Functionality Overview
@mmcgraw73
mmcgraw73 / grep.md
Last active April 10, 2019 13:12 — forked from isyufu/grep.sh
grep cheat sheet

GENERAL

print lines begining with range of letters

grep ^[A-D] table.txt

REGEX

search for word which has any single character followed by ello

grep ".ello" demo.txt

OR, all the below examples produce the same results