drc0 | 7 years ago | on: The Acid3 Test (2008)
drc0's comments
drc0 | 7 years ago | on: Good sleep, good learning, good life (2012)
drc0 | 7 years ago | on: Internet Archive, decentralized
drc0 | 7 years ago | on: Ask HN: Has anyone experienced workplace training that made a difference?
drc0 | 7 years ago | on: Google warns Android might not remain free because of EU decision
drc0 | 7 years ago | on: Open source, privacy-enabled smartphone operating systems
drc0 | 7 years ago | on: Open source, privacy-enabled smartphone operating systems
drc0 | 7 years ago | on: Docker Considered Harmful (2016)
drc0 | 8 years ago | on: What Thunderbird Learned at FOSDEM
drc0 | 8 years ago | on: Cooling the Earth with a cloud of small spacecraft near the inner Lagrange point
drc0 | 8 years ago | on: Where Do Type Systems Come From?
mh, given Curry–Howard correspondence, aren't those the same? so the goal is indeed not having logical contradictions?
drc0 | 8 years ago | on: Image Correction for Color Blindness
but I can see the different colours here http://www.vischeck.com/images/oranges_small.jpg ?
drc0 | 8 years ago | on: Java Platform Module System: Public Review Reconsideration Ballot
drc0 | 8 years ago | on: Little Alchemy
function combRep(arr, l) {
if (l === void 0) l = arr.length; // Length of the combinations
var data = Array(l), // Used to store state
results = [
]; // Array of results
(function f(pos, start) { // Recursive function
if (pos === l) { // End reached
results.push(data.slice()); // Add a copy of data to results
return;
}
for (var i = start; i < arr.length; ++i) {
data[pos] = arr[i]; // Update data
f(pos + 1, i); // Call f recursively
}
}) (0, 0); // Start at index 0
return results; // Return results
}
var parents = [];
for(b in bases.base) {
if (bases.base[b].parents != undefined) {
for (p of bases.base[b].parents) {
parents[p.sort().join('-')] = b;
}
}
}
function gethints() {
combinations = combRep([1, 2, 3, 4].concat(game.progress), 2);
for (c of combinations) {
let idx = c.sort().join('-');
if (parents[idx] != undefined && game.progress.find((e, i, a) => parents[idx] == e) == undefined) {
console.log(bases.names[c[0]], bases.names[c[1]]);
}
}
}drc0 | 8 years ago | on: Ways to Read More Books
drc0 | 9 years ago | on: “Users will only be able to view patents via HTTP. HTTPS will no longer work”
drc0 | 9 years ago | on: Box Breathing
How is that thing even possible? your body would work in an entirely different manner!
drc0 | 9 years ago | on: Google Recalls Staff to U.S. After Trump Immigration Order
drc0 | 9 years ago | on: 1 in 68 children on autism spectrum, says US CDC
[0] https://www.cdc.gov/ncbddd/autism/images/addmnetworkprevalen...