Skip to content

Instantly share code, notes, and snippets.

View dragonforce2010's full-sized avatar

Michael dragonforce2010

  • Fremont
View GitHub Profile

1. Clone your fork:

git clone [email protected]:YOUR-USERNAME/YOUR-FORKED-REPO.git

2. Add remote from original repository in your forked repository:

cd into/cloned/fork-repo
git remote add upstream git://github.com/ORIGINAL-DEV-USERNAME/REPO-YOU-FORKED-FROM.git
git fetch upstream
@dragonforce2010
dragonforce2010 / labels_1024.tsv
Created March 11, 2017 22:24 — forked from teamdandelion/labels_1024.tsv
TensorBoard: TF Dev Summit Tutorial
We can make this file beautiful and searchable if this error is corrected: No tabs found in this TSV file in line 0.
7
2
1
0
4
1
4
9
5
9
@dragonforce2010
dragonforce2010 / remove-python27-osx-via-pythonorg-installer-dmg.md
Created November 26, 2016 19:27 — forked from sr75/remove-python27-osx-via-pythonorg-installer-dmg.md
remove python 2.7 on mac osx if installed via python.org installer .dmg
# sudo rm -rf /Library/Frameworks/Python.framework
sudo rm -rf /Library/Frameworks/Python.framework/Versions/2.7
sudo rm -rf "/Applications/Python 2.7"
cd /usr/local/bin && \
sudo ls -l /usr/local/bin | grep '../Library/Frameworks/Python.framework/Versions/2.7' | awk '{print $9}' | xargs rm
@dragonforce2010
dragonforce2010 / 0_reuse_code.js
Created March 4, 2016 20:10
Here are some things you can do with Gists in GistBox.
// Use Gists to store code you would like to remember later on
console.log(window); // log the "window" object to the console