frontpage.
newsnewestaskshowjobs

Open Source @Github

fp.

Seven Obscure Languages in Seven Weeks

https://pragprog.com/titles/dzseven/seven-obscure-languages-in-seven-weeks/
1•iroddis•2m ago•1 comments

An Android launcher with no icons, and an eBook above the clock

https://paperlauncher.app/
1•sascha_heyer•3m ago•0 comments

Crisp's chat widget refuses to load when Lighthouse is the user agent

https://ghostchat.dev/blog/chat-widget-lighthouse-benchmark
1•jorbach•7m ago•0 comments

Like Before, You Can Go Breakneck Speeds and Make Mistakes

https://wordsrightman.beehiiv.com/p/like-before-you-can-go-breakneck-speeds-and-make-mistakes
1•tags2k•8m ago•0 comments

Ya Diktu: The Pre-Print from the AI Engineer Who Cracked Linear A

https://zenodo.org/records/21903482
1•tamarru•8m ago•0 comments

Rust fearless_SIMD v0.7: 64-bit integers, improved generics, SSE2, and upcoming

https://linebender.org/blog/fearless-simd-0-7/
1•fanf2•10m ago•0 comments

AANE – Local data-broker profile poisoning engine

https://github.com/ShadowNoiseEngineLabs/Autonomous-Algorithmic-Noise-Engine
1•ShadowNoiseENG•11m ago•1 comments

I asked Kilo to delete my data, and they practically told me to fuck off

https://www.reddit.com/r/kilocode/s/QQO7WYTJzO
3•ahriad•11m ago•0 comments

Delimiter.live – 100 free browser-based text and data tools

https://www.delimiter.live/tools
3•asiqblog•12m ago•0 comments

Ticketry: Jira alternative, but with all the data in Git

https://github.com/LoumTechnologies/ticketry
3•imagent•14m ago•0 comments

Our scheduler is so fast it can rickroll you

https://bryntum.com/blog/our-scheduler-is-so-fast-it-can-rickroll-you/
2•ritzaco•21m ago•0 comments

Js13kGames 2026 started – build a web game in 13 kilobytes

https://js13kgames.com/2026/blog/competition-has-started
2•end33r•21m ago•1 comments

Japan has recorded its ten most popular baby names every year since 1912

https://jivx.com/namae
2•momentmaker•22m ago•0 comments

Python's pre-declared constants are kinda weird

https://sebsite.pw/w/20260801-pythonconstants.html
2•birdculture•25m ago•0 comments

Sergey Brin has spent $100M to fight California's proposed billionaire tax

https://fortune.com/2026/08/11/google-cofounder-sergey-brin-california-wealth-tax-opposition-100-...
6•unclebucknasty•26m ago•0 comments

Homelab Ingress with Deterministic IPv6

https://www.petekeen.net/homelab-ingress-with-deterministic-ipv6/
1•zrail•26m ago•1 comments

From Weak Cues to Real Identities: Evaluating Inference-Driven De-Anonymization

https://arxiv.org/abs/2603.18382
1•mhrsntrk•26m ago•0 comments

The Quest for Caffeine You Can Have at Night

https://www.astralcodexten.com/p/the-quest-for-caffeine-you-can-have
3•bilsbie•28m ago•0 comments

Booksellers suspect AI firms are buying and then destroying rare books

https://arstechnica.com/tech-policy/2026/08/heres-a-balm-if-the-idea-of-destroying-books-to-train...
1•Archelaos•28m ago•0 comments

Yardmaster – manage multiple Claude Code sessions from one terminal

https://github.com/blothecap/yardmaster
1•blothecap•29m ago•0 comments

Reduce large sorted set memory with a packed B+ tree

https://github.com/redis/redis/pull/15635
1•philbo•31m ago•0 comments

Show HN: Markleft – how I review Claude's Markdown plans

https://blog.lysk.tech/markleft-ai-markdown-review/
4•mlysk•33m ago•0 comments

Apple in Talks to Pay Publishers to Improve AI-Powered Siri

https://www.wsj.com/business/media/apple-in-talks-to-pay-publishers-to-improve-ai-powered-siri-06...
1•jonbaer•34m ago•0 comments

An action firewall for MCP – OAuth says who, not whether the call should run

https://github.com/agenticdome/agenticdome-python-sdk
1•sinay_agenticdo•36m ago•0 comments

Asus enters bike market: Oxiis Intelligent Bike Booster

https://www.asus.com/accessories/bike-booster/asus-oxiis/oxiis-intelligent-bike-booster/
2•joenot443•39m ago•0 comments

StopFlock419

https://stopflock419.com/
1•edot•40m ago•0 comments

Apple and AI: Siri the Early Years

https://thechipletter.substack.com/p/apple-and-ai-siri-the-early-years
1•hasheddan•41m ago•0 comments

Show HN: A million squares, and the last one still showing up wins

https://lastpixel.live
1•LastPixel•41m ago•0 comments

When Kubernetes restarts your pod – And when it doesn't

https://www.cncf.io/blog/2026/03/17/when-kubernetes-restarts-your-pod-and-when-it-doesnt/
1•trikelef•42m ago•0 comments

Information Abundance Paradox: Long-Context Training Undermines Parametric

https://arxiv.org/abs/2608.12218
1•sbulaev•45m ago•0 comments
Open in hackernews

Show HN: API Testing and Security with AI

https://qodex.ai/
8•siddhant_mohan•1y ago

Comments

anuragdt•1y ago
Generating tests is good, but how to handle the updating tests? Also how will you handle the flakiness and side effects of AI models?
siddhant_mohan•1y ago
We handles flakiness with retries, smart waits, and isolation, while side effects are avoided using clean setups, teardowns, and state-safe mocks. Each tests scenarios are independent of each other and can be configured in a way to have prerequisite to setup the system and the post callback to cleanup the system

About updating test scenarios, we map it with your github commits and when a new commits come, we use the diff to figure out if tests failing are because of a bug or because of a new feature.

kshitijzeoauto•1y ago
It claims to plug into your CI pipeline, detect what changed, and generate relevant test cases using LLMs.

As someone who’s struggled with stale or missing tests—especially in fast-moving codebases—I find this idea quite compelling. But I’m also curious about how it handles:

Contextual understanding across large codebases (e.g., multiple modules touched in a PR) Avoiding flaky or non-deterministic tests Matching team-specific coding styles or conventions