Search
Rethinking Code Comments
2.4.2020
Justin Duke asks if treating code comments like footnotes could help us understand the code in a file better. In his mockup, all the comments are hidden by default and require a click to reveal:
What a neat idea! Justin’s design reminds me of the way that Instapaper treated inline...
How to Create a “Skip to Content” Link
17.3.2020
Skip links are little internal navigation links that help users move around a page. It’s possible you’ve never actually seen one before because they’re often hidden from view and used as an accessibility enhancement that lets keyboard users and screen readers jump from the top of the page to...
Chameleonic Header
26.2.2020
Nice demo from Sebastiano Guerriero. When a fixed-position header moves from overlapping differently-colored backgrounds, the colors flop out to be appropriate for that background. Sebastiano's technique is very clever, involving multiple copies of the header within each section (where the copies...
Full-Width Elements By Using Edge-to-Edge Grid
7.2.2020
If you have a limited-width container, say a centered column of text, "breaking out" of that to make a full-width element involves trickery. Perhaps the best trick is the one with left relative positioning and a negative left viewport-based margin. While it has it's caveats (e.g. requiring hidden...
A Trick That Makes Drawing SVG Lines Way Easier
14.1.2020
When drawing lines with SVG, you often have a <path> element with a stroke. You set a stroke-dasharray that is as long as the path itself, as well as a stroke-offset that extends so far that you that it's initially hidden. Then you animate the stroke-offset back to 0 so you can watch...
Win or Lose, These Crypto Whales Share Their Trades
14.1.2020
Whales are mega-rich traders who inhabit the depths of the crypto seas. Theirs is a realm of dark pools, hidden order books, OTC deals, and rich list wallet addresses. Shunning publicity in favor of pseudonymity, most whales keep their trading and personal lives separated, with only the blockchain...
A Use Case for a Parent Selector
31.12.2019
Having a "parent selector" in CSS is mentioned regularly as something CSS could really use. I feel like I've had that thought plenty of times myself, but then when I ask my brain for a use case, I find it hard to think of one. Well, I just had one so I thought I'd document it here.
A classic...
Bitcoin Price Showing Hidden Signs of Reversing — Next Target $8.2K
6.12.2019
Key indicators and hidden signs are beginning to signal that Bitcoin price could be on the verge of reversing course
No Inflation? Here It Is – Hidden in Plain Sight
5.11.2019
Popular among politicians, media, and central bankers alike is the claim that in spite of all the quantitative easing (QE) and zero-leaning or negative interest rates of current times, inflation is under control. As the statistics show, nothing could be further from the truth. There are some very...
Lightning Network User Confused By Protocol: Lost 30,000 USD
24.10.2019
The Lightning Network has long been touted by its proponents as a speedy, low-cost solution to Bitcoin’s scaling issues. A series of security scares and UX issues have called that vision into question however. The latest LN slip-up saw a user lose 4 BTC in one fell swoop. Also read: Hidden...
The `hidden` Attribute is Visibly Weak
16.10.2019
There is an HTML attribute that does exactly what you think it should do:
<div>I'm visible</div>
<div hidden>I'm hidden</div>
It even has great browser support. Is it useful? Uhm. Maybe. Not really.
Adam Laki likes the semantics of it:
If we use the hidden...
Berlusconi Admins Disappear — Darknet Users Rush to Find Alternatives
14.10.2019
The darknet marketplace Berlusconi Market has been reportedly down for more than two weeks, according to users who patronize the hidden website. The outage has led many to believe the market administrators exit scammed with all the funds. While others speculate that government agents have...
There’s just no way around it
4.10.2019
CoinMarketCap Daily Newsletter Your daily newsletter for 4 October, 2019 “A lot of hard work is hidden behind nice things.” – Ralph Lauren Consolidation Over the last 24 hours, total market capitalization dipped back down again from ~$221.5 billion to ~$218.5 billion, with […]
The post...
There’s just no way around it
4.10.2019
CoinMarketCap Daily Newsletter Your daily newsletter for 4 October, 2019 Hard work “A lot of hard work is hidden behind nice things.” – Ralph Lauren We are done with week 1 of October! How did it all go for you all? ???? […]
The post There’s just no way around it appeared first...
There’s just no way around it
4.10.2019
CoinMarketCap Daily Newsletter Your daily newsletter for 4 October, 2019 Hard work “A lot of hard work is hidden behind nice things.” – Ralph Lauren We are done with week 1 of October! How did it all go for you all? ???? […]
The post There’s just no way around it appeared first...
Hidden Lightning Network Bug Allowed Spending of ‘Fake’ Bitcoins
28.9.2019
A bug discovered in the Lightning Network in June, which allowed lightning bitcoins not backed by actual bitcoins to be spent, has officially been addressed in a new dev full disclosure report released on Friday. The problem has reportedly been remedied, but the security oversight casts doubts...
Craig Wright’s Hidden Treasures: Court Order to Unlock the Tulip Trust
18.9.2019
The case against Craig Wright resulted in a court order, but there is still a great deal unknown
Overflow And Data Loss In CSS
17.9.2019
"Data Loss" is a funny term. My brain thinks of like packet loss on the way from the server to your browser, resulting in missing content in files. Perhaps it is that on some level, but in CSS parlance, it has to do with the overflow property. Too much content for sized container + hidden overflow...
Government Hates Crypto Because It Empowers the People, Not Because It’s Used for Crime
10.9.2019
A recent article from MIT Technology Review has leveraged a somewhat sensationalist headline to stir up fear about bitcoin and crypto. The article, written about a “hidden” government weapon to be deployed against Bitcoin, references September 3 senate subcommittee testimony...
Nested Gradients with background-clip
28.8.2019
I can't say I use background-clip all that often. I'd wager it's hardly ever used in day-to-day CSS work. But I was reminded of it in a post by Stefan Judis, which consistently was itself a learning-response post to a post over here by Ana Tudor.
Here's a quick explanation.
You've probably seen...