Download and install the following applications:
- GitHub Desktop (GIT interface)
- https://desktop.github.com/
- Sign in with GitHub account
- Atom (code editor)
- Gitter (chat client)
| // License: MIT, feel free to use it! | |
| const Intercom = require('intercom-client'); | |
| const appId = 'APP_ID' | |
| const apiKey = 'APP_KEY' | |
| const client = new Intercom.Client(appId, apiKey); | |
| const async = require('async-q') | |
| //REF: https://developers.intercom.com/reference#iterating-over-all-users | |
| //WARNING: you can only have one scroll working at once. you need to wait for that scroll to clear to try again |
Download and install the following applications:
| Terminal commands |
| # If you don't remember the exact path/name, search the log for deleted files | |
| git log --diff-filter=D --summary | grep delete | |
| # Find the file you want to get from the ouput, and use the path | |
| # Find the commits that involved that path | |
| git log --all -- some/path/to/deleted.file | |
| # Bring the file back to life to the current repo (sha commit of parent of commit that deleted) | |
| git checkout shaofthecommitthatdeletedthefile^ -- some/path/to/deleted.file |