Search
Leading-Trim: The Future of Digital Typesetting
21.8.2020
leading-trim is a suggested new CSS property that lets us remove the extra spacing in every font so that we can more predictably style text. Ethan Wang has written about it — including how Microsoft has advocated for it — and that it’s now part of the Inline Layout Module Level 3 spec.
You’d use...
Report: Bitcoin Untied from the Economic Cycle, ‘Largely Uncorrelated to Other Asset Classes’
19.8.2020
On Tuesday, Coinshares Investment strategist James Butterfill published a report which shows that bitcoin is a unique asset, but is “largely uncorrelated to other asset classes” like commodities and traditional stocks. Coinshares Investment strategist James Butterfill published a...
Practical Use Cases for JavaScript’s closest() Method
12.8.2020
Have you ever had the problem of finding the parent of a DOM node in JavaScript, but aren’t sure how many levels you have to traverse up to get to it? Let’s look at this HTML for instance:
<div data-id="123"<buttonClick me</button</div
That’s pretty straightforward, right? Say...
New York Regulator Fast-Tracks 10 Cryptocurrencies
8.8.2020
The New York State Department of Financial Services has created a Greenlist of pre-approved cryptocurrencies for custody service and listing. Meanwhile, crypto-friendly SEC Commissioner Hester Peirce, also known as Crypto Mom, has been confirmed for another term at the commission....
More Control Over CSS Borders With background-image
7.8.2020
You can make a typical CSS border dashed or dotted. For example:
.box {
border: 1px dashed black;
border: 3px dotted red;
}
You don’t have all that much control over how big or long the dashes or gaps are. And you certainly can’t give the dashes slants, fading, or animation!...
What does 100% mean in CSS?
7.8.2020
When using percentage values in CSS like this…
.element {
margin-top: 40%;
}
…what does that % value mean here? What is it a percentage of? There’ve been so many times when I’ll be using percentages and something weird happens. I typically shrug, change the value to something else...
Single Miner Reorgs Ethereum Classic – Devs Report a Chain Split
1.8.2020
Members of the Ethereum Classic team reported that the network suffered a reorganization (reorg) today. The blockchain network is asking service providers to halt deposits while it carries out maintenance of the chain. The latest event follows a similar attack in January 2019, which led to some...
SVG Title vs. HTML Title Attribute
30.7.2020
You know the title attribute? I can do this:
<div title="The Title"I'm a div with a `title`
</div
And now if I’m on a device with a mouse pointer and hover the cursor over that element, I get…
Which, uh, I guess is something. I sometimes use it for things like putting...
5 Years In, Ethereum Network Growth Echoes Nvidia’s Pre-2016 Bull Run
30.7.2020
The Ethereum network appears to be following the likes of Nvidia and other tech sector giants whose use case and growth strategy model evolved over time
Getting the Most Out of Variable Fonts on Google Fonts
30.7.2020
I have spent the past several years working (alongside a bunch of super talented people) on a font family called Recursive Sans & Mono, and it just launched officially on Google Fonts!
Wanna try it out super fast? Here’s the embed code to use the full Recursive variable font family from Google...
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...
Ethereum Whales Send Exchanges $182M in ‘Likely Pre-Pump Positioning’
23.7.2020
Volatility is firmly on the radar as non-exchange balances suddenly decline by 700,000 ETH within just three days and resistance topples
How Bitcoin Allows Cloudbet to Offer the Fairest Odds in Soccer
20.7.2020
One crypto sportsbook is using the English Premier League’s return to demonstrate how blockchain technology helps it to offer customers fairer prices to maximise their winnings. Cloudbet, the pioneering bitcoin operator, recently announced that for each remaining game in the EPL season, it would...
Report Shows Bitcoin’s Covid-19 Recovery Stronger Than Other Markets With Zero Intervention
17.7.2020
The response to the Covid-19 pandemic has been ruthless on the global economy and during the last six months, traditional stocks and commodities have felt extreme market volatility. Coinshares published a comprehensive report this week in regard to how bitcoin performed during the coronavirus...
Backdrop Filter effect with CSS
16.7.2020
I love these little posts where some tricky-looking design is solved by a single line of CSS using a little-known property. In this case, the design is a frosted glass effect and the CSS property is backdrop-filter.
The approach? Easy peasy:
.container {
backdrop-filter: blur(10px);
}
The...
Bitcoin 90-Day Active Supply Soars to Pre-2017 Bull Run Level: Report
3.7.2020
An on-chain metric which has been declining since 2017 is now signaling a bullish trend, analysts from Stack Funds say
Responsive Styling Using Attribute Selectors
30.6.2020
One of the challenges we face when implementing class-based atomic styling is that it often depends on a specific breakpoint for context.
<div class="span-12"</div<!-- we want this for small screens --<div class="span-6"</div<!-- we want this for medium screens --<div...
Hide Scrollbars During an Animation
24.6.2020
CSS still can’t animate to auto dimensions.
.dropdown {
transition: 0.2s;
height: 0;
}
.dropdown.open {
/* the height will change, but it won't animate. */
height: auto;
}
There is JavaScript trickery you can try. Brandon Smith outlined several techniques here a little while back....
Bitcoin ‘Realized Cap’ Hits New High Similar to Pre-March $3K Crash
19.6.2020
The realized cap of Bitcoin hit an all-time high just like in February 2020 when BTC price marked a local top
LingoJam
17.6.2020
I’ll sometimes search the web for something like “Small Text Generator” knowing there will be some website that will turn some dumb thing I want to type like:
Uhm hi when is that meeting again?
into something fun like…
ᵁʰᵐ ʰᶦ ʷʰᵉⁿ ᶦˢ ᵗʰᵃᵗ ᵐᵉᵉᵗᶦⁿᵍ ᵃᵍᵃᶦⁿˀ
Important note about...