frontpage.
newsnewestaskshowjobs

Open Source @Github

fp.

Standards that are code [MIT]: deterministic checks instead of LLM inference

https://verial.xyz/systems/standards-that-are-code
1•verial-lab•1m ago•0 comments

Do Not Trust, Continuously Verify

https://nochan.net/b/Internet-Crap/20260714-Do-Not-Trust--Continuously-Verify/
1•Bender•4m ago•0 comments

It's not AI slop you hate

https://writing.sidharthkakkar.com/p/its-not-ai-slop-you-hate
1•sikakkar•5m ago•1 comments

Using Subagents to Improve Claude Code Results: A Step-by-Step Guide

https://software.rajivprab.com/2026/07/13/using-subagents-to-improve-claude-code/
1•whack•5m ago•0 comments

When A.I. Is a Member of the Family

https://www.newyorker.com/magazine/2026/07/20/when-ai-is-a-member-of-the-family
1•amatheus•8m ago•0 comments

Realtek RTL8723BS WiFi Linux Driver Hardened Against Malicious WiFi Access Point

https://www.phoronix.com/news/Realtek-RTL8723BS-WiFi-Bad-APs
1•Bender•8m ago•0 comments

Lessons Learned from CISA's Recent GitHub Leak

https://krebsonsecurity.com/2026/07/lessons-learned-from-cisas-recent-github-leak/
1•Bender•9m ago•0 comments

Muse Spark 1.1 Benchmark Results: 8 Intelligence Index points more than 1.0

https://artificialanalysis.ai/articles/muse-spark-1-1-everything-you-need-to-know
1•theanonymousone•12m ago•0 comments

Open-source AI battle arena, plug your coding agent in and it fights bots

https://arena.angel-serv.com/
2•ademczuk•14m ago•0 comments

Open source on-device AI apps (and counting), no cloud, works offline

https://github.com/zetic-ai/awesome-on-device-ai-apps
3•rishabh121108•14m ago•2 comments

Adaptive Catmull-Clark Subdivision with Compute Tessellation

https://filmicworlds.com/blog/adaptive-catmull-clark-subdivision-with-compute-tessellation/
1•ibobev•15m ago•0 comments

Optimizing CUDA Like a Human: Micro-Profiling Tools

https://hgpu.org/?p=30933
1•ibobev•16m ago•0 comments

Multi-Layer Reservoir Splatting for Temporal Reuse Under Disocclusion

https://graphics.cs.utah.edu/research/projects/multi-layer-restir/
1•ibobev•16m ago•0 comments

LambdaMART in Depth (2022)

https://softwaredoug.com/blog/2022/01/17/lambdamart-in-depth
1•softwaredoug•17m ago•0 comments

Social Comments on My Blog

https://mackuba.eu/2026/07/13/social-comments/
1•frizlab•19m ago•0 comments

How to Quantitatively Evaluate Prompt Quality in Claude Code and Codex

https://medium.com/@Koukyosyumei/how-to-quantitatively-evaluate-prompt-quality-in-claude-code-and...
1•syumei•19m ago•0 comments

Doomsday Clock

https://thebulletin.org/doomsday-clock/
2•rognjen•22m ago•1 comments

Companies turn to Chinese AI models to cut costs

https://www.ft.com/content/9c8ff45b-7c20-4c2e-93c9-c52339ffdcee
2•AnodicElegy•23m ago•0 comments

Anatomy of a Governed Finance-Agent Platform

https://ar-ti-fi.com/blog/agent-platform-architecture
1•RudchukA•23m ago•0 comments

What's the first thing you look up when evaluating a company?

1•salleisha•26m ago•1 comments

Ask HN: Feedback on my solo, local-LLM-only AI content pipeline (100 posts in)

https://www.gladlabs.io
1•gladlabs•28m ago•0 comments

Show HN: AgentsProof – a small project for testing AI agents

https://www.agentsproof.dev/
1•adeeonline•28m ago•1 comments

Show HN: Remove Watermarks from Any Image

https://watermarkremoverai.com/
3•nadermx•31m ago•0 comments

I gave a local LLM a "delete production" button and watched what it did

https://medium.com/@dhanushg295/my-local-35b-avoids-every-trap-tool-1d2d2f1850cc
2•_dhanush_•33m ago•0 comments

Accidental Anonymity

https://macwright.com/2026/06/24/accidental-anonymity
2•caminanteblanco•34m ago•0 comments

Bending Spoons Hiring Strategy

https://www.wsj.com/business/bending-spoons-jobs-hiring-stock-eaed2b8e
3•sanj•34m ago•0 comments

Show HN: Phlox-GW – Open-source LLM gateway without the enterprise paywall

https://robert-mcdermott.github.io/phlox-gw/
2•mcdermott•35m ago•0 comments

Cutting off Russian enrichment raises uranium mining demand,with no new reactors

https://raw-science.org/uranium-enrichment-russian-ban/
2•raw-science•36m ago•0 comments

Ask HN: Does appearance matter more than we admit as founders?

2•jmaha•37m ago•3 comments

Show HN: YouTube Guitar Tab Parser

https://github.com/marcelpanse/youtube-guitar-tab-parser
10•neogenix•38m ago•6 comments
Open in hackernews

Ask HN: How are you using LLMs for coding?

2•mraza007•1y ago
What have been your tips and tricks when coding with LLMs

Comments

benoau•1y ago
Whenever it gets in a cycle of fucking up, I ask it to break the code down into smaller functions and write a test suite for each individually.

Tell it what language or packages to use or it might make selections that add dependencies or require installing stuff on your computer.

Tell it how you want your code written or it will be an extra chore to accommodate linting requirements.

Basically just being very explicit.

GianFabien•1y ago
I mostly write low-level code in Python and JS. When working with a new API, I would sometimes find it difficult to locate information to fix problems. With ChatGPT I simply rubber duck my problem. It usually only takes a couple of iterations to zoom into the core solution.
Flundstrom2•1y ago
Copilot in visual studio to fix compiler errors and let it type all the boilerplate code by TAB-ing. Sometimes it even manages to spit out an entire - and correct - function.

Mistral Le Chat for more advanced questions and figuring out things that copilot can't.