frontpage.
newsnewestaskshowjobs

Open Source @Github

fp.

Rust is the largest beneficiary (among programming languages) of coding agents

https://twitter.com/peterjliu/status/2087583363792253158
1•peterjliu•46s ago•0 comments

AI 'productivity pollution': the hidden tax on everyone

https://www.machinesociety.ai/p/productivitypollution
1•mikelgan•2m ago•1 comments

Maintaining an organizational knowledge graph with an LLM and event sourcing

https://blog.arkency.com/maintaining-an-organizational-knowledge-graph-with-an-llm-and-event-sour...
2•pdabrowski6•3m ago•0 comments

Turn Hacker News into a personalized brief

https://briefin.com/hackernews/
2•DSemba•4m ago•0 comments

Show HN: Claude Code kept ignoring our MCP tools, so we used hooks instead

https://github.com/NanoNets/Graft
2•Shhdwi•5m ago•0 comments

A few strong opinions about AI

https://noisydeadlines.net/a-few-strong-opinions-about-ai
2•speckx•5m ago•0 comments

Researcher Launches 'CPU Deoptimization' Project to Identify Slowest x86

https://www.tomshardware.com/pc-components/cpus/hardware-researcher-spins-up-cpu-deoptimization-p...
1•birdculture•5m ago•0 comments

SpaceXAI's Grok 4.6 Scores 61 on the Artificial Analysis Intelligence Index

https://artificialanalysis.ai/articles/grok-4-6-benchmarks-and-analysis
3•wertyk•5m ago•0 comments

Can AI do novel security research? Meet the HTTP Terminator

https://portswigger.net/research/can-ai-do-novel-security-research
1•mahemm•7m ago•0 comments

We tested six $24 Linode VMs in Los Angeles: CPU stayed flat, storage varied 76%

https://webbynode.com/articles/linode-24-dollar-vm-cpu-stable-storage-varied
1•gsgreen•8m ago•0 comments

HTML over WebSockets: real-time SPAs with barely any JavaScript

https://en.andros.dev/blog/ef4968f5/html-over-websockets-real-time-spas-with-barely-any-javascript/
2•redbell•8m ago•0 comments

FinCEN Ends Beneficial Ownership Reporting for Small Business Owners

https://home.treasury.gov/news/press-releases/sb0603
1•Cider9986•9m ago•0 comments

I "wrote" my own 8086 nostalgia emulator

https://pavkam.dev/2026-08-11-agents-rebuilt-my-childhood-computer/
1•speckx•11m ago•0 comments

Four Lads Who Shook the (Old) World: Alessio, Andy, Jervis, & Tuomas Drop By

https://bedroombattlefields.com/alessio-cavatore-andy-chambers-jervis-johnson-tuomas-pirinen/
2•Michelangelo11•12m ago•0 comments

Show HN: Snipsy – turn photos into a dated stamp keepsake, sent the same day

https://hosting-pages.netlify.app/snipsy
2•ashwinn11•13m ago•1 comments

Live: Total Solar Eclipse – August 12, 2026 [Live Stream] [video]

https://www.youtube.com/watch?v=DtjbfQtqlsY
2•andai•13m ago•1 comments

Wisconsin Primary Election Results

https://www.nytimes.com/interactive/2026/08/11/us/elections/results-wisconsin-primary.html
2•whack•13m ago•0 comments

In case you think there is consciousness, intelligence or personality in an LLM [video]

https://www.youtube.com/watch?v=vXV2ltVdLMQ
2•spottedmarley•13m ago•1 comments

New York State Newspapers on Microfilm

https://nysl.nysed.gov/nysnp/title4
2•gregsadetsky•16m ago•0 comments

Kalshi and Polymarket bets on clinical trials criticized as 'ghastly'

https://www.npr.org/2026/08/07/nx-s1-5922530/patients-betting-kalshi-polymarket-clinical-trials
2•bryanrasmussen•16m ago•0 comments

Beijing is forcing a mass breakup with AI lovers

https://restofworld.org/2026/china-ai-boyfriend-ban-bytedance-doubao/
3•impish9208•17m ago•0 comments

Using math for solving real-life problems

https://app.notion.com/p/Number-Pi-Podcast-E09-3b46c4fc04cb8077aad7fb4d4b1eb6cc
2•armanj•18m ago•0 comments

Who is Anthropic's auditor – and why should we care?

https://www.ft.com/content/b93d8030-203b-4445-b4a7-49e52d9b17a5
1•petethomas•18m ago•0 comments

Show HN: Harbofly, reclaim the 20–100GB of dev caches on your Mac

https://harbofly.app
2•buildcomcarlos•18m ago•0 comments

Ada 83/TLALOC: a modern Ada 83 compiler with DIANA 86 HLIR and fasmg back end

2•ViMoBr•18m ago•1 comments

Multi-tenant BYOK encryption in PostgreSQL with pgcrypto

https://xata.io/blog/multi-tenant-byok-encryption-in-postgresql-with-pgcrypto
2•tudorg•19m ago•0 comments

Data Center Foes' Newest Tack: Sue Locals over Approval Process

https://news.bloomberglaw.com/litigation/data-center-foes-newest-tack-sue-locals-over-approval-pr...
2•speckx•19m ago•0 comments

Oracle has drawn up plans for a new round of layoffs this month

https://www.businessinsider.com/oracle-is-planning-another-round-of-job-cuts-this-month-2026-8
4•DGAP•20m ago•0 comments

Optimizing SQLite for Servers

https://kerkour.com/sqlite-for-servers
3•cold_pizz4•21m ago•0 comments

Glaciers on the Climate Dashboard

https://climate.metoffice.cloud/glaciers.html
5•mooreds•21m 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