No password, any old string will do.
Every Intel machine sold in the last ten years is vulnerable to attack via Intel’s secret supervisor mode.
Every Intel machine sold in the last ten years is vulnerable to attack via Intel’s secret supervisor mode. Fucking idiots.
Originally shared by mathew murphy
Well, that was obviously going to happen.
Tracking Form Completion in Google Analytics With Redux
Happy anniversary

Happy anniversary
Somehow I didn’t know that you can use bind as a built in way to do partial function application in JavaScript.
Somehow I didn’t know that you can use bind as a built in way to do partial function application in JavaScript.
var add = function (a, b) {
return a + b;
};
var add5 = add.bind(null, 5);
add5(10) === 15;
The first arg is commonly used to bind the function “this” variable. What I didn’t realise was that subsequent args get prepended as arguments to the bound function.
Lmao.

Originally shared by nixCraft
Lmao.
Learning about RxJS by implementing it from scratch.
Learning about RxJS by implementing it from scratch.
Progressive web apps. Too bad they don’t work half as well on an iPhone.
Progressive web apps. Too bad they don’t work half as well on an iPhone.
Speaking globally however, they are already serving hundreds of millions of people.
Princeton’s Ad-Blocking Superweapon May Put an End to the Ad-Blocking Arms Race
async / await have been part of Python since 3.5.
async / await have been part of Python since 3.5.
Too bad nobody uses them.