Search
CSS-Tricks Chronicle XXXVIII
30.4.2020
Hey hey, these “chronicle” posts are little roundups of news that I haven’t gotten a chance to link up yet. They are often things that I’ve done off-site, like be a guest on a podcast or online conference. Or it’s news from other projects I work on. Or some other thing...
Some Innocent Fun With HTML Video and Progress
30.4.2020
The idea came while watching a mandatory training video on bullying in the workplace. I can just hear High School Geoff LOL-ing about a wimp like me have to watch that thing.
But here we are.
The video UI was actually lovely, but it was the progress bar that really caught my attention – or rather...
Alpine.js: The JavaScript Framework That’s Used Like jQuery, Written Like Vue, and Inspired by TailwindCSS
29.4.2020
We have big JavaScript frameworks that tons of people already use and like, including React, Vue, Angular, and Svelte. Do we need another JavaScript library? Let’s take a look at Alpine.js and you can decide for yourself. Alpine.js is for developers who aren’t looking to build a single page...
Chinese Court Declares Ethereum Legal Property With Economic Value
28.4.2020
A district court in China has reportedly ruled that Ethereum’s cryptocurrency is legal property with economic value. This ruling follows a couple of other verdicts on the legality of cryptocurrency, including bitcoin, by various Chinese courts. While cryptocurrency is not legal tender...
The Incognito Project Will Give Ethereum DeFi Monero-Like Privacy
27.4.2020
The Incognito project wants to make every other coin as private as Monero and is already integrating with Ethereum DeFi
The Greatest Wealth Transfer: Economists Predict the Emergence of New Bitcoin Millionaires, BTC Capturing 3% of Gold Market
27.4.2020
The global economy has been feeling the hardships from the mandated lockdowns various nation states have implemented during the last month and a half. Oil prices have dropped below zero for the first time in history, and economic powerhouses like the U.S. are starting to show cracks in the system....
Disbelief? Charts Suggest This Chainlink, Ether Rally Is Not Like 2019
27.4.2020
Ether and Chainlink have seen impressive rallies of over 130% since the big March crash
“The title ‘Front-End Developer’ is obsolete.”
24.4.2020
That title is from the opening tweet of a thread from Benjamin De Cock. I wouldn’t go that far, myself. What I like about the term is that ‘Front-End’ literally means the browser, and while the job has been changing quite a lot — and is perhaps fracturing before our eyes — the fact that...
Bitcoin to Be Digital Gold in 2020, Says Bloomberg Report
23.4.2020
Bitcoin will mature into a gold-like store of value this year, according to the latest projections by Bloomberg. The financial magazine’s report, “Bitcoin Maturation Leap,” notes that the cryptocurrency is poised for a bull run, after being temporarily dragged by...
Some Little Improvements to My VS Code Workflow (Workspaces, Icons, Tasks)
22.4.2020
I did a little thing the other day that I didn’t know was possible until then. I had a project folder open in VS Code like I always do, and I added another different root folder to the window. I always assumed when you had a project open, it was one top level root folder and that’s...
My Visual Studio Code Setup: Extensions and Themes
22.4.2020
Matthias Ott’s posted his VS Code setup. I find lists like this (I rounded up some recent updates of my own) irresistible, probably because, like y’all, I spend an awful lot of time in VS Code and wanna make sure I’m getting the most out of it.
Things from the list that stood...
Bloomberg: Bitcoin Is Setting Up For 2017-Like Bull Run
22.4.2020
A recent Bloomberg report: Bitcoin may be setting itself for a massive bull run
Fake Code
21.4.2020
Here’s a fun little idea from Knut Synstad. You give it the URL of a GitHub Gist and it converts the Gist into grayscale rounded blobs (SVG) that sorta look like code if you squint. Maybe fun for interesting dynamic backgrounds or for whatever you might use code-looking stock art for.
It...
Drupal to Jamstack
21.4.2020
I’ve been harping for a while that Jamstack doesn’t necessarily mean throwing away your old CMS. In fact, I’d argue that Jamstack is at it’s most powerful when paired with a system that you already know, are comfortable with, and perhaps even like. You’d call that...
The Contrast Triangle
21.4.2020
Chip Cullen:
Let’s say you’re building a site, and you’re working with a designer. They come to you with some solid designs, and you’re ready to go. You’re also a conscientious front end developer and you like to make sure the sites you build are accessible. The designs you’re working from have...
Creating Playful Effects With CSS Text Shadows
20.4.2020
Let’s have a look at how we can use the CSS text-shadow property to create truly 3D-looking text. You might think of text-shadow as being able to apply blurred, gradient-looking color behind text, and you would be right! But just like box-shadow, you can control how blurred the shadow is, including...
How to Play Retro Game ROMs on Windows
20.4.2020
Video games are always a fun time, something we desperately need during our COVID lockdown. A few years back I shared how to play retro games on Mac, as well as how to patch games to play popular ROM hacks like Grand Poo World and Invictus. One disadvantage that Macs have, however, is performance...
Corona Money Printing Worries – Housing Prices Slide Downwards First Time in 10 Years in Northern Europe
19.4.2020
Real estate price reports from March in northern countries like Denmark and Sweden now show negative developments for the first time in over 10 years. If furloughed workers continue into unemployment, the effects on the housing markets will be even more significant, says Claudia Wörmann...
Seeking Profits: A Number of Large Crypto Exchanges Are Mining and Staking Digital Assets
18.4.2020
During the last 12 months, large cryptocurrency exchanges have been getting into digital currency staking and creating SHA256 mining operations. Just recently, Binance announced the launch of its mining pool following exchanges like Okex, and Huobi. Alongside this, a great number of crypto...
Pseudo-Randomly Adding Illustrations with CSS
17.4.2020
Between each post of Eric Meyer’s blog there’s this rather lovely illustration that can randomly be one of these five options:
Eric made each illustration into a separate background image then switches out that image with the nth-of-type CSS property, like this:
.entry:nth-of-type(2n+1)::before...