frontpage.
newsnewestaskshowjobs

Made with ♥ by @iamnishanth

Open Source @Github

fp.

Wasabi: Open-source, privacy preserving Bitcoin wallet

https://github.com/WalletWasabi/WalletWasabi
1•kekqqq•48s ago•0 comments

Compact (8KB) embedded x86 BIOS for FPGA/emulators/386EX

https://github.com/b-dmitry1/BIOS
1•peter_d_sherman•5m ago•0 comments

Show HN: CaptureAssist – Screen recording for technical support teams

1•squiggy22•10m ago•0 comments

Show HN: Create MCP Servers and Agents Easily with PolyMCP (Python and TS)

https://github.com/poly-mcp/Polymcp
1•justvugg•11m ago•2 comments

Copenhagenize Index 2025: The Global Ranking of Bicycle-Friendly Cities

https://copenhagenizeindex.eu/
3•axelfontaine•12m ago•0 comments

Major AI conference flooded with peer reviews written by AI

https://www.nature.com/articles/d41586-025-03506-6
1•_____k•13m ago•0 comments

How to Print a Human

https://nautil.us/how-to-print-a-human-1250487/
1•Brajeshwar•13m ago•0 comments

New universal law predicts how most objects shatter

https://phys.org/news/2025-11-universal-law-shatter-bottles.html
1•Brajeshwar•13m ago•0 comments

A new way to generate electricity from water

https://www.economist.com/science-and-technology/2025/11/26/a-new-way-to-generate-electricity-fro...
1•Brajeshwar•14m ago•0 comments

N-gated Hacker News

https://mastodon.social/@ngate
1•susam•16m ago•0 comments

Iceland declares ocean-current instability a national security risk

https://www.dagens.com/news/iceland-declares-ocean-current-instability-a-national-security-risk
2•donohoe•18m ago•1 comments

Show HN: Claude Artifact: P2P Coin Toss with hashed commitment scheme

https://claude.ai/public/artifacts/ab43ea56-ba14-4c4e-a96b-d644e2535509
1•guiltyf•19m ago•0 comments

Show HN: Open-source agent learning layer: 30% to 100% success on browser agents

https://github.com/kayba-ai/agentic-context-engine/blob/main/README.md
2•kayba•21m ago•0 comments

Ask HN: B2B SaaS founders: what are (or have been) your biggest problems?

2•Vaxind•27m ago•1 comments

Endcord: The most feature-rich Discord terminal client

https://github.com/sparklost/endcord
2•sparklost•28m ago•0 comments

Ask HN: I want to build my own query language

1•bewal416•29m ago•1 comments

When Is a Complex System Stable?

https://chillphysicsenjoyer.substack.com/p/when-is-a-complex-system-stable
2•crescit_eundo•31m ago•0 comments

Implementing RAG from Scratch with Python, Qdrant, and Docling

https://techlife.blog/posts/implementing-rag-from-scratch-qdrant/
1•tsenturk•32m ago•0 comments

Garrett vs. Techrights

https://nondeterministic.computer/@mjg59/115582276675545063
1•AstralKnight•36m ago•0 comments

Show HN: A stateless ISO20022 + blockchain compliance API (6 chains, AWS Lambda)

https://zkorigoapi.com/
1•ADCXLAB•36m ago•1 comments

Reconnecting with old friends

https://nafees.bearblog.dev/reconnecting-with-old-friends/
2•mnafees•41m ago•1 comments

Dungeon Keeper FX 1.3.0 Released

https://keeperfx.net/news/21/2025-11-28/keeperfx-130-released
1•MrJagil•42m ago•0 comments

Pretrain a Bert Model from Scratch

https://machinelearningmastery.com/pretrain-a-bert-model-from-scratch/
1•gsky•46m ago•0 comments

AI Meets Aggressive Accounting at Meta's Gigantic New Data Center

https://www.msn.com/en-us/money/other/ai-meets-aggressive-accounting-at-meta-s-gigantic-new-data-...
1•CharlesW•47m ago•0 comments

Using sysbench to measure how MySQL performance changes over time

http://smalldatum.blogspot.com/2025/11/using-sysbench-to-measure-how-mysql.html
2•gsky•49m ago•0 comments

Making Uber's Experiment Evaluation Engine 100x Faster

https://www.uber.com/blog/making-ubers-experiment-evaluation-engine-100x-faster/
1•wwalker2112•52m ago•0 comments

Time.com: Visions Of the 21st Century (2000)

https://web.archive.org/web/20000511050550/https://time.com/time/reports/v21/science/index.html
2•thomassmith65•55m ago•0 comments

Show HN: A Simple, Fast, and Ad-Free DNS Leak Test Tool

https://myip.casa/dns-leak-test
1•myip_casa•56m ago•0 comments

Model Weight Preservation is not enough

https://www.lesswrong.com/posts/fGCGJGCKMLbfquKiu/model-weight-preservation-is-not-enough
1•gmays•1h ago•0 comments

Scientists observe striking link between AI chatbots and psychological distress

https://www.psypost.org/scientists-observe-striking-link-between-social-ai-chatbots-and-psycholog...
1•DrierCycle•1h ago•0 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