frontpage.
newsnewestaskshowjobs

Made with ♥ by @iamnishanth

Open Source @Github

fp.

Upgrade your Symfony 1.x Website To PHP 8.x Compatibility – PHP 8.5.6 Tested

https://github.com/se7enxweb/symfonyone
2•7x•5m ago•1 comments

Technical Dimensions of Programming Systems

https://tomasp.net/techdims/
2•tosh•8m ago•0 comments

NV-CA state line casinos and truck stop to close July 4

https://www.vvdailypress.com/story/news/local/2026/05/06/primm-casinos-closing-along-stateline-hu...
1•burnt-resistor•10m ago•0 comments

Steering Zig Fmt

https://matklad.github.io/2026/05/08/steering-zig-fmt.html
1•birdculture•10m ago•0 comments

If you're a programmer and you feel depressed by AI, don't be!

https://unixdigest.com/articles/if-youre-a-programmer-and-you-feel-depressed-by-ai-dont-be.html
2•jruohonen•10m ago•0 comments

Israel's AI targeting system: data from a phone become a death sentence

https://www.latimes.com/world-nation/story/2026-05-04/inside-israels-ai-targeting-system-how-data...
2•YeGoblynQueenne•11m ago•0 comments

AI Startup's Software Watches Employees as They Work

https://www.forbes.com/sites/rashishrivastava/2026/05/10/this-ai-startups-software-watches-employ...
3•geox•11m ago•0 comments

Counterfeit Power Cables – A Fire Waiting to Happen

https://goughlui.com/2026/05/09/notes-counterfeit-power-cables-a-fire-waiting-to-happen/
1•giuliomagnifico•21m ago•0 comments

Cangjie, Huawei's new language for HarmonyOS NEXT

https://cangjie-lang.cn/en/docs?url=%2F0.53.13%2Fuser_manual%2Fsource_en%2Ffirst_understanding%2F...
1•pjmlp•26m ago•0 comments

Replacing a 3 GB SQLite db with a 10 MB FST (finite state transducer) binary

https://til.andrew-quinn.me/posts/replacing-a-3-gb-sqlite-database-with-a-7-mb-fst-finite-state-t...
3•hiAndrewQuinn•30m ago•0 comments

Facebook Reveals Its Smart Glasses' Nerve-Tracking Wristband Tech (2021)

https://www.slashgear.com/facebook-reveals-its-smart-glasses-nerve-tracking-wristband-tech-18664390/
1•Eridanus2•30m ago•0 comments

Show HN: Make your codebase agent ready

https://github.com/jaksa76/agentize
3•jaksa•35m ago•0 comments

Notetux++ – a native GTK3 Linux port of Notepad++, written in C11

https://github.com/notetux-plus-plus/notetux-plus-plus
1•andreacoi•37m ago•0 comments

Show HN: Akmon, a Rust AI coding agent for regulated engineering

https://github.com/radotsvetkov/akmon
2•radotsvetkov•37m ago•0 comments

Agent Readiness

https://jaksa.me/blog/2026-05-10-agent-readiness
1•jaksa•38m ago•0 comments

FB >> HTTPS://Www.facebook.com/EndoPeakGet/

https://www.facebook.com/EndoPeakGet
1•jarrykyll•40m ago•0 comments

"openai.com" was once the personal homepage of a guy named glenn

https://bsky.app/profile/annierau.bsky.social/post/3mkzrvrn44c2h
5•ndr42•41m ago•0 comments

Show HN: A Skill/MCP to access any open-source repo's code and docs

https://github.com/NitroRCr/gread
2•krytro•41m ago•0 comments

Fc, a lossless compressor for floating-point streams

https://github.com/xtellect/fc
1•enduku•48m ago•0 comments

Show HN: ASCII pixel art editor for the terminal

https://github.com/Mr-Robot-err-404/perkins
3•doctor_schultz•50m ago•1 comments

Main · Streamlit

https://yf-aiapp-2.streamlit.app
1•Yamaan_Faraz•56m ago•1 comments

A Tale of Two Charting Paradigms: Vega-Lite vs. R+ggplot2

https://rud.is/b/2016/02/28/a-tale-of-two-charting-paradigms-vega-lite-vs-rggplot2/
1•tosh•57m ago•0 comments

Application performance is a product requirement

https://www.echooff.dev/blog/application-performance-is-a-product-requirement
2•lo1tuma•1h ago•1 comments

A clock that maps Earth's 4.5B year history onto 12 hours. 1s=0.105Myears

https://eona.earth/
2•Eridanus2•1h ago•0 comments

Wideawake: Auto-detect agents and prevent your Mac from sleeping

https://github.com/shhivv/wideawake
1•shhivv•1h ago•0 comments

MCP is prompt engineering all over again

https://simpleobservability.com/blog/mcp-is-prompt-engineering
2•khazit•1h ago•0 comments

Think Linear Algebra

https://allendowney.github.io/ThinkLinearAlgebra/index.html
2•tamnd•1h ago•0 comments

0.12949 This is not randomness this is Determinism HST

https://github.com/sel8888/harmonic-shape-transform-2026-koncept
1•sel8888•1h ago•0 comments

The Era of the Tiger Mom Is Over. Enter the Beta Mom

https://www.wsj.com/lifestyle/relationships/beta-moms-influencers-tiktok-6cf99674
2•huhkerrf•1h ago•0 comments

Show HN: WfmOxide a Rust parser (.wfm/.isf) with CLI and time axis

https://github.com/SGavrl/WfmOxide
1•Galo43•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