惯性聚合 高效追踪和阅读你感兴趣的博客、新闻、科技资讯
阅读原文 在惯性聚合中打开

推荐订阅源

Stack Overflow Blog
Stack Overflow Blog
云风的 BLOG
云风的 BLOG
Cyber Security Advisories - MS-ISAC
Cyber Security Advisories - MS-ISAC
Recent Announcements
Recent Announcements
Microsoft Security Blog
Microsoft Security Blog
Microsoft Azure Blog
Microsoft Azure Blog
J
Java Code Geeks
D
DataBreaches.Net
U
Unit 42
P
Proofpoint News Feed
I
InfoQ
Apple Machine Learning Research
Apple Machine Learning Research
Google DeepMind News
Google DeepMind News
博客园 - Franky
博客园_首页
IT之家
IT之家
博客园 - 叶小钗
freeCodeCamp Programming Tutorials: Python, JavaScript, Git & More
酷 壳 – CoolShell
酷 壳 – CoolShell
博客园 - 【当耐特】
Hugging Face - Blog
Hugging Face - Blog
OSCHINA 社区最新新闻
OSCHINA 社区最新新闻
让小产品的独立变现更简单 - ezindie.com
让小产品的独立变现更简单 - ezindie.com
阮一峰的网络日志
阮一峰的网络日志

Ye Olde Blogroll — Firehose

kottke.org Outside My Window | A Blog of Birds & Nature with Kate St. John Via Negativa The Wallflower Digest baty.net Miskatonic University Press | William Denton Transactions with Beauty Britney Winthrope — Personal blog Z1NZ0L1N Amerpie by Lou Plummer 75CentralPhotography Home :: Sacha Chua Blog – Harold Jarche Doug Jones Tom Van Winkle's Return to Gaming Adactio: Jeremy Keith ooh.directory: a place to find good blogs that interest you Sal's whygodwhy – idk! fine! whatever! who cares! shut up! uncountable thoughts Murmurs Dr Robert N. Winter Who's the Real Loser? Shady Characters Ludicity Notes Without a Thesis Robin Monks - Technologist, AI/ML, Healthtech David Smith, Independent iOS Developer Homepage - blakewatson.com Ploum.net
x-log
Andreas Jaggi · 2025-07-17 · via Ye Olde Blogroll — Firehose
Thursday, 11. June 2026 Week 24
Wednesday, 3. June 2026 Week 23

24

Happy 24th birthday, x-log 🥳

Monday, 1. June 2026 Week 23
Sunday, 31. May 2026 Week 22
Monday, 18. May 2026 Week 21
Saturday, 16. May 2026 Week 20

Passweird

Passweird - Passwords too Gross to Steal

This website will create for you passwords that are not only secure*, but also so utterly repulsive that not even the most hardened criminal, identity thief, NSA agent, or jealous boyfriend would ever want to use them.

(via)

Thursday, 14. May 2026 Week 20
Wednesday, 13. May 2026 Week 20

Blog Quest

Blog Quest is a Firefox extension by Robert Alexander that quietly collects RSS feeds when you surf the web.

I like the idea of passively collecting feeds of websites I potentially find interesting, all while preserving my privacy and being unintrusive (no notifications, popups or similar).
Installed it today and already looking forward to review my surfing from time to time 😎

Saturday, 9. May 2026 Week 19

Google Sign-in Popup Blocker

zkbro explains in a post how to configure Librewolf.
One of the mentioned add-ons catched my eye: Google Sign-in Popup Blocker
This should block the annoying sign-in with Google dialogs that popup on some websites.

As this sounds promising, I installed the add-on in my Firefox.
I briefly tested it on a site that uses the annoying sign-in with Google dialog, and this time the dialog did not appear.
To be sure I confirmed it in the developer tools where it mentioned that loading the dialog was blocked by the add-on 🎉

Type-safe slogging

Well written article by Redowan Delowar, explaining how to achieve type-safe logging with Go's log/slog library.

  • Take the logger as a constructor argument. Never reach for slog.Default() or any package-level slog function.
  • Always use logger.LogAttrs(ctx, level, msg, attrs...). Not logger.Info, logger.Warn, or any of the kv-flavored helpers.
  • Every attribute comes from a helper in internal/log/attrs.go. Write applog.OrderID(o.ID), never slog.String("order_id", o.ID) inline.
  • sloglint enforces all three on every commit so the workflow doesn’t erode.