Search
Fed’s Outgoing Vice Chair Richard Clarida’s ‘Rebalancing’ Trades Ignite Fed Trading Ethics Scandal
8.1.2022
Members of the U.S. Federal Reserve are getting criticized this week after the central bank published its minutes report from the policy meeting on December 14-15. Following the update, the outgoing vice chair of the Federal Reserve’s trading activities has reignited ethics conversations....
A New Container Query Polyfill That Just Works
6.1.2022
There is an easy-to-use CSS container query polyfill now. You essentially conditionally load it and forget about it. Then write spec-compliant container queries code.
A New Container Query Polyfill That Just Works originally published on CSS-Tricks. You should get the newsletter and become...
The Search For a Fixed Background Effect With Inline Images
6.1.2022
I was working on a client project a few days ago and wanted to create a certain effect on an <img>. See, background images can do the effect I was looking for somewhat easily with background-attachment: fixed;. With …
The Search For a Fixed Background Effect With Inline Images...
The Search For a Fixed Background Effect With Inline Images
6.1.2022
I was working on a client project a few days ago and wanted to create a certain effect on an <img>. See, background images can do the effect I was looking for somewhat easily with background-attachment: fixed;. With …
The Search For a Fixed Background Effect With Inline Images...
Škoda Auto a Etnetera rozjíždí společný IT podnik Green:Code, najme 200 lidí
6.1.2022
Škoda Auto a pražská vývojářská společnost Etnetera Group rozjíždí společný joint-venture podnik Green:Code. Automobilka v něm vlastní 49 procent, Etnetera majoritní zbytek. Firma plánuje v následujících letech najmout 200 lidí
How to Make a Component That Supports Multiple Frameworks in a Monorepo
5.1.2022
Your mission — should you decide to accept it — is to build a Button component in four frameworks, but, only use one button.css file!
This idea is very important to me. I’ve been working on a component library called …
How to Make a Component That Supports Multiple Frameworks in a Monorepo...
CSS Underlines Are Too Thin and Too Low in Chrome
4.1.2022
I’ve encountered two bugs in Chrome while testing the new CSS text-decoration-thickness and text-underline-offset properties, and I want to share them with you here in this article.
But first, let’s acknowledge one thing:
Default underlines are inconsistent
Let’s add a …
CSS Underlines...
Kickstarting the Bitcoin Network: A Look at the Genesis Block and Source Code That Sparked a Financial Revolution
3.1.2022
13 years ago today, the anonymous creator of the Bitcoin protocol kickstarted the network by mining the genesis block. Satoshi started the genesis block on Saturday, January 3, 2009, at precisely 1:15 p.m. (EST), and since then more than 700,000 blocks have been mined into existence. Kickstarting...
The surprising behavior of !important in CSS custom property values
17.12.2021
Huh! I did not realize that CSS custom properties had their own resolution behavior for how !important works in their values. Uh, despite writing a guide about them. 😬 But hey it’s now updated.
Stefan Judis documents it clearly. …
Topological sort
16.12.2021
Jordan Scales explores the computer science concept of topological sorting, and what it might look like if applied to the concept of z-index in CSS. So, you don’t express what the z-index should be directly; instead, you say exactly …
HTML Sanitizer API
16.12.2021
Three cheers for (draft stage) progress on a Sanitizer API! It’s gospel that you can’t trust user input. And indeed, any app I’ve ever worked on has dealt with bad actors trying to slip in and execute nefarious code …
Indie Studio Forms First Video Game Union In The Country
15.12.2021
Developers at Vodeo Games, the indie studio behind this year’s excellent turn-based pinball RPG Beast Breaker, revealed over at Polygon today that they’ve unionized. Management at the studio is voluntarily recognizing the newly formed group, called Vodeo Workers Unite, making it the first of...
Shadow Palette Generator
13.12.2021
Josh’s Shadow Palette Generator is a fantastic tool. The premise is that box-shadow pretty much always looks better when there are multiple layered shadows that are a bit tinted. It reminds me of how gradients almost always look better when …
Using Position Sticky With CSS Grid
10.12.2021
Say you’ve got a two-column CSS grid and you want one of those columns to behave like position: sticky;. There is nothing stopping you from doing that. But the default height for those two columns is going to be …
Prosecutor General’s Office Wants to See ‘Cryptocurrency’ in Russian Law
10.12.2021
The Prosecutor General’s Office of the Russian Federation has insisted that the term “cryptocurrency” should be added to the country’s legislation. The move would allow authorities in Moscow to confiscate digital assets that have been involved in criminal activities....
Eye Droppin’
9.12.2021
Quick hits! There is a new web API called EyeDropper:
if ('EyeDropper' in window) {
const eyeDropper = new EyeDropper();
try {
// This has gotta be triggered by a user interaction,
// so consider this pseudo-code.
const result …
Some notes on using esbuild
9.12.2021
This is a fantastic article from Julia Evans about duking it out with modern front-end tooling. Julia has made a bunch of Vue projects and typically uses no build process at all:
 I usually have an index.html file, a script.js…
Sandbox Game Removed From Steam After Allegations Of Code Theft
9.12.2021
Myth of Empires, a game that has only just been released, has now been delisted from Steam after the team behind Ark: Survival Evolved accused its creators of stealing source code.Read more
The Invisible JavaScript Backdoor
8.12.2021
An interesting (scary) trick of an nearly undetectable exploit. Wolfgang Ettlinger:
What if a backdoor literally cannot be seen and thus evades detection even from thorough code reviews?
I’ll post the screenshot of the exploit from the post with the …
Coloring With Code — A Programmatic Approach To Design
7.12.2021
Learn to create beautiful, inspiring, and unique color palettes/combinations, all from the comfort of your favorite text editor!
The post Coloring With Code — A Programmatic Approach To Design appeared first on Codrops