frontpage.
newsnewestaskshowjobs

Open Source @Github

fp.

1•untiledsource•17s ago

Performance Monitor – open-source macOS menu bar system monitor (no telemetry)

https://github.com/inequitas/performancemonitor
1•inequitas•27s ago•0 comments

Nvidia behind $50B lease on Texas data centre that will use its chips

https://www.ft.com/content/685014e7-47dd-471b-a585-1b9b73ce5d6f
1•mapping365•2m ago•0 comments

Show HN: OpsCat – A single-binary software catalog with MCP for AI agents

https://github.com/sumant1122/opscat
1•paperplaneflyr•5m ago•0 comments

Guantlet Loop

https://somethingbig.ai/gauntlet-loop
1•shahargl•6m ago•0 comments

Can Gender Equality and Religious Liberty Coexist?

https://medium.com/freedomofthought/can-gender-equality-and-religious-liberty-truly-coexist-6396e...
1•raynchad•9m ago•0 comments

If AI Writes All the Code, What Do the Programmers Do?

https://probablydance.com/2026/07/27/if-ai-writes-all-the-code-what-do-the-programmers-do/
1•ingve•12m ago•0 comments

Astro93: On-device astrology app with a pure-Dart ephemeris

https://play.google.com/store/apps/details?id=com.hoornet.astro93&hl=en_US
1•hoornet•15m ago•0 comments

Nuclear Turbines

https://www.nuclearturbines.com
1•chickenbig•17m ago•0 comments

Live: NHK WORLD-Japan News (since Mar 10, 2022) [video]

https://www.youtube.com/watch?v=f0lYkdA-Gtw
1•gjvc•18m ago•1 comments

Tag Questions and the Generational Reversal of Sycophancy Across 45 Language

https://arxiv.org/abs/2607.23976
1•sbulaev•23m ago•0 comments

Some people's chats with Claude AI found to be publicly available online

https://www.bbc.com/news/articles/cly5qgjk5ywo
1•01-_-•24m ago•0 comments

Southeast Asia's record tech investment driven by single data centre giant

https://ciosea.economictimes.indiatimes.com/news/data-center/southeast-asias-record-tech-investme...
1•01-_-•24m ago•0 comments

An interactive in-browser tutorial for MarkoJS V6 with solvable lessons

https://markojs-tutorial.netlify.app/
1•defunkt-dev•25m ago•1 comments

Tell HN: Our paid Claude AI subscription unavailable >1 week and no support

2•KellyCriterion•30m ago•0 comments

Show HN: Where everything shaping how you think lives

https://omphalis.ai/
2•wowinter15•34m ago•0 comments

F-16 in 1991 Gulf war dodges 6 SAM missiles without chaff

https://www.youtube.com/watch?v=TJE5gDDnq9s
2•lifeisstillgood•37m ago•0 comments

Magnitude 7.1 earthquake hits Japan's Kyushu region, JMA says

https://www.reuters.com/business/environment/magnitude-71-earthquake-hits-japans-kyushu-region-jm...
1•mikhael•39m ago•0 comments

The Uses of 'Treason'

https://www.cjr.org/the_media_today/the-uses-of-treason-donald-trump-press-traitors-air-force-one...
2•robtherobber•41m ago•0 comments

Ask HN: What do you use local models for?

1•tjomk•44m ago•1 comments

7.1 Earthquake in Japan

https://www.data.jma.go.jp/multi/quake/quake_detail.html?eventID=20260728163528&lang=en
95•krembo•45m ago•18 comments

Seriously, what is the large code-model even for?

https://fzakaria.com/2026/07/26/seriously-what-is-the-large-code-model-even-for
1•birdculture•47m ago•0 comments

Show HN: Reverse-engineer viral videos into AI-ready shot breakdowns

https://videolens.cc/zh/landing
1•not_wowinter13•51m ago•0 comments

Show HN: Dino Race – A peer-to-peer two-player Chrome Dino game

https://gameplayer2.com/dino
1•dares2573•52m ago•0 comments

Artificial Intelligence: Shades of Gray

https://changelog.complete.org/archives/42503-artificial-intelligence-shades-of-gray
1•psibi•52m ago•0 comments

Does Speaking to Agents Like Cavemen Save 65% of Tokens? We Test

https://blog.jetbrains.com/ai/2026/07/speak-to-ai-agents-like-cavemen-tosave-tokens/
3•Sandman•53m ago•1 comments

Disney+ removes 4K and HDR from premium plans in Germany

https://www.heise.de/en/news/Disney-4K-and-HDR-completely-disappeared-in-Germany-11379707.html
2•Vloeck•57m ago•0 comments

Fcgc

https://news.ycombinator.com/submit
1•sfgsfsdgs•57m ago•0 comments

Packaging Companies in Sri Lanka

https://akhtarigroup.com/
1•jayanath99•1h ago•0 comments

AgentEnv

https://github.com/kvcache-ai/AgentEnv
1•handfuloflight•1h 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.