frontpage.
newsnewestaskshowjobs

Made with ♥ by @iamnishanth

Open Source @Github

fp.

Squircle

https://en.wikipedia.org/wiki/Squircle
1•djoldman•15s ago•0 comments

EU opens probe of Google over news site rankings

https://www.euractiv.com/news/eu-opens-probe-of-google-over-news-site-rankings/
2•nabla9•3m ago•1 comments

Visual Studio 2026, .NET 10, and C# 14 are released

https://visualstudiomagazine.com/articles/2025/11/12/visual-studio-2026-ga-first-intelligent-deve...
1•todsacerdoti•3m ago•0 comments

An Interview with Unity CEO Matthew Bromberg About Turnarounds

https://stratechery.com/2025/an-interview-with-unity-ceo-matthew-bromberg-about-turnarounds/
1•feross•5m ago•0 comments

Jsonrepair: Repair Invalid JSON Documents

https://github.com/josdejong/jsonrepair
1•vismit2000•6m ago•0 comments

Autumnjs: Reactive, deterministic, GPU-aware, ultra-low-latency front end engine

https://github.com/renderhq/autumnjs
1•handfuloflight•7m ago•0 comments

Show HN: I built whatstype.org – a free personality test site

https://whatstype.org/en
1•olivefu•7m ago•0 comments

fuckborderradius.com

https://fuckborderradius.com
4•helloplanets•20m ago•0 comments

Charlie Munger and the Psychology of Human Misjudgement

https://fs.blog/knowledge-project-podcast/outliers-charlie-munger/
2•feross•20m ago•0 comments

Why smart instruction-following makes prompt injection easier

https://www.gilesthomas.com/2025/11/smart-instruction-following-and-prompt-injection
1•ibobev•22m ago•0 comments

AI Preferences (aipref)

https://datatracker.ietf.org/wg/aipref/about/
1•jruohonen•23m ago•0 comments

The Tale of the Top-Tier Intellect

https://www.lesswrong.com/posts/3q8uu2k6AfaLAupvL/the-tale-of-the-top-tier-intellect
1•cl3misch•23m ago•0 comments

Hilbert space: treating functions as vectors

https://eli.thegreenplace.net/2025/hilbert-space-treating-functions-as-vectors/
2•signa11•25m ago•0 comments

Your AI Agent Probably Shouldn't Be an Agent

https://deesoomens.substack.com/p/ai-agents-the-latest-stop-on-the
1•happy-days•27m ago•0 comments

Ask HN: What do you do while LLM is writing code

2•me551ah•29m ago•0 comments

LaTeX, LLMs and Boring Technology

https://eli.thegreenplace.net/2025/latex-llms-and-boring-technology/
1•signa11•31m ago•0 comments

Git gencommit – autogenerate commit message from diffs

https://github.com/nurv/gencommit
3•arturventura•32m ago•2 comments

Show HN: New major version 3.2.0 of hmpl

https://github.com/hmpl-language/hmpl/releases/tag/3.2.0
1•aanthonymax•33m ago•0 comments

Show HN: Realistic malicious encrypted traffic datasets for ML

https://maltracer.com
1•bladecd•33m ago•0 comments

Danish man given suspended sentence for sharing film scenes on Reddit

https://www.bbc.co.uk/news/articles/c201yq43k66o
2•perihelions•34m ago•0 comments

Historic Buildings and Cityscapes

https://5dculture.eu/scenario/cityscapes
1•jruohonen•37m ago•0 comments

Giving Your AI a Job Interview

https://www.oneusefulthing.org/p/giving-your-ai-a-job-interview
1•gHeadphone•39m ago•0 comments

How the PolyBlocks AI Compiler Works

https://docs.polymagelabs.com/articles/polyblocks-quantization.html
1•cmdr2•43m ago•0 comments

Intermediate Developer

https://dawranliou.com/blog/intermediate-dev/
1•todsacerdoti•46m ago•0 comments

Ok Billionaire: Why Do the Opinions of 600 Americans Get So Much Airtime? (2019)

https://lithub.com/ok-billionaire-rebecca-solnit-on-the-self-pity-of-the-very-rich/
2•robtherobber•47m ago•0 comments

Most useful tips for founders that have to make first sales for their SaaS

1•cbenjumea•47m ago•0 comments

The folly that was Tandem Computers and the path that led me to NonStop

https://itug-connection.blogspot.com/2018/01/the-folly-that-was-tandem-computers-and.html
1•signa11•49m ago•0 comments

Show HN: DoDidDone – Voice AI that calls customer support on your behalf

https://dodiddone.it.com/
1•joeysywang•50m ago•0 comments

Show HN: Page Report – Conversational agents for landing page CRO

https://www.pagereport.app/
2•hamzaawan•52m ago•0 comments

Targeting the EU

https://netzpolitik.org/2025/databroker-files-targeting-the-eu/
3•jruohonen•53m ago•1 comments
Open in hackernews

Show HN: API Testing and Security with AI

https://qodex.ai/
8•siddhant_mohan•6mo ago

Comments

anuragdt•6mo 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•6mo 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•6mo 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