View How to patch Ubuntu Lucid (10.04) against OpenSSL Heartbleed
Add this to /etc/apt/sources.list | |
<snip> | |
deb http://security.ubuntu.com/ubuntu precise-security main restricted | |
deb-src http://security.ubuntu.com/ubuntu precise-security main restricted | |
deb http://security.ubuntu.com/ubuntu precise-security universe | |
deb-src http://security.ubuntu.com/ubuntu precise-security universe | |
deb http://security.ubuntu.com/ubuntu precise-security multiverse | |
deb-src http://security.ubuntu.com/ubuntu precise-security multiverse | |
</snip> |
View simple_deamon_example.php
<?php | |
declare(ticks = 1); | |
echo "simple daemon\n"; | |
// tick use required as of PHP 4.3.0 | |
// signal handler function |
View Generate random, valid, RSA ID Number
var dob=800101; | |
var gen=6; | |
var nin = ''+dob + gen + | |
Math.floor(Math.random()*10) + | |
Math.floor(Math.random()*10) + | |
Math.floor(Math.random()*10) + | |
Math.floor(Math.random()*2) + | |
Math.floor(Math.random()*10); | |
var sumEven = 0; | |
var sumOdd = 0; |
View post relay thing
<?php | |
// Simplest possible webhook/post relay thing | |
$forwardTo=[ | |
'http://requestb.in/12qok4y1' | |
]; | |
$post = file_get_contents('php://input'); | |
foreach($forwardTo as $url) { | |
$ch = curl_init(); |
View State.js
var State = (function() { | |
var values = { | |
}; | |
var before = { | |
}; | |
var after = { | |
}; |