frontpage.
newsnewestaskshowjobs

Open Source @Github

fp.

Windows and Linux users: The deadline to update Secure Boot keys is near

https://arstechnica.com/security/2026/06/windows-and-linux-users-the-deadline-to-update-secure-bo...
1•everybodyknows•31s ago•0 comments

Ask HN: How do you decide what goes in a changelog vs. internal notes?

1•beratbozkurt0•36s ago•0 comments

Show HN: Cost-xray – per-token cost attribution, by tool, skill, prompt and more

https://github.com/tigerless-labs/cost-xray
1•ruihanli•1m ago•0 comments

Social media menagement tool with API for AI agents

https://schedpilot.com/
1•schedpilot•3m ago•0 comments

Geriatric butterfly species lives nearly three times as long as their relatives

https://phys.org/news/2026-06-geriatric-butterfly-species.html
1•gmays•3m ago•0 comments

"The Age of the Car Is Over": Fewer and Fewer Private Cars in Berlin

https://www.morgenpost.de/berlin/article412306798/die-zeit-des-autos-ist-vorbei-berlin-bei-autobe...
2•doener•3m ago•0 comments

New VPN rules for UK households on table from July after government update

https://www.birminghammail.co.uk/news/midlands-news/new-vpn-rules-uk-households-34129495
1•rzk•4m ago•0 comments

Ask HN: Whats the best and small open source model?

1•hairymouse•4m ago•0 comments

Immortals

https://immortals.com/
1•simonebrunozzi•4m ago•0 comments

We Got Anthropic's Glasswing at Home (Who Needs Mythos 5 or Fable 5?)

https://blog.attacks.ai/we-got-glasswing-at-home
1•Seventeen18•5m ago•0 comments

Show HN

https://github.com/Saptarshi2001/AsyncLoad
1•Saptarshi_Dutta•5m ago•0 comments

China's EV Price War Was Built on Cars Sold at a Loss

https://www.autoblog.com/features/chinas-ev-price-war-was-built-on-cars-sold-at-a-loss
1•TMWNN•6m ago•0 comments

Grand Theft Auto VI: Official Cover Art Reveal [video]

https://www.youtube.com/watch?v=EiQEBYDox_k
1•mikhael•6m ago•1 comments

Color Picking OKLCH for Mortals

https://hugodaniel.com/posts/color-picking-oklch/
2•birdculture•6m ago•0 comments

Show HN: Loomabase – Column-Level CRDT Sync for SQLite and Postgres

https://github.com/JustVugg/loomabase
2•vforno•7m ago•0 comments

Exploiting GPU Tensor Cores from Java Using Babylon

https://openjdk.org/projects/babylon/articles/hat-tensors/hat-tensors
2•0x54MUR41•9m ago•0 comments

Archaeology team unearths 'prototype' of Stonehenge just a few miles away

https://apnews.com/article/stonehenge-britain-discovery-summer-solstice-36f8517159a9e750c1042bebd...
2•geox•10m ago•0 comments

Civil Servants in the UK Were Paid to Play GTA Online

https://www.thegamer.com/gta-online-civil-servants-paid-uk/
2•theanonymousone•11m ago•0 comments

Neuralink competitor Paradromics just implanted its first brain-chip device

https://www.businessinsider.com/paradromics-brain-chip-implant-first-human-patient-speech-restora...
1•lareau•11m ago•0 comments

We Ran the Numbers. Remote Work Is Bad for Us

https://www.nytimes.com/2026/06/17/opinion/remote-work-depression.html
1•mooreds•12m ago•1 comments

Manus original investors plan to buy back AI firm from Meta for $2B

https://www.reuters.com/world/asia-pacific/manus-original-investors-plan-buy-back-ai-firm-meta-2-...
2•thm•15m ago•1 comments

Blink on iOS prototype beats Safari by 28%

https://open-web-advocacy.org/blog/28-percent-faster--the-blink-prototype-that-shows-why-apples-i...
1•pentagrama•15m ago•0 comments

The machine translation newsletter is back

https://newsletter.machinetranslate.org/p/the-machine-translation-newsletter-5c0
1•cefoo•16m ago•0 comments

Data at Scale: large-scale data processing conference (Amsterdam, 7 July)

https://www.dataatscale.dev/
1•tylerhannan•19m ago•0 comments

Show HN: Shout for Drinks – Don't scream your drinks order at festivals/bars

https://www.shoutfordrinks.com/app
1•MarkBekooy•21m ago•0 comments

Agentic AI Comes to Medicine

https://erictopol.substack.com/p/agentic-ai-comes-to-medicine
1•bookofjoe•21m ago•0 comments

HOLogram – an open protocol to obfuscate behavioral biometrics in the browser

https://www.hologramprotocol.org/
2•BaffiSan•22m ago•0 comments

Ask HN: Could Fable/Mythos be used to build Python's JIT?

1•vezycash•23m ago•0 comments

Major mobile carrier left user PII in the clear

https://www.theregister.com/security/2026/06/18/welcome-to-your-new-telco-job-heres-sudo-access-t...
3•geekinchief•24m ago•1 comments

Show HN: Display.dev – the agent-agnostic workspace for HTML and .md artifacts

https://display.dev/
3•ottilves•26m 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