This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
# Who am I? | |
git config --global user.name "Ian Lee" | |
git config --global user.email "[email protected] | |
# Random Settings | |
git config --global color.ui always | |
git config --global http.sslVerify true | |
git config --global core.excludesfile ~/.gitignore | |
git config --global core.editor vim | |
git config --global push.default simple |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
#! /bin/bash | |
git clone [email protected]:dhs-ncats/pshtt.git && cd pshtt | |
git checkout 00ff246f40acbea185d478d838c7fcd6652b9aa8 | |
git log --pretty=oneline | wc -l | |
# 292 | |
git log --numstat --pretty="%H"| awk 'NF==3 {plus+=$1; minus+=$2} END {printf("+%d, -%d\n", plus, minus)}' | |
# +6944, -5163 |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
#! /bin/bash | |
# Create file | |
echo "Input string to exfiltrate:" | |
read secret | |
echo $secret > secret.txt | |
# Hash file | |
md5sum secret.txt > secret.txt.hash | |
sha1sum secret.txt >> secret.txt.hash |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
{ | |
"agency": "DOE", | |
"measurementType": { | |
"ifOther": "", | |
"method": "other" | |
}, | |
"releases": [ | |
{ | |
"contact": { | |
"URL": "https://github.com/LLNL", |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Show hidden characters
{ | |
"installed_packages": | |
[ | |
"Alignment", | |
"Anaconda", | |
"BracketHighlighter", | |
"CMake", | |
"Djaneiro", | |
"DocBlockr", | |
"Emmet", |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
{ | |
"auto_complete_commit_on_tab": true, | |
"auto_complete_delay": 500, | |
"color_scheme": "Packages/User/Monokai (SL).tmTheme", | |
"ensure_newline_at_eof_on_save": true, | |
"file_exclude_patterns": | |
[ | |
"*.pyc", | |
"*.pyo", | |
"pylint_*.txt", |