Skip to content

Instantly share code, notes, and snippets.

View rwebler's full-sized avatar

Rodrigo Webler rwebler

View GitHub Profile
@rwebler
rwebler / crt.css
Created November 30, 2019 12:38
CRT-like text
/* 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;
### 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:
@rwebler
rwebler / this_as_array
Created January 17, 2013 18:12
Using $this as array
<?php
class obj implements arrayaccess {
private $container = array();
public function __construct() {
$this->container = array(
"one" => 1,
"two" => 2,
"three" => 3,
);
}