frontpage.
newsnewestaskshowjobs

Open Source @Github

fp.

Cory Doctorow on the AI lie [video]

https://www.youtube.com/watch?v=nTqCVJFr7XM
2•dgellow•6m ago•0 comments

Moral Competence Before Moral Content: Why LLM Agents Lack the Prerequisites

https://arxiv.org/abs/2609.05036
1•sbulaev•7m ago•0 comments

Show HN: H200 GPUs under $1.99/hour, H100s at $1.19/hour

https://compute.cheap/#new-launch
2•EmiCorleone•8m ago•0 comments

Programming is Art

https://orchidfiles.com/programming-is-art/
1•theorchid•10m ago•0 comments

Zero Is the Worst Return Value

https://www.claudecertifiedarchitects.com/blog/zero-is-the-worst-return-value/
1•jockorules•10m ago•0 comments

H200 GPUs $1.99/hour, H100s at $1.19/hour

https://compute.cheap/#new
2•gpuguy•11m ago•0 comments

The new frontier of Japan's rearmament is cyberspace

https://english.elpais.com/international/2026-08-21/the-new-frontier-of-japans-rearmament-is-cybe...
1•rdmuser•14m ago•0 comments

It's time for Mark Zuckerberg to resign from Meta

https://www.theguardian.com/technology/commentisfree/2026/sep/04/mark-zuckerberg-resign-meta
3•domhudson•15m ago•1 comments

Show HN: Nitter Redirector – Find a Working Instance Automatically

https://xcancel.com/antibot/captcha
1•DavCreator•19m ago•0 comments

I was on Ubuntu's first design team in 2009 London

https://twitter.com/dvdsgl/status/2096775107989672007
3•tosh•19m ago•0 comments

Australians will be able to switch off social media algorithms

https://www.bbc.co.uk/news/articles/cn9wyvxn95vo
1•rwmj•19m ago•0 comments

When 'if' slows you down, avoid it

https://easylang.online/blog/branchless
2•signa11•23m ago•0 comments

Agent memory that forgets and distorts on purpose

https://github.com/jbsalles/Selmem
1•Jibs79•24m ago•0 comments

IKEA Hacks and DIY Ideas – IKEA Hackers

https://ikeahackers.net
1•thunderbong•24m ago•0 comments

Forge: Go Library and CLI for Working with GitHub, GitLab, Forgejo

https://github.com/git-pkgs/forge
1•joooscha•27m ago•0 comments

Understanding Inference and the Economics of Enterprise AI

https://www.vistaequitypartners.com/insights/inference-economics-enterprise-ai/
1•nlpnerd•27m ago•1 comments

Show HN: Crew — Let Claude/Codex/OpenCode agents talk to each other

https://github.com/0xmmo/crew/
2•mmoustafa•30m ago•1 comments

Show HN: Mailward – Open Outlook PST/OST files in the browser, nothing uploaded

https://pst.aivismonitor.com
1•xsxs89757•30m ago•0 comments

A World Away from Family

https://www.ajarn.com/blogs/bangkok-phil/world-away-family
1•rzk•32m ago•0 comments

Should You Buy a ThinkPad?

https://www.rubenerd.au/should-you-buy-a-thinkpad/
3•Tomte•34m ago•2 comments

Outrageously Small Neural Networks: 6,616 tok/s on One Intel AMX Core [pdf]

https://huggingface.co/gdiamos/amx-reasoning-v1-instruct/blob/main/paper.pdf
2•gdiamos•37m ago•1 comments

AI economics. OpenAI financials leaked ahead of IPO

https://nixie.substack.com/p/ai-economics-openai-financials-leaked
1•u1hcw9nx•37m ago•1 comments

Show HN: DiskBuddy – Visualize Your Mac Storage in 8 Different Ways

https://www.diskbuddy.com
1•mohitvaswani•52m ago•0 comments

The purpose of DNS is to spread scams

https://shkspr.mobi/blog/2026/09/the-purpose-of-dns-is-to-spread-scams/
4•CoderLim110•54m ago•1 comments

Version Control Second Coming

https://psantosl.github.io/posts/version-control-second-coming/
1•sasham•59m ago•0 comments

Work hard – nobody cares how good you used to be

https://www.theguardian.com/fashion/2026/sep/07/work-hard-nobody-cares-how-good-you-used-to-be-pa...
2•teleforce•1h ago•0 comments

Show HN: Free Spotify Canvas Maker

https://www.neuralframes.com/tools/spotify-canvas-maker
1•nicollegah•1h ago•0 comments

Show HN: GPT-5.1 returned 0 bytes, שָׁרְט isn't Hebrew, AGI criterion defined

https://www.reddit.com/r/ArtificialInteligence/comments/1w9kgcl/gpt51_returned_0_bytes_gpt52_surf...
1•rayanpal_•1h ago•0 comments

Show HN: Free Song to Lyrics

https://www.neuralframes.com/tools/song-to-lyrics
1•nicollegah•1h ago•0 comments

AI Escape Incident Tracker

https://ai-escape.watch/#registry
1•FinAck-Sec•1h ago•1 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