Skip to content

Instantly share code, notes, and snippets.

View derpyninja's full-sized avatar

Felix Zaussinger derpyninja

View GitHub Profile
@derpyninja
derpyninja / Dynamic Fixed Effects Panel Data Model.ipynb
Created October 29, 2020 23:14 — forked from spillz/Dynamic Fixed Effects Panel Data Model.ipynb
Demonstrate dynamic panel data estimation using IV in linearmodels
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
@derpyninja
derpyninja / py-gitignore
Created June 18, 2020 12:43 — forked from MOOOWOOO/py-gitignore
python pycharm gitignore
# Created by .ignore support plugin (hsz.mobi)
### Python template
# Byte-compiled / optimized / DLL files
__pycache__/
*.py[cod]
*$py.class
# C extensions
*.so
@derpyninja
derpyninja / git-clearHistory
Created June 1, 2020 10:32 — forked from stephenhardy/git-clearHistory
Steps to clear out the history of a git/github repository
-- Remove the history from
rm -rf .git
-- recreate the repos from the current content only
git init
git add .
git commit -m "Initial commit"
-- push to the github remote repos ensuring you overwrite history
git remote add origin git@github.com:<YOUR ACCOUNT>/<YOUR REPOS>.git