Search
Marty Bent on the Macro Fires on the Horizon
26.12.2019
From a trade war tweeting president to protests in Hong Kong, 2019 saw global instability (and in turn, the raison d’etre for bitcoin) increase
US Congressman Wants to Outlaw Crypto, Cryptoverse Fires Back
10.5.2019
Brad Sherman. Source: Twitter/@BradSherman
US Congress Representative Brad Sherman once again making waves in the crypto world - he called for a bill yesterday which would “outlaw cryptocurrency purchases by Americans so that we nip this in the bud.”
In a just 1:11-minute-long clip circulating...
Understanding Event Emitters
26.3.2019
Consider, a DOM Event:
const button = document.querySelector("button");
button.addEventListener("click", (event) => /* do something with the event */)
We added a listener to a button click. We’ve subscribed to an event being emitted and we fire a callback when it does. Every time we click that...
Capture and Report JavaScript Errors with window.onerror
28.5.2018
onerror is a special browser event that fires whenever an uncaught