frontpage.
newsnewestaskshowjobs

Open Source @Github

fp.

The New Cloud in the Stochastic CPU Era

https://twitter.com/yossieliaz/status/2068693960814424362
1•zozo-king•1m ago•0 comments

Kansas City's push for facial recognition on public buses sparks privacy debate

https://apnews.com/article/kansas-city-facial-recognition-ai-cameras-privacy-87847f57c94b6c2a9e22...
2•smurda•1m ago•0 comments

Online haters in the low-budget literary biz

https://statmodeling.stat.columbia.edu/2026/06/21/online-haters-in-the-low-budget-literary-biz/
1•Tomte•3m ago•0 comments

Prompt Caching: Just do it

https://kreidemann.com/blog/prompt-caching
1•kreidema•6m ago•0 comments

I'm done with LLM-through-chat-experience

https://www.thoughtfultechnologist.com/p/im-done-with-llm-through-chat-experience
1•nisabek•8m ago•0 comments

The Role of Carbon Capture and Storage in Decarbonizing U.S. Data Centers

https://pubs.acs.org/doi/10.1021/acs.energyfuels.6c01309
2•giuliomagnifico•8m ago•0 comments

AI Under Trump's Control: Can France Still Avoid Digital Dependence?

https://thenewassociationwebmasters.blogspot.com/2026/06/ai-under-american-control-can-france.html
3•laurentlof•12m ago•0 comments

Show HN: Stock analysis tool with quality scores and fundamental charting

https://intrinsiqq.com
1•FlippieFinance•14m ago•0 comments

Ask HN: Do you give AI coding agents their own GitHub account?

2•ahmd•14m ago•0 comments

Block rolls out Builderbot, a new suite of AI-native tools

https://block.xyz/inside/block-rolls-out-builderbot-a-new-suite-of-ai-native-tools-that-changes-t...
1•msolujic•15m ago•1 comments

ggplot2: Colour Scales and Legends

https://ggplot2-book.org/scales-colour.html
1•tosh•18m ago•0 comments

Real-time dreamy Cloudscapes with Volumetric Raymarching

https://blog.maximeheckel.com/posts/real-time-cloudscapes-with-volumetric-raymarching/
1•vortex_ape•19m ago•0 comments

Seems almost every possibly interesting title here is a NAG screen?

1•DivingForGold•19m ago•0 comments

Show HN: Cloak – let AI agents use your API keys without ever seeing them

https://github.com/cloakward/cloak
2•VarunMenon•22m ago•0 comments

Android developer verification: Building a safer ecosystem together

https://android-developers.googleblog.com/2026/06/android-developer-verification.html
1•ChrisArchitect•25m ago•0 comments

Switzerland built an alternative to BGP. Nobody noticed

https://www.theregister.com/on-prem/2026/03/17/switzerland-built-an-alternative-to-bgp-nobody-not...
1•1vuio0pswjnm7•25m ago•0 comments

You Have the Pieces. Now Build It

https://www.theidentityunderground.com/post/you-already-have-the-pieces-now-build-it
1•mooreds•29m ago•0 comments

An Autism Challenge

https://www.cremieux.xyz/p/an-autism-challenge
1•brandonb•29m ago•0 comments

Production Is a Compiler Input

https://aicoding.leaflet.pub/3mjx4erlboc2l
1•mooreds•30m ago•0 comments

Handler beliefs affect scent detection dog outcomes [pdf]

https://pmc.ncbi.nlm.nih.gov/articles/PMC3078300/
1•thunderbong•31m ago•0 comments

Show HN: I made a social accountability app to make me ship

https://www.shipstreak.fyi/
1•Cbagenal•39m ago•1 comments

Google Is Using Nvidia's Playbook to Build a Rival AI Chip Business

https://www.wsj.com/tech/ai/google-is-using-nvidias-playbook-to-build-a-rival-ai-chip-business-1e...
3•gmays•40m ago•1 comments

Artificial

https://www.inkandswitch.com/tangents/artificial/
8•FelipeCortez•41m ago•0 comments

35°C Wet-Bulb – Narration of Robinson's 'The Ministry for the Future' Opening

https://www.youtube.com/watch?v=hXTbfBoRnao
1•SpiralLibrarium•47m ago•0 comments

Show HN: Souso – plan your week, fill your AH/Jumbo basket (MEGATHON Amsterdam)

https://souso.app
3•ntorresdev•50m ago•1 comments

Taste turns your Git history into enforceable coding judgment

https://github.com/dvcoolarun/taste-ai
1•dvcoolarun•50m ago•0 comments

Chrome Breaks Records Again on Speedometer 3.1 and Jetstream 3

https://blog.google/chromium/a-double-victory-for-web-speed-chrome-breaks-records-again-on-speedo...
4•gurgunday•51m ago•1 comments

Secure Boot certificate changes in 2026: Guidance for RHEL environments

https://developers.redhat.com/articles/2026/02/04/secure-boot-certificate-changes-2026-guidance-r...
1•Bender•52m ago•1 comments

Brain the Size of a Planet: Are LLMs Thonking Too Hard?

https://parsiya.net/blog/llm-thonking/
1•gmays•52m ago•0 comments

Show HN: Autolectures – lecture videos from prompts with Remotion

https://www.holma.io/blog/posts/autolectures
3•lapurita•54m 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.