Search
Bitcoiners Scoff at Chris Larsen's $5M Campaign to Force a BTC Code Change
29.3.2022
Working with Greenpeace, the Ripple chairman is attempting to do what big-blockers failed to in 2017: significantly alter Bitcoin's software without widespread consensus
Greenpeace, Ripple co-founder campaigning to change Bitcoin code
29.3.2022
Chris Larsen, co-founder of Ripple also joined in on the call, saying Bitcoin is the “outlier” now that Ethereum’s model is set to change
CSS :has
28.3.2022
For as long as developers have written CSS code, we’ve been desperate to have a method to allow styling a parent element based child characteristics. That’s not been possible until now. CSS has introduced the :has pseudo-class which allows styling a parent based on a relative...
Announcement of Establishment of CA GameFi, Inc․ For Developing Blockchain Games in the Global Market
25.3.2022
PRESS RELEASE. CA GameFi Inc., (headquartered in Shibuya-ku, Tokyo, Japan; Taro Yamamoto, Representative Director; hereafter CA GameFi), a subsidiary of CyberAgent Inc. (headquartered in Shibuya-ku, Tokyo, Japan; Makoto Fujita, Representative Director; listed on the TSE’s first section...
Queen of Raw and MIT Solve Release World’s First No-Code Mobile Fabric Footprint Impact Report on Chain
21.3.2022
What if you knew the true cost of your clothing? Not just the price of the tag, but the cost to the planet as well? What if you can discover the amount of water, carbon emissions, chemicals, and water saved by each of your purchases? Did you know that one t-shirt takes an average of 700 gallons...
Elden Ring Fans Are Using Cheats To Equip Notorious Cut Underwear
18.3.2022
They say necessity breeds innovation. In Elden Ring, sometimes that necessity looks more like a Thomas the Tank Engine mod or whatever monstrosity is happening in this video. The latest Elden Ring innovation involves players equipping an NPC’s underwear that was apparently cut from the game.Read...
DeFi detective alleges this ‘suspicious’ smart contract code may put dozens of projects at risk
8.3.2022
“TLDR: they can pull $$ even if the owner is the null address,” writes Zachxbt
Say Hello to selectmenu, a Fully Style-able select Element
3.3.2022
I want to introduce you to a new, experimental form control called <selectmenu>. We’ll get deep into it, including how much easier it is to style than a traditional <select> element. But first, let’s fill in some context …
Say Hello to selectmenu, a Fully Style-able select...
Ahmad Shadeed: Use Cases For CSS fit-content
1.3.2022
Ahmad Shadeed covers the CSS fit-content sizing keyword. It’s useful! It just doesn’t come up super often. I find myself using min-content a lot more, like when setting up the height of a grid-template-row.
The fit-content keyword is actually …
Ahmad Shadeed: Use Cases For...
Trailing Slashes on URLs: Contentious or Settled?
25.2.2022
A fun deep dive from Zach. Do you have an opinion on which you should use?
1) https://website.com/foo/
2) https://websites.com/foo
The first option has a “trailing slash.” The second does not.
I’ve always preferred this thinking: you use a trailing …
Trailing Slashes...
When to Avoid the text-decoration Shorthand Property
25.2.2022
In my recent article about CSS underline bugs in Chrome, I discussed text-decoration-thickness and text-underline-offset, two relatively new and widely-supported CSS properties that give us more control over the styling of underlines.
Let me demonstrate the usefulness of …
When to Avoid...
My white whale: A use case for will-change
24.2.2022
 Nic Chan:
[…] the will-change property landed in major browsers in August 2015, and I’ve been on the lookout for when to use it ever since. It might seem self-evident to apply it to commonly animated properties such
…
My white whale: A use case for will-change...
Explain the First 10 Lines of Twitter’s Source Code to Me
24.2.2022
For the past few weeks, I’ve been hiring for a senior full-stack JavaScript engineer at my rental furniture company, Pabio. Since we’re a remote team, we conduct our interviews on Zoom, and I’ve observed that some developers are not …
Explain the First 10 Lines of Twitter’s Source Code...
So What If Part of Bitcoin's Code Was State-Funded?
22.2.2022
Adam Tooze asked if bitcoin politics is self-deluded. Cypherpunks are just resourceful
Reliably Send an HTTP Request as a User Leaves a Page
22.2.2022
On several occasions, I’ve needed to send off an HTTP request with some data to log when a user does something like navigate to a different page or submit a form. Consider this contrived example of sending some information to …
Reliably Send an HTTP Request as a User Leaves a Page originally...
Ukrainian Parliament Adopts Amended Virtual Assets Law
18.2.2022
Ukrainian lawmakers have approved an updated version of legislation tailored to regulate the country’s crypto economy. The bill, which was first passed last year, was later returned to the legislature by President Volodymyr Zelensky who requested some changes. Majority of Ukrainian Deputies...
Top Things You Didn’t Know You Could Do With Netlify CLI
17.2.2022
(This is a sponsored post.)
First things first, if you didn’t know Netlify had a CLI, they do.  One of my favorite things about it running the command netlify dev on nearly any static-site generator project is seeing it …
Top Things You Didn’t Know You Could Do With Netlify...
Crypto Stories: Gavin Wood discusses why he decided to code Ethereum
11.2.2022
The latest episode of Cointelegraph's YouTube series tells the story of Gavin Wood, co-founder of Ethereum and founder of Polkadot and Kusama networks
Multi-Value CSS Properties With Optional Custom Property Values
11.2.2022
Imagine you have an element with a multi-value CSS property, such as transform: optional custom property values:
.el {
transform: translate(100px) scale(1.5) skew(5deg);
}
Now imagine you don’t always want all the transform values to be applied, so some …
Multi-Value CSS Properties With...
How to Make CSS Slanted Containers
9.2.2022
I was updating my portfolio and wanted to use the forward slash (/) as a visual element for the site’s main layout. I hadn’t attempted to create a slanted container in CSS before, but it seemed like it …
How to Make CSS Slanted Containers originally published on CSS-Tricks. You should...