frontpage.
newsnewestaskshowjobs

Made with ♥ by @iamnishanth

Open Source @Github

fp.

Huckle: Detect operational problems 30–90 days before they appear in metrics

https://github.com/The-Resonance-Institute/huckle-public
1•cherndon222•39s ago•1 comments

Show HN: A minimalist dungeon-crawler card game built with Deno

https://scoundrel.ever-forward.deno.net/play
1•davrodpin•1m ago•0 comments

Missiles a Month vs. 7 Interceptors – Why Centcom Shifted to Factories

https://brief.gizmet.dev/signal-100-missiles-a-month-vs-7-interceptors-why-centcom-shifted-t/
1•GIZINT•2m ago•1 comments

Toaster Settings: AI Agents and Classical French Cooking Techniques [video]

https://www.youtube.com/watch?v=S_Iqnt_Cf98
1•aarmenante•3m ago•0 comments

The Sky Tonight

https://theskylive.com/guide
1•susam•4m ago•0 comments

Padel Chess – tactical simulator for padel

https://www.padelchess.me/
1•AlexGerasim•5m ago•0 comments

How OpenClaw's Memory System Works

https://www.db0.ai/blog/how-openclaw-memory-works
1•shenli3514•6m ago•0 comments

Show HN: Build a knowledge graph from unstructured text in Python

https://github.com/arun1729/text-to-kg
1•am3141•6m ago•0 comments

I built a free site that can tell you if your hardware can run a model

https://llmscout.fit/#/
1•dinosoupy•7m ago•1 comments

PgBeam, a globally distributed PostgreSQL proxy

https://pgbeam.com/blog/why-i-built-pgbeam
1•PaulHoule•7m ago•0 comments

Words on Words on Words

https://lemoncosmos.com/blog/posts/2026/03/words/
1•midzer•7m ago•0 comments

Syntaqlite: High-fidelity devtools that SQLite deserves

https://lalitm.com/post/syntaqlite/
1•lalitmaganti•8m ago•0 comments

Show HN: Flotilla – An orchestrator for persistent agent fleets on Apple Silicon

https://github.com/UrsushoribilisMusic/agentic-fleet-hub
1•ursushoribilis•8m ago•1 comments

Show HN: I can no longer afford the silicon. Here is my autonomous HPC agent

https://github.com/KilianDiama/AutonomousRDAgent
1•diamajax•9m ago•0 comments

When Science Goes Agentic

https://cacm.acm.org/blogcacm/when-science-goes-agentic/
1•tchalla•11m ago•0 comments

Java 26 is here, and with it a solid foundation for the future

https://hanno.codes/2026/03/17/java-26-is-here/
3•mfiguiere•11m ago•0 comments

The Los Angeles Aqueduct Is Wild

https://practical.engineering/blog/2026/3/17/the-los-angeles-aqueduct-is-wild
2•michaefe•11m ago•0 comments

Consent.txt – compile one AI policy into robots.txt, AIPREF, and headers

https://github.com/GGeronik/consent-txt
1•geronik•14m ago•2 comments

Women are being abandoned by their partners on hiking trails

https://www.theguardian.com/lifeandstyle/ng-interactive/2026/mar/17/alpine-divorce-abandoned-hiki...
3•asib•14m ago•0 comments

Show HN: Chrome extension that hijacks any site's own API to modify it

https://github.com/hvardhan878/quark-browser-agent
1•hvardhan878•16m ago•0 comments

Reducing quarantine delay 83% using Genetic Algorithms for playbook optimization

https://www.securesql.info/2025/04/06/playbook-management/
1•projectnexus•16m ago•1 comments

Node.js blocks PR from dev because he used Claude Code to create it

https://github.com/nodejs/node/pull/61478
3•gregdoesit•17m ago•0 comments

Python 3.15's JIT is now back on track

https://fidget-spinner.github.io/posts/jit-on-track.html
2•guidoiaquinti•17m ago•0 comments

Remote Control for Agents

https://www.restate.dev/blog/a-remote-control-for-your-agents
2•gk1•17m ago•0 comments

Danger Coffee: Mold-Free Remineralized Coffee Replaces What Regular Coffee Takes

https://dangercoffee.com/
1•amyjo•18m ago•1 comments

Building a dry-run mode for the OpenTelemetry collector

https://ubuntu.com/blog/building-a-dry-run-mode-for-the-opentelemetry-collector
1•simskij•18m ago•0 comments

LotusNotes

https://computer.rip/2026-03-14-lotusnotes.html
1•laacz•19m ago•0 comments

Austin draws another billionaire as Uber co-founder joins California exodus

https://www.statesman.com/business/article/uber-founder-austin-tech-move-robots-22079819.php
2•dmitrygr•19m ago•0 comments

Deep Data Insights for Polymarket Traders

https://www.holypoly.io
1•alexanderstahl•19m ago•1 comments

Show HN: A simple dream to fit in every traveler's pocket

https://www.callzo.io/blog/we-built-callzo-with-dream-of-being-in-every-travellers-pocket
1•mayursinh•19m ago•0 comments
Open in hackernews

Show HN: SiteOne Crawler – Single-binary CI/CD gate for web quality regressions

https://github.com/janreges/siteone-crawler
2•janreges•1h ago

Comments

janreges•1h ago
Hi HN, I'm the author. I originally built SiteOne Crawler in PHP+Swoole back in 2023. Last year I rewrote it entirely in Rust — 25% faster execution, 30% lower memory, and a single native binary with zero runtime dependencies.

The feature I'm most excited about is CI/CD quality gating. The idea is simple: crawl your entire website after deploy and block the pipeline if quality regresses.

Example:

   siteone-crawler --url=https://example.com --ci \
      --ci-min-score=7.5 \
      --ci-max-404=0 \
      --ci-max-redirects=5
Install:

   # Debian/Ubuntu repo setup:
   curl -1sLf 'https://dl.cloudsmith.io/public/janreges/siteone-crawler/setup.deb.sh' | sudo -E bash

   brew install janreges/tap/siteone-crawler    # macOS / Linux
   sudo apt-get install siteone-crawler         # Debian/Ubuntu (after adding repo)
   sudo dnf install siteone-crawler             # Fedora/RHEL (after adding repo)
   cargo install siteone-crawler                # from source, any platform

   # Windows: https://github.com/janreges/siteone-crawler/releases
This crawls every page, scores it across 5 categories (Security, Performance, SEO, Accessibility, Best Practices) on a 0–10 scale, and exits with code 10 if any threshold is breached. Drop it into GitHub Actions, GitLab CI, or any pipeline as a single binary — no Docker, no Node, no runtime needed.

Beyond CI/CD, it also does: - Offline website archiving with a built-in HTTP server for self-hosting - Full-site markdown export with deduplicated content (great for feeding to LLMs) - Interactive HTML audit reports you can email via built-in SMTP - Sitemap generation

Sample HTML report: https://crawler.siteone.io/html/2024-08-23/forever/cl8xw4r-f... GitHub: https://github.com/janreges/siteone-crawler

I'd love to hear your feedback — especially if you're already doing something similar in your CI/CD pipelines. What thresholds would you find useful?