frontpage.
newsnewestaskshowjobs

Open Source @Github

fp.

Cloudflare AI Search: give your agents a search engine for your data

https://blog.cloudflare.com/ai-search-easier/
1•ankushKun•31s ago•0 comments

Senior detective under investigation over use of AI

https://www.bbc.com/news/articles/c7vgq5mgz2mo
1•defrost•2m ago•0 comments

Muse Spark 1.2 (Meta) is reportedly becoming open-weight

https://twitter.com/alexandr_wang/status/2086756152034066792
1•MurizS•5m ago•0 comments

Parametron: 50s Japanese computer that uses neither transistors nor vacuum tubes

https://ethw.org/Milestones:Parametron,_1954
1•xeonmc•8m ago•0 comments

Meta releases a 30B agent model that fits in ~17GB

https://huggingface.co/meta-models
2•MihaiSandor•8m ago•0 comments

EU Study: Block Live Sports Piracy in 30 Minutes

https://torrentfreak.com/eu-study-block-live-sports-piracy-in-30-minutes-across-dns-resolvers-vpn...
2•pawal•9m ago•0 comments

Eight Books That Puncture the Myths of Silicon Valley

https://lithub.com/eight-books-that-puncture-the-myths-of-silicon-valley/
1•spy888•12m ago•0 comments

Linus Torvalds says AI has made Linux kernel updates the new normal

https://www.theregister.com/os-platforms/2026/08/10/linus-torvalds-says-ai-has-made-huge-linux-ke...
3•mdp2021•13m ago•0 comments

Karl Marx, for the NY Daily Tribune: "The American Question in England" (1861)

https://marxists.org/archive/marx/works/1861/10/11.htm
1•thomassmith65•15m ago•1 comments

'adversarial' pattern can prevent surveillance cameras from detecting you

https://techcrunch.com/2026/08/09/this-adversarial-pattern-can-prevent-surveillance-cameras-from-...
3•caruasdo•15m ago•0 comments

Secure Capability-Based Generative UI with WASM Components [video]

https://www.youtube.com/watch?v=RoYFUomDwp8
1•marianoguerra•16m ago•0 comments

ChatTJB

https://chattjb.org/
1•thazework•16m ago•1 comments

Meta releases Muse Glimmer, 30B parameter open-weight edge model

https://twitter.com/finkd/status/2086755195535413696
4•tejus_vignesh•16m ago•0 comments

Quasipolynomial Cryptanalysis of the McEliece Cryptosystem (PIR Meets McEliece)

https://eprint.iacr.org/2026/1630
1•cbzbc•16m ago•0 comments

Muse Glimmer: Meta's open model built for always-on local agents. 30B parameters

https://developer.meta.com/ai/models/muse-glimmer/
5•helsinkiandrew•18m ago•1 comments

Gonemaster checks the DNS health of a domain

https://gonemaster.evilbit.de/
1•pawal•20m ago•1 comments

Ant teams beat gravity-based puzzle solvers

https://phys.org/news/2026-08-ant-teams-gravity-based-puzzle.html
2•wjSgoWPm5bWAhXB•20m ago•0 comments

The Future Is for Everyone – The Path to a Positive AI Future

https://www.meta.com/thefutureisforeveryone/
3•insumanth•21m ago•1 comments

Navy drone boats 'were sending data to China'

https://www.thetimes.com/uk/defence/article/navy-drone-boats-sending-data-china-k3-rcqd2jcfl
3•josephcsible•25m ago•0 comments

GST Notices: Types, Reasons and Response Guide – SMFG India Credit

https://www.smfgindiacredit.com/knowledge-center/gst-notices.aspx
1•saumyaraut11•25m ago•0 comments

Meta Muse Glimmer – open weights 30B local coding model

https://research.meta.ai/blog/introducing-muse-glimmer-open-agentic-model
9•riordan•27m ago•0 comments

V2X Technology Gets a 5G Cellphone Network Solution

https://spectrum.ieee.org/v2x-technology-5g-open-ran
2•rbanffy•28m ago•0 comments

Getting Off the Modernization Treadmill

https://unplannedobsolescence.com/talks/getting-off-the-modernization-treadmill/
2•ggaughan•30m ago•1 comments

A.I.-Driven Chip Crunch Leads to New Rush of Lobbying in Washington

https://www.nytimes.com/2026/08/10/technology/memory-chip-shortage-ai.html
2•giuliomagnifico•31m ago•0 comments

The dumbest ransomware I've ever seen

https://mrunix.me/posts/ransomware/
1•mrunix•32m ago•0 comments

Show HN: Northstar Browser 1.0.7

3•roschdal•32m ago•0 comments

I built a directory to find every indoor dog park in the US

https://www.indoordogpark.org
1•mabalal•34m ago•0 comments

ETQW: Open-Source Reimplementation of Enemy Territory: Quake Wars

https://github.com/jmarshall23/ETQW
1•klaussilveira•34m ago•0 comments

One Email, Three Identities: SPF, DKIM and DMARC Explained

https://senderledger.com/articles/one-email-three-identities-spf-dkim-dmarc
2•adulion•41m ago•0 comments

Study Finds Short AI Chats Reduced Belief in New Conspiracies

https://aiunderstanding.org/news/ai-chats-emerging-conspiracy-beliefs-study
1•ashurandi•42m 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