frontpage.
newsnewestaskshowjobs

Made with ♥ by @iamnishanth

Open Source @Github

fp.

Let the AI Cook

https://www.ivan.codes/blog/let-it-cook
1•thecupisblue•1m ago•0 comments

Python 3.15: features that didn't make the headlines

https://blog.changs.co.uk/python-315-features-that-didnt-make-the-headlines.html
1•rbanffy•2m ago•0 comments

Google just spat in my face

https://dbushell.com/2026/05/20/google-just-spat-in-my-face/
1•gsky•3m ago•0 comments

America Needs to Build More Housing

https://www.nytimes.com/interactive/2026/05/18/opinion/affordable-housing-america.html
1•michaelrkn•7m ago•0 comments

Flipper One – we need your help

https://blog.flipper.net/flipper-one-we-need-your-help/
1•sandebert•9m ago•0 comments

Tech researchers are suing the Trump administration over the future of online s

https://www.technologyreview.com/2026/05/21/1137632/lawsuit-trump-administration-online-safety-co...
2•joozio•10m ago•0 comments

Lost Images from the 1945 Trinity Nuclear Test Restored

https://spectrum.ieee.org/trinity-nuclear-test
2•pseudolus•10m ago•0 comments

One opinionated path from what is money? to I run my own Bitcoin node

https://www.learnbitcoin.com/journey
2•granya•11m ago•0 comments

Necropolis in Spain is forcing rethink of who built Europe's first great tombs

https://sciencex.com/news/2026-05-year-necropolis-central-spain-radical.html
2•pseudolus•11m ago•0 comments

Python is weird – Maciej Kowalski

https://kowal.dev/blog/python-is-weird
2•rbanffy•12m ago•1 comments

3.125-Bit LLM quantization bypassing tensor cores

https://blog.djellalmohamedaniss.workers.dev/posts/data-free-3bit-quantization/
2•dmaniss•17m ago•0 comments

Galviq

https://galviq.com
2•alediemmee•18m ago•0 comments

Dimster, a performance benchmarking tool for Apache Kafka

https://jack-vanlightly.com/blog/2026/5/20/introducing-dimster-a-performance-benchmarking-tool-fo...
2•rmoff•19m ago•0 comments

Reviewing Last Decade's Predictions for 2026

https://micahblachman.beehiiv.com/p/reviewing-last-decade-s-predictions-for-2026-part-1
2•subdomain•19m ago•0 comments

Wati alternatives compared by real all-in cost at 2k conversations/month

https://wexio.io/blog/wati-alternatives
2•Puvvl•20m ago•0 comments

Bun Isolated Installs

https://bun.com/docs/pm/isolated-installs
2•ankitg12•20m ago•0 comments

Earth is now heating up twice as fast as in previous decades

https://www.newscientist.com/article/2518362-earth-is-now-heating-up-twice-as-fast-as-in-previous...
3•Anon84•20m ago•0 comments

Insurance Pricing – compare TabPFN 3.0 vs. classic ML

https://oleksandrruppelt.substack.com/p/insurance-pricing-with-tabpfn-30
2•pplonski86•27m ago•0 comments

Gribouille: A Grammar of Graphics for Typst

https://mickael.canouil.fr/posts/2026-05-20-gribouille-grammar-of-graphics-for-typst/
2•mcanouil•28m ago•0 comments

Denmark's wind and solar investments shield it from global energy turmoil

https://www.pbs.org/newshour/show/how-denmarks-wind-and-solar-investments-shield-it-from-global-e...
3•vrganj•29m ago•0 comments

Show HN: A searchable archive of 500 historical medical curiosities

https://www.thomas-morris.uk/medical-curiosities-archive/
3•mrtndavid•29m ago•0 comments

IBM invented semiconductor manufacturing automation

https://spectrum.ieee.org/semiconductor-fabrication
2•rbanffy•33m ago•0 comments

AI Can Seem More Human Than Real Humans in a Classic Turing Test, Study Finds

https://today.ucsd.edu/story/ai-can-seem-more-human-than-real-humans-in-a-classic-turing-test-stu...
3•giuliomagnifico•36m ago•1 comments

Imec Semiconductor Technology Roadmap: CFETs in 2033

https://spectrum.ieee.org/semiconductor-technology-roadmap
3•rbanffy•37m ago•0 comments

Async Python client for private DeepSeek API

https://github.com/boykopovar/aiodeepseek
2•boykopovar•40m ago•0 comments

Lessons I Learned from Creating Searx

https://hister.org/posts/lessons-i-learned-from-creating-searx
8•mstef•42m ago•1 comments

Built a live multi-agent AI operations workspace for software engineering teams

https://realtechsolutions.work.gd/
2•MunangiwaR•44m ago•0 comments

QuickSilver Pro – OpenAI-Compatible Platform for DeepSeek V4 and Qwen

https://quicksilverpro.io/
2•charlei•45m ago•1 comments

Book on Truth in the Age of A.I. Contains Quotes Made Up by A.I

https://www.nytimes.com/2026/05/19/business/media/future-of-truth-ai-quotes.html
2•andsoitis•45m ago•0 comments

Pi creator removed from OpenClaw's GitHub organization

https://twitter.com/badlogicgames/status/2057391656379269272
2•rob•45m 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