Search
“Just in Time” CSS
10.9.2021
I believe acss.io is the first usage of “Atomic CSS” where the point of it is to be a compiler. You write CSS like this:
<div class="C(#fff) P(20px)"text
</div
And it will generate CSS like:
.C\(\#333\) {
color: #333;
…
The post “Just in Time” CSS appeared...
The Latest Nintendo Lego Set Is Super Mario 64 Block
9.9.2021
Get ready to revisit Super Mario 64 with the Lego’s newly announced set. Say hello to Lego Super Mario 64 Block. On the outside, it’s a large Question Block, but inside, there are four different Super Mario 64 levels: Peach’s Castle, Bob-omb Battlefield, Cool, Cool Mountain and Lethal Lava Trouble....
Hashrate Follows Price: Bitcoin Hashrate Jumps 92% in 2 Months, Difficulty Expected to Increase in 4 Days
3.9.2021
Bitcoin prices have improved a great deal in recent times and the network’s hashrate remains higher than it was 67 days ago when it tapped a low of 69 exahash on June 28. Today, statistics show Bitcoin’s hashrate has increased more than 92% since then and the network is due...
New research claims 21 accounts pumped the $4.4B EOS ICO with wash trades
3.9.2021
New research asserts that EOS and ETH were wash-traded on exchanges to manipulate prices during EOS’s multi-billion dollar ICO
I completely ignored the front-end development scene for 6 months. It was fine.
3.9.2021
Have you ever fretted that front-end web development moves so fast that if you stepped away for a while, you’d be lost coming back? Rachel Smith has:
The hectic pace of needing to learn one thing after the next
…
The post I completely ignored the front-end development scene for...
What I Wish I Knew About CSS When Starting Out As A Front-Ender
2.9.2021
Nathan Hardy shares when things “clicked”:
Reflecting back on this time, I think there are a few key concepts that were vital to things finally all making sense and fitting together. These were:
• The Box Model (e.g. box-sizing, height, width, margin, padding)•...
You want enabling CSS selectors, not disabling ones
31.8.2021
I think this is good advice from Silvestar Bistrović:
An enabling selector is what I call a selector that does a job without disabling the particular rule.
The classic example is applying margin to everything, only to have to remove …
The post You want enabling CSS selectors, not disabling...
British Auction House Christie’s to Present Full Set of NFT Curio Cards on October 1
31.8.2021
The British auction house Christie’s has been immersed in the non-fungible token (NFT) art and collectibles industry for quite some time. Christie’s has auctioned blockchain-backed items like Block 21 of “Portraits of a Mind,” Cryptopunks, and Beeple’s NFT that...
One Way to Convert Code Indentation
26.8.2021
A question:
If you copy a code sample that uses two-space indentation and you want to convert it to four-space indentation, what’s the *fastest* and easiest option?
Matt Stauffer, Twitter
I wrote about doing this in Sublime Text a …
The post One Way to Convert Code Indentation...
Architecting With Next.js
24.8.2021
(This is a sponsored post.)
Free event hosted by Netlify coming up next week (Wednesday, August 25th): Architecting with Next.js. It’s just a little half-day thing. No brainer.
Join us for a special event where we’ll highlight business
…
The post Architecting With Next.js...
Detecting Media Query Support in CSS and JavaScript
23.8.2021
You can’t just do @media (prefers-reduced-data: no-preference) alone because, as Kilian Valkhof says:
[…] that would be false if either there was no support (since the browser wouldn’t understand the media query) or if it was supported but the
…
The post...
Native JavaScript Routing?
23.8.2021
We can update the URL in JavaScript. We’ve got these APIs:
// Adds to browser history
history.pushState({}, "About Page", "/about");
// Doesn't
history.replaceState({}, "About Page", "/about");
JavaScript is also capable of replacing any content in the DOM....
Derivatives data shows pro traders turning bullish on EOS price
23.8.2021
Retail traders turned their backs on EOS, but derivatives data shows pro traders maintaining a bullish perspective for the short-term
“Disambiguating Tailwind”
20.8.2021
I appreciated this bit of nuance from a post on Viget’s blog:
There could be a whole article written about the many flavours of Tailwind, but broadly speaking those flavours are:
1. Stock tailwind, ie. no changes to the
…
The post “Disambiguating Tailwind” appeared first...
The Big Gotcha With Custom Properties
19.8.2021
I’ve seen this confuse more than a handful of people recently, including myself, so I’m making sure it’s written down.
Let’s chuck a couple of custom properties into CSS:
html {
--color-1: red;
--color-2: blue;
}
Let’s use them right …
The post The...
“We had 90% unused CSS because everybody was afraid to touch the old stuff”
19.8.2021
Over at the JS Party poundcast:
[Kend C. Dodds]: […] ask anybody who’s done regular, old CSS and they’ll tell you that “I don’t know if it’s okay for me to change this, so I’m gonna duplicate it.” And
…
The post “We had 90% unused CSS because everybody was afraid to touch...
HTML is Not a Programming Language?
16.8.2021
HTML is not a programming language.
I’ve heard that sentence so many times and it’s tiring. Normally, it is followed by something like, It doesn’t have logic, or, It is not Turing complete,.so… obviously it is not a programming …
The post HTML is Not a Programming Language?...
An In Depth Look at Bitcoin’s First Chain Split: Satoshi Helps Reverse the Creation of 184 Billion BTC
15.8.2021
Since January 3, 2009, the Bitcoin network has been functional for 99.98662952015% of the time. However, the protocol has had a few hiccups along the way and on a few occasions, the chain split into two. Most people are well aware of the Bitcoin Cash split that took place on August 1, 2017, but...
Satoshi Versus the ‘Infrastructure Bill’ — Political Permission Not Required
12.8.2021
When Satoshi Nakamoto released the Bitcoin white paper in October 2008, it likely wasn’t with the idea that governments and central banks needed to recognize, adopt, and regulate Bitcoin for everyone’s benefit. To the contrary, if anything can be taken away from that document and...
Wanna see a whiter white?
11.8.2021
Heck of a CSS trick here from Dongsung Kim.
There are hidden HDR videos playing at the corners of this page. When a HDR-capable browser encounters one, it switches to HDR mode. For some reason, CSS backdrop-filter + brightness >100%
…
The post Wanna see a whiter white? appeared first...