Search
New York Attorney General Says Bitfinex, Tether Could Complete Loan Document Handover in ‘Weeks’
11.12.2020
The NYAG has said Tether and Bitfinex have been cooperating in its inquiry, which is expected to progress more quickly once the documents are provided
Cloudinary Fetch with Eleventy (Respecting Local Development)
4.12.2020
This is about a wildly specific combination of technologies — Eleventy, the static site generator, with pages with images on them that you ultimately want hosted by Cloudinary — but I just wanna document it as it sounds like a decent amount of people run into this situation.
The deal:
Cloudinary...
Binance Sues Forbes for Defamation Over ‘Tai Chi’ Document Leak
18.11.2020
Binance sued Forbes for defamation Wednesday over a story last month that purported to reveal regulatory evasion tactics
Copyediting with Semantic HTML
17.11.2020
Tracking changes is a quintessential copyediting feature for comparing versions of content. While we’re used to tracking changes in a word processing document, we actually have HTML elements capable of that. There are a lot of elements that we can use for this process. The main ones we’ll look...
Node isConnected
13.11.2020
Every so often I discover a property in JavaScript objects that I didn’t know existed, oftentimes using another trick to accomplish the same functionality. One such property I just learned about was isConnected, a node property that attached to a context (i.e. document). Here’s how...
Gray Burst
3.11.2020
I made this neat little gray burst thing. It’s nothing particularly special, especially compared to the amazing creativity on CodePen, but I figured I could document some of the things happening in it for learning reasons.
CodePen Embed Fallback
It’s SVG
SVG has <line x1 y1...
Little Things on My Personal Site
30.10.2020
I updated my personal website the other day. Always a fun project since it’s one of the few where it’s 100% just me. It’s my own personal playground with no other goal than making the site represent me to have a little fun. It’s not a complete re-write, just some new paint....
Central banks detail CBDC expectations in massive joint document
9.10.2020
The report is a major step towards pushing central bank digital currencies forward
South Korean Bank NH Launches Blockchain-powered Document Wallet
29.9.2020
South Korean financial services provider Nonghyup (NH Bank) has begun issuing over a dozen forms of digital certificates using a blockchain-powered system and an e-wallet that will be able to hold hundreds of types of blockchain-verified forms of authentication.
Per the Electronic Times, the bank’s...
Vital Web Performance
21.9.2020
I hate slow websites. They are annoying to use and frustrating to work on. But what does it mean to be “slow”? It used to be waiting for document load. Then waiting for page ready. But with so many asynchronous patterns in use today, how do we even define what “slow” is? The W3C has […]
The...
How to Simplify SVG Code Using Basic Shapes
3.9.2020
There are different ways to work with icons, but the best solution always includes SVG, whether it’s implemented inline or linked up as an image file. That’s because they’re “drawn” in code, making them flexible, adaptable, and scalable in any context.
But when working with SVG, there’s always...
Brazilian Crypto Companies to Self-Regulate: Target a $100 Billion Market by Year-End
24.8.2020
Brazilian crypto companies have signed a code of self-regulation that aims to legitimize and to boost adoption of crypto assets in the country. The document was signed under the auspices of Abcripto, the country’s association of cryptocurrency companies. According to regional media reports...
US Says North Korea Has 6,000 Hackers: Many in Belarus, China, India, Malaysia, Russia
20.8.2020
North Korea allegedly has about 6,000 hackers, many of whom operate abroad, according to a recent report published by the U.S. Army. The infamous Lazarus Group, thought to be linked to a number of cryptocurrency exchange hacks, is among them. North Korea’s Bureau 121 The U.S. Army recently...
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...
Activists Document Police Misconduct Using Decentralized Protocol
23.6.2020
Built on the InterPlanetary File System and the Ethereum blockchain, the protocol lets anyo file police misconduct reports anonymously
How to Get All Custom Properties on a Page in JavaScript
8.6.2020
We can use JavaScript to get the value of a CSS custom property. Robin wrote up a detailed explanation about this in Get a CSS Custom Property Value with JavaScript. To review, let’s say we’ve declared a single custom property on the HTML element:
html {
--color-accent: #00eb9b;
}
In JavaScript...
The Best Design System Tool is Slack
4.6.2020
There’s a series questions I have struggled with for as long as I can remember. The questions have to do with how design systems work: Where should we document things? Do we make a separate app? Do we use a third-party tool to document our components? How should that tie into Figma or Sketch?...
Pseudo-elements in the Web Animations API
14.5.2020
To use the Web Animations API (e.g. el.animate()) you need a reference to a DOM element to target. So, how do you use it on pseudo-elements, which don’t really offer a direct reference? Dan Wilson covers a (newish?) part of the API itself:
const logo...
17,000 Quadrigacx Users Seek $307M from the Failed Canadian Crypto Exchange
13.5.2020
About 17,000 people have filed claims for refunds from the collapsed Canadian digital asset exchange Quadrigacx. Altogether, the claims, denominated in both cryptocurrency and fiat, amount to nearly $307 million. According to a document released Tuesday by Ernst & Young, the court-appointed...
How I Put the Scroll Percentage in the Browser Title Bar
12.5.2020
Some nice trickery from Knut Melvær.
Ultimately the trick boils down to figuring out how far you’ve scrolled on the page and changing the title to show it, like:
document.title = `${percent}% ${post.title}`
Knut’s trick assumes React and installing an additional library. I’m sure...