frontpage.
newsnewestaskshowjobs

Open Source @Github

fp.

Tim O'Reilly – Google's Westinghouse Bet

https://asimovaddendum.substack.com/p/googles-westinghouse-bet
1•rmason•17s ago•0 comments

QTC – An old-school-cool terminal client for MeshCore messaging – Linux / macOS

https://github.com/initsixdev/QTC
1•brna-2•51s ago•0 comments

What a California License Plate Taught Me About How AI "Knows"

https://techunpacked.substack.com/p/32-what-a-california-license-plate
1•groverneev•2m ago•0 comments

Show HN: OutageDeck – one view of 172 provider status feeds

https://outagedeck.com/stack
1•koko3tallah•5m ago•0 comments

Divers recover a bottle of Guinness from a 162-year-old shipwreck

https://www.washingtonpost.com/science/2026/08/08/divers-recover-bottle-guinness-162-year-old-shi...
3•bookofjoe•9m ago•1 comments

Open-source interactive map for the Aug 12 total solar eclipse

https://eclipsefan.org/?v=2&t=max&layers=eclipse%2Cbesselian%2Cumbra-live%2Cshadow-3d%2Ccloud-pro...
3•MarcoDewey•19m ago•0 comments

OpenAI to pause some work on AI model Astra due to security concerns

https://www.theguardian.com/technology/2026/aug/08/openai-astra-security-concerns
2•tzmlab•21m ago•1 comments

QVAC – Decentralized, Local AI in a Single API

https://qvac.tether.io/
1•conferza•22m ago•0 comments

Apple's war on OpenAI is about who owns the Attachment Economy

https://www.machinesociety.ai/p/apples-war-on-openai-is-really-about
2•mikelgan•23m ago•1 comments

Show HN: Dive into Amiga.games

https://classicreload.com/platform/amiga%20os
1•kilian-ai•23m ago•0 comments

Show HN: HolyCode Cloud – persistent Linux workstations for AI

https://holycode.cloud
1•CoderLuii•27m ago•0 comments

KubeTective: Deterministic Incident Investigation for Kubernetes

https://github.com/GlediLami/kubetective
1•Gledis•28m ago•0 comments

ACM Europe Summer School on MLIR 2026: Streamed Live, August 10-14

https://mlir-school.github.io/summer-2026/program/
1•matt_d•31m ago•0 comments

We have a chance to fix the Jones Act

https://www.abundanceandgrowth.org/p/we-have-a-chance-to-fix-the-jones
2•JumpCrisscross•31m ago•0 comments

The Costs of Environmental Land Use Regulation

https://mtabarrok.com/publications/environmental-land-use
2•JumpCrisscross•31m ago•0 comments

Show HN: Zero-bloat, client-side utility suite with zero telemetry

https://summit-side-utilities.pages.dev/
1•james_utils•32m ago•1 comments

Whisked: The Food Corridor's Shared Kitchen Summit [video]

https://www.youtube.com/watch?v=frhsHb8CFDs
1•mooreds•32m ago•0 comments

The Architecture of Open Source Applications

https://aosabook.org/en/
3•amperleft•33m ago•0 comments

Picking berries is my meditation

https://www.tsoon.com/posts/picking-berries-meditation/
2•mooreds•33m ago•1 comments

The German Mittelstand

https://kieranvelasquez.substack.com/p/on-the-german-mittelstand
1•mooreds•34m ago•0 comments

OWASP-amass – In-depth attack surface mapping and asset discovery

https://github.com/owasp-amass/amass
1•gurjeet•37m ago•0 comments

Benchmarking LLMs on File System Design and Implementation

https://arxiv.org/abs/2608.00280
2•matt_d•38m ago•0 comments

Subdomain Center – Largest Subdomain Database

https://www.subdomain.center/
1•gurjeet•38m ago•0 comments

Thomas Wolf thread on the AISI incident

https://twitter.com/Thom_Wolf/status/2085084718320464230
1•cyanbane•43m ago•0 comments

Show HN: agent-hop – reverse-engineered session formats to resume in any agent

https://github.com/hetpatel-11/agent-hop
1•HetPatel106•47m ago•0 comments

Differential heuristics: learning about a way to optimize the A* heuristic

https://www.redblobgames.com/blog/2026-08-08-differential-heuristics/
1•matt_d•48m ago•0 comments

MCP Server Budgeting Tool

https://www.designshippers.com/work/context-budget.html
1•krm01•48m ago•0 comments

AI and War Is Being Oversold

https://phillipspobrien.substack.com/p/ai-and-war-is-being-oversold-right
3•JumpCrisscross•49m ago•0 comments

New: Create AI marketing games in your brand style

https://refybe.com/en
1•refybe•51m ago•0 comments

Console.log recursively processes format specifiers introduced by %s

https://issues.chromium.org/issues/543972096?pli=1
1•dfranke•52m ago•1 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