Search
CoinDesk’s Twitter Hack Proved the Media Can’t Rely on Web 2.0
24.7.2020
Last week's Twitter hack, which downed a key CoinDesk channel for seven days, showed how news groups are overly dependent on social media
Income Inequality: Can Bitcoin or Other Cryptocurrencies Fix This?
24.7.2020
Despite the benefits of crypto being in the hands of the few, the current crisis may be a harbinger of change
A New Crypto Derivative Can Help Stabilize Dai's Unpredictable Interest Rates
24.7.2020
A derivatives exchange wants to offer its users a way to hedge against and speculate on the changes of Dai’s Savings Rate
A Font-Like SVG Icon System for Vue
24.7.2020
Managing a custom collection of icons in a Vue app can be challenging at times. An icon font is easy to use, but for customization, you have to rely on third-party font generators, and merge conflicts can be painful to resolve since fonts are binary files.
Using SVG files instead can eliminate...
Holy Albatross with Widths
24.7.2020
Heydon’s Holy Albatross is a technique to have a row of elements break into a column of elements at a specific width. A specified parent width, not a screen width like a media query would have. So, like a container query (ya know, those things that don’t exist yet that we...
Bitcoin Price Can Hit $20K When US Banks Invest 1% of Assets — Analyst
24.7.2020
The increasing institutional interest in Bitcoin is “not hard to see” as U.S. regulators green light custody this week
WordPress.com Growth Summit
23.7.2020
I’m speaking at The Official WordPress.com Growth Summit coming up in August. “Learn how to build and grow your site, from start to scale”, as they say. Lovely, thick, diverse set of speakers. It’s a little bit outside my normal spheres which makes...
Accordion Rows in CSS Grid
23.7.2020
I’d bet grid-template-columns is used about 10× more than grid-template-rows, but maybe everyone has just been missing out. Eric Meyer chucks a bunch of row lines onto his main site layout grid like this:
grid-template-rows: repeat(7, min-content) 1fr repeat(3, min-content);
That way, if...
Vue 3.0 has entered Release Candidate stage!
23.7.2020
Vue is in the process of a complete overhaul that rebuilds the popular JavaScript framework from the ground up. This has been going on the last couple of years and, at long last, the API and implementation of Vue 3 core are now stabilize. This is exciting for a number of reasons:
Vue 3 promises...
CMD+Z for Git is Here
23.7.2020
Version control with Git has become a “commodity” by now: virtually every software project today uses Git, and virtually every developer knows Git to some extent. This explains why I sometimes hear the following question when I talk about what I do for a living: “A desktop client...
US Regulator Green-Lights Banks for Cryptocurrency Custody Services
23.7.2020
The Office of the Comptroller of the Currency (OCC) has clarified that national banks and federal savings associations can provide cryptocurrency custody services for customers. The OCC sees banks providing crypto custody services as “a modern form of traditional bank activities related...
Position Vertical Scrollbars on Opposite Side with CSS
23.7.2020
Fair warning: I can’t say I recommend this in general because it breaks a very strong expectation of where scrollbars are, which are useful for a lots of folks, not to mention, a core accessibility feature for many.
But it is a fascinating CSS trick and the web is a big place with...
WordPress-Powered Landing Pages on a Totally Different Site via Cloudflare Workers
22.7.2020
What if you have some content on one site and want to display that content on another site? We can do this in the browser no problem. We can fetch it, and plunk it onto the page.
Ajax, right? Ugh. Now we’re in client-side rendered site territory, which isn’t great for performance...
Can Compliance and AML Software Improve Cryptocurrency Business Sustainability?
22.7.2020
Cryptocurrency businesses are facing increasing challenges as new regulations are introduced globally, which is changing the face of the industry and forcing companies to search for effective solutions
Banks in US Can Now Offer Crypto Custody Services, Regulator Says
22.7.2020
U.S. regulators have cleared the way for national banks to provide cryptocurrency custody services on behalf of customers
Pausing a GIF with details/summary
22.7.2020
Steve Faulkner has a clever idea here. You can show an (animated) GIF and overlay a pause/play button on top of it — which is really a <details>/<summary> element. When toggled, a (non-animated) JPG inside covers the GIF, effectively “pausing” it.
Adrian Roselli calls...
Reactive jQuery for Spaghetti-fied Legacy Codebases (or When You Can’t Have Nice Things)
22.7.2020
I can hear you crying out now: “Why on Earth would you want to use jQuery when there are much better tools available? Madness! What sort of maniac are you?” These are reasonable questions, and I’ll answer them with a little bit of context.
In my current job, I am responsible for the care...
Here’s How to Check If a Bitcoin Address Is a Scam
22.7.2020
With the rapid rise in the number of bitcoin scams, there are easy ways to check if a bitcoin address has been reported as being used by scammers, such as in fake bitcoin giveaways. You can also easily report any bitcoin address associated with a scam. Check the ‘Bitcoin Abuse’ Database...
What ya need there is a bit of templating
22.7.2020
I had a fella write in to me the other day. He had some HTML, CSS, and JavaScript, and it just wasn’t behaving like he thought it ought to. The HTML had some placeholders in it and the JavaScript had some data in it, and the assumption was that the data would fill the placeholders.
To those...
Using Flexbox and text ellipsis together
22.7.2020
You can truncate a single line of text with an ellipsis (…) fairly easily with text-overflow and a few friends. But, as you might expect, that truncation happens at the end of the line of text. What if you want to truncate content in the middle?
Leonardo Faria details good use cases for this...