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 | |
| class ErrorStack { | |
| private $errorPage; | |
| private $stack; | |
| function __construct($errorPage = 'showErrors.php') { | |
| $this->errorPage = $errorPage; | |
| } | |
| public function add($desc) { |
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
| <html> | |
| <head> | |
| <title>Extreme E-Mail Obfuscation</title> | |
| <style> | |
| .something-else { | |
| font-size: 15pt; | |
| } | |
| </style> | |
| <script> |
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
| import math | |
| import random | |
| class PrimeBuilder: | |
| _p = set() | |
| _maxChecked = 0 | |
| def __init__(self, p = {2, 3, 5}): | |
| self._p = p | |
| self._maxChecked = max(p) |
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
| import std.stdio, core.time; | |
| class msTimer { | |
| TickDuration start; | |
| this() { reset(); } | |
| long split() { return (TickDuration.currSystemTick() - start).msecs(); } | |
| void reset() { start = TickDuration.currSystemTick(); } | |
| } |
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
| import std.stdio, std.random, core.time; | |
| void main() { | |
| int data[32768]; | |
| foreach(ref x; data) | |
| x = uniform(0, 256); | |
| data.sort; |
NewerOlder