frontpage.
newsnewestaskshowjobs

Open Source @Github

fp.

The Advisory Group on Mathematics and Artificial Intelligence

https://terrytao.wordpress.com/2026/09/21/advisory-group-on-mathematics-and-artificial-intelligence/
1•digital55•1m ago•0 comments

Swarm Scaling

https://www.tobyord.com/writing/swarm-scaling
1•rdslw•1m ago•0 comments

Microsoft patents system to freeze games and inject ads during downtimes

https://www.tomshardware.com/video-games/microsoft-patents-system-to-freeze-games-and-inject-ads-...
1•ricobecks•2m ago•0 comments

Show HN: Grid flex rhymes with derivatives trading: an observation

https://www.academia.edu/2998-3665/3/3/10.20935/AcadEnergy8514
1•DamonHD•2m ago•0 comments

Wall Street Is Growing Skeptical of the Data Center Boom

https://www.nytimes.com/2026/09/21/business/ai-data-center-ipos.html
3•mikhael•4m ago•0 comments

HHS Seeks Public Input on Electromagnetic Fields and Wireless Radiation

https://www.hhs.gov/press-room/hhs-seeks-public-input-electromagnetic-fields-wireless-radiation.html
2•XnoiVeX•4m ago•0 comments

The Steam Deck Is Being Used to Test Mars Rovers [video]

https://www.youtube.com/watch?v=IJSO-BL3pEU
2•HelloUsername•4m ago•0 comments

The NASA/ESA Mars Sample Return mission has been canceled

https://www.science.org/content/article/nasa-s-mars-sample-return-mission-dead
2•Muhammad523•4m ago•0 comments

Show HN: VernLLM – LLM fallback, no gateway

https://vernllm.dev/
1•Buddo•5m ago•0 comments

B.C. government to sue OpenAI after Tumbler Ridge mass shooting

https://www.cbc.ca/news/canada/british-columbia/bc-government-announce-update-openai-legal-action...
4•dagmx•8m ago•0 comments

Enabling teachers to create learning interactives with generative UI

https://research.google/blog/the-future-of-practice-enabling-teachers-to-create-learning-interact...
1•raahelb•8m ago•0 comments

Is iPhone 18 Pro Max camera really stands out? Keynote was sharper for sure

https://twitter.com/iHarnoorSingh/status/2101129453418295507
1•iharnoor•9m ago•0 comments

V7 gives AI agents institutional memory

https://openai.com/index/v7/
2•rdslw•9m ago•0 comments

Woven Matter v0.2.0 adds tooling for deeper workspace integration

https://github.com/wovenmatter/wovenmatter/releases/tag/v0.2.0
1•trey131•9m ago•1 comments

A scrollable feed of scientific papers

https://papertok.app/feed
2•jslakro•10m ago•0 comments

Show HN: Factlabel: catches AI agents lying about the data they're reporting on

https://github.com/generallymatthew/factlabel
1•generallymatt9•11m ago•0 comments

Bugs that broke driving: Machine Learning edition

https://blog.comma.ai/ml-bugs/
1•LorenDB•11m ago•0 comments

We Are Simulating Humanity

https://www.null0.ai
1•amaarc•12m ago•0 comments

In Search of a Compositional Theory of Self-Stabilization

http://muratbuffalo.blogspot.com/2026/09/in-search-of-compositional-theory-of.html
5•matt_d•14m ago•0 comments

You can use any LLM just like JEV

https://www.reddit.com/r/LocalLLaMA/comments/1wlxpaw/you_can_use_any_llm_just_like_jev/
3•theanonymousone•15m ago•0 comments

Evergarden

https://evergarden.moe/
1•birdculture•17m ago•0 comments

Adaptive Business Engine (ABE): Evidence, Authority and Governance

https://zenodo.org/records/22881485
1•ileuza_maya•17m ago•0 comments

Temporary Flight Restriction over SpaceX's McGregor, Texas, Test Facility

https://notams.aim.faa.gov/notamSearch/createNotamPdf?transactionid=82465898
2•uticus•18m ago•1 comments

RoboHarm: Do Frontier Robot Policies Refuse Unsafe Instructions?

https://robocurve.org/roboharm/
1•msadowski•20m ago•0 comments

An Age of Experimentation [pdf]

https://thomasdullien.github.io/about/slides/An-age-of-experimentation-BlueHat-Asia-2026.pdf
1•porridgeraisin•20m ago•0 comments

Jevmade.com

https://jevmade.com/#jev
1•zenoware•20m ago•0 comments

Can JEV Play Chess

1•dev_marcospimi•21m ago•0 comments

I'm so bad at billiards that I ended up in the hyperbolic plane [video]

https://www.youtube.com/watch?v=kL9BTbIGxLg
2•accrual•25m ago•1 comments

Frontier AI on Your Own Hardware

https://timdettmers.com/2026/09/21/dlab-open-source-week/
2•pretext•25m ago•0 comments

Behind the Rise of Censorship and Distrust in Europe [video]

https://www.youtube.com/watch?v=vL4VvmFYpW0
1•PorciiVorbesc•28m ago•0 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