Search
All the Ways to Make a Web Component
7.9.2020
This is a neat page that compares a ton of different libraries with web components. One of the things I learned after posting “A Bit on Web Components Libraries” is that the web platform APIs were designed for libraries to be built around them. Interesting, right?
This page makes...
How to Simplify SVG Code Using Basic Shapes
3.9.2020
There are different ways to work with icons, but the best solution always includes SVG, whether it’s implemented inline or linked up as an image file. That’s because they’re “drawn” in code, making them flexible, adaptable, and scalable in any context.
But when working with SVG, there’s always...
Chainlink's Nazarov sees two ways for mainstream DeFi adoption
30.8.2020
How do we get DeFi “to cross the chasm?”
Number Scrubbing
29.8.2020
If you use <input type="number">, some browsers give you an input that has UI for incrementing the number, like up/down arrows (often called “spinners”).
That’s a bit helpful sometimes. But people have certainly explored fancier ways of updating that number....
This vs. That
24.8.2020
Here’s a nice site from Phuoc Nguyen, who I’ve noted before has quite a knack for clever sites. This vs. That pits different related concepts against each other as a theme for an article. For example, CSS has display: none;, opacity: 0;, and visibility: hidden; and they all, on...
New Demand for Cryptocurrencies: Trading on Bitcoin Cash KYC-Free Exchange With Blind Escrow
24.8.2020
Governments are injecting record levels of new money into economies to contain the impact of shutdowns. Restrictions imposed on people in countries all over the world have forced many to look for alternative but safe ways of transacting. This is one reason why blind escrow bitcoin cash trading...
To grid or not to grid
20.8.2020
Sarah Higley does accessibility work and finds that “tables and grids are over-represented in accessibility bugs.”
The drum has been banged a million times: don’t use a <table> for layout. But what goes around comes around. What’s the the #1 item in a list...
A Community-Driven Site with Eleventy: Preparing for Contributions
19.8.2020
I’ve recently found myself reaching for Eleventy (aka 11ty) above all other tools when I want to develop a website. It’s hard to beat a static site generator that provides advanced templating opportunities while otherwise getting out of your way and allowing you to just create.
One...
Timer Bars in CSS with Custom Properties
18.8.2020
I was working on a thing the other day that needed a visible timer. There was UI precedent for this type of timer on the project. People didn’t want to see numbers ticking downward; it was more ideal to see a “bar” drain away from full to empty. I mention that because there...
15 Ways to Stay Sane While Trading Crypto
16.8.2020
24/7 markets. Big price swings. Hacks. Trading crypto can be tough on the nervous system. Here, based on interviews with leading traders, are tips for maintaining equilibrium
BitMEX to Mandate ID Verification for All Traders as Maverick Exchange Ends Wild Ways
14.8.2020
The change comes with a six-month “grace period” ending in February
Researchers Claim Crypto Exchange Hacks Happen in Three Ways
9.8.2020
Hacks into crypto exchanges target open-source libraries and take advantage of inside jobs researchers said
Ethereum Developers Discuss Potential Ways to Avoid ETC’s Fate
7.8.2020
After a string of 51% attacks on Ethereum Classic, developers from its core chain rival, Ethereum, discuss ways of avoiding the same fate
3 Ways US Fed Printing Is Fueling Huge Gold, Silver and Bitcoin Rally
5.8.2020
Federal Reserve monetary policy appears to be a primary catalyst for the current rally in gold, silver and Bitcoin
Orchid: Bringing Decentralization to VPNs
5.8.2020
Whenever we browse the web, read news online, or purchase a new pair of glasses from an e-commerce store, we leave traces. These traces sometimes show us content that actually provides us with value, but more often the information we leave is used in concerning ways with scandals like Cambridge...
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...
Interoperable Blockchains May Be the Future of Finance but Have a Ways Yet to Go
3.7.2020
As interoperable blockchain solutions gain traction, many believe that the technology is still relatively nascent and needs more polishing
When Sass and New CSS Features Collide
29.6.2020
Recently, CSS has added a lot of new cool features such as custom properties and new functions. While these things can make our lives a lot easier, they can also end up interacting with preprocessors, like Sass, in funny ways.
So this is going to be a post about the issues I’ve encountered...
Styling Layout Wrappers In CSS
29.6.2020
Two things that strike me often about the web are how many ways there are to go about the same thing and how many considerations go into even the most seemingly simple things.
Working with wrapper elements is definitely on both those lists. Wrappers (or containers or whatever) are so common...
Using Custom Property “Stacks” to Tame the Cascade
22.6.2020
Since the inception of CSS in 1994, the cascade and inheritance have defined how we design on the web. Both are powerful features but, as authors, we’ve had very little control over how they interact. Selector specificity and source order provide some minimal “layering” control...