Skip to content

Instantly share code, notes, and snippets.

View cillierburger's full-sized avatar

Cillier Burger cillierburger

  • ottonova
  • München, Deutschland
View GitHub Profile
@cillierburger
cillierburger / How to patch Ubuntu Lucid (10.04) against OpenSSL Heartbleed
Created April 8, 2014 11:23
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>
<?php
declare(ticks = 1);
echo "simple daemon\n";
// tick use required as of PHP 4.3.0
// signal handler function
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;
<?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();
@cillierburger
cillierburger / State.js
Last active April 29, 2016 09:48
State.js - hold values and call named functions on state change
var State = (function() {
var values = {
};
var before = {
};
var after = {
};