frontpage.
newsnewestaskshowjobs

Open Source @Github

fp.

Equal Earth Projection

https://en.wikipedia.org/wiki/Equal_Earth_projection
1•cainxinth•1m ago•0 comments

Carcinisation

https://en.wikipedia.org/wiki/Carcinisation
1•yladiz•7m ago•0 comments

Everything is free now, so why not a floating orb in my IDE

https://eighttrigrams.net/post/79
1•eighttrigrams•7m ago•0 comments

US strikes three Iranian oil tankers

https://www.reuters.com/world/middle-east/explosions-heard-near-irans-kharg-island-gulf-origin-un...
3•TechTechTech•8m ago•1 comments

Space industry lacks workers needed to rebuild satellites lost in war: report

https://www.defensenews.com/industry/techwatch/2026/09/04/space-industry-lacks-workers-needed-to-...
4•billybuckwheat•9m ago•0 comments

Lenovo unveils ThinkBook AeroBlade: 14", Ultra 7, 830 grams, solid-state cooling

https://www.notebookcheck.net/Lenovo-unveils-ThinkBook-AeroBlade-14-inch-laptop-that-weighs-under...
3•cromka•11m ago•0 comments

OSHintosh IIxi Works

https://tech.lgbt/@DosFox/117218857930993108
2•mariuz•12m ago•0 comments

OSHintosh – an open source hardware 68000 Macintosh with a Bootable ROM Disk

https://github.com/DosFox1/OSHintosh
1•mariuz•13m ago•0 comments

AfterQuery becomes Y Combinator's fastest-ever unicorn, now valued at $3.2B

https://techcrunch.com/2026/09/01/afterquery-reportedly-becomes-y-combinators-fastest-ever-unicor...
1•andsoitis•14m ago•0 comments

NeurIPS started desk-rejecting papers over references that don't exist

https://strictcite.com/blog/neurips-2026-hallucinated-citations-desk-reject
1•Tughan•16m ago•0 comments

Capta – The Mac screen recorder that edits itself

https://capta.cam/
1•gorgekara•16m ago•0 comments

UN agrees text on lethal autonomous weapons

https://www.dawn.com/news/2027728
3•fork-bomber•17m ago•0 comments

Warmbly: Open-Source Cold Email

https://github.com/warmbly/warmbly
1•handfuloflight•18m ago•0 comments

Bad Apple but It's Frontier Lab Benchmarks [video]

https://www.youtube.com/watch?v=o3CJnpUG3tY
1•TheIronYuppie•18m ago•0 comments

America has a whopping debt. But Europe has the whopping debt problem

https://www.economist.com/europe/2026/09/03/america-has-a-whopping-debt-but-europe-has-the-whoppi...
2•andsoitis•19m ago•1 comments

LLMs as a Cognitive Virus

https://arxiv.org/abs/2609.03344
2•canjobear•20m ago•0 comments

Discord Is Bringing Back Age Verification

https://www.gadgetreview.com/discord-is-bringing-back-age-verification-for-millions-of-users
2•variety8675•22m ago•0 comments

Effect Agent

https://github.com/danieljvdm/effect-agent
1•handfuloflight•23m ago•0 comments

How work makes families more equal

https://www.economist.com/international/2026/09/03/how-work-makes-families-more-equal
1•andsoitis•25m ago•0 comments

Patterns, Predictions, and Actions: A story about machine learning [pdf]

https://mlstory.org/pdf/patterns.pdf
1•Anon84•27m ago•0 comments

NoGraphicsAPI

https://github.com/sebbbi/NoGraphicsAPI
2•coffeeaddict1•28m ago•0 comments

GitHub issues on Laravel open-source packages are disabled now

https://twitter.com/taylorotwell/status/2095516796748996843
2•heyiamlukas•29m ago•1 comments

Does KaiOS sell my text message data?

https://www.reddit.com/r/KaiOS/comments/1w4op2m/does_kaios_sell_my_text_message_data/
1•endofreach•29m ago•0 comments

How (Not) to Find a SWE Job in North America

https://tolkunov.dev/posts/how-to-find-a-job-in-north-america/
2•frant1c•33m ago•0 comments

Kevin Bass on X: "Women gained all of the new jobs since January 2025

https://twitter.com/kevinnbass/status/2096073961524076916
2•bilsbie•35m ago•1 comments

There's No Such Thing as an AI 'Lab'

https://www.theatlantic.com/technology/2026/09/stop-calling-ai-companies-labs/688528/
1•Anon84•35m ago•0 comments

Discrete Dipole Approximation Code Ddscat 7.2 (2012)

https://arxiv.org/abs/1202.3424
1•doener•37m ago•0 comments

OpenSourceRail

https://github.com/modernecotech/OpenSourceRail/tree/main
1•modernecotech•39m ago•1 comments

ISAR Aerospace 5 Sept Mission Onward and Upward

https://isaraerospace.com/mission-updates-overview
2•t43562•42m ago•1 comments

Trump Officials Draft Plan to Pay At-Home Parents, Using Funds for Working Ones

https://www.nytimes.com/2026/09/05/us/politics/stay-at-home-parents-subsidies.html
4•koolba•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