frontpage.
newsnewestaskshowjobs

Open Source @Github

fp.

Show HN: Get mentioned on the blogs AI cites

https://mentionagent.ai/
1•henk2•35s ago•0 comments

Airtable hides a recap in plain sight

https://www.marginpoints.com/issues/2026-08-04-airtable-hides-a-recap-in-plain-sight
1•historian1066•1m ago•0 comments

White House plans to keep AI framework under wraps

https://www.axios.com/2026/08/04/white-house-ai-framework-under-wraps
2•thm•2m ago•1 comments

The Nodebook

https://www.thenodebook.com
2•handfuloflight•2m ago•0 comments

Southern California Edison equipment blamed for 2025 Eaton fire in Los Angeles

https://www.cnn.com/2026/08/04/us/california-eaton-wildfire
1•rawgabbit•3m ago•0 comments

AI-generated websites converge on each other more than human designs do

https://ai-design-convergence.vercel.app
1•Stackrift•4m ago•0 comments

Nuclear Safety Authority supports spent nuclear fuel final disposal facility

https://stuk.fi/en/-/the-radiation-and-nuclear-safety-authority-supports-the-licence-for-a-spent-...
2•iljah•5m ago•1 comments

Agentic Coding in the Wild: Characterizing GitHub Copilot Traces at Production

https://arxiv.org/abs/2608.00101
1•matt_d•5m ago•0 comments

Code Like a Pirate with AI

https://bitfieldconsulting.com/posts/code-like-pirate
1•ingve•6m ago•0 comments

Show HN: SindriCAD – open-source parametric CAD for Linux, Windows and macOS

https://github.com/MakerViking/sindricad
1•muninworks•6m ago•0 comments

People are mysteriously disappearing off WhatsApp

https://www.the-independent.com/tech/whatsapp-account-removed-deleted-rules-b3027160.html
1•Markoff•7m ago•1 comments

The session that synced itself

https://github.com/craigstoller/claude-code-sessions/blob/main/docs/the-session-that-synced-itsel...
2•craigstoller•10m ago•0 comments

Design by Contract and Effects for LLMs

https://gavinray97.github.io/blog/design-by-contract-and-effects-for-llms
1•caminanteblanco•10m ago•0 comments

A peculiar way to install apps

https://unsung.aresluna.org/as-a-windows-user-its-a-very-surreal-way-to-install-a-program/
2•colinprince•13m ago•0 comments

Surveillance-based advertising: why ad AI economics always demand more data

https://www.adreva.ai/learn/ai-in-advertising
1•abasicodes•13m ago•0 comments

Asana's Tab Shortcuts

https://unsung.aresluna.org/asanas-fascinating-tab-shortcuts/
1•speckx•14m ago•0 comments

Show HN: And now for a break: The Swimmer (1968) in Frogger Form

https://fun-things.vercel.app/the-swimmer/
1•bethanyhunt•17m ago•0 comments

Learning the ropes: why Germany is building risk into its playgrounds (2021)

https://www.theguardian.com/world/2021/oct/24/why-germany-is-building-risk-into-its-playgrounds
2•downbad_•17m ago•0 comments

New unlimited use coding agent (Standard Code)

https://standardcode.ai/
3•jpschroeder•17m ago•0 comments

Show HN: Single Reference to 3100 APIs

https://github.com/mindcloud-inc/universal-api-reference
3•frabjoused•18m ago•1 comments

Can Reddit fend off a new wave of AI SEO spam?

https://www.theverge.com/ai-artificial-intelligence/973098/reddit-ai-search-seo-marketing-brands-...
2•CharlesW•20m ago•0 comments

So what's next (personal news from developer of popular CoreJS polyfill) (2023)

1•KolmogorovComp•21m ago•0 comments

AI Detection of Poker Player Bluffing

https://www.wired.com/story/ai-tells-detection-world-series-of-poker-espn/
1•nate•21m ago•0 comments

The Law of Jante (2015)

https://www.theparisreview.org/blog/2015/02/11/the-law-of-jante/
1•NaOH•23m ago•0 comments

Stephen Wolfram's Wife Has Died

https://writings.stephenwolfram.com/2026/08/in-memory-of-my-wife-elise-cawley-1961-2026-with-than...
11•jdcampolargo•23m ago•0 comments

Our M365 tenant has been "deauthenticated" for 20 days

https://old.reddit.com/r/sysadmin/comments/1vfbvvs/our_entire_m365_tenant_has_been_deauthenticated/
2•oidar•24m ago•0 comments

AI demand to keep near-term inflation high, says investment strategist

https://www.cnbc.com/video/2026/08/04/ai-demand-ai-data-center-inflation-pressures-ai-debt-bonds-...
1•mapping365•25m ago•1 comments

A Revised Haskell 2010 Language Report

https://blog.haskell.org/revised-haskell-2010-report/
1•throawayonthe•25m ago•0 comments

Data.table, base, dplyr, Pandas, and polars

https://arelbundock.com/posts/dt_tb_df/
1•speckx•26m ago•0 comments

Kopi: A CLI Coffee Journal

https://github.com/mrusme/kopi
1•rishikeshs•27m 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