frontpage.
newsnewestaskshowjobs

Open Source @Github

fp.

Vercel Passport is now generally available

https://vercel.com/changelog/vercel-passport-generally-available
1•flyaway123•49s ago•0 comments

July 2026 in AI

https://howmachinesthink.substack.com/p/july-2026-in-ai-what-actually-mattered
1•abhaysinghr516•1m ago•0 comments

Google AI Overviews have gone from appearing in 15% of searches to 43% now

https://techcrunch.com/2026/07/27/googles-ai-search-is-rapidly-becoming-the-default-new-data-shows/
1•qikouki•2m ago•0 comments

RipGrep musl binaries occasionally segfault during very-large searches

https://github.com/BurntSushi/ripgrep/issues/3494
2•throwaway2037•5m ago•0 comments

Test the Email Verification Protocol with an origin trial

https://developer.chrome.com/blog/email-verification-protocol-origin-trial
1•eatonphil•5m ago•0 comments

Unreleased OpenAI model solves 10 major mathematical problems

https://twitter.com/polynoamial/status/2083467194663571701
2•crhulls•5m ago•0 comments

Hurricanes Make Lizards Evolve Bigger Toe Pads (2020)

https://www.smithsonianmag.com/smart-news/hurricanes-make-lizards-evolve-bigger-toe-pads-180974772/
1•EndXA•5m ago•0 comments

Pull Request Now Means Pull and Test

https://hec.works/blog/pull-request-now-means-pull-test/
1•dividedcomet•6m ago•0 comments

Integrate LLM into your Python runtime

https://github.com/MiskaKan/thinair
1•ObviousDecline•7m ago•0 comments

You are building a better future – NO PROMOTION AT ALL

1•silisleek•8m ago•0 comments

Show HN: Minimal LLM Post-Training Experiments on an 8GB GPU (SFT, DPO, GRPO)

https://github.com/pochenai/nano-llm-posttraining
1•popopanda•8m ago•0 comments

Building a local positioning system to track runners using Ultra-Wideband

https://zeus.ugent.be/blog/25-26/12urenloop-uwb/
1•robinpdev•9m ago•0 comments

China begins mass production of DUV chipmaking machines in major breakthrough

https://www.tomshardware.com/tech-industry/semiconductors/china-begins-mass-production-of-domesti...
3•JumpCrisscross•10m ago•1 comments

Judge orders Waymo to stop overnight charging in Santa Monica

https://arstechnica.com/tech-policy/2026/08/after-noise-complaints-judge-orders-waymo-to-stop-ove...
1•SockThief•10m ago•0 comments

Revenge of the Simps

https://www.thecut.com/article/cam-girls-webcam-pimp.html
1•t-3•11m ago•0 comments

Tech buyers are baking in sovereignty from day one, says Forrester

https://www.theregister.com/ai-and-ml/2026/07/31/tech-buyers-are-baking-in-sovereignty-from-day-o...
1•mark336•16m ago•0 comments

Playbooks, plagiarism and a pig's head: claims surrounding Cambridge professor

https://www.theguardian.com/education/ng-interactive/2026/aug/01/playbooks-plagiarism-pigs-head-n...
2•jimnotgym•17m ago•0 comments

Excel was my database for 15 years, and Postgres ended that in a weekend

https://www.makeuseof.com/excel-database-15-years-postgres-ended-in-weekend/
1•Anon84•19m ago•2 comments

Unreleased Amiga Concepts

https://www.gamesthatwerent.com/2016/04/unreleased-amiga-concepts/
1•Bluestein•21m ago•0 comments

Astro Loop

https://pubdeer.com/
1•BaseBaal•21m ago•0 comments

ANA Airlines Internet Purchasing uses live key on test env

https://claude.ai/code/artifact/581f6337-1c6a-4931-bfa2-b938a25eb3a7?via=auto_preview
1•rryoung98•22m ago•1 comments

The Safari bug that never was (2022)

https://obyford.com/posts/the-safari-bug-that-never-was/
1•downbad_•27m ago•0 comments

Building biology AI models autonomously

https://phylo.bio/blog/biomni-tuso
2•eamag•27m ago•0 comments

Show HN: Heartbeats.dorianmarie.com

https://heartbeats.dorianmarie.com/
4•dorianmariewo•29m ago•1 comments

The Stack v3

https://huggingface.co/datasets/HuggingFaceCode/stack-v3-train
1•EvgeniyZh•30m ago•0 comments

Manta: Network Topology Adaptation for Self-Evolving Multi-Agent Systems

https://arxiv.org/abs/2607.28527
1•danbitengo•32m ago•0 comments

A deep dive into Nvidia's Vera CPU and the Olympus cores that power it

https://www.theregister.com/systems/2026/08/01/nvidias-vera-cpu-and-the-olympus-cores-that-power-...
1•sbulaev•32m ago•0 comments

A field report of using Alloy with agent-based development

https://alloytools.discourse.group/t/a-field-report-of-using-alloy-with-agent-based-development/555
1•woggy•32m ago•0 comments

TV Pickup

https://en.wikipedia.org/wiki/TV_pickup
2•EndXA•34m ago•0 comments

Frontier class vulnerabilities: it gets worse before it (maybe) gets better

https://shubs.io/frontier-class-vulnerabilities-it-gets-worse-before-it-maybe-gets-better/
1•infosecau•35m ago•0 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.