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
| #!/usr/bin/env bash | |
| # pomf.se uploader | |
| # requires: curl | |
| dest_url='http://pomf.se/upload.php' | |
| return_url='http://a.pomf.se' | |
| if [[ -n "${1}" ]]; then | |
| file="${1}" | |
| if [ -f "${file}" ]; then |
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 is example code from Chapter 6.7 "Trying the second version" of | |
| // "Software - Principles and Practice using C++" by Bjarne Stroustrup | |
| // | |
| /* | |
| >This file is known as calculator02buggy.cpp | |
| > | |
| >I have inserted 5 errors that should cause this not to compile |
NewerOlder