Search
Blockchain Bites: Bitcoin Whales Throwing Their Weight Around, Virgil Griffith’s Rights
11.12.2020
There are more bitcoin "whales" than ever, and new data shows how they drive market movements
Web Technologies and Syntax
24.9.2020
JavaScript has a (newish) feature called optional chaining. Say I have code like:
const name = Data.person.name;
If person happens to not exist on Data, I’m going to get a hard, show-stopping error. With optional chaining, I can write:
const name = Data.person?.name;
Now if person...
Drupal to Jamstack
21.4.2020
I’ve been harping for a while that Jamstack doesn’t necessarily mean throwing away your old CMS. In fact, I’d argue that Jamstack is at it’s most powerful when paired with a system that you already know, are comfortable with, and perhaps even like. You’d call that...
The Crypto Companies Reinventing the Wallet
15.11.2019
You wouldn’t think there was much to improve about cryptocurrency wallets. Save for a few UX improvements here and there, what’s to reinvent? A surprising amount, it turns out. This year has seen a resurgence in wallet investment and innovation, with VCs throwing funds at startups...
Andrew Yang’s ‘Freedom Dividend’ Is Not Only Unnecessary, It’s Unethical
2.11.2019
Andrew Yang has taken to Twitter in dynamic fashion as of late, advertising his universal basic income (UBI) proposal known as the “Freedom Dividend.” While throwing money at people out of pocket always generates a buzz, there’s a mathematically and ethically broken side to...
Using the Platform
29.10.2019
Tim Kadlec:
So much care and planning has gone into creating the web platform, to ensure that even as new features are added, they’re added in a way that doesn’t break the web for anyone using an older device or browser. Can you say the same for any framework out there? I don’t mean that to...
JavaScript Proxy with Storage
26.7.2019
The JavaScript Proxy API provides a wealth of “magic” within JavaScript, allowing you to use any object as sort of an alias that allows a wall of validation, formatting, and error throwing. Did you know that you could also employ the Proxy API as an abstraction to different types...