| Title | Date |
|---|---|
| Freedom of Aim | 2010-09-23 |
| Charuru's Base | 2010-07-11 |
| Lost Garden Example | 2009-05-24 |
| Find Your Base | 2009-04-05 |
| Generator: 4-team CTF by nerd17259 | 2008-07-31 |
| It's a small world after all CTF by nerd17259 | 2008-07-30 |
| Spitfiire's FFA map | 2008-07-23 |
| CTF War by Ratman99 improved version | 2008-07-16 |
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
| function valInRange(val, init, range) { | |
| if ((val <= (init + range)) && (val >= (init - range))) {return 1;} else {return 0;}} | |
| function bzwSelect(instr) { | |
| let builder=[]; | |
| let lines = instr.split("\n"); | |
| let selected=0; | |
| let xorigin=249; |
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
| function fixswap(){ | |
| echo "Setting swappiness to 10" | |
| sudo sysctl vm.swappiness=10 | |
| } | |
| function fixswaps(){ | |
| echo "Setting swappiness to 1" | |
| sudo sysctl vm.swappiness=1 | |
| } |