This file contains 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
/* From https://retrocomputing.stackexchange.com/questions/12835/exactly-what-color-was-the-text-on-monochrome-terminals-with-green-on-black-and */ | |
font-size: 30px; | |
color: #f0fff8; /* almost white */ | |
text-shadow: 0 0 3px #80ffc0, 0 0 10px #00ff66, 0 0 20px #00ff66, 0 0 30px #00ff66; |
This file contains 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
### Keybase proof | |
I hereby claim: | |
* I am rwebler on github. | |
* I am rwebler (https://keybase.io/rwebler) on keybase. | |
* I have a public key whose fingerprint is EDA6 1C59 C764 9277 3B32 C0EC F4D3 14F2 96F5 F4CA | |
To claim this, I am signing this object: |
This file contains 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 obj implements arrayaccess { | |
private $container = array(); | |
public function __construct() { | |
$this->container = array( | |
"one" => 1, | |
"two" => 2, | |
"three" => 3, | |
); | |
} |