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
| sed -i -e 's/|$//' lineitem.table |
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
| Process: diumoo [3150] | |
| Path: /Applications/diumoo.app/Contents/MacOS/diumoo | |
| Identifier: com.diumoo.diumoo | |
| Version: 1.3 (2240) | |
| Code Type: X86-64 (Native) | |
| Parent Process: launchd [187] | |
| User ID: 501 | |
| Date/Time: 2013-01-28 09:00:49.862 -0800 | |
| OS Version: Mac OS X 10.8.2 (12C60) |
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
| export JAVA_HOME=/System/Library/Frameworks/JavaVM.framework/Versions/1.6.0/Home |
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
| \thispagestyle{empty} | |
| \title{Your Title} | |
| \setcounter{page}{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 is a very large integer so that after being multiplied, it would | |
| // cause integer overflowing | |
| int a = Integer.MAX_VALUE; | |
| int b = 9; | |
| int c = 47; | |
| // modular | |
| int mod = (((a % c) * b) % c); |