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_OPTIONS='-Dawt.useSystemAAFontSettings=lcd' |
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 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
| " | |
| " VIM && GVIM config | |
| " | |
| " setting up Plug | |
| set nocompatible | |
| filetype off | |
| if empty(glob("~/.vim/autoload/plug.vim")) | |
| " Ensure all needed directories exist (Thanks @kapadiamush) |
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 DO_TIMING 1 | |
| #if DO_TIMING | |
| #define TIME(label, statement) \ | |
| do { \ | |
| struct timeval tvs, tve; \ | |
| gettimeofday(&tvs, NULL); \ | |
| do { statement; } while(0); \ | |
| gettimeofday(&tve, NULL); \ | |
| double tvsd = (double)tvs.tv_sec + (double)tvs.tv_usec/1000000; \ | |
| double tved = (double)tve.tv_sec + (double)tve.tv_usec/1000000; \ |