frontpage.
newsnewestaskshowjobs

Open Source @Github

fp.

Show HN: Company-as-Code –> Spec and Validator

https://github.com/Pirol-ai/company-as-code
1•grischajacobs•47s ago•0 comments

Ask HN: How do GitHub Copilot and Anthropic Claude compare in cost?

1•erwindegroot•2m ago•1 comments

Jev Projects Listing Site

https://jevable.com/
1•Bluestein•2m ago•0 comments

Turn Phone into PC Speaker

2•kinle•4m ago•0 comments

Android 17 enables certificate transparency, and breaks custom CAs

https://httptoolkit.com/blog/android-17-certificate-transparency/
2•pimterry•4m ago•0 comments

Meta's New Muse AI Agent Read My Private Messages. I Never Asked It To

https://www.inc.com/jason-aten/metas-new-muse-ai-agent-read-my-private-messages-i-never-asked-it-...
1•LikelySupernova•7m ago•0 comments

WayVR – Open-source VR desktop overlay for Linux

https://digitalescapetools.com/tools/wayvr.html
1•xabd•9m ago•0 comments

Show HN: Moto – a native habit tracker for iPhone with a lifetime purchase

https://motohabit.com/
1•voising•9m ago•0 comments

Show HN: ReWeaver AI DriftDetector – score a GitHub repo's production readiness

https://drift.reweaver.ai/
1•gojongo•10m ago•0 comments

PEP 845 – Leading-Dot Value Patterns

https://peps.python.org/pep-0845/
1•orf•12m ago•0 comments

Hyprcrd – native Wayland host for Chrome remote desktop

https://github.com/jxoesneon/hyprcrd
1•jxoesneon•15m ago•0 comments

IdP Registration API

https://github.com/w3c-fedid/idp-registration/
1•erlend_sh•20m ago•0 comments

Shut up and calculate: Jev's new AI primitives for coders

https://www.theregister.com/devops/2026/09/23/shut-up-and-calculate-jevs-new-ai-primitives-for-co...
1•beardyw•21m ago•0 comments

Show HN: Gwae – infinite-scroll terminal multiplexer for AI agent fleets

https://github.com/hongnoul/gwae
1•hongnoul•21m ago•0 comments

Show HN: Structured Promptmaker

https://www.gptpromptmaker.com/
2•sanathbhat•27m ago•0 comments

Porting a clearing-house money market to a smart contract

1•citizensinan•30m ago•0 comments

Arcentry is back – create beautiful 3D infrastructure diagrams

https://arcentry.com/?src=hn
2•wolframhempel•30m ago•0 comments

Listening to loud music on a Singapore bus? It'll cost you

https://www.cnn.com/2026/09/22/travel/singapore-bus-rules-music-intl-hnk
2•edward•32m ago•1 comments

"Father of The Elder Scrolls" Julian LeFay has passed away (2025)

https://www.gamesradar.com/games/the-elder-scrolls/father-of-the-elder-scrolls-julian-lefay-has-p...
2•anotherhue•32m ago•0 comments

I am done with this shit

https://www.reddit.com/r/ClaudeAI/comments/1wm5c21/i_am_done_with_this_shit/
2•meander_water•32m ago•0 comments

Tradeoff considerations while running LLM models locally

https://swapniltalekar.substack.com/p/should-you-be-running-llm-models
1•swapnilt•35m ago•0 comments

Scott Jenson: Are we going to use the same Desktop UX forever? [video]

https://www.youtube.com/watch?v=V7AfAcQwLW0
1•KitN•36m ago•0 comments

Secretive gambling industry exposed in leak

https://www.ftm.eu/articles/curacao-secretive-gambling-industry-exposed-in-leak
2•fh973•37m ago•0 comments

AurionMail: E2EE suite (CryptPad and Stalwart) with single-password UX

https://aurionmail.github.io/docs/
2•polo46•41m ago•0 comments

Ask HN: How do you cope with AI being used to target and bomb children?

3•trumbitta2•43m ago•4 comments

Claude Opus 5.5, GPT-6 Sol, GPT-6 Luna, and a new price war

https://simonwillison.net/2026/Sep/22/opus-and-sol-and-luna/
2•theanonymousone•45m ago•0 comments

Show HN: Semantic Search for Zotero Local

https://github.com/ilDon/zotero-semantic-search
1•ildon•46m ago•0 comments

Show HN: Listen to your eBook and control the playback sentence by sentence

https://documentplayer.com/
1•janpmz•46m ago•0 comments

GPT-6 Sol and Luna push the cost efficiency frontier by halving token cost

https://artificialanalysis.ai/articles/gpt-6-sol-and-luna-push-the-cost-efficiency-frontier
1•theanonymousone•48m ago•0 comments

Observe – local semantic code search that admits when grep beats it

https://github.com/tritsystem/012-trit-search
1•gbranaa4•55m 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