1 | let result; |
Can be reduced to
1 | const fooByIsBarIsBaz = {}; |
1 | console.log(fooByIsBarIsBaz); // { false: { false: "foo falsefalse", true: "foo falsetrue" ... |
A blog about software and making.
1 | let result; |
Can be reduced to
1 | const fooByIsBarIsBaz = {}; |
1 | console.log(fooByIsBarIsBaz); // { false: { false: "foo falsefalse", true: "foo falsetrue" ... |
Amazing post about how CPU and memory architecture has changed over the years.
using predictable memory access patterns and operating on chunks of data that are smaller than your CPU cache will get you most of the benefit of modern caches.
A heap-based implementation of a min priority queue. I’m not sure why C# doesn’t have priority queues as part of the language.
I took a crack at creating dashboards using Facebook’s React & Flux libraries.