frontpage.
newsnewestaskshowjobs

Open Source @Github

fp.

Memetic transfer: Ecosystem of information exchange and the attention economy

https://suriya.cc/essays/memetic/
1•subygan•51s ago•0 comments

Atari ST Advertising

https://www.goto10retro.com/p/atari-st-advertising
1•ibobev•1m ago•0 comments

HTTP gets a QUERY method so complex searches can stop pretending to be POST

https://www.theregister.com/devops/2026/07/13/http-gets-a-query-method-so-complex-searches-can-st...
1•sbulaev•1m ago•0 comments

The Red Queen's Race: Why No AI Lab Has a Real Moat

https://hedgehammer.substack.com/p/the-red-queens-race-why-no-ai-lab
1•holofermes•2m ago•0 comments

What We Know We Don't Know: Empirical Software Engineering

https://www.hillelwayne.com/talks/ese/
1•andsoitis•4m ago•0 comments

A Go daemon that matches Tesla charging to solar export (Sungrow and Tessie)

https://github.com/guiguan/tesla-sungrow-charge-controller
1•guiguan•5m ago•0 comments

Grok uploaded my user directory to xAI's servers

https://twitter.com/a_green_being/status/2076598897779020159
3•tnolet•6m ago•2 comments

Card-type tool to support divergent thinking to embody benefits of inconvenience

https://www.researchgate.net/publication/279855476_Card-type_tool_to_support_divergent_thinking_f...
1•andsoitis•9m ago•0 comments

Grok CLI uploaded the whole home directory to GCS

https://twitter.com/i/status/2076598897779020159
3•denysvitali•10m ago•0 comments

Lifestyle interventions for the prevention of cognitive decline in older adults

https://www.thelancet.com/journals/lancet/article/PIIS0140-6736(26)01278-X/abstract
1•wslh•11m ago•0 comments

Is there any reason to think dolphins and humans have a special relationship?

https://aeon.co/essays/do-dolphins-really-share-a-special-bond-with-humans
1•prmph•12m ago•0 comments

Show HN: Free on Device Meetings Summaries Right to Apple Notes

https://voice.baselinemakes.com/
1•stevenhubertron•12m ago•0 comments

Show HN: Nable, open source finops MCP

https://github.com/chaandannn/finopsmcp
1•piosin•13m ago•0 comments

Sun Microsystems CEO: You have zero privacy anyway. Get over it

https://www.techradar.com/pro/quote-of-the-day-by-sun-microsystems-ceo-scott-mcnealy-you-have-zer...
1•robtherobber•14m ago•1 comments

Users report that GPT-5.6 Sol has become less capable than its initial release

https://twitter.com/i/status/2076495156757577895
1•maxloh•14m ago•0 comments

Leave a failing test before you go on vacation

https://lukapeharda.com/article/leave-a-failing-test-before-you-go-on-vacation/
1•surprisetalk•14m ago•0 comments

No File, No Path, Still Running: Inside Linux Fileless Execution

https://mrn1gativ3.github.io/posts/filelessexec/
1•mashally•14m ago•0 comments

Stop falling for the "But China" excuse [video]

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

AI and Job Postings: From Destruction to Creation

https://www.hiringlab.org/2026/07/08/ai-and-job-postings-from-destruction-to-creation/
1•hartleybrody•20m ago•0 comments

Madame Semver Will See You Now

https://nesbitt.io/2026/05/10/madame-semver-will-see-you-now.html
1•progbits•20m ago•0 comments

If you want to make money, be useful to rich people

https://filiph.net/text/to-make-money-be-useful-to-rich-people.html
1•speckx•23m ago•0 comments

How to Build a Low-tech Website? (2018)

https://solar.lowtechmagazine.com/2018/09/how-to-build-a-low-tech-website/
1•downbad_•23m ago•0 comments

Who Owns What Your Agent Knows?

https://www.safiware.com/p/who-owns-what-your-agent-knows
1•safiware•25m ago•0 comments

MITS: Rockets, Calculators, and Personal Computers

https://www.abortretry.fail/p/micro-instrumentation-and-telemetry
1•BirAdam•25m ago•0 comments

Ask HN: Active Forums You're a Part Of

2•insanejules•27m ago•0 comments

Logical Query Processing (2009) [pdf]

https://accessexperts.com/wp-content/uploads/2015/07/Logical-Query-Processing-Poster.pdf
1•rzk•28m ago•1 comments

Pactiamo|Proposals, contracts, signatures and payment in one link

https://www.pactiamo.com
1•kkmigu•29m ago•0 comments

The State of AGENTS.md: scoring the 16 biggest AI agent repos' own instructions

https://fpaul.dev/writing/state-of-agents-md-2026/
1•Fpailo•29m ago•1 comments

L8ER SK8ER, a history of a book that never sold

https://biblicallyaccuratealiens.substack.com/p/l8er-sk8er-a-history
1•meandthemajor•30m ago•0 comments

The New York nurses replaced by AI: 'It should concern every patient who cares'

https://www.theguardian.com/technology/2026/jul/13/nurses-new-york-ai
3•beardyw•31m 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