| title | author | date | geometry | header-includes | |||
|---|---|---|---|---|---|---|---|
Another MILLION Random Digits |
Aaron Toponce |
2020-05-12 |
margin=2cm |
|
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
| deb http://archive.ubuntu.com/ubuntu/ jammy main restricted universe multiverse | |
| # deb-src http://archive.ubuntu.com/ubuntu/ jammy main restricted universe multiverse | |
| deb http://archive.ubuntu.com/ubuntu/ jammy-updates main restricted universe multiverse | |
| # deb-src http://archive.ubuntu.com/ubuntu/ jammy-updates main restricted universe multiverse | |
| deb http://archive.ubuntu.com/ubuntu/ jammy-security main restricted universe multiverse | |
| # deb-src http://archive.ubuntu.com/ubuntu/ jammy-security main restricted universe multiverse | |
| deb http://archive.ubuntu.com/ubuntu/ jammy-backports main restricted universe multiverse |
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
| #= | |
| This julia script converts fortran 90 code into julia. | |
| It uses naive regex replacements to do as much as possible, | |
| but the output WILL need further cleanup. | |
| Known conversion problems such as GOTO are commented and marked with FIXME | |
| Most variable declaration lines are entirely deleted, which may or | |
| may not be useful. |
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
| brew options ffmpeg | |
| brew install ffmpeg \ | |
| --with-chromaprint \ | |
| --with-fdk-aac \ | |
| --with-fontconfig \ | |
| --with-freetype \ | |
| --with-frei0r \ | |
| --with-game-music-emu \ | |
| --with-libass \ |
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
| 000000 Officially Xerox | |
| 000001 SuperLAN-2U | |
| 000002 BBN (was internal usage only, no longer used) | |
| 000003 XEROX CORPORATION | |
| 000004 XEROX CORPORATION | |
| 000005 XEROX CORPORATION | |
| 000006 XEROX CORPORATION | |
| 000007 XEROX CORPORATION | |
| 000008 XEROX CORPORATION | |
| 000009 powerpipes? |
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
| IP=10.0.1.18 | |
| for f in *; do | |
| echo ">>> Uploading $f <<<" | |
| curl \ | |
| --progress-bar \ | |
| --form "files[]=@$f" \ | |
| http://"$IP"/upload.json \ | |
| | tee -a vlc-ios-upload.log; test ${PIPESTATUS[0]} -eq 0 |
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
| # A wrapper function to capture STDOUT and STDERR into strings. | |
| # | |
| # Heavily inspired by | |
| # https://github.com/JuliaStats/RCall.jl/blob/c1ff136864964cf2ac04b679f0c1b3b243df7e37/src/iface.jl#L35-L46 | |
| # referred to by the issue comment | |
| # https://github.com/JuliaLang/julia/issues/12711#issuecomment-133045787 | |
| # | |
| # The Base.start_reading(stream, cb) requires fixes in Base. | |
| # |
NewerOlder

