frontpage.
newsnewestaskshowjobs

Open Source @Github

fp.

The AI Conundrum: We are living in highly subsidized, interesting times

1•pyeri•3m ago•0 comments

Japan chipmaking equipment suppliers report 10% drop in China sales

https://asiaai.fyi/japans-ai-shift-chip-woes-automation-hopes-cloud-expansion/
2•dweisinger•5m ago•1 comments

Nintendo Wii U games running from a 1980's Bernoulli disk [video]

https://www.youtube.com/watch?v=8GZDOpV2OXk
2•zdw•9m ago•0 comments

Ask for no, don't ask for yes (2022)

https://www.mooreds.com/wordpress/archives/3518
4•skogstokig•10m ago•0 comments

You're probably paying GPT prices for tasks that don't need GPT

https://ourtoken.ai/
2•AislinnYang•11m ago•0 comments

AI Is Taking Over Hospitals

https://www.theatlantic.com/health/2026/06/ai-healthcare-uber-moment/687567/
3•karakoram•13m ago•1 comments

I am dreading our LLM-written incident report future

https://surfingcomplexity.blog/2026/06/19/i-am-dreading-our-llm-written-incident-report-future/
2•_____k•14m ago•0 comments

Read More Fiction

https://pilk.website/5/read-more-fiction
2•npilk•16m ago•0 comments

The No Hallucination Guarantee

https://www.hudson-labs.com/blog/no-hallucination-guarantee
2•Anon84•18m ago•0 comments

We Taught a $3 Chip to Run CSS

https://geastack.com/blog-we-taught-a-chip-to-run-css
3•arbayi•21m ago•1 comments

Show HN: Tot – instant share links for HTML and Markdown files

https://github.com/plannotator/tot
3•ramoz•22m ago•0 comments

Ask HN: How should I convert Microsoft Word documents to Markdown?

2•lkrubner•23m ago•3 comments

Ask HN: What's Your Agents.md?

2•CSMastermind•25m ago•1 comments

Gumption Traps

https://en.wikipedia.org/wiki/Zen_and_the_Art_of_Motorcycle_Maintenance
2•toomuchtodo•26m ago•1 comments

More than 12.5M barrels of oil passed through Strait of Hormuz after deal signed [video]

https://www.youtube.com/watch?v=3_EQnkYc60U
2•Bender•28m ago•0 comments

Snowboard Kids 2 is Recompiled

https://blog.chrislewis.au/snowboard-kids-2-is-recompiled/
3•knackers•29m ago•0 comments

Quality in the Age of Slop

https://sinclairtarget.com/blog/2026/06/01/quality-in-the-age-of-slop/
2•weebst•30m ago•0 comments

Show HN: DebugBrief – turn debugging sessions into reports, no AI

https://github.com/harihkk/Debug-Brief
3•itshkrishna•30m ago•0 comments

Partial Application

https://en.wikipedia.org/wiki/Partial_application
2•tosh•31m ago•0 comments

False Balance

https://en.wikipedia.org/wiki/False_balance
2•chistev•33m ago•0 comments

KiCad-captouch: Capacitive touch interface generation

https://github.com/unwndevices/kicad-captouch
2•peteforde•35m ago•0 comments

The Path of Madness

https://brandur.org/nanoglyphs/029-path-of-madness
2•jordanscales•35m ago•0 comments

The Science That Turned Lizard Venom into GLP-1s Is Under Attack

https://www.nytimes.com/2026/06/20/opinion/glp1-research-science-funding.html
4•rmason•39m ago•1 comments

SHOW HN: I built a social profile for vibecoders to share & store their projects

https://kritive.com
2•sonOfHades•43m ago•1 comments

CMS Trap (2013)

https://max.engineer/cms-trap
1•tosh•44m ago•0 comments

Fastest Commodore PET Using the MCL65(2025)

https://hackaday.io/project/204693-worlds-fastest-commodore-pet-using-the-mcl65
1•rolph•46m ago•0 comments

JustHTML 3.0.0: A new HTML5 parser architecture

https://friendlybit.com/python/justhtml-3-parser-architecture/
1•EmilStenstrom•47m ago•0 comments

Thinking at the Edge

https://mklyons.com/blog/thinking-at-the-edge
1•mklyons•47m ago•0 comments

Graphene experts are trying to close reproducibility gap in 2D materials

https://cen.acs.org/materials/2-d-materials/graphene-2D-materials-reproducibility-industry/104/we...
3•EvgeniyZh•49m ago•0 comments

Founding Systems Engineer, hardtech startup, full time, ONSITE SF/hybrid

https://docs.google.com/document/d/1pudvLsPYiVOAItGD5lDM7zSJhSXqg2qRYWVOdyVp2wc/edit?usp=sharing
1•PapillonStar•50m ago•1 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.