frontpage.
newsnewestaskshowjobs

Open Source @Github

fp.

BoostBoard – a paid leaderboard where every rank shows its real traffic

https://boostboard.io
1•derlebach•35s ago•0 comments

Grok Imagine 1.5 prompts for product, UGC, and dialogue clips

https://seaimagine.com/model/grok-imagine-1-5/
1•taynes•1m ago•0 comments

Jason Arday and the new politics of plagiarism

https://theconversation.com/jason-arday-and-the-new-politics-of-plagiarism-290020
1•chmaynard•2m ago•0 comments

I built a YouTube looper with A-B repeat and per-video memory

https://repeat-videos.com/
1•Cayacoa•3m ago•0 comments

Ask HN: Do teams really need to use GitHub?

1•avinoth•3m ago•0 comments

AI(.)DIY – Open-source AI workspace with agents, MCP and Linux in the browser

https://github.com/Cubinghackerz/ai.diy
1•nirneet•4m ago•0 comments

Show HN: BlockDex – item-level search across every public Shadcn registry

https://blockdex.kynth.studio
1•kyisaiah47•5m ago•0 comments

ChatSDK Ruby: One Gem, Every Channel

https://blog.quent.in/blog/2026/07/19/chat-sdk-ruby-one-gem-every-channel/
1•sylvainkalache•6m ago•0 comments

Chinese FM to visit Seoul as Lee floats multiparty talks on ending Korean War

https://www.koreaherald.com/article/10844465
1•thisislife2•12m ago•0 comments

Microsoft gives Task Manager another task: Watching AI workloads

https://www.theregister.com/os-platforms/2026/08/20/microsoft-gives-task-manager-another-task-wat...
1•smurda•14m ago•0 comments

Bandai don't sue me please

https://github.com/Irtaza2009/Hackamon
2•Irtaza1•14m ago•0 comments

Show HN: Snapped – A slow, analog-first social network

https://snapped.pics/
1•jeswin•14m ago•1 comments

Show HN: Local design and video editor, no bundler, in-browser MP4 export

https://github.com/karamuhammet/Open-Editor-Dika-Studio-Community
1•muhammetck•15m ago•0 comments

Show HN: ContextForge – context engineering platform for AI-assisted development

https://github.com/waterflane/ContextForge
1•waterflane•16m ago•0 comments

Carthage should be destroyed (2015) (149 BCE)

https://skeptoid.com/blog/2015/05/10/furthermore-i-am-of-the-opinion-that-carthage-should-be-dest...
1•pastage•17m ago•0 comments

Bringing Rails into the Ractor-Age

https://railsatscale.com/2026-08-11-ractors-on-rails/
1•ksec•20m ago•1 comments

Show HN: Lunar, a coding harness extensible with Lua

https://github.com/gszr/lunar
2•gszr•23m ago•0 comments

Kino: A high-performance Ractor web server for Ruby 4.0

https://github.com/yaroslav/kino
2•ksec•24m ago•1 comments

Product, Aristra, Is Craaaazy

https://app.aristralabs.com/sign-in?redirect_url=https%3A%2F%2Fapp.aristralabs.com%2F
1•player08•24m ago•1 comments

US envoy Huckabee tells Israeli settlers not to take Palestinian Americans' land

https://www.reuters.com/world/middle-east/us-envoy-huckabee-tells-israeli-settlers-not-take-pales...
1•bewareofscams•24m ago•0 comments

Europe 2026 Greece 176bc: How Great Powers Turn Liberation into Hegemony

https://donatoderosa.substack.com/p/europe-2026-greece-176-bc
2•kimi•25m ago•0 comments

Why Americans Stopped Reading Books

https://www.openculture.com/2026/08/why-americans-stopped-reading-books.html
1•mdp2021•27m ago•0 comments

Show HN: SSO as a Service (SSOaS)

https://username.md/sso.html
1•cyberge99•28m ago•0 comments

When AI designs a drug, who gets the credit?

https://www.technologyreview.com/2026/08/21/1142627/when-ai-designs-a-drug-who-gets-the-credit/
1•joozio•28m ago•0 comments

Xblade – fork of xlibre-xserver with stable pixel-isolated sandboxing

https://git.sr.ht/~bhyvxe/xblade
2•icmpkitty•28m ago•2 comments

Keycloak Unauthenticated Account Takeover

https://ccb.belgium.be/advisories/warning-critical-account-takeover-password-reset-flow-red-hat-b...
4•weinzierl•30m ago•0 comments

Show HN: Git-sprout, a drop-in Git worktree add that doesn't copy your tree

https://github.com/alltuner/git-sprout
1•nirvanis•32m ago•0 comments

Address-Specific DNS Aliases (ANAME) and Zone Transfer

https://datatracker.ietf.org/doc/draft-khrabrov-dnsop-aname-axfr/
1•fauria•33m ago•0 comments

Btrfs Snapshot Integration in KDE

https://bharadwajraju.com/posts/btrfs-snapshots-in-kde/
3•birdculture•33m ago•0 comments

Why Economists Don't Listen: Tales from an Anthropology Spy in Economics

https://indevelopmentmag.substack.com/p/why-economists-dont-listen-tales
1•Tomte•34m 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