frontpage.
newsnewestaskshowjobs

Open Source @Github

fp.

Aqua: Hardware-Agnostic Qubit Allocation for Quantum Multi-Programming

https://ieeexplore.ieee.org/document/11078404
1•rbanffy•27s ago•0 comments

NEC V20 CPU: A bit of pep for an XT

https://dfarq.homeip.net/nec-v20-cpu-a-bit-of-pep-for-an-xt/
4•jnord•4m ago•0 comments

Show HN: GSB (Gold Silver Bronze)

https://playgsb.com/
1•xamed•5m ago•0 comments

Brio mode in Colibri: Scoring a closed set instead of generating

https://github.com/JustVugg/colibri/blob/v1.12.0/docs/brio.md
1•vforno•5m ago•0 comments

We Infringe Trademarks

https://www.indiehackers.com/post/how-we-infringe-trademarks-8ff22a699b
2•InterAni•5m ago•0 comments

Self-Hosting Behind Cgnat – Be Libre

https://david.alvarezrosa.com/posts/self-hosting-behind-cgnat/
2•dalvrosa•6m ago•1 comments

Thread Trace Part 1: ROCprof Compute Viewer – ROCm Blogs

https://rocm.blogs.amd.com/software-tools-optimization/thread-trace/README.html
1•ankitg12•9m ago•0 comments

Show HN: Audit your site's structure for AI search crawlers (ChatGPT, Claude)

https://ukaiseoconsultant.co.uk/ai-driven-seo-audits/
1•auaiseo•10m ago•0 comments

Amazon blocks Meta's Muse AI agent from checkouts

https://www.neowin.net/news/amazon-blocks-metas-muse-ai-agent-from-checkouts/
1•bundie•15m ago•0 comments

Project Lily Video is getting censored by Google

https://www.youtube.com/watch?v=kQ-i642z3jc
1•frag•19m ago•0 comments

WTFs per Minute (2008)

https://www.osnews.com/story/19266/wtfsm/
1•vladde•19m ago•0 comments

Show HN: An extension to capture and annotate screenshots, with a terminal skin

https://chromewebstore.google.com/detail/webmend-–-full-page-scree/blfeopjadgdflmnibdobadhonmoe...
1•frontweb•20m ago•0 comments

Show HN: Witdem – Did your AI Agent accomplish its task? and at what cost?

https://demo.witdem.com
1•ebrahimisoheil•20m ago•0 comments

Replacing Linear MCP with linear-CLI

https://thebiglog.com/links/linear-cli-instead-of-linear-mcp
1•shibel•22m ago•0 comments

Show HN: Skillgesture – versioned, on-demand skills for AI agents

https://github.com/Gabry848/skillgesture
1•Gabry848•23m ago•0 comments

US and China Discuss Alerting Each Other to AI National Security Threats

https://www.wired.com/story/us-and-china-discuss-alerting-each-other-to-ai-national-security-thre...
3•joozio•24m ago•0 comments

What re AI in software engineering are you struggling with the most?

https://twitter.com/mitsuhiko/status/2101401648543195328
1•tosh•25m ago•0 comments

The Bounding Simplex: A SIMD-Era Rejection Primitive [pdf]

https://mcnett.org/bounding_simplex.pdf
1•ibobev•27m ago•0 comments

I built a small Instagram backup tool for my own posts, stories, and highlights

https://hikerapi.com/
2•sheraziuy•27m ago•0 comments

Neural Texture Compression in Metal 4

https://syllogi-graphikon.vercel.app/posts/metal-neural-texture-compression/
1•ibobev•28m ago•0 comments

Show HN: Search API for 3M govt contracts in 63 countries

https://www.selltostate.com/
1•nadyyym•28m ago•0 comments

First Shader from Zero in Godot 4

https://www.gdquest.com/library/first_shader_godot4_portal/
1•ibobev•28m ago•0 comments

Australia banned these Chinese CCTV cameras. Now they're turning up in EVs

https://www.abc.net.au/news/2026-09-21/ev-electric-vehicle-leapmotor-chinese-cctv-cameras-dahua-b...
2•colinprince•30m ago•0 comments

ROM Magazine Interviews Roberta Williams (1983)

https://computeradsfromthepast.substack.com/p/rom-magazine-interviews-roberta-williams
2•rbanffy•31m ago•0 comments

Show HN: Maki, an open-source multi-agent LLM framework (local or hosted)

https://github.com/BowlOfData/maki
2•bowlofdata•33m ago•0 comments

Show HN: Proxy-benchmark – is it the proxy, the browser, or your machine?

https://github.com/nodemaven/proxy-benchmark
2•pia-nm•34m ago•0 comments

New low-cost burstable Amazon EC2 T8i instances are generally available

https://aws.amazon.com/blogs/aws/new-low-cost-burstable-amazon-ec2-t8i-instances-are-generally-av...
1•mariuz•36m ago•0 comments

Microsoft Systems Journal Interviews Gordon Letwin (1987)

https://computeradsfromthepast.substack.com/p/microsoft-systems-journal-interviews
1•rbanffy•42m ago•0 comments

Been thinking about our platforms and information diet we consume lately

1•rej_log101•43m ago•0 comments

How to export ChatGPT to Google Docs without losing formatting [video]

https://www.youtube.com/watch?v=zUzkUI7U-A4
2•quysala12•47m 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