frontpage.
newsnewestaskshowjobs

Open Source @Github

fp.

New sleep apnea pill cuts breathing events by 44%

https://www.sciencedaily.com/releases/2026/08/260831015203.htm
1•elo2000•37s ago•0 comments

Anatomy of a Browser

https://medium.com/@Koukyosyumei/anatomy-of-a-browser-95014ab378f8
1•syumei•2m ago•0 comments

Show HN: Kin Form, framework-agnostic form state for React and Lit

https://kintools.dev/form
1•jolleekin•3m ago•0 comments

Show HN: EvidSeek – Analyze online discussions with traceable evidence

https://evidseek.com/
2•oliviamy•5m ago•0 comments

How the male fruit fly's brain map is advancing neuroscience

https://blog.google/innovation-and-ai/technology/research/male-fruit-fly-brain-map/
1•xnx•5m ago•0 comments

WeatherNext 3: Our most advanced global weather AI model

https://blog.google/innovation-and-ai/models-and-research/google-deepmind/introducing-weathernext-3/
1•xnx•6m ago•0 comments

'Somatics' Became the Solution to Modern Life

https://www.theatlantic.com/culture/2026/09/somatic-trend-classes/688210/
1•paulpauper•6m ago•0 comments

OpenAI Releases GPT Astra

https://developers.openai.com/api/docs/models
4•JackLau•7m ago•2 comments

What's Going on in the U.S. Treasury Bond Market?

https://stevewilliamson.substack.com/p/whats-going-on-in-the-us-treasury
2•paulpauper•7m ago•0 comments

Hugging Face acquisition price matches decimal HTML entity of emoji

https://twitter.com/calebfahlgren/status/2095516397879152851
1•tosh•8m ago•0 comments

Most laid-off SF tech workers aren't qualified for this $50 dishwasher job

https://www.sfgate.com/food/article/pho-nguyen-dishwasher-sf-22411841.php?sid=6971f3f152a4c5c4c70...
1•paulpauper•8m ago•0 comments

How to use multiple cursors in Neovim 0.13

https://blog.olimorris.com/2026/09/02/multiple-cursors-in-neovim-0.13/
2•DemiGuru•9m ago•0 comments

Best Insults in History

https://www.stephenhicks.org/2026/09/03/best-insults-in-history/
1•eustoria•9m ago•1 comments

Flock's AI Search Tool for Cops

https://www.wired.com/story/flock-ai-search-user-interface/
1•sbulaev•9m ago•0 comments

Tell HN: Reddit bots banned my accounts for no apparent reason

1•ellis0n•9m ago•1 comments

Ask HN: Why are OpenAI, Claude, and Grok simultaneously down? Coincidence?

4•halcdev•9m ago•2 comments

We Built a Different Kind of Smartphone – Minimal Phone 2 [video]

https://www.youtube.com/watch?v=HsLd7p9THL4
2•edu•9m ago•0 comments

Latency Is Now the Bottleneck

https://diverging.run/checkpoints/latency-is-the-bottleneck/
1•shay_ker•11m ago•0 comments

Major Model Providers Down

2•ijidak•11m ago•0 comments

DeltaVision: A Letter from the People Behind the Missions

https://www.deltavision.space/
1•doener•11m ago•0 comments

NBA suspends Clippers owner Steve Ballmer for 1 year in salary cap scandal

https://www.cnbc.com/2026/09/02/nba-suspends-clippers-ballmer-kawhi-leonard-salary-cap.html
1•bhouston•11m ago•1 comments

The Chinese wholesale market for Claude and ChatGPT accounts

https://vectoral.com/blog/ai-account-reseller-ecosystem
2•mlenhard•11m ago•0 comments

Haiti, Erik Prince, and the Cost of Privatized Security

https://fpif.org/haiti-erik-prince-and-the-cost-of-privatized-security/
1•robtherobber•12m ago•0 comments

Claude Is Down? Again?

1•tuleiff•12m ago•1 comments

Open AI X post on Astra

https://twitter.com/OpenAI/status/2095527557924082061
3•matthieu_bl•13m ago•0 comments

A Local Open-Weight Model Builds Its First Web App from a GitHub Issue

https://joeldare.com/a-local-open-weight-model-builds-its-first-web-app
1•codazoda•13m ago•0 comments

WebLLM Chat: AI Models Running in the Browser

https://chat.webllm.ai/
1•doener•13m ago•0 comments

Vōlt: JavaScript Package Registries for Teams

https://www.vlt.io/
1•eustoria•13m ago•0 comments

Your Queries Can Reorder the Retrieval Leaderboard

https://georgianailab.substack.com/p/your-queries-can-reorder-the-retrieval
7•ryptophan•14m ago•2 comments

Texas Republicans turn against data centers, putting big tech on notice

https://www.reuters.com/legal/government/texas-republicans-turn-against-data-centers-putting-big-...
2•tartoran•14m 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