frontpage.
newsnewestaskshowjobs

Made with ♥ by @iamnishanth

Open Source @Github

fp.

$9 author sues over 384M Indian Jones movie

https://www.google.com/search?q=+author+sues+over+384M+Indian+Jones+movie
1•asdefghyk•1m ago•1 comments

Model Context Protocol (MCP) Specification 2025-11-25

https://mcp.mintlify.app/specification/2025-11-25
1•somesnm•3m ago•0 comments

AI Legal system disruption with contract engineering

https://kyc.co/articles/vertical-markets-vanishing-lawyers-and-the-new-operating-system-of-commerce
1•steven555•6m ago•1 comments

I Reverse-Engineered Exa.ai Infrastructure Cost with Napkin Math

https://www.kshivendu.dev/blog/exa-napkin-math
1•kshivendu•9m ago•1 comments

Hurl 7.1.0, the Pretty Edition

https://hurl.dev/blog/2025/11/26/hurl-7.1.0-the-pretty-edition.html
1•jicea•10m ago•0 comments

Show HN: How to Quickly and Free Remove TikTok Video Watermarks

https://vdraw.ai/tiktok-watermark-remover
1•passioner•15m ago•0 comments

ArcOS v1.1 – A Natural-Language Cognitive Operating System

https://github.com/Takeshi-Sakamoto5/ArcOS-v1.1
1•takeshi_sakamo•18m ago•1 comments

Which Browser Should I Use In 2025

https://hackaday.com/2025/04/07/which-browser-should-i-use-in-2025/
2•heatherleelove•21m ago•0 comments

Health Care Systems

https://rodgercuddington.substack.com/p/healthcare-systems
2•freespirt•21m ago•1 comments

A New Blueprint: House of Leaves and AI

https://oxonianreview.com/articles/a-new-blueprint-house-of-leaves-and-ai
1•bryanrasmussen•23m ago•0 comments

Building Self-Hosting Rails Applications: Design Decisions and Why

https://sendbroadcast.net/blog/self-hosting-rails
1•amalinovic•25m ago•0 comments

Foreign tourists to pay extra fee to visit US national parks

https://www.bbc.com/news/articles/c1kpnxvpgy2o
1•mikhael•27m ago•0 comments

Benchmarking GPT-5.1 vs. Gemini 3.0 vs. Opus 4.5 across 3 Coding Tasks

https://blog.kilo.ai/p/benchmarking-gpt-51-vs-gemini-30-vs-opus-45
2•heymax054•33m ago•0 comments

Recent Performance and Administration Features in Firebird

https://www.ibphoenix.com/articles/art-00000602
1•mariuz•33m ago•0 comments

Show HN: Lifeline – Visual memory journal with emotion auras and AI companion

https://mylifelineapp.com/
1•Remi_Etien•35m ago•0 comments

Why Pricing Power Is the Most Important Economic Signal No One Tracks

https://capitalfolly.com/
2•d_e_solomon•43m ago•2 comments

Should R ecosystem be a choice for longer-term projects?

1•northlondoner•46m ago•0 comments

If you're building an AI product, interface is your primry competitive advantage

https://eleganthack.com/ux-is-your-moat-and-youre-ignoring-it/
2•kaizenb•46m ago•0 comments

Kastor – Build data pipelines visually

https://kastor-242087227970.us-west1.run.app/
1•Snidow•51m ago•1 comments

Statistical Process Control in Python

https://timothyfraser.com/sigma/statistical-process-control-in-python.html
8•lifeisstillgood•53m ago•0 comments

Show HN: SpacePigeon – Save and Restore macOS Workspaces

https://github.com/louivers/spacepigeon
1•kakmuis•58m ago•0 comments

It's Not Just You – The iOS Keyboard Is Broken

https://youtu.be/hksVvXONrIo
3•jmaker•59m ago•1 comments

Show HN: Hanzi Stroke – An interactive tool to learn Chinese character writing

https://www.hanzistroke.com/en
1•YarkYao•1h ago•0 comments

After nearly 100 years, scientists may have detected dark matter

https://phys.org/news/2025-11-years-scientists-dark.html
3•alex-moon•1h ago•0 comments

Stanford AI Club: Jeff Dean on Important AI Trends [video]

https://www.youtube.com/watch?v=AnTw_t21ayE
1•pss314•1h ago•0 comments

Show HN: SkimIt – An extension to highlight Green/Red flags on LinkedIn profiles

https://chromewebstore.google.com/detail/skimit-linkedin-recruiter/ipaajbgmiinahmfbmmjpikmfjkccpocj
1•ngninja•1h ago•0 comments

AWS is 10x slower than a dedicated server for the same price [video]

https://www.youtube.com/watch?v=Ps3AI1kTIR4
80•wolfgangbabad•1h ago•93 comments

Show HN: I built directory of fashion brands because I didn't know how to dress

https://brandlist.it.com
2•EthanSeo•1h ago•2 comments

First make it fast, then make it smart

https://kix.dev/first-make-it-fast-then-make-it-smart/
1•kixpanganiban•1h ago•0 comments

Branch, Test, Deploy: A Git-Inspired Approach for Data

https://motherduck.com/blog/git-for-data-part-1/
2•articsputnik•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