• Home
  • Feed
  • Blog
  • Quick Reviews
  • Cool Links
  • Photography
  • RSS

Cool Links

Here’s a collection of interesting links I’ve found around the web. The feed updates frequently, and I compile everything into a blog post on the last day of each month.

Cool Links

Filter by tag:

#dev
#fun #tech #deep-read #ai #design #app #mental-health #games #misc

67 links tagged "#dev"

Sneaky Header Blocker Trick , by Josh Comeau

Cool Link
2026-03-25
#dev

Another great article by Josh explaining a neat little trick on how to make the header of a website dynamic… by having it not do anything at all. Don’t worry, it’s quite simple and he explains it way better than I ever could.

Bonus points for not requiring a single line of JavaScript.

Open

An AI Agent Published a Hit Piece on Me , by Scott Shambaugh

Cool Link
2026-02-17
#ai #dev #fun

This is both funny and incredibly infuriating. A PR was declined on GitHub for an open-source project because it was made by an AI agent and… the AI agent (or the anonymous person behind it) wrote up a defamatory blog post targeted specifically at the project’s maintainer.

If being an open-source maintainer was already a thankless job, now there’s one more hell to endure.

Open

Stop generating, start thinking , by Sophie Koonin

Cool Link
2026-02-10
#ai #dev

Fantastic piece wielding the power of common sense and highlighting all the struggles that software engineers have with using generative AI on our jobs.

I also use LLMs as a spicy autocomplete (or even a spicy search) and they can be very useful at times. But I can’t replace my thinking with machines, because machines don’t think.

Open

More invoker commands, and more reasons not to use JavaScript please , by Paweł Grzybek

Cool Link
2026-02-03
#dev

HTML is getting more powerful! Now you can add some predefined commands to HTML elements that can do things like open (or close) modals, for example, without a single line of JS. This article explains really succinctly how that works. The custom commands thing is neat as well.

Open

Case Study: lynnandtonic.com 2025 refresh , by Lynn Fisher

Cool Link
2026-01-25
#dev #design

Lynn talks through a really neat effect added to the latest refresh of their website: a “squishy” animation on the content whenever the window gets resized!

This means you won’t get to see the effect live on your phone, but there’s videos of the effect on the article just in case.

Love the paper-like aesthetic of the website, too.

Open

jQuery 4.0.0

Cool Link
2026-01-18
#dev

I definitely didn’t expect seeing a new major jQuery release in 2026, but here it is! This is the first major release in 10 years and it doesn’t bring a lot of new things on the surface, but seems to have been a major overhaul behind the scenes. Looks like a future v5 will bring in bigger changes.

jQuery might be old by JS framework standards, but it’s still very useful, and I actually still use it almost daily at my job.

Open

CSS Wrapped 2025 , by The Chrome DevRel Team

Cool Link
2025-12-09
#dev

CSS is my favorite language and 2025 was amazing for it! The Chrome team built this page highlighting all the new exciting stuff that happened to CSS this year. I’ve used some of it but sadly still have to wait for other browsers to catch up before doing it on any serious work 😭

I recommend opening this in a Chromium-based browser so you can try it out firsthand, but there are video recordings of the features in case you’re unable to.

Open

Brand New Layouts with CSS Subgrid , by Josh Comeau

Cool Link
2025-11-28
#dev

This is the first article that made me actually understand the use cases for CSS subgrid. I’m still not fully convinced I’m gonna use them often, but it’s nice to understand what problems they solve.

Open

Conditional Border Radius In CSS , by Ahmad Shadeed

Cool Link
2025-11-18
#dev

This is a really cool trick. Turns out that it’s possible, with pure CSS, to have border-radius be applied conditionally.

The given example is a perfect one: sometimes we have cards with rounded corners that look good on their own, but if you’re on mobile and have less space and want the cards to take up the full page width, the rounded corners look awful. You can technically write breakpoints for that, but with clamp you can make the border-radius disappear if the card is too close to the viewport edges!

Open

Solved By Modern CSS: Section Layout , by Ahmad Shadeed

Cool Link
2025-11-16
#dev

In this awesome post, Ahmad walks through all the possibilities modern CSS offers when building a section layout.

I knew about and have used some of those in the past, but that tip about display: contents was amazing! Never thought of using it like that.

Open

Is software getting worse? - Stack Overflow , by Isaac Lyman

Cool Link
2025-11-16
#dev

This article has been sitting in my “Read Later” queue for almost 2 years 😳

It is an interesting article for sure, speaking about why speed and optimization has become such a rare thing in software development.

The second part of it, though, has kinda aged like milk, sadly. Developers no longer have a lot of leverage on their jobs, and we now live in a world where the thought of having no human developers involved at all in the code I’m running is real and frankly terrifying.

I’m hopeful companies will eventually figure out that AI-generated crap is still crap when the bubble bursts, but until then, there’s a lot of damage to be done.

Open

You Don't Need Animations , by Emil Kowalski

Cool Link
2025-11-16
#dev #design

Great and to-the-point article with practical examples of when to use (or not use) animations properly in UIs.

I love me some whooshy animations, but they can be a pain in the ass when overused or when used in the wrong moment.

Open

Just use a button , by Chris Ferdinandi

Cool Link
2025-11-05
#dev

The “div vs button” debate was never really a debate because one of the sides is objectively wrong, but this is still a good post to remind you of why it was never a debate in the first place.

Open

The web behind glass , by Thomas Günther

Cool Link
2025-10-31
#dev

Thomas gives a bunch of examples of things you should avoid doing if you want your website to look good on Safari’s new Liquid Glass design. All those don’ts are perfectly illustrated by a website that didn’t take Liquid Glass into account… apple.com.

The new Safari is such an incredible failure.

Open

AI can code, but it can't build software , by Matias Heikkilä

Cool Link
2025-10-29
#ai #dev

Yes! Any good developer will tell you that coding is the easiest part of the job. Making software actually go beyond a feature demo is what’s really hard. It’s something I’ve been taught ever since I began working on the field, actually. Learning to code is essential, but learning where to put the code and how to foresee all the hundreds of complexities is my actual job.

Expectations, feature scalability and security are very much human components of the job and can’t be properly done by something that’s not human.

Open

Write Code That Runs in the Browser, or Write Code the Browser Runs , by Jim Nielsen

Cool Link
2025-10-20
#dev

Really cool thoughts on the tradeoffs between control and performance in web development, and how whatever you build will never outperform the browser’s built-in APIs.

Open

CSS HDR Gradients , by Adam Argyle

Cool Link
2025-10-06
#dev

A really cool CSS gradient generator that supports all the new CSS color stuff that’s been coming out in the past years (and that I honestly don’t know much about).

Aside from the cool UI and easy-to-understand code it generates, it can generate HDR and SDR gradients; which means that on supported browsers and devices, your gradient might pop out with higher dynamic range (and have the SDR as a fallback). Great if you really want the colors to pop.

Open

Accented , by Pavel Pomerantsev

Cool Link
2025-09-08
#dev

This tool looks pretty cool! It’s a two-liner solution for web apps that automatically highlights accessibility issues on whatever you’re working on.

I haven’t tested it myself yet (busy month), but will definitely look into it soon.

Open

Why I still prefer ems over rems , by Chris Ferdinandi

Cool Link
2025-09-08
#dev

Neat short article that goes over a bit of the differences between ems and rems in CSS, with nice examples.

Open

npm: How did we get here? , by Kevin Roleke

Cool Link
2025-09-08
#dev

I think it’s widely known that the JS dev community relies too much on dependencies, especially through npm packages, and that it’s really hard to avoid this problem (I use as few packages as possible, but each dependency has its own hundreds of dependencies which also have hundreds more…).

But I think I never stopped to think of how easy it is to publish a package there. Which also means, it’s too easy to publish a malicious or compromised package, that gets downloaded and executed on our computers with no proper vetting. Scary.

Open
  • 1
  • 2
  • 3
  • 4
© 2026 Matheus Fantinel
Mastodon
GitHub
LinkedIn
Email
RSS
Made in Brazil
Now in Italy
Made by a human
Powered by autism
Trans Rights are Human Rights