Tuesday, 22. July 12014
p3k dots

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.”

Thursday, 17. July 12014
p3k dots

The Architecture of Open Source Applications.

Hey, Taxi!

Civic Hacking should be a thing here, too.

This would be a neat project for Austria and Germany, too: NZZ Swiss Maps (Via policyviz.com.)

Wednesday, 16. July 12014
p3k dots

Sandro Giordano: __IN EXTREMIS (bodies with no regret). Via stickydo.com.