- Wikipedia: Noctis (Web page)
- Noctis - Official site (Web page)
- Proteus - early prototype screenshots (Blog post)
- Gamasutra: The Making of Elite (Video)
- The Brilliance of Dwarf Fortress
- Interview with Tarn Adams (creator of Dwarf Fortress) (Slides) (Video)
This file contains hidden or 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
| #Option 1 - install openblas with homebrew and link to CRAN installed R | |
| brew tap homebrew/science | |
| brew install openblas | |
| ln -sf /usr/local/Cellar/openblas/0.2.12/lib/libopenblas.dylib /Library/Frameworks/R.framework/Resources/lib/libRblas.dylib | |
| #Option 2 - install r with openblas through homebrew | |
| brew tap homebrew/science | |
| brew install r --with-openblas |
This file contains hidden or 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
| https://foia.state.gov/searchapp/DOCUMENTS/HRCEmail_August_Web/IPS-0128/DOC_0C05775316/C05775316.pdf | |
| https://foia.state.gov/searchapp/DOCUMENTS/HRCEmail_August_Web/IPS-0128/DOC_0C05776580/C05776580.pdf | |
| https://foia.state.gov/searchapp/DOCUMENTS/HRCEmail_August_Web/IPS-0128/DOC_0C05776479/C05776479.pdf | |
| https://foia.state.gov/searchapp/DOCUMENTS/HRCEmail_August_Web/IPS-0128/DOC_0C05777242/C05777242.pdf | |
| https://foia.state.gov/searchapp/DOCUMENTS/HRCEmail_August_Web/IPS-0128/DOC_0C05775315/C05775315.pdf | |
| https://foia.state.gov/searchapp/DOCUMENTS/HRCEmail_August_Web/IPS-0128/DOC_0C05776573/C05776573.pdf | |
| https://foia.state.gov/searchapp/DOCUMENTS/HRCEmail_August_Web/IPS-0128/DOC_0C05777196/C05777196.pdf | |
| https://foia.state.gov/searchapp/DOCUMENTS/HRCEmail_August_Web/IPS-0128/DOC_0C05775318/C05775318.pdf | |
| https://foia.state.gov/searchapp/DOCUMENTS/HRCEmail_August_Web/IPS-0128/DOC_0C05776679/C05776679.pdf | |
| https://foia.state.gov/searchapp/DOCUMENTS/HRCEmail_August_Web/IPS-0128/DOC_0C05777256/C05777256.pdf |
This file contains hidden or 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
| #!/bin/sh | |
| if [ -t 0 ]; then | |
| if [ -z "$1" ]; then | |
| echo "usage: tny long_url [custom_keyword]" | |
| echo "" | |
| echo "Shorten URLs with tny.im URL shortener" | |
| echo "This script expects a long URL to shorten either as an argument or passed through STDIN." | |
| echo "When using arguments, an optional second argument can be provided to customize the later part of the short URL (keyword)." | |
| exit 1 | |
| fi |
One can use MD5 or plain text diff to see differences in PDF files. If that's not enough, here's how to use diffpdf which knows how to diff based on appearance or words:
brew install diffpdf- edit your
~/.gitconfigto add this:
[difftool "diffpdf"]
cmd = diffpdf \"$LOCAL\" \"$REMOTE\"