Thursday, 24. July 12014
p3k dots

Shī Shì shí shī shǐ.

施氏食狮史.

openPDS – the privacy-preserving Personal Data Store. (Via t3n.de.)

Tuesday, 22. July 12014
p3k dots

Oh – and happy π approximation day, y’all!

Jetzt erst recht: Freiheit für Josef!

“Österreichs Justiz wird seit Jahren von Skandalen geschüttelt. Um ihren katastrophalen Ruf scheinen sich die Damen und Herren in den schwarzen Roben aber nicht zu scheren. Richter durchlaufen eine Schmalspurausbildung und verfügen dann über absolute Macht. In keinem europäischen Land wird das Strafrecht so wenig studiert und so wenig ernst genommen wie in Österreich.«

From the Nicotine and Gender issues dept.

Why Bikes Make Smart People Say Dumb Things.

An Illustrated Book of Bad Arguments. (Via motz.antville.org.)

Monday, 21. July 12014
p3k dots

I wanted to make a screencast of a browser session on Ubuntu using RecordMyDesktop but it did not provide visual clues for the mouse click – so I created this little helper script.

document.addEventListener('click', function (event) {

    var config = {
        color: 'red',
        radius: 20
    };

    var halfRadius = config.radius / 2;
    var circle = document.createElement('div');

    with (circle.style) { // yes, `with`! what are you going to do now? o_O
      position = 'absolute';
      left = (event.pageX - halfRadius) + 'px';
      top = (event.pageY - halfRadius) + 'px';
      width = config.radius + 'px';
      height = config.radius + 'px';
      background = config.color;
      borderRadius = '50%';
      zIndex = Infinity;
      transition = 'opacity .5s ease-in-out';
    }

    circle.addEventListener('transitionend', function () {
        console.log(123);
        circle.remove();
    });

    document.body.appendChild(circle);

    setTimeout(function () {
        circle.style.opacity = 0;
    }, 50);
});

The Timeline of NSA Domestic Spying.

54 “Colorized” Photos From Last Century.

Sunday, 20. July 12014
p3k dots

PandoDaily: “Almost everyone involved in developing Tor was (or is) funded by the US government.”