frontpage.
newsnewestaskshowjobs

Open Source @Github

fp.

Is it true about the Terms of Service of AI's?

2•DivingForGold•6m ago•0 comments

Teologia Sistemática Pentecostal

https://blog.cloudflare.com/making-ai-search-smarter/
1•abinadabe•8m ago•0 comments

Fines doubled as teens outsmart Australia's world-first social media ban

https://www.euronews.com/next/2026/06/29/fines-doubled-as-teens-outsmart-australias-world-first-s...
6•billybuckwheat•12m ago•0 comments

Sometimes free isn't cheap enough

https://12gramsofcarbon.com/p/agentics-sometimes-free-isnt-cheap
2•theahura•15m ago•0 comments

Great Filter

https://en.wikipedia.org/wiki/Great_Filter
2•chistev•15m ago•0 comments

An alfred / Raycast clone built with electron

https://astros.cx/download/
1•chuami•16m ago•1 comments

SlopCodeBench: Benchmarking How Coding Agents Degrade over Long, Iterative Tasks

https://arxiv.org/abs/2603.24755
1•softwaredoug•20m ago•0 comments

Does Code Cleanliness Affect Coding Agents?

https://arxiv.org/abs/2605.20049
2•softwaredoug•26m ago•0 comments

When Cognitive Labor Becomes Abundant

https://lifeinthesingularity.com/p/when-cognitive-labor-becomes-abundant
1•mattmcdonagh•28m ago•0 comments

Inventor, Mother, Creator: Grace Hopper

https://planetmainframe.com/2025/09/inventor-mother-creator-grace-hopper/
2•stmw•30m ago•0 comments

Highest-paying jobs in America? Doctors, doctors, more doctors

https://www.usatoday.com/story/money/personalfinance/2026/07/05/highest-paying-jobs-doctors-salar...
1•newsomix9xl•30m ago•0 comments

Ask HN: Why about a third of the submissions become dead in mere minutes?

3•g-b-r•33m ago•8 comments

AI 2027

https://ai-2027.com/?agi=true
1•singularis•37m ago•2 comments

The Bureaucratic Hell of Getting a Job in 2026

https://www.nytimes.com/2026/07/04/opinion/purgatory-job-market.html
3•mooreds•39m ago•0 comments

Show HN: Logo Design for Busy Founders

https://iconicity.cc
1•sim04ful•39m ago•0 comments

'Chinese Dreamcore,' Where Gen Z Relives a Brighter Past

https://www.nytimes.com/interactive/2026/07/05/world/asia/china-nostalgia-dream-core.html
1•mikhael•39m ago•0 comments

Egypt's First Queen

https://archaeology.org/issues/july-august-2026/features/egypts-first-queen/
2•andsoitis•42m ago•0 comments

You May Not Need 8 Hours of Sleep

https://www.nytimes.com/2026/07/05/opinion/sleep-health-8-hours.html
2•dschol•42m ago•0 comments

Vaclav Havel, the Power of the Powerless (1978)

https://kamprint.com/essay/havel.html
2•iamnothere•42m ago•0 comments

Spotify Challenges Prediction Markets After Song Chart Rigging

https://www.bloomberg.com/news/articles/2026-07-02/spotify-challenges-prediction-markets-after-so...
2•mfiguiere•43m ago•0 comments

Share private GitHub/GitLab/Codeberg/Gitea/Gitee repos via secret links for free

https://sharemygit.com/
1•onesandofgrain•50m ago•2 comments

The Backstory of Jiki

https://jiki.io/blog/the-backstory-of-jiki
3•lrae•53m ago•0 comments

The AI Compass Quiz

https://bambamramfan.github.io/ai-compass/
4•ai_critic•53m ago•0 comments

Old car engines find a second life as handmade electric guitars

https://www.designboom.com/design/old-car-engines-second-life-handmade-electric-guitars-vlado-pla...
2•andsoitis•56m ago•0 comments

The mask that compiles to nothing: how HotSpots JIT learned to reason about bits

https://questdb.com/blog/jvm-jit-known-bits/
2•rowbin•56m ago•0 comments

The intelligent hand moves everything: Cavalli on homo faber and future of craft

https://www.designboom.com/design/intelligent-hand-moves-everything-alberto-cavalli-homo-faber-20...
2•andsoitis•58m ago•0 comments

Oh, so that's what a touchstone is [video]

https://www.youtube.com/shorts/Uh4EQ-pqFLw
3•lifeisstillgood•58m ago•0 comments

A Decade at Block, Part 1: The Best Leaders Know Which Details Matter

https://swecareer.substack.com/p/a-decade-at-block-part-1-the-best
1•thathoo•58m ago•1 comments

Pioneer of 'extreme male brain' theory of autism now says phrase unhelpful

https://www.theguardian.com/society/2026/jul/05/autism-extreme-male-brain-simon-baron-cohen
4•bookofjoe•59m ago•0 comments

Ask HN: What is the next step after Nora Sandler's "Writing a C compiler"?

3•xqb64•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