Skip to content

Instantly share code, notes, and snippets.

View Escapist-007's full-sized avatar
🎯
Focusing

Monir Escapist-007

🎯
Focusing
  • Redmond, WA
  • 00:46 (UTC -07:00)
View GitHub Profile
@Escapist-007
Escapist-007 / understanding-word-vectors.ipynb
Created April 16, 2019 16:58 — forked from aparrish/understanding-word-vectors.ipynb
Understanding word vectors: A tutorial for "Reading and Writing Electronic Text," a class I teach at ITP. (Python 2.7) Code examples released under CC0 https://creativecommons.org/choose/zero/, other text released under CC BY 4.0 https://creativecommons.org/licenses/by/4.0/
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
@Escapist-007
Escapist-007 / git.migrate
Created January 8, 2019 11:01 — forked from niksumeiko/git.migrate
Moving git repository and all its branches, tags to a new remote repository keeping commits history
#!/bin/bash
# Sometimes you need to move your existing git repository
# to a new remote repository (/new remote origin).
# Here are a simple and quick steps that does exactly this.
#
# Let's assume we call "old repo" the repository you wish
# to move, and "new repo" the one you wish to move to.
#
### Step 1. Make sure you have a local copy of all "old repo"
### branches and tags.