Search
Dynamic, Conditional Imports
13.1.2021
With ES Modules, you can natively import other JavaScript. Like confetti, duh:
import confetti from 'https://cdn.skypack.dev/canvas-confetti';
confetti();
That import statement is just gonna run. There is a pattern to do it conditionally though. It’s like this:
(async ()
…
The post...
Bitcoin.com Co-founder Files Legal Action Against Bridge.link Token Project Over Market Manipulation
4.1.2021
PRESS RELEASE. Bitcoin.com Co-founder Mate Tokay is filing legal action against the founders of Bridge.link for failing to distribute a significant portion of BRG. Tokay was hired as an advisor for the Bridge.link project and was promised 37.5 million BRG for compensation. However, Tokay was never...
Why Ice Levels Keep Showing Up In Video Games, Even Though Most Of Them Are Bad
25.12.2020
In games as in life, slipping and sliding on ice patches while torrents of snow transform your eyelashes into crystalline daggers can be frustrating, to say the least. And yet, ice and snow levels are a time-honored trope in video games. On this week’s episode of Kotaku’s Splitscreen podcast,...
Custom Styles in GitHub Readme Files
23.12.2020
Even though GitHub Readme files (typically ./readme.md) are Markdown, and although Markdown supports HTML, you can’t put <style> or <script> tags init. (Well, you can, they just get stripped.) So you can’t apply custom styles there. Or can you?
You can use SVG as...
Though centralized, a digital yuan is too big for China to surveil, says Cypherium CEO
3.12.2020
Despite ambitions of overtaking the dollar, China's central bank will have a hard time monitoring all the transactions involved in a CBDC, though commercial banks might lend a hand
Catching Covid-19 Sucked, Though Video Games Helped
2.12.2020
Some call it a hoax. Others say it’s no worse than the common cold. But make no mistake: the covid-19 pandemic is very, very real. If you don’t believe the mountain of scientific literature, the army of medical professionals, the frontline reporting from countless reputable sources, the firsthand...
Painting With the Web
1.12.2020
Matthias Ott, comparing how painter Gerhard Richter paints (do stuff, step back, take a look) to what can be the website building process and what can wreck it:
[…] this reminds me of designing and building for the Web: The unpredictability, the peculiarities of the material,...
Bitcoin Evangelist Andreas Antonopoulos Plans to Testify in Billion-Dollar Bitcoin Lawsuit
18.11.2020
On Monday evening November 16, the popular bitcoin evangelist Andreas Antonopoulos tweeted about his upcoming role in the high-profile billion-dollar bitcoin lawsuit, Kleiman v. Wright. Antonopoulos said that he will be “testifying at trial” during the month of April 2021, even though...
Netlify Background Functions
10.11.2020
As quickly as I can:
AWS Lambda is great: it allows you to run server-side code without really running a server. This is what “serverless” largely means.
Netlify Functions run on AWS Lambda and make them way easier to use. For example, you just chuck some scripts into a folder they...
SEC Commissioner Peirce Says Regulations Should Be Slow, Though Crypto Rules Could Be Faster
9.11.2020
New regulations take time to allow for public feedback, SEC Commissioner Hester Peirce said at CoinDesk's Bitcoin for Advisors conference
Central Banks Dump Gold for the First Time Since 2010, Precious Metal Drops 9% Since August High
30.10.2020
A few central banks have started selling tons of gold for the first time since 2010 in order to ease the financial suffering from the Covid-19 pandemic. At $1,875 per ounce, gold prices are down -9.63% since the commodity’s high of $2,075 on August 6. Even though gold has dropped...
The $750 Million Pre-Halloween Bitcoin Options Expiry Has Started to Spook Traders
28.10.2020
Even though cryptocurrency traders have been exuberant over the price rise, a number of analysts are focused on the large bitcoin and ethereum options expiries set to end before Halloween. Data from Skew.com shows $750 million in Bitcoin options is set to expire and prices could get volatile....
Visual Interpretation of Bitcoin’s Supply Shows the Digital Asset’s Unique Scarcity
6.10.2020
The Bitcoin network has recently crossed over the 18.5 million mark, as far as the number of bitcoins currently minted into circulation. However, even though over 18 million coins have been minted to-date there’s a number of different elements that affect the distribution of all the coins...
Paytm Freezes Indian Bank Accounts Suspected of Cryptocurrency Trading: Report
11.8.2020
India’s largest mobile commerce platform Paytm has reportedly been freezing the bank accounts of users suspected of crypto trading, even though cryptocurrency, including bitcoin, is legal in India. The country still does not have a legal framework for cryptocurrencies but the government says...
More Control Over CSS Borders With background-image
7.8.2020
You can make a typical CSS border dashed or dotted. For example:
.box {
border: 1px dashed black;
border: 3px dotted red;
}
You don’t have all that much control over how big or long the dashes or gaps are. And you certainly can’t give the dashes slants, fading, or animation!...
Jetpack CRM
4.8.2020
About a year ago, Automattic bought up Zero BS CRM. The thinking at the time was that it could be rebranded into the Jetpack suite and, well, that happened.
CRM meaning “Customer Relationship Management” if you’re like me and this is a little outside your sphere of everyday...
Using Trello as a Super Simple CMS
27.7.2020
Sometimes our sites need a little sprinkling of content management. Not always. Not a lot. But a bit. The CMS market is thriving with affordable, approachable products, so we’re not short of options. Thankfully, it is a very different world to the one that used to force companies to splash out...
NBA Point Guard Spencer Dinwiddie’s Tokenized Contract Raises $1.3 Million
24.7.2020
NBA player Spencer Dinwiddie has finished the token sale of his contract that is hosted on the Ethereum blockchain. The sale of Dinwiddie’s tokenized contract raised $1.3 million which was only a tenth of what the project hoped to sell ($13.5 million). Even though the Brooklyn Nets guard...
Frontity is React for WordPress
9.7.2020
Some developers just prefer working in React. I don’t blame them really, because I like React too. Maybe that’s what they learned first. I’ve been using it long enough there is just some comfort to it. But mostly it is the strong component model that I like. There is just...
Settling down in a Jamstack world
3.7.2020
One of the things I like about Jamstack is that it’s just a philosophy. It’s not particularly prescriptive about how you go about it. To me, the only real requirement is that it’s based on static (CDN-backed) hosting. You can use whatever tooling you like. Those tools, though...