- "Programming Problems"
- http://programmingbydoing.com/
- http://faculty.washington.edu/dchinn/how-not-to-code.pdf
- https://github.com/spicyjack/mystrcmp
- http://adriann.github.io/programming_problems.html
- http://users.csc.calpoly.edu/~jdalbey/103/Projects/ProgrammingPractice.html
- http://www.acsl.org/samples.htm
- http://cs.boisestate.edu/~amit/prog-contest/sample-problems.html
- http://people.cs.clemson.edu/~bcdean/dp_practice/ (Flash)
- "Programming Interview Problems"
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
| curl -kL http://install.perlbrew.pl| sed "/\$PERLBREWDOWNLOAD/{N;s|$|sed -i -r '/@INC/ s/([)][}])/ vendorlib vendorarch\\\1/' \\\$LOCALINSTALLER\n|}" | bash |
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
| " =================================================================== | |
| " taglist VIM plugin customization | |
| " =================================================================== | |
| " | |
| " Extend the Perl mappings to do Rexfiles as well (batch, task) | |
| let tlist_perl_settings = 'perl;b:batch;t:task;' | |
| \ . 'c:constant;l:label;' | |
| \ . 'p:package;s:subroutine' |
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
| # API Codex # | |
| ## API Document URLs ## | |
| - _BitBucket_ | |
| - https://developer.atlassian.com/bitbucket/api/2/reference/resource/ | |
| - https://confluence.atlassian.com/bitbucket/use-the-bitbucket-rest-apis-222724129.html | |
| - _GitHub_ | |
| - https://developer.github.com/v3/ | |
| - _GitLab_ | |
| - http://docs.gitlab.com/ce/api/README.html |
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 | |
| while true; | |
| do | |
| read LINE | |
| grep -R "$LINE" /path/to/files | |
| done |
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
| .ob_container {display: none !important;} | |
| .ob_holder {display: none !important;} | |
| .ob_org_header {display: none !important;} | |
| .ob-pixels {display: none !important;} | |
| .ob_strip_container {display: none !important;} | |
| .ob_what {display: none !important;} | |
| .ob-widget {display: none !important;} | |
| .ob-widget-header {display: none !important;} | |
| .ob-widget-section {display: none !important;} | |
| .ob-widget-items-container {display: none !important;} |
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
| From: Hari Kotadia <hari.kotadia@ymail.com> | |
| Envelope Recipient: fuckthisshit@example.com | |
| To: fuckthisshit@example.com | |
| Subject: TRYING to Build Sustainable Planetary FUTURE but with NO FOUNDATION - (UNO/GOVs/ EDUs /IGOs /NGOs /MNCs). | |
| Date: 13 Jun 2017 06:43 (GMT -07:00) | |
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
| " Put plugins and other things (dictionaries) in this dir (also on Windows) | |
| " https://stackoverflow.com/questions/5700389 | |
| " http://vim.wikia.com/wiki/Automatically_create_tmp_or_backup_directories | |
| " https://coderwall.com/p/sdhfug/vim-swap-backup-and-undo-files | |
| let vimDir = '$HOME/.vim' | |
| let &runtimepath.=','.vimDir | |
| " backup: backups are for wimps ;-) | |
| let myBackupDir = expand(vimDir . '/backup') | |
| if isdirectory(myBackupDir) |
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
| define hook-quit | |
| set confirm off | |
| end | |
| target remote :3333 | |
| load | |
| break led_roulette::main | |
| continue |
- Setup for the Rust WASM "Game of Life" demo
cargo install wasm-packcargo install cargo-generatenpmshould already be installed
- Cloning the "Game of Life" demo
cargo generate --git https://github.com/rustwasm/wasm-pack-template- You'll be prompted for the target output directory name
wasm-game-of-life; this will be called$WASM_GOLbelow
- You'll be prompted for the target output directory name
- Set up the wasm-bindgen workflow
cd $WASM_GOL