frontpage.
newsnewestaskshowjobs

Made with ♥ by @iamnishanth

Open Source @Github

fp.

I wish Xcode was more like Visual Studio when coding C++

https://www.lasselaursen.com/post/i-wish-xcode-was-more-like-visual-studio-when-coding-c/
2•Gazoo101•4m ago•0 comments

Formal Verification in Any Language for Everybody (lean 4)

https://www.dev-log.me/formal_verification_in_any_language_for_everybody/
1•wazHFsRy•5m ago•2 comments

Can LLMs accelerate science? An experiment

https://pavpanchekha.com/blog/llk.html
1•pavpanchekha•8m ago•0 comments

Federal Court Denies Anthropic's Motion to Lift 'Supply Chain Risk' Label

https://www.nytimes.com/2026/04/08/technology/anthropic-pentagon-risk-circuit-court.html
1•DeathArrow•10m ago•0 comments

Flatpak: Complete Sandbox Escape

https://github.com/flatpak/flatpak/security/advisories/GHSA-cc2q-qc34-jprg
1•eyberg•10m ago•0 comments

AI #163: Mythos Quest

https://thezvi.substack.com/p/ai-163-mythos-quest
1•paulpauper•15m ago•0 comments

US adults are having fewer kids – and it's forcing schools to close

https://www.theguardian.com/us-news/2026/mar/16/birthrate-schools-closing
1•PaulHoule•19m ago•0 comments

'The Egg' by Andy Weir (2009)

https://www.galactanet.com/oneoff/theegg_mod.html
2•goekjclo•20m ago•0 comments

When AI Day of Reckoning?

https://www.overcomingbias.com/p/when-ai-day-of-reckoning
1•paulpauper•20m ago•0 comments

Keychron has open sourced its hardware

https://github.com/Keychron/Keychron-Keyboards-Hardware-Design/tree/main
4•azhenley•20m ago•0 comments

I rebuilt Claude Code's removed /buddy companion as a permanent MCP app

https://github.com/1270011/claude-buddy
2•1270011•22m ago•0 comments

Violating Copyright, Not the Planet

https://mumumelon.co/
1•Tomte•37m ago•0 comments

Bryson DeChambeau to use a 5-iron he made with 3D printer at Masters

https://www.espn.com/golf/story/_/id/48431238/bryson-dechambeau-using-iron-made-3d-printer-masters
1•1659447091•37m ago•0 comments

You've Been Writing Matplotlib Abstractions Wrong

https://www.dontusethiscode.com/blog/2026-04-08_matplotlib_abstractions.html
1•Tomte•38m ago•0 comments

How can I get your attention?

1•ChalresWT•40m ago•0 comments

On Partners, Mario, & Pi

https://www.foggynotions.day/#on-partners-mario-pi
1•doppp•41m ago•0 comments

The Waymo Rule for AI-Generated Code

https://rng.md/posts/the-waymo-rule-for-ai-generated-code/
2•handfuloflight•44m ago•0 comments

Know the Owners – Explore the ownership structures behind name brand products

https://knowtheowners.com/
2•pkutro•45m ago•1 comments

Pizza Tycoon simulated traffic on a 25 MHz CPU

https://pizzalegacy.nl/blog/traffic-system.html
1•vinhnx•46m ago•0 comments

Alignment Risk Update for Claude Mythos [pdf]

https://www-cdn.anthropic.com/79c2d46d997783b9d2fb3241de43218158e5f25c.pdf
1•jablongo•46m ago•0 comments

Bash Owns the Loop

https://www.nibzard.com/wrappers/
1•peterdemin•47m ago•0 comments

Under the hood of MDN's new front end

https://developer.mozilla.org/en-US/blog/mdn-front-end-deep-dive/
3•vinhnx•47m ago•0 comments

Open Source Security at Astral

https://astral.sh/blog/open-source-security-at-astral
22•vinhnx•49m ago•0 comments

Show HN: Jsonl Viewer – An offline JSON Lines viewer in a single HTML file

2•Cassandra99•49m ago•1 comments

Esquire Singapore responds to criticism over use of AI for Mackenyu story

https://cnalifestyle.channelnewsasia.com/entertainment/esquire-singapore-ai-mackenyu-interview-ba...
1•hboon•53m ago•0 comments

GPU solver that matches Fujitsu's $1M Digital Annealer on cubic optimization

https://github.com/MysticCodingCat/CUDA-Native-HUBO
1•bobchen1322•54m ago•1 comments

The Slow Startup Movement

https://tarikhkorula.com/wisdom/the-slow-startup-movement
1•subdane•55m ago•1 comments

Pope Leo Reportedly Unlikely to Visit US After Trainwreck Trump Admin Meeting

https://www.mediaite.com/media/news/pope-leo-reportedly-unlikely-to-visit-us-after-trainwreck-tru...
6•rawgabbit•55m ago•0 comments

Apple Will Release iPhone Air 2 No Matter How Badly It May Sell

https://www.macrumors.com/2026/04/08/iphone-air-2-to-launch-no-matter-what/
1•mgh2•56m ago•0 comments

Show HN: We Evaluates Medical Research Agent Skills

https://github.com/aipoch/medical-research-skills
2•The_resa•1h ago•0 comments
Open in hackernews

Show HN: API Testing and Security with AI

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

Comments

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