Search
How to Code a Scrollable Text Gallery in Three.js
19.9.2022
A video coding session where you’ll learn how to recreate the text and image gallery seen on Design Embraced
Environmental Groups to Spend Another $1M on Ads for Bitcoin Code Change After the Merge
15.9.2022
The campaign to change the bitcoin code to decrease its energy use will be reigniting its efforts after ethereum's move to a less energy-intensive protocol
More Details on `details`
15.9.2022
A lot of chatter around the ol’ <details> and <summary> elements lately! I saw Lea Verou recently tweet an observation about the element’s display behavior and that sorta splintered into more observations and usage notes from folks, including a revived …
More...
When is it OK to Disable Text Selection?
14.9.2022
Using CSS, it’s possible to prevent users from selecting text within an element using user-select: none. Now, it’s understandable why doing so might be considered “controversial”. I mean, should we be disabling standard user behaviors? Generally speaking, no, we …
When is it OK to Disable...
US Treasury - You Are Not Breaking Sanctions by Sharing Tornado Cash Code
14.9.2022
The U.S. Treasury Department has released further clarifications on the sanction placed on the popular cryptocurrency mixer, Tornado Cash. The department stated that the sanction does not affect the rights of individuals in the U.S. to view and disseminate the open-source Tornado Cash...
Norway Releases Source Code for Digital Krone Sandbox, Utilizes Ethereum Technology
14.9.2022
A crypto company working with the central bank of Norway has published the source code for the sandbox created to trial the digital version of the Nordic nation’s fiat currency. The prototype digital krone is being built on the Ethereum network and the regulator wants to test various...
US Treasury clarifies publishing Tornado Cash’s code does not violate sanctions
13.9.2022
Residents would not be violating sanctions by visiting Tornado Cash's website, copying the mixer’s open-source code, nor making the code available online or in print
Ethereum Devs Successfully Complete Merge Shadow Fork With No ‘Client Incompatibility Issues’
10.9.2022
Next week or roughly around four days from now, The Merge is expected to be implemented and Ethereum will transition from proof-of-work (PoW) to proof-of-stake (PoS). According to Ethereum developers, prior to the Paris upgrade, programmers successfully completed the 13th and last shadow fork....
What’s New With Forms in 2022?
8.9.2022
Browsers are constantly adding new HTML, JavaScript and CSS features. Here are some useful additions to working with forms that you might have missed…
requestSubmit()
Safari 16 will be the final browser to add support for requestSubmit.
Before we …
What’s New With Forms in 2022? originally...
Ethereum Implements Bellatrix — Network’s Upcoming Paris Upgrade to Trigger The Merge, Validator Block Production
6.9.2022
The blockchain network Ethereum has officially activated the Bellatrix upgrade, the final change before The Merge, the highly anticipated transition from proof-of-work (PoW) to proof-of-stake (PoS). Bellatrix was successfully codified into the codebase at epoch 144,896 on the Beacon chain...
Market for Compound Ether Token ‘Frozen’ After Code Bug Kills Price Feed
31.8.2022
Compound points to faulty code in a recent addition to the protocol as the problem and said a solution is days away
Interpolating Numeric CSS Variables
30.8.2022
We can make variables in CSS pretty easily:
:root {
--scale: 1;
}
And we can declare them on any element:
.thing {
transform: scale(--scale);
}
Even better for an example like this is applying the variable on a user …
Interpolating Numeric CSS Variables originally published...
Nigerian Central Bank Slashes CBDC Transaction Fees by 50%
30.8.2022
The Central Bank of Nigeria has said it is slashing transaction fees for the e-naira platform by 50% — a move which the bank claims will increase the volume of transactions on the central bank digital currency (CBDC) platform. The central bank also believes that wider adoption of the CBDC...
Amendments to US commercial code differentiate crypto and ‘electronic money’
25.8.2022
The updated guidelines seek to clarify the terms of crypto assets lending and specify the status of CBDCs
Using CSS Cascade Layers to Manage Custom Styles in a Tailwind Project
24.8.2022
If a utility class only does one thing, chances are you don’t want it to be overridden by any styles coming from elsewhere. One approach is to use !important to be 100% certain the style will be applied, regardless of …
Using CSS Cascade Layers to Manage Custom Styles in a Tailwind Project...
As Censorship on Ethereum Begins, Could This Open-Sourced Code Help Counter It?
23.8.2022
Flashbots' accelerated code release comes amid U.S. regulatory crackdown on crypto mixer Tornado Cash for sanctions violations
CSS Grid and Custom Shapes, Part 2
22.8.2022
Alright, so the last time we checked in, we were using CSS Grid and combining them with CSS clip-path and mask techniques to create grids with fancy shapes.
Here’s just one of the fantastic grids we made together:
CodePen…
CSS Grid and Custom Shapes, Part 2 originally published...
Uniswap Censors 253 Crypto Addresses Blacklisted for Crime, Sanction Associations
20.8.2022
According to a recently published report, the decentralized exchange (dex) Uniswap has blocked roughly 253 cryptocurrency addresses allegedly tied to crimes or government sanctions. The information was discovered by the software developer Banteg who analyzed and saved the shared logs from...
git Force Push
19.8.2022
Rebasing is a frequent task for anyone using git. We sometimes use rebasing to branch our code from the last changes or even just to drop commits from a branch. Oftentimes when trying to push after a rebase, you’ll see something like the following: hint: Updates were rejected because the...
Why (and How) I Write Code With Pencil and Paper
17.8.2022
If the thought of handwriting code seems silly, it might surprise you to know that it’s inevitable. If you’re unsure, think about the last job interview you did, and remember how there was no computer around in the interview room …
Why (and How) I Write Code With Pencil and Paper...