This file contains 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
/* | |
Export Memrise course words to CSV. | |
1. Log into memrise.com | |
2. Navigate to course home page (e.g. http://www.memrise.com/course/335725/comprehensive-german-duolingo-vocabulary/) | |
3. Open Developer Console | |
4. Paste below script and hit enter | |
5. After all urls have been fetched, copy final word list into spreadsheet. |
This file contains 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
echo "install homebrew" | |
ruby -e "$(curl -fsSL https://raw.githubusercontent.com/Homebrew/install/master/install)" | |
brew update | |
echo "install system soft" | |
brew install \ | |
ansible \ | |
midnight-commander \ | |
ssh-copy-id \ | |
sqlite \ |