frontpage.
newsnewestaskshowjobs

Open Source @Github

fp.

Thailand: Where does the planned cut in visafree stays from 60 to 30 days stand?

https://visasnews.com/en/thailand-where-does-the-planned-cut-in-visa-free-stays-from-60-to-30-day...
1•Markoff•45s ago•0 comments

The first AI use case that genuinely saves me time (outside of programming)

https://ducret.dev/grocery-shopping-with-ai/
1•tducret•1m ago•0 comments

Quantifying Colour

https://ekunazanu.foo/lab/quantifying-colour/
2•vismit2000•3m ago•0 comments

Parsing the Infamous Japanese Postal CSV

https://www.dampfkraft.com/posuto.html
1•birdculture•4m ago•0 comments

Whats4Linux: A Desktop Linux Client for WhatsApp

https://github.com/lugvitc/whats4linux
1•derpitron•4m ago•1 comments

Heat Waves Are Disproportionately Harming People with Schizophrenia

https://www.wired.com/story/heat-wave-schizophrenia/
2•karakoram•5m ago•0 comments

Smartphone Shipments Set for Record 16.7% Drop in 2026, as Memory Crisis Hits

https://www.idc.com/resource-center/blog/smartphone-shipments-set-for-record-16-7-drop-in-2026-as...
1•clumsysmurf•5m ago•0 comments

Manchester Airports breach exposes data on 8.7M customers

https://forgeeks.net/manchester-airports-data-breach-8-7-million/
1•kuuuzya•6m ago•0 comments

Show HN: Scraper that probes a site before promising it works

https://github.com/vhsgreed/scrapeforge
1•vhsgreed•7m ago•0 comments

Show HN: Skillbased Versioning v1.0.2

https://www.skillbased.space/
1•baalimago•10m ago•0 comments

Show HN: Seedeep – I couldn't see what Claude Code was doing, so I drew it

https://github.com/duqaXxX/seedeep
1•duqaxxx•10m ago•0 comments

Reproducible Builds: Wie Man Python-Software Vor Supply-Chain-Angriffen Schützt

https://linuxnews.de/reproducible-builds-wie-man-python-software-vor-supply-chain-angriffen-schue...
1•manfred-kaiser•12m ago•0 comments

Ex-White House teleprompter operator ordered to pay $172k for Trump speech bets

https://www.bbc.com/news/articles/c4gj2dl4x52o
1•tartoran•18m ago•0 comments

Thomas Massie reups PRIME Act after Trump meat processing order

https://thehill.com/homenews/house/6058340-massie-prime-act-trump-meatpacking-order/
1•bilsbie•20m ago•0 comments

GrapheneOS project: pixel 11 no longer supports hardware memory tagging (MTE)

https://bsky.app/profile/grapheneos.org/post/3mua32q4ds22e
2•400thecat•20m ago•1 comments

Music in Even Parts

https://adelpha.studio/learn/euclidean-rhythms/
2•vismit2000•22m ago•0 comments

80% Prompt Injection Success Rate Against Claude Auto Mode

https://embracethered.com/blog/posts/2026/breaking-claude-code-opus-5-and-automode/
2•gr_norm•23m ago•0 comments

Metric Spaces – An Interactive Exploration

https://evan-leach.github.io/metric-spaces/
1•vismit2000•24m ago•0 comments

The fixer at the center of FIFA's meltdown

https://www.politico.com/news/2026/08/29/mario-gallavotti-infantino-fixer-center-fifa-meltdown-01...
2•JumpCrisscross•25m ago•0 comments

Google further buries search results under AI mode

https://www.theverge.com/tech/986364/google-search-ai-overviews-auto-expand
2•chicken-stew•26m ago•1 comments

Thousands of Interstellar Objects May Be Lurking in Our Solar System

https://www.404media.co/thousands-of-interstellar-objects-may-be-lurking-in-our-solar-system/
3•Brajeshwar•28m ago•0 comments

Firefox Addon – "summary" link for Hacker News posts

https://addons.mozilla.org/en-GB/firefox/addon/hacker-news-summary/
1•JSeiko•29m ago•1 comments

Show HN: Too many articles to read, let random algorithm decide what I read next

https://read.mustakim.dev/bored
3•mustak_im•31m ago•1 comments

Iceland votes on whether to restart talks on joining European Union

https://www.nbcnews.com/world/europe/iceland-votes-whether-restart-talks-joining-european-union-r...
1•newgolobal•32m ago•0 comments

QDay Algebra 2M prime factor in nanoseconds

https://zenodo.org/records/22157593
2•GeometryKernel•32m ago•0 comments

Tiny World Model

https://paul.mou.dev/posts/2026-08-16-twm/
2•ppymou•33m ago•0 comments

Let the Clicks Speak: A Simple Score for Popularity-Driven Ranking

https://medium.com/@oleber_62556/let-the-clicks-speak-a-simple-score-for-popularity-driven-rankin...
1•softwaredoug•33m ago•0 comments

Quis Custodiet Ipsos Custodes?

https://en.wikipedia.org/wiki/Quis_custodiet_ipsos_custodes%3F
3•tosh•38m ago•1 comments

News-deframe: Structural comparison of how news outlets frame the same event

https://github.com/422August/news-deframe
1•August0422•41m ago•0 comments

Magic eye tube (The first RF "debugger")

https://en.wikipedia.org/wiki/Magic_eye_tube
2•peter_d_sherman•43m ago•1 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