Search
Russian Activists Use Bitcoin, and the Kremlin Doesn’t Like It
15.7.2020
Activists and dissidents in Russia use crypto for fundraising – yet widespread adoption is still far away
Netlify Does Cache Invalidation For You
15.7.2020
This is one of my favorite Netlify features. Say you’re working on a site and you change as asset like a CSS, JavaScript, or image file. Ya know, like do our job. On Netlify, you don’t have to think about how that’s going to play out with deployment, browsers, and cache. Netlify...
What It’s Really Like to Live on Bitcoin in the Middle East
14.7.2020
The story of a Syrian migrant in Iraq shows how bitcoin can work as intended – as a global currency that transcends borders
Three CSS Alternatives to JavaScript Navigation
14.7.2020
Hey quick! You’ve gotta create the navigation for the site and you start working on the mobile behavior. What pattern do you choose? If you’re like most folks, it’s probably the “hamburger” menu that, when clicked, uses a little JavaScript to expand a vertical list of navigation links.
But that’s...
Open Prioritization
14.7.2020
Like Kickstarter, but for Web Platform Features.
That’s about the quickest way to sum up Open Prioritization from Igalia. Igalia is an independent company that works on browsers. They literally commit to all the different open source browsers to implement (and fix) features that we all use....
Bitcoin Volatility Metrics Are Like November 2018 All Over Again
14.7.2020
Bitcoin is locked in a low-volatility squeeze similar to one seen ahead of a 40% price crash in November 2018. This time may be different
Running spot instances effectively with Amazon EKS
14.7.2020
I know this is a little outside the normal scope of CSS-Tricks stuff, but I find the whole concept of spot instances fascinating. Here’s the gist from a very-non-expert (me). You can just buy and pay for web servers, for example, Amazon EC2. You can save a bunch of money if you buy them...
Lazy Load IFRAMEs
13.7.2020
We’ve known for a decade that lazy loading resources like JavaScript, CSS, and especially images is a massive performance win for web pages. At first we used tricks and JavaScript to do the lazy loading, but more recently native image lazy loading has debuted in browsers. Did you know that...
Easy Stock Market Quotes with marketstack (Sponsored)
12.7.2020
The stock market is wild right now, at least in the United States. Between pandemic, political events, and everything else going on, the stock market is one swing after another. There are a host of services that give you stock quotes but I don’t trust them; I feel like they delay information...
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...
‘Bitcoin Is Not a Privacy Coin’ Says Crypto Evangelist Andreas Antonopoulos
9.7.2020
Andreas Antonopoulos discussed how he desired to see Bitcoin have more “privacy features” in a recent live stream Q&A session published on Youtube on July 7. Antonopoulos discussed the privacy-centric coin monero and concepts like stealth addresses and ring signatures. Every once...
A little bit of plain Javascript can do a lot
8.7.2020
Julia Evans:
I decided to implement almost all of the UI by just adding & removing CSS classes, and using CSS transitions if I want to animate a transition.
An awful lot of the JavaScript on sites (that aren’t otherwise entirely constructed from JavaScript) is click the thing...
How to delete all node_modules directories from your computer
8.7.2020
Nice tip from Chris Ferdinandi:
My node_modules directories contained 50mb of stuff on the small side, and over 200mb of files in some cases. Over a few dozen projects, that really adds up!
Two dozen projects with 200 MB worth of node_modules? That’s nearly 5 GB of space for...
Market Wrap: With Low Volatility, Traders Seem to Like $9,000 Bitcoin
7.7.2020
Bitcoin traders love hitting buy on their terminals when the price is around $9,000
Careful! There’s a Justin Sun Look-a-Like Trying to Launch a Fake Tron Privacy Coin
7.7.2020
Someone impersonating Tron CEO Justin Sun recently tried luring investors into buying a fake Tron privacy asset as part of a token sale offering
Liquidity Mining is 'Like Uber' Giving Shares to Early Drivers & Riders
7.7.2020
DeFi's latest hit is yield farming with millions of dollars worth of tokens distributed each month. It's boosted by liquidity mining, which today is like Uber giving shares to early drivers and riders, argued a researcher.
DeFi (decentralized finance) commonly refers to the protocols, digital...
Food and Cash Shortages Push Cubans Toward Permissionless Cryptocurrencies
5.7.2020
The Nation of Cuba is dealing with a national food crisis, as Venezuela has stopped offering aid to the small island nation. Moreover, the coronavirus outbreak has caused a shortage of cash couriers called “mules” and everyday items are becoming scarcer. Amid the crisis, a number...
Fluid Images in a Variable Proportion Layout
3.7.2020
Creating fluid images when they stand alone in a layout is easy enough nowadays. However, with more sophisticated interfaces we often have to place images inside responsive elements, like this card:
For now, let’s say this image is not semantic content, but only decoration. That’s...
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...
Some Performance Links
3.7.2020
Just had a couple of good performance links burning a hole in my pocket, so blogging them like a good little blogger.
Web Performance Recipes With Puppeteer
Puppeteer is an Node library for spinning up a copy of Chrome “headlessly” (i.e. no UI) and controlling it. People use it...