frontpage.
newsnewestaskshowjobs

Open Source @Github

fp.

Show HN: Local privacy-first Microsoft Recall alternative with Gemma 4

https://github.com/ayushh0110/ScreenMind/blob/main/README.md
1•skye0110•1m ago•0 comments

MagicBookShelf – A modern reader for classic novels – Crime and Punishment

https://magicbookshelf.org/read/crime-and-punishment/
1•philipfweiss•11m ago•0 comments

Four-Byte Burger [video]

https://www.youtube.com/watch?v=i4EFkspO5p4
1•CharlesW•13m ago•0 comments

A Conflict-Free Multi-Agent Ensemble for Claude and Codex

https://medium.com/@Koukyosyumei/a-conflict-free-multi-agent-ensemble-for-claude-and-codex-0ded61...
1•syumei•13m ago•0 comments

Cholibrium Reviews 2026 – Does This Mushroom Blend Work

https://gamma.app/embed/Cholibrium-Reviews-2026-Does-This-Mushroom-Blend-Work-7rsn8kmry09nfdi?mod...
1•wildriverreview•19m ago•0 comments

BrickSlider – TypeScript-first, Tailwind-first carousel

https://sixsrc.github.io/brickslider/
1•marcusloren•39m ago•1 comments

A 2048-spin bulk acoustic wave Ising machine for number partitioning and Sudoku

https://arxiv.org/abs/2607.02112
1•Jimmc414•40m ago•0 comments

How Can Reinforcement Learning Achieve Expert-Level [Chip] Placement?

https://arxiv.org/abs/2604.25191
1•Jimmc414•42m ago•0 comments

Synthesis is harder than analysis

https://surfingcomplexity.blog/2026/07/03/synthesis-is-harder-than-analysis/
3•azhenley•46m ago•0 comments

I watched a flat earth convention

https://theconversation.com/i-watched-an-entire-flat-earth-convention-for-my-research-heres-what-...
1•robertclaus•46m ago•0 comments

The Human in the Loop Essay

https://designedbybruno.net/essays/06-the-human-in-the-loop
1•designedbybruno•48m ago•0 comments

Show HN: A tree-based replacement for PowerPoint

https://presentation.ironactionai.com/
1•nkersting•50m ago•0 comments

US life expectancy on track to reach record high

https://www.cnn.com/2026/07/02/health/us-death-rate-record-low-cdc-report-longevity
2•mbroshi•50m ago•0 comments

Windows App Profiles

https://github.com/lahcim/WindowsAutoProfiles
1•lahcim2000•51m ago•1 comments

Unlocking Windows Notepad: Create Time-Stamped Logs Like a Pro

https://windowsforum.com/threads/unlocking-windows-notepad-create-time-stamped-logs-like-a-pro.34...
2•thunderbong•52m ago•0 comments

Zork in browser with hand-crafted animated pixel-art scenes

https://github.com/posabsolute/zork-ui
1•indigodaddy•57m ago•0 comments

Teams Make Contact with Spacecraft Set to Boost NASA's Swift

https://science.nasa.gov/blogs/swift/2026/07/03/teams-make-contact-with-spacecraft-set-to-boost-n...
2•ChrisArchitect•59m ago•0 comments

Traveler – Scout Motors

https://www.scoutmotors.com/traveler
1•evo_9•1h ago•0 comments

Argentina's plan for AI-run companies can't avoid humans

https://www.reuters.com/world/americas/argentinas-plan-ai-run-companies-cant-avoid-humans-2026-07...
1•tartoran•1h ago•0 comments

The Optimization Trap: Optimization Only Protects What It Measures

https://www.saveneighbor.com/blog/the-optimization-trap
1•JJonesRatio•1h ago•0 comments

How AI Made IKEA Workers 10x More Valuable (5 min video)

https://www.youtube.com/watch?v=2ODq6IsmkhM
3•rmason•1h ago•2 comments

Xcode, Agents, and You [video]

https://developer.apple.com/videos/play/wwdc2026/259/
1•Austin_Conlon•1h ago•0 comments

This Month in Ladybird: June 2026

https://ladybird.org/newsletter/2026-06-30/
4•richardboegli•1h ago•0 comments

Building a Curriculum on Genes

https://www.howardgardner.com/howards-blog/building-a-curriculum-on-genes
1•the-mitr•1h ago•0 comments

Show HN: Cpcp – A smarter pbcopy for macOS that strips ANSI and newlines

https://github.com/Vansh-j/CopyCopy
2•vansh-j•1h ago•1 comments

Show HN: I've created a platform to help indie hackers with idea validation

https://www.validatehunt.com
2•gxara•1h ago•0 comments

Mecha Chameleon Games browser guide hub

https://mechachameleon.games/
3•zlonmask•1h ago•0 comments

Stop Googling.Track Team Across Timezones with Full Screen Always-On World Clock

https://citytime.io/fullscreen-clock
5•rajsuper123•1h ago•0 comments

CueBench for Developers is live: score how well you drive coding agents

https://app.cuebench.dev
9•DillonMehta•2h ago•3 comments

Proof That the Unraveling of MAGA Has Begun [video][46 Mins]

https://www.youtube.com/watch?v=x_Y7Zf4Nhe8
4•Bender•2h ago•3 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.