frontpage.
newsnewestaskshowjobs

Open Source @Github

fp.

Fourteen months micromanaging AI coding agents

https://allende.nz/notes/fourteen-months-micromanaging-ai-coding-agents/
1•robertoallende•2m ago•0 comments

Codex and ChatGPT browser now supporting WebMCP

https://twitter.com/OpenAIDevs/status/2092344959248761263
1•Eldodi•3m ago•0 comments

Ask HN: Opus 5 is unusable for writing, even internal use. Alternatives/fix?

1•m3h•4m ago•0 comments

Leibler - Self Evolving Production Agents

https://www.leibler.dev/
3•kkkamur•8m ago•3 comments

Social media use on the rise among Australian under-16s after ban: data

https://www.france24.com/en/live-news/20260826-social-media-use-on-the-rise-among-australian-unde...
3•giuliomagnifico•9m ago•0 comments

XCancel and Nitter are receiving C&D letters from XCorp

4•mobilio•11m ago•0 comments

So basically to earn 50k in Italy you gotta be Andrej Karpathy

https://twitter.com/tropianhs/status/2092171706773451120
2•napolux•11m ago•0 comments

SW Factory: Porting a 5,700-line C voxel game to Rust

https://www.incredibuild.com/blog/the-fun-part-was-free-proving-it-worked-cost-1-96
2•zozo123-IB-IL2•11m ago•0 comments

Understanding Go's Sync.Map from API to Hash Trie

https://victoriametrics.com/blog/go-sync-map-hash-trie/index.html
2•valyala•13m ago•0 comments

Bolt migrated 10M monthly Looker queries from Presto to Databricks

https://bolt.eu/en/blog/migrating-looker-to-databricks/
2•matthieu_bl•13m ago•0 comments

AI-powered email agent that syncs your emails via IMAP

https://github.com/peterretief/emailai/tree/main
2•peter_retief•17m ago•1 comments

The Death of San Francisco's Market Street

https://www.noahpinion.blog/p/the-death-of-market-street
2•A_D_E_P_T•19m ago•0 comments

Braam – An operating system that runs in a browser tab

https://github.com/braamix/core
2•begoon•20m ago•0 comments

Why Iceberg Won

https://nexus0ne.substack.com/p/why-iceberg-won
2•herodoturtle•23m ago•0 comments

Visualizing Combos in Judo in R

https://www.r-bloggers.com/2025/05/the-dynamics-of-the-gentle-way-exploring-judo-attack-combinati...
2•asaiacai•23m ago•0 comments

Scandal-hit KPMG to cut jobs

https://www.reuters.com/business/world-at-work/kpmg-australia-plans-cut-5-jobs-warns-soft-conditi...
2•Alien1Being•24m ago•0 comments

Revolut rolls out EURR, a euro-backed stablecoin

https://twitter.com/Revolut/status/2092512156935684302
2•gearnode•25m ago•0 comments

Self-hosting mail without opening a single port

https://dilluti0n.com/p/selfhost-mail-without-ports/
3•hskimse•27m ago•0 comments

MCP to Talk to Blockchain Data

https://mcp.bitquery.io/
2•YratherNot•28m ago•0 comments

Problem with Concurrent Linter Fixes

https://jfmengels.net/concurrent-linter-fixes/
2•jfmengels1•33m ago•0 comments

MillionDollarHomepage ² – Yes, Why Not

https://milliondollarhomepage2.com/
2•Andreas-Y•35m ago•1 comments

Pennsylvania reports first 2 measles deaths in the US this year

https://apnews.com/article/measles-deaths-pennsylvania-16c6c527c13e88ac3cdea57ffdbd2e19
2•geox•37m ago•0 comments

Code Documentation Quality, Measured

https://www.docuwriter.ai/documentation-quality
2•magarrent•37m ago•0 comments

CMA-ES: My favorite black-box optimizer

https://cmaes.org/
2•Dowwie•37m ago•0 comments

Show HN: WFY24 weather widget with hyper-local forecasting

https://wordpress.org/plugins/wfy24-weather-widget/
2•weatherfun•39m ago•0 comments

Show HN: Banking Access Index – 19 US banking providers, 8 countries, CC-BY

https://www.globalsolo.global/data/banking-access-index
3•jettfu•43m ago•0 comments

GrapheneOS is coming to expensive, high-end Motorola phones next year

https://www.neowin.net/news/grapheneos-is-coming-to-expensive-high-end-motorola-phones-next-year/
3•bundie•45m ago•0 comments

Show HN: The Great Mountains and the Weather That Defines Them

https://www.wfy24.com/en/article/the-worlds-great-mountains-and-the-weather-that-defines-them
2•weatherfun•45m ago•0 comments

Value Classes Still Need Compiler Sympathy

https://johan-sjolen.github.io/post/compiler-sympathy/compiler-sympathy/
3•lichtenberger•46m ago•0 comments

CMU Introduction To Deep Learning 11-785, Fall 2026: Lecture 1 [video]

https://www.youtube.com/watch?v=40Ql7hdaJfU
3•mdp2021•46m ago•0 comments
Open in hackernews

Open source in-browser log sanitizer, feedback required

2•andriimb•1h ago
Just released a framework-agnostic log sanitizer working in browsers and Node.js. It's designed to sanitize log files before they are sent to third-party platforms for processing, analysis, or troubleshooting. Use Case? thing HuggingFace breach, would you feed any AI your usernames, passwords, PII, configs etc?

The sanitizer redacts secrets, identifiers, and PII and replaces each value with a stable HMAC token to reduce the risk of accidentally exposing sensitive or confidential information contained in logs.

This library is already integrated into LogTotal and runs directly in the browser, allowing logs to be sanitized locally before they leave the user's environment.

If you require a fully controlled and isolated data sanitization environment, you can deploy and run this library within your own infrastructure. The sanitizer can also be installed and used in air-gapped environments, ensuring that sensitive log data remains within an environment you fully control.

The library has no runtime dependencies. The same compiled rules run in a browser tab and in a Node.js CLI. Complete instructions how to install it are on git.

Tokens are HMAC-SHA-256 of ruleId || 0x00 || original, truncated to 16 hex chars. Same key + same value + same rule ⇒ same token. A different key produces different tokens. Generated keys use encoding hex; pasted keys default to utf8.

How do we know what to sanitise? This is based on SOC Prime dataset of over 1 million detection rules.

Does it solve log sanitation 100%? No, there are edge cases, and hence I ask for your feedback here.

Tool is open source under Apache 2.0. and will remain so.

I've spent over 20 years dealing with SIEM, log management, data lakes and now data pipelines and was amazed there is no such tool out there. So we made one and would appreciate any feedback!

This is a first step towards a larger community free service, logtotal.

open source in-browser log sanitizer, feedback required

https://github.com/socprime/logtotal-sanitizer

Comments

ET292768•54m ago
When will it be possible to test Logtotal?
andriimb•49m ago
first phase, sanitizer is already on GitHub, and will be rolled to the website tomorrow. Rollout will have a few phases, and once it is live there are no conditions to test, just visit the website and try it out. there's also a sample log file preloaded to see how engine works.