frontpage.
newsnewestaskshowjobs

Open Source @Github

fp.

Tech billionaires are shielding their children from their products

https://fortune.com/article/peter-thiel-tech-billionaires-limit-kids-screen-time-social-media-sma...
1•OZYMANDIASAK•2m ago•0 comments

Using AI

https://isaacrodriguez.me/post/2026/using-ai/
1•isaacrodriguez•2m ago•0 comments

Is GRE encouraged for international student intending Grad School?

1•mr_fantastic•3m ago•0 comments

Big Tech's top executives warn enterprises are giving away too much to AI labs

https://fortune.com/2026/07/16/microsoft-ceo-satya-nadella-warns-enterprises-that-ai-labs-are-ste...
1•1vuio0pswjnm7•4m ago•0 comments

Everyone as an Entrepreneur

https://zero2data.substack.com/p/everyone-as-an-entrepreneur
1•wj•4m ago•0 comments

The open-source Claude Design alternative has 77k GitHub stars and 1M+ installs

https://okaneland.com/studio/tom-huang/
1•ermantrout•6m ago•1 comments

SpaceX stock, analysts' florid targets: 'Paving the superhighway to the stars'

https://fortune.com/2026/07/18/wall-street-analysts-spacex-outlook-stock-predictions/
1•1vuio0pswjnm7•7m ago•0 comments

Smart TV Tracking

https://www.rtings.com/tv/learn/research/smart-tv-tracking
1•akyuu•9m ago•0 comments

Show HN: PixelUp – A 100% offline, lightweight AI video upscaler for Windows

https://steelsoft.site/software/PixelUp_home.html
2•billqu0001•12m ago•0 comments

AIpine – A Swiss Army knife for AI artifacts on iPhone

https://apps.apple.com/us/app/aipine/id6775947157
1•spingras•12m ago•1 comments

Ask HN: Who is dating? (July 2026)

3•tejasvi88•13m ago•0 comments

Reading Between the Dots: Decoding Hidden Computation Across Filler Tokens

https://arxiv.org/abs/2607.03502
1•Luc•13m ago•0 comments

Britain's Nearly Revolution of 1926

https://davidaaronovitch.substack.com/p/britains-nearly-revolution
1•rwmj•14m ago•0 comments

WPA3 Implementation for OpenBSD

https://marc.info/?l=openbsd-tech&m=178437520390575&w=2
1•brynet•15m ago•0 comments

We Built Colonist Rush

https://blog.colonist.io/colonist-rush-development/
1•kamphey•17m ago•0 comments

Why is tiny Norway so good at sports? It's more than Erling Haaland

https://www.csmonitor.com/World/Europe/2026/0710/norway-erling-haaland-soccer-youth-sports-compet...
3•RickJWagner•20m ago•2 comments

I created a Ruby gem that makes it easy to create websites

https://rubygems.org/gems/jimmu/versions/1.0.0
1•Yamatov•25m ago•0 comments

Gray Scott model of reaction diffusion

https://groups.csail.mit.edu/mac/projects/amorphous/GrayScott/
2•marysminefnuf•26m ago•0 comments

Three sacred cows that must die so Europe can live

https://world.hey.com/dhh/three-sacred-cows-that-must-die-so-europe-can-live-1afb203d
3•backlit4034•27m ago•3 comments

Zero-dependency streaming tar parser and writer for JavaScript

https://ayuhito.com/projects/modern-tar/
2•ayuhito•28m ago•0 comments

Google AI Overview Rewrote Their Signature Recipe and Attributed It to Them [video]

https://www.youtube.com/watch?v=J0lLvVYahNY
1•pknerd•28m ago•0 comments

Show HN: Open-source skills that make any AI agent write native social posts

https://github.com/inklate/social-skills
2•missingstack•29m ago•0 comments

Reddit is now asking age verification for all users in the EU

https://old.reddit.com/r/europrivacy/comments/1uexser/reddit_is_now_asking_age_verification_for_all/
5•inigyou•32m ago•0 comments

Show HN: Safehttp – an SSRF-resistant HTTP client for Go

https://github.com/ayuhito/safehttp
3•ayuhito•38m ago•0 comments

Federal employees can download TikTok on government devices, DOJ says

https://www.reuters.com/world/federal-employees-can-download-tiktok-government-devices-doj-says-2...
3•giuliomagnifico•41m ago•0 comments

What I learned on reducing token spend in your agent after $500 on iterations

https://twitter.com/chrisvxd/status/2078446083496108282
3•chrisvxd•43m ago•1 comments

America Broke Its Own Military

https://tribunemag.co.uk/2026/07/how-america-broke-its-own-military
5•robtherobber•47m ago•0 comments

From the Editor: Commercial Aviation's Innovation Dilemma – Aviation Week

https://aviationweek.com/aerospace/manufacturing-supply-chain/editor-commercial-aviations-innovat...
2•rbanffy•48m ago•0 comments

The Zoom hack that says, 'Don't record me'

https://techcrunch.com/2026/07/17/the-zoom-hack-that-says-dont-record-me/
2•nyku•50m ago•0 comments

Baba Is Solved by Fable 5 and GPT-5.6 Sol, but at what cost?

https://quesma.com/blog/baba-is-bench/
2•stared•52m ago•4 comments
Open in hackernews

Show HN: API Testing and Security with AI

https://qodex.ai/
8•siddhant_mohan•1y ago

Comments

anuragdt•1y 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•1y 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•1y 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