frontpage.
newsnewestaskshowjobs

Open Source @Github

fp.

Solaris, Our Interface World Models

https://runway.com/news/research/introducing-solaris
1•babelfish•1m ago•0 comments

Textual is no longer being actively maintained (IRC client)

https://github.com/Codeux-Software/Textual
1•delduca•2m ago•0 comments

GPU World

https://www.gpuworld.org/
2•tosh•3m ago•0 comments

Asleep at the wheel: More Tesla owners choosing to nap while their cars drive

https://www.nbcnews.com/tech/tech-news/tesla-fsd-sleep-wheel-full-self-driving-mode-nap-safe-dete...
2•bookofjoe•6m ago•1 comments

Enhancing the UEFI Update Capsules Experience for Open-Source Firmware

https://www.phoronix.com/news/OSS-Firmware-UEFI-Updates-Cap
1•pietrushnic•9m ago•1 comments

Apple's Phil Schiller Scales Back Role as John Ternus Era Begins

https://www.macrumors.com/2026/08/31/phil-schiller-stepping-down-app-store/
3•tosh•10m ago•0 comments

Use MCP-JS to control Modal Sandboxes

https://r33drichards.github.io/mcp-js/tutorials/modal/
1•someguy101010•11m ago•1 comments

Steam Deck / SteamOS hit over 30k Verified and Playable games

https://www.gamingonlinux.com/2026/08/steam-deck-steamos-hit-over-30-000-verified-playable-games/
2•speckx•11m ago•0 comments

ATM Flaws Reveal Key Weaknesses in the Software Supply Chain

https://www.wired.com/story/atm-flaws-reveal-key-weaknesses-in-the-software-supply-chain/
1•joozio•13m ago•0 comments

Spice Bag

https://www.tasteatlas.com/spice-bag
1•jjgreen•14m ago•0 comments

I Posted on Hacker News. Two AI Agents Emailed Me

https://www.dbpro.app/blog/i-posted-on-hacker-news-two-ai-agents-emailed-me
2•upmostly•14m ago•0 comments

NewsPulse, a news API that de-dupes and scores stories across sources

https://newspulse.io/
1•juanmauriciolop•15m ago•0 comments

Can an Engineer Speak Out for Reform?

https://www.strongtowns.org/journal/2026-8-31-can-an-engineer-speak-out-for-reform
1•oftenwrong•15m ago•0 comments

We Raced Seven AI Models to RCE

https://enclave.ai/hackingrace
1•talhof8•16m ago•0 comments

The Suffix Edge Case

1•newsoftheday•17m ago•0 comments

Show HN: RetainFast – cancellation flow widget that never touches your Stripe

https://retainfast.xyz
1•KovzX•17m ago•0 comments

Retinaa

https://retinaa.ch
2•sockaddr•19m ago•1 comments

Internet Explorer mode will be supported until at least 2029

https://learn.microsoft.com/en-us/lifecycle/faq/internet-explorer-microsoft-edge
2•gnuplustoejam•20m ago•0 comments

A ballooning problem: Weather warnings face rising risks from DOGE cuts

https://www.politico.com/news/2026/07/06/weather-warnings-budget-cuts-00986178
4•throw0101a•21m ago•1 comments

British Museum hosted Peter Thiel in private viewing of Bayeux tapestry

https://www.theguardian.com/culture/2026/aug/31/british-museum-hosted-palantir-founder-peter-thie...
6•tomwphillips•21m ago•0 comments

Konrad Zuse Museum shutting down due to lack of funding

https://www.heise.de/en/news/Zuse-Computer-Museum-ZCOM-in-Hoyerswerda-faces-closure-11344513.html
24•virtualritz•22m ago•6 comments

Anthropic legal fight with Pentagon shows shifting politics of AI

https://www.bloomberg.com/news/newsletters/2026-08-31/anthropic-legal-fight-with-pentagon-shows-s...
5•rndsignals•22m ago•0 comments

Rules of Knowledge Formulation

https://supermemo.guru/wiki/20_rules_of_knowledge_formulation
2•mkl95•22m ago•0 comments

The Llama.cpp Fork That Enables Qwen 3.8 27B Large Contexts for 16GB VRAM GPU

https://github.com/RaymondHuang210129/llama.cpp-adaptive-kv-streaming
4•dazhbog•25m ago•2 comments

I turned my security cameras into an automatic bird identification system

https://jasontucker.blog/how-i-turned-my-security-cameras-into-an-automatic-bird-identification-s...
21•speckx•27m ago•8 comments

Instagram cracks down on AI accounts pretending to be human

https://www.theverge.com/tech/986593/instagram-addresses-fake-ai-profile-slop
4•evolve2k•30m ago•1 comments

Apple Is Suddenly an AI Infra Stock as OpenAI Buys 10k+ Macs

https://247wallst.com/investing/2026/08/31/apple-is-suddenly-an-ai-infrastructure-stock-as-openai...
7•prabal97•30m ago•1 comments

The rest of the 7.3 merge window

https://lwn.net/SubscriberLink/1089791/94dc9b4ae3998556/
2•cjd8•31m ago•0 comments

Apple used to be weirder and maybe more fun

https://scottknaster.substack.com/p/apple-used-to-be-weirder-and-maybe
4•speckx•32m ago•0 comments

GPUI Digest: Rust UI in the browser, crates distribution, release notes

https://gpui-archipelago.github.io/news/august-digest/
2•Vanuan•34m 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