frontpage.
newsnewestaskshowjobs

Open Source @Github

fp.

Finding the Last Bottlenecks in json2xml with Flamegraphs

https://vinitkumar.me/json2xml-flamegraph-optimization/
1•Brajeshwar•52s ago•0 comments

Ask HN: Assistive Tech Ideas for Dementia

1•thanksd•56s ago•0 comments

Anthropic runs like Wile E. Coyote into the brick wall of consciousness research

https://www.theintrinsicperspective.com/p/anthropic-runs-like-wile-e-coyote
1•surprisetalk•1m ago•0 comments

Inventing Eliza: The First Chatbot's Hidden Code

https://spectrum.ieee.org/eliza-chatbot-source-code
1•rbanffy•1m ago•0 comments

How to publish to PyPI using GitHub Actions securely

https://snarky.ca/how-to-publish-to-pypi-using-github-actions-securely/
1•rbanffy•2m ago•0 comments

AgentReady – MCP server that makes any docs site queryable by AI agents

https://www.agentready.it.com
1•AshHackerNews•2m ago•0 comments

TSMC plans further $100B US investment to feed AI demand

https://asia.nikkei.com/business/tech/semiconductors/tsmc-plans-further-100bn-us-investment-to-fe...
1•cwwc•5m ago•1 comments

Memories are an anti-pattern for Claude Code

https://keyboardsdown.com/posts/02-memories-are-an-anti-pattern/
1•yammosk•5m ago•0 comments

Why Am I Left-Handed?

https://www.quantamagazine.org/why-am-i-left-handed-20260713/
1•thm•5m ago•0 comments

Show HN: Fireplot – I built a take-home pay map to see if I should leave Belgium

https://fireplot.app
2•lotsoworks•7m ago•0 comments

GitHub banned my account after my projects suddenly spiked on Reddit

2•lpierge•7m ago•1 comments

Beat the Couch

https://beatthecouch.com/
1•msalsas•8m ago•1 comments

We built a customer support agent that learns

https://vectorize.io/blog/how-we-built-a-customer-support-agent-that-actually-learns-with-hindsig...
2•cbartholomew•10m ago•1 comments

Greenland is losing so much ice that its gravity is getting weaker: researcher

https://www.cbc.ca/radio/thecurrent/greenland-melting-ice-1.7089298
2•pseudolus•10m ago•0 comments

Show HN: AI Law Tracker – one audited API for US, EU and global AI law

https://ai-law-tracker.com
3•asm28208•11m ago•0 comments

Show HN: SaaS isn't dead until we all stop using dbeaver

https://getdpt.com/
1•realdjpaulyd•12m ago•0 comments

No Shark Is Safe: Shark Vacuums Are Vulnerable to RCE

https://tokay0.com/posts/millions-of-shark-vacuums-vulnerable-to-rce.html
1•dfc•13m ago•0 comments

Kimi K3 released on web and app

https://old.reddit.com/r/LocalLLaMA/comments/1uy3a0q/kimi_k3_released_on_web_and_app/
3•cmrdporcupine•14m ago•1 comments

8% of images on Discord are scams: Blocking Mr. Beast scams

https://abigail.sh/blog/detecting-and-stopping-mr-beast-scams-discord
4•abigailphoebe•15m ago•1 comments

Interactive map predicts climate-driven farm decline by end of century

https://www.euronews.com/2026/07/16/interactive-map-predicts-climate-driven-farm-decline-by-end-o...
2•mariuz•16m ago•0 comments

ReactBench – evaluation for coding agents on realistic React work

https://www.reactbench.com/
2•nreece•16m ago•0 comments

Micro Web-Framework for COBOL

https://github.com/azac/cobol-on-wheelchair
2•zdkaster•19m ago•0 comments

Celestrak adds catalog digit, fixes Y2K bug

https://www.celestrak.org/satcat/
2•1970-01-01•19m ago•0 comments

Show HN: Cortier – your AI negotiates dinner plans with your friends' AIs

https://cortier.ai/
2•CortierAI•20m ago•0 comments

How to spend 15 years perfecting a product

https://refactoring.guru/email/gbb-rollout2
6•neochief•21m ago•0 comments

Show HN: Companion eBook for The Odyssey audiobook narrated by AI Michael Caine

https://github.com/stoilms/odyssey-ebook-michael-caine-elevenlabs-narration
2•stoilms•22m ago•0 comments

The Human-in-the-Loop Is Tired

https://pydantic.dev/articles/the-human-in-the-loop-is-tired
2•polyrand•22m ago•0 comments

JD Vance accuses Israel of plot against him and drops Mossad-Epstein bombshell

https://www.dailymail.com/news/article-15980465/jd-vance-israel-epstein-mossad-rogan.html
3•Bender•24m ago•0 comments

Portable Memory or Permanent Lock-In

https://stantyan.com/blog/portable-memory-or-permanent-lock-in/
2•stantyan•24m ago•0 comments

UK Primary Steelmaking Review 2025 [pdf]

https://assets.publishing.service.gov.uk/media/690b868714b040dfe829237d/uk-primary-steelmaking-re...
1•pjc50•24m 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