frontpage.
newsnewestaskshowjobs

Made with ♥ by @iamnishanth

Open Source @Github

fp.

Show HN: Inkgest, Link to Gest

https://www.inkgest.com/
1•shreyvj•52s ago•0 comments

Robust and efficient quantum-safe HTTPS

https://security.googleblog.com/2026/02/cultivating-robust-and-efficient.html
1•tptacek•1m ago•0 comments

MCP Horror Stories: The GitHub Prompt Injection Data Heist [2025]

https://www.docker.com/blog/mcp-horror-stories-github-prompt-injection/
1•samaysharma•1m ago•0 comments

1 in 10 teens seeking headspace cite social media ban as an issue

https://www.crikey.com.au/2026/01/16/teen-social-media-ban-headspace-mental-health/
1•speckx•2m ago•0 comments

Magnavox Odyssey 2 – By Paul Lefebvre

https://www.goto10retro.com/p/magnavox-odyssey-2
1•rbanffy•3m ago•0 comments

Show HN: CBrowser – Simulate how a confused first-timer experiences your website

https://github.com/alexandriashai/cbrowser
1•alexandriaeden•3m ago•0 comments

Show HN: Knox First Full Lattice BLockchain.UPDATE:Veloxreaper

https://github.com/ULT7RA/KNOXProtocol/releases
1•KnoxProtocol•4m ago•1 comments

Please, please, please stop using passkeys for encrypting user data

https://blog.timcappalli.me/p/passkeys-prf-warning/
2•timmyc123•4m ago•0 comments

Show HN: RedTeam Arena – AI vs. AI adversarial security testing in your terminal

https://github.com/DilawarShafiq/redteam-arena
1•dilawargopang•5m ago•0 comments

Trump Administration reiterates human in the loop policy for nuclear weapons

1•apolloartemis•5m ago•0 comments

High-Density Hydro Storage System Ditches the Water

https://spectrum.ieee.org/pumped-hydro-storage-rheenergise
1•rbanffy•6m ago•0 comments

Codified Context for AI Agents in a Complex Codebase

https://arxiv.org/abs/2602.20478
1•umairnadeem123•6m ago•1 comments

Show HN: The Elephant- a Tool to Safely Surface the Unspoken Issue in Meetings

https://www.cognu.app/the-elephant
1•anticlickwise•6m ago•0 comments

My Fully Automated Labor Law Research Tool Is Finally Here

https://mattbruenig.com/2026/02/23/my-fully-automated-labor-law-research-tool-is-finally-here/
1•DannyPage•7m ago•0 comments

I'm an alreadyist – superhuman AI is already here

https://stateofutopia.com/experiments/barcodescanner/
1•logicallee•8m ago•2 comments

European girls aged 13-15 have highest rate of tobacco use for age group

https://www.theguardian.com/society/2026/feb/27/european-girls-tobacco-smoking-vaping-who
1•bookofjoe•9m ago•1 comments

`Lord of the Flies' tribalism emerges among smart AI-Agents

https://arxiv.org/abs/2602.23093
1•bikenaga•9m ago•0 comments

OpenClaw Partners with VirusTotal for Skill Security

https://openclaw.ai/blog/virustotal-partnership
1•its_anshuman•12m ago•0 comments

Jeff Galloway, Olympian who inspired people with his run-walk method, dies at 80

https://www.nbcnews.com/news/us-news/jeff-galloway-olympian-inspired-people-run-walk-method-dies-...
1•jerlam•12m ago•1 comments

Show HN: PDF reader with interactive visualizations for any concept

https://zerodistract.com
3•vignesh_warar•12m ago•0 comments

Show HN: Open-source agent with a brain instead of MEMORY.md

https://github.com/pompeii-labs/nero-oss
2•mattyhogan•13m ago•0 comments

Mentor Me

https://strangestloop.io/mentor-me/
1•tasshin•13m ago•0 comments

Show HN: Overture – Interactive plan graphs for AI coding agents (open source)

https://github.com/SixHq/Overture
1•AdewoleJasper•15m ago•0 comments

A smart nail platform for wireless subsoil health monitoring

https://www.nature.com/articles/s41467-025-67889-w
2•PaulHoule•15m ago•0 comments

Human in the Loop

https://www.congress.gov/crs_external_products/IF/HTML/IF11697.html
2•apolloartemis•16m ago•0 comments

Show HN: BananaOS, vibecoded operating system that boots on a 486 with ~11MB RAM

1•madamdo•16m ago•0 comments

Enable CORS for Your Blog

https://www.blogsareback.com/guides/enable-cors
2•cdrnsf•18m ago•0 comments

You Don't Know It Until You Know the Original

https://www.raptitude.com/2026/02/you-dont-know-it-till-you-know-the-original/
1•crescit_eundo•18m ago•0 comments

Theory of Constraints: "Blue Light" creating capacity for nothing (2007)

http://theoryofconstraints.blogspot.com/2007/06/toc-stories-2-blue-light-creating.html
2•strongpigeon•18m ago•1 comments

PostHog now shares hashed emails of new users with Reddit and LinkedIn

https://www.uxwizz.com/blog/posthog-subprocessors-ad-audiences-update
2•XCSme•19m ago•0 comments
Open in hackernews

Show HN: API Testing and Security with AI

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

Comments

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