frontpage.
newsnewestaskshowjobs

Open Source @Github

fp.

Best cutting edge steganography schemes?

1•cryptographical•45s ago•0 comments

Show HN: Ewwii, An extensible widget system for all of Linux

https://github.com/Ewwii-sh/ewwii
1•byson94•1m ago•0 comments

Laravel 13.24, Filament 90% faster, managed queues on Cloud – ADWL #063

https://a-day-with-laravel.happyto.dev/p/laravel-13-24-filament-90-faster-managed-queues-on-cloud...
1•happytodev•3m ago•0 comments

Gateway 2000's hilariously bad ads in the 90s (Part II)

https://buttondown.com/suchbadtechads/archive/gateway-2000-part-2/
2•rfarley04•14m ago•0 comments

Milankovitch Cycles

https://en.wikipedia.org/wiki/Milankovitch_cycles
1•cl3misch•16m ago•0 comments

Ask HN: Sane casual family co-op game on mobile?

2•minusf•16m ago•2 comments

Show HN: A Free Paper Trading Platform with AI Coaching for Global Markets

https://paper-trader.org
1•paperTraderOrg•17m ago•0 comments

Congo bans copper and cobalt concentrates exports

https://www.reuters.com/world/africa/congo-bans-exports-copper-cobalt-concentrates-official-order...
1•geox•20m ago•0 comments

SQRL wan't wrong, it was early

https://sjg.io/writing/sqrl-wasnt-wrong-it-was-early/
2•simonjgreen•21m ago•0 comments

The DOS Operating System

https://www.chebucto.ns.ca/~ak621/DOS/DOS-Head.html
2•AlexeyBrin•21m ago•0 comments

A Tome of Forbidden Technologies

https://ecosophia.net/a-tome-of-forbidden-technologies/
9•hosteur•26m ago•5 comments

Frontier models, transparency and trust; a new golden age in research for some?

https://scholarlyfutures.substack.com/p/frontier-models-transparency-and
3•JohnHammersley•27m ago•0 comments

The CPU is back: Rethinking the CPU-GPU split for LLM inference

https://www.redhat.com/en/blog/cpu-back-rethinking-cpu-gpu-split-llm-inference
4•eigenBasis•29m ago•0 comments

The USSR in 100 Photographs

https://trinixy.ru/7039-sssr_v_fotografijakh_100_foto.html
43•decimalenough•38m ago•25 comments

Qector-Decoder-v3: Multi-Back End Software Architecture for QEC

https://zenodo.org/records/21850315
2•QECTOR•40m ago•0 comments

Japanese Police Arrest NYAA 'First Uploader,' but Not by Watching the Swarm

https://torrentfreak.com/japanese-police-arrest-nyaa-first-uploader-but-not-by-watching-the-swarm/
3•Rant423•41m ago•0 comments

A Chinese AI model stopped OpenAI's 'unprecedented' cyber attack

https://www.cnbc.com/2026/07/24/chinese-ai-model-openai-cyber-attack.html
3•makerdiety•44m ago•0 comments

Happy 808 day: The TR-808 Monograph

https://raygum.com/research/roland-tr-808-monograph
2•stuartmemo•44m ago•1 comments

Cloudflare launches Kitesurf, a browser built for AI agents

https://techcrunch.com/2026/08/07/cloudflare-launches-kitesurf-a-browser-built-for-ai-agents/
3•ashurandi•44m ago•0 comments

1.59X speedup on SQLite 3 in 8 hrs with $150 API cost

https://github.com/ksenxx/sqlite-optimized
4•ksenxx•45m ago•0 comments

I made a memory chip price tracker in five minutes

https://memoryindex.io/
4•mbloom1915•49m ago•1 comments

Amiko: A desperate virtue signalling attempt

https://ryanbigg.com/2026/08/amiko-a-desperate-virtue-signalling-attempt
2•thunderbong•54m ago•0 comments

How a liquid rocket engine is built, animated as a factory

https://laurentiugabriel.github.io/rocket-engine/
2•laurentiurad•55m ago•0 comments

Three.js gets native support for Gaussian Splatting

https://ben3d.ca/blog/gaussian-splatting-for-threejs
3•bhouston•1h ago•0 comments

Safety fears as scientists make first viruses designed by AI

https://www.theguardian.com/science/2026/aug/06/safety-fears-as-scientists-make-first-viruses-des...
2•pseudolus•1h ago•0 comments

China is gaining ground in AI. But the U.S. still has a major advantage

https://www.cnbc.com/2026/08/07/china-us-ai-race-hugging-face-models.html
1•makerdiety•1h ago•0 comments

Why AI has brought nothing more than the conceit of wisdom

https://hedgehogreview.com/web-features/thr/posts/platos-warning-has-been-vindicated
3•GeoAtreides•1h ago•0 comments

Remembering the pre-Google web, when search was an experiment

https://arstechnica.com/gadgets/2026/08/remembering-the-pre-google-web-when-search-was-an-experim...
2•pseudolus•1h ago•0 comments

The Diamond-Square Algorithm

https://diatone.net/toys/terrain
1•diatone•1h ago•1 comments

Show HN: Otaku – A Roleplay Terminal Client

https://github.com/enclavum/otaku
2•enclavum5•1h 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