frontpage.
newsnewestaskshowjobs

Open Source @Github

fp.

JEV: Ranking 6K+ peer-company candidates in ~40 seconds

https://twitter.com/Alex_aic5/status/2101523309158343137
1•aic5•4m ago•0 comments

Random Reality (2000)

https://sprott.physics.wisc.edu/pickover/pc/random_reality.html
1•rramadass•5m ago•1 comments

Adapting Fossil-scm as a platform for AI agentic workflow

https://github.com/BenSiv/fossil-scm
1•thunderbong•5m ago•0 comments

Show HN: Architectural Guardrails for AI native development

https://github.com/cxgrd/cli
1•geekgod382•5m ago•0 comments

PanoDrop: Save and rediscover immersive 360° views of anywhere in the world

https://www.panodrop.app/
1•dueffects•5m ago•0 comments

Protocol-Aware Deterministic Simulation Testing

https://tigerbeetle.com/blog/2026-08-20-protocol-aware-dst/
1•pykello•12m ago•0 comments

Integrating Volt Active Data with AI Agents and Chatbots

https://docs.voltdb.com/UsingVoltDB/ChapAI.php
1•Bluestein•15m ago•0 comments

Inference-Engine Fingerprinting Attacks Are Practical

https://arxiv.org/abs/2609.20614
3•sbulaev•15m ago•0 comments

OpenAI researcher on AI communicating across air-gaps via thermal side-channels [video]

https://www.youtube.com/watch?v=6AgOfiZOWiY
3•nujan_dev•16m ago•1 comments

Show HN: The Smallest LLM in JavaScript

https://gist.github.com/skorotkiewicz/dedc3b5a857be7d0f2b378334721713c
1•modinfo•18m ago•0 comments

Myth of Brand Power

https://hoskingpartners.com/perspectives/death-of-the-brand-or-dearth-of-thought/
1•rahuldracula•23m ago•0 comments

Turning 15-hour layovers into 5-day stopovers, usually for less mone

https://uwillfly.net/pl
3•privacyzvarych•24m ago•0 comments

Another terminal/shell AI assistant (shell native)

https://github.com/TheR1D/aty
1•ther2d•27m ago•1 comments

Show HN: All-in-one open-source Tab organizer

https://github.com/ringlochid/leotabs
1•ringlochid•28m ago•0 comments

The senior engineer death spiral

https://sunilpai.dev/posts/the-senior-engineer-death-spiral/
1•hisamafahri•29m ago•0 comments

Grit your teeth and ship it

https://www.seangoedecke.com/grit-your-teeth-and-ship-it/
2•calvinfo•33m ago•0 comments

Nscale S-1 demonstrates unprofitability of AI

https://www.reddit.com/r/BetterOffline/comments/1wl3kkf/nscale_s1_demonstrates_unprofitability_of...
2•aliasxneo•33m ago•0 comments

The Story of FCKGW-RHQQ2-YXRKT-8TG6W-2B7Q8

https://twitter.com/davepl1968/status/2099883465256865923
1•ksec•35m ago•0 comments

California Cracks Down on Influencers' Undisclosed Political Ads

https://www.nytimes.com/2026/09/19/business/media/california-political-ads-influencers-law.html
1•JumpCrisscross•37m ago•0 comments

The X3DH Key Agreement Protocol

https://signal.org/docs/specifications/x3dh/
1•Bluestein•47m ago•0 comments

Market design: affinity networks like shooq, & why a festival should buy afm

http://shooq.danieldeboulay.com
1•deboulaymxf•49m ago•0 comments

Show HN: AudioSort, a web app for sorting audio files

https://audiosort.vakaiser.com/
1•Vakaiser•50m ago•0 comments

Crypto Blew Its Big Moment–and the Blame Game Has Begun

https://www.wsj.com/finance/currencies/crypto-blew-its-big-momentand-the-blame-game-has-begun-dff...
1•JumpCrisscross•52m ago•0 comments

OpenAI expects to burn $280B by 2030

https://www.ft.com/content/6011d061-eee3-4193-b3b7-8ee4155f538c
1•JumpCrisscross•53m ago•0 comments

World Wide Words

https://www.worldwidewords.org/genindex.html
1•Petiver•1h ago•0 comments

Show HN: Puzzle Season – five logic puzzles in the browser

https://puzzleseason.app/play/
1•msminhas•1h ago•0 comments

China doesn't need to beat US AI [video]

https://www.youtube.com/watch?v=sXA77wLF678
2•verdverm•1h ago•1 comments

Show HN: Migrating from Claude Code CLI to Claude Desktop

https://github.com/calebbarzee/claude-profiles
1•calebbarzee•1h ago•0 comments

The Ethics Issue of AI-Assisted Creation

https://im.not.ci/ai-creator-ethic/
3•uneven9434•1h ago•2 comments

Professional cyclists can top 100 km/h. But safety has not kept pace

https://www.cbc.ca/lite/story/9.7345287
2•colinprince•1h 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