frontpage.
newsnewestaskshowjobs

Open Source @Github

fp.

20% price reduction for GPT 5.6 Sol

https://community.openai.com/t/20-price-reduction-for-gpt-5-6-sol-api-codex-credits-and-chatgpt-w...
1•soheilpro•17s ago•0 comments

OpenAI cuts developer pricing for frontier GPT-5.6 Sol model by more than 20%

https://www.reuters.com/technology/openai-cuts-developer-pricing-frontier-gpt-56-sol-model-by-mor...
3•joshuawright11•6m ago•0 comments

Show HN: Flight Ledger – Track your flights, what they cost, and United status

https://app.flightledger.net
1•voladd•6m ago•0 comments

There's no reason for software to be slow anymore

https://danluu.com/perf-opt/
1•Jach•9m ago•0 comments

Open-source Zen Engine is out of beta

https://docs.gorules.io/changelog
1•jawns•11m ago•0 comments

Initial focus for our partnership with Motorola is a regular non-folding device

https://grapheneos.social/@GrapheneOS/117136278553665985
2•Cider9986•13m ago•0 comments

In 1957, Disney Built Our Friend the Atom. We Now Need Our Friend the AI

https://medium.com/@chipmunkworks/the-disney-solution-why-silicon-valley-needs-to-build-our-frien...
1•treelover•14m ago•0 comments

Lie Detection and Language Models

https://philosophybear.substack.com/p/lie-detection-and-language-models
1•paulpauper•15m ago•0 comments

Plotter Related Algorithms

https://drawingbots.com/algorithms/
1•msurguy•19m ago•1 comments

Show HN: Pricefight – a website leaderboard where everyone starts at the bottom

https://pricefight.lol/
1•adjohu•21m ago•0 comments

Wind energy offers a lifeline for this Kansas rancher

https://vitalsigns.edf.org/story/wind-energy-offers-lifeline-kansas-rancher
1•thunderbong•22m ago•1 comments

Turn any REST API into the shape of another

https://bryanhu.com/shotgun/
1•thatxliner•26m ago•0 comments

Towards Physics of Multimodal Pretraining

https://arxiv.org/abs/2608.05000
1•gmays•27m ago•0 comments

Touareg CR after missile attack [video]

https://www.youtube.com/watch?v=AmCAjVvaqKE
1•debo_•32m ago•0 comments

Fighting Bot Traffic

https://markustenghamn.com/blog/fighting-bot-traffic
1•sukram•34m ago•0 comments

Whiteboard: Claim Your Pixels

https://whiteboard.lol
1•insomnie•36m ago•0 comments

Vibe coding personal apps in mid-2026

https://www.flourish.org/2026/08/personal-apps/
2•birdculture•36m ago•0 comments

The Horse and Sparrow Economic Theory

http://the13thtribe.blogspot.com/2025/03/the-horse-and-sparrow-economic-theory.html
1•thunderbong•37m ago•0 comments

Passive Investing and the Decline of Active Mutual Fund Alpha

https://papers.ssrn.com/sol3/papers.cfm?abstract_id=6902444
1•toomuchtodo•39m ago•1 comments

Underrated Terminal App

https://apps.apple.com/fr/app/onepilot-ssh-shell-terminal/id6759485908
2•elearia•49m ago•0 comments

Show HN: Updating my wedding registry website with AI in 275 commits

https://benhoyt.com/writings/updating-gifty-with-ai/
1•benhoyt•50m ago•0 comments

5 years on, Afghan girls still barred from education under Taliban

https://apnews.com/article/afghanistan-girls-excluded-secondary-education-taliban-618c7f5c7659d43...
2•gmays•51m ago•0 comments

Our classifier scored "I have never seen a shadow figure" as a sighting

https://theanomalynetwork.com/notes/negation
2•kyleclouthier•52m ago•0 comments

MileClerk – Automatic mileage logging and IRS export (MileIQ alternative)

https://mileclerk.onepingfanventure.com/
1•huangheus•53m ago•0 comments

How to Measure Chess Position Complexity

https://chesscheaterdetector.com/blog/how-to-measure-chess-position-complexity/
1•domhudson•55m ago•0 comments

Mockup Nvidia GPUs on Linux systems

https://github.com/rnts08/Mock-nvidia-gpu-linux
3•rnts08•55m ago•1 comments

Ox Alpha Is Performing SOTA and as Well as GPT-5.6 Sol in Multi-Agent Arena

https://twitter.com/olam_labs/status/2090930116138582224
2•sensho•57m ago•1 comments

Show HN: AI driven civic dashboard for Palo Alto

https://paloaltocivic.com
1•brianhama•57m ago•0 comments

Plural Form(s) in Translation(s)

https://doc.qt.io/archives/qq/qq19-plurals.html
1•zebreus•57m ago•0 comments

Intel Hyper Threading Performance on the Xeon 678X "Granite Rapids-WS"

https://www.phoronix.com/review/intel-xeon-678x-ht
1•rbanffy•59m 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