#Mac OS X
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
| #!upstart | |
| description "appname" | |
| author "authorname" | |
| start on (local-filesystems and net-device-up IFACE=eth0) | |
| stop on shutdown | |
| respawn # restart when job dies | |
| respawn limit 5 60 # give up after 5 respawns in 60 seconds |
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
| <?php | |
| $ceiling = 600851475143; | |
| $factor = -1; | |
| for ($i = 1; $i < sqrt($ceiling); $i += 2) { | |
| $factor = getLargestFactor($i); | |
| if ($factor == 1) { | |
| primeList($i); | |
| } | |
| } | |
NewerOlder