10 LINKS THAT WILL CHANGE HOW YOU LOOK AT THE INTERNET FOREVER.
Save this list. Most people will never see it.
1. https://t.co/UnDnW16EM2
Shows every data breach your email has ever leaked in.
2. https://t.co/DWPtjQdmaY
Reveals every social profile and login tied to any email address.
3. https://t.co/b0di40J0mR
Tells you how trackable your browser fingerprint really is.
4. https://t.co/3oOgXHyaCp
Checks if your VPN is actually working or silently exposing your real IP.
5. https://t.co/M49l1nqMGf
Direct links to delete your account from any major service.
6. https://t.co/s6MXurFwoY
Scans any file or link against 70+ antivirus engines in seconds.
7. https://t.co/LHTmczBjTS
Shows if your face was used to train AI models without consent.
8. https://t.co/rF6OanX5a0
Exposes every piece of data your browser leaks to websites.
9. https://t.co/2AUNi4oSDr
Tells you which apps on your PC are bloatware or spyware.
10. https://t.co/7SLjuIK4GR
Removes paywalls from news sites so reading stays free.
Thanks me later.
Need a brand logo?
This probably has it.
→ https://t.co/Z8Z5TIpEuH
One of the biggest libraries of brand logos.
Browse across categories like:
• AI
• accessibility
• auth
• automotive
• architecture
Export in:
• React / HTML / CSS / Next.js
• SVG / WebP / raster
Probably every logo you’ll ever need.
Using CSS mask-image you can truncate texts with a smooth fade effect.
It looks clean and it's a great alternative to text ellipsis.
.text-container {
overflow: hidden;
white-space: nowrap;
-webkit-mask-image: linear-gradient(
to right, black 50%, transparent);
mask-image: linear-gradient(
to right, black 50%, transparent);
}
}
If you found this one useful, follow for more! ❤️
Comparison demo without and with the Transitions skill
Demo page with more details, usage and commands
https://t.co/nuaxB4Xo4n
npx skills add jakubantalik/transitions.dev
Modern Web Guidance is now in early preview 👀
AI coding agents often rely on legacy patterns → bloated JS.
@googlechrome + Edge are teaming up to fix that-helping AI generate cleaner, modern code using the latest web platform additions. Better web apps for the whole web community.
Check out the public repo: https://t.co/NNVCUXilpg
Introducing Hallmark!
An open source design skill to make beautiful UIs and landing pages by default.
Works in Claude Code, Cursor, and Codex.
npx skills add nutlope/hallmark
🚨 Security advisory: Composer 2.9.8 and 2.2.28 are out and fix a vulnerability leaking GitHub Actions new format GITHUB_TOKENs into job logs via error messages.
Update now (composer self-update) or disable affected Actions workflows.
#composerphp#phpc#php
Netflix, Wikipedia, Airbnb, Dropbox ~ all run on the same web server.
One quiet Russian engineer wrote it alone. For free. 🤯
Meet Igor Sysoev 🇷🇺
> Russian software engineer. Born 1970 in Soviet Kazakhstan.
> Failed his first university entrance exam.
> Joined Rambler in 2000 as a system administrator.
> 2002 ~ started writing a new web server in his free time. Alone.
> Goal: handle 10,000 simultaneous users on one machine ~ a problem Apache (the dominant web server at the time) couldn't solve.
> 2004 ~ released nginx publicly. Free. Open source.
> Zero marketing. Zero PR. Just the code.
> 2008 ~ nginx was serving 500 million requests per day at Rambler.
> 2011 ~ founded Nginx Inc. with co-founder Maxim Konovalov.
> 2013 ~ Netflix scaled its streaming CDN to 40 Gbps per server using nginx.
> 2019 ~ F5 acquired the company for $670 million.
> December 2019 ~ Russian police raided his Moscow office over a fake copyright claim.
> The Russian tech community publicly defended him. Charges were dropped.🚀
> 2021 ~ nginx overtook Apache as the #1 web server on Earth.
> 2022 ~ left F5 quietly. No farewell tour. No book deal.
> Today nginx powers Netflix, Wikipedia, Airbnb, Dropbox, Cloudflare, WordPress.
> 33% of every website on Earth runs on his code. Apache trails at 26%. Microsoft's IIS isn't even close.
> Still 100% open-source. Still free.
One man wrote it alone, in his free time, for free.
He never sought publicity. He never asked for credit.
A third of every website on Earth still runs on his work.
Webserver GOAT. 🐐
TIL about this HTTP header 🤯
Server response header
➡️ Clear-Site-Data: "storage"
Client/browser
➡️ clears localStorage, sessionStorage, IndexedDB, SW registration, and more
How to design beautiful software:
1. use https://t.co/KvFa1EsBPC to get a popular site design system
2. use https://t.co/mjELvmwzig it copy components you like
3. have taste
🗺️ And if you need a replacement for Mapbox Autocomplete, try this one:
Photon by @komoot (100% free!)
No need to pay extortionary fees for what is simply a DB search in a lookup table from OSM!
This one line of CSS will fix the annoying layout shift that scrollbars cause.
This happens when a non-scrollable container becomes scrollable due to its content.
This gets rid of that problem:
.container {
scrollbar-gutter: stable;
}
With that, space is reserved for the scrollbar before it even appears.
So there's no layout shifts when content grows.
Use both-edges if your content is centered.
It mirrors the reserved space on both sides of the container to keep the layout balanced.
If you found this one useful, follow for more. ❤️