• 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

142 links

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

Introducing SlopStop: Community-driven AI slop detection , by Kagi Search

Cool Link
2025-11-16
#tech #ai #app

This is a really cool initiative! Kagi has been my search engine of choice for over a year and I’m really happy with how they’re aiming to stop AI slop from taking over their (still great) search results.

In my experience, their results are miles ahead of Google’s, Bing’s or whatever other search engine out there, partly because of their algorithm prioritizes good sites, partly because they allow you to prioritize/deprioritize/block the sites you want.

But a good algorithm only goes so far and with the amount of AI slop hitting the web every day, it’s gonna be harder and harder to avoid them. Now Kagi users can report certain articles as AI-generated so other users can know that beforehand and not click on them, or even block their domains.

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

Edit Photo , by Pintura Labs

Cool Link
2025-10-29
#tech #app

Okay, this is pretty cool. This lil’ website allows you to do quick image edits right on your browser. Nothing new there - except for the fact that it actually works with no account, no ads, no popups, no upsell. Truly a marvel!

Open

Edit Video , by Pintura Labs

Cool Link
2025-10-29
#tech #app

The same as Edit Photo, but for Videos!

Open

Squoosh

Cool Link
2025-10-29
#tech #app

Another cool little web utility. This one lets you squoosh your image files to greatly reduce their file size without any significant loss in quality. Especially useful if you have a website of your own and want to optimize your images.

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

A cartoonist's review of AI art , by The Oatmeal

Cool Link
2025-10-10
#tech #ai #deep-read

A really fun web comic of an artist explaining his thoughts about AI art. I think I agree with all the points there.

Open

Notebook Navigator - Modern File Explorer for Obsidian , by Johan Sandberg

Cool Link
2025-10-09
#tech

This is beautiful. This Obsidian plugin completely overhauls the file navigation and makes it actually usable. It fixes one of the app’s biggest problems for me: navigation.

You can add custom icons to folders as well, which I used to need a separate plugin for.

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

Every Noise at Once , by Glenn McDonald

Cool Link
2025-09-27
#fun

Grab your headphones and get ready to lose some hours. This website compiles every subgenre of music and algorithmically sorts them out in relation to one another. It’s great to learn about new genres you might like or to find something similar to what you already know!

Open

Adrift

Cool Link
2025-09-26
#fun

Adrift is a quiet space where doubts become paper boats and drift together across a shared sea.

What a neat lil’ website. You can write your own doubts or self-care notes and let them float out in a virtual sea, alongside the notes of many others. There’s some background music too.

Open

Wallet voting , by Cory Doctorow

Cool Link
2025-09-18
#deep-read

Make individual choices that make your life better. Take collective action to make society better.

Cory has such a nice way with words — he can express complex thoughts so simply.

This one is a banger. It’s both encouragement to do more against evil and reassurance for when you feel like giving up.

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
  • 5
  • ...
  • 8
© 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