frontpage.
newsnewestaskshowjobs

Made with ♥ by @iamnishanth

Open Source @Github

fp.

C.O.R.E Alternative to LLM?

1•phboot•2m ago•0 comments

The Driver of Formula 1 – Willem Toet and Francesco Del Citto [video]

https://www.youtube.com/watch?v=1RffOsDb89Y
1•mtillman•4m ago•1 comments

Snapdragon X2 Elite laptop chip benchmarks

https://www.tomsguide.com/computing/laptops/i-just-benchmarked-every-snapdragon-x2-elite-chip-and...
1•walterbell•4m ago•0 comments

Lilly first drugmaker to hit $1T valuation on weight-loss demand

https://www.reuters.com/business/healthcare-pharmaceuticals/lilly-becomes-first-drugmaker-join-tr...
1•geox•4m ago•0 comments

Putting Money in Consumer Hands Ends Chronic Disease Faster Than Any Bureaucracy

https://foodishealth.substack.com/p/healthcares-price-signal-problem
1•jcarterwil•9m ago•1 comments

Telecom-wavelength quantum teleportation using photons from remote quantum dots

https://www.nature.com/articles/s41467-025-65912-8
1•westurner•10m ago•2 comments

Exploring the Local Positivity Bias in Crime Perceptions

https://news.gallup.com/opinion/polling-matters/698624/exploring-local-positivity-bias-crime-perc...
1•hn_acker•12m ago•0 comments

Victory Court Ends Dragnet Electricity Surveillance Program in Sacramento

https://www.eff.org/deeplinks/2025/11/victory-court-end-dragnet-electricity-surveillance-program-...
2•hn_acker•17m ago•0 comments

'Kant' review: A purer understanding

https://www.wsj.com/arts-culture/books/kant-review-a-pure-understanding-a477a035
1•hhs•18m ago•1 comments

If We Tax Rich People They Will Just Leave [video]

https://www.youtube.com/watch?v=6DXZMXZCY0I
1•hn_acker•19m ago•1 comments

Show HN: A minimalist maze exploration game with level editor

https://github.com/skorotkiewicz/maze
1•modinfo•20m ago•0 comments

Cloudflare outage showing double standard of Rust community [video]

https://www.youtube.com/watch?v=hkNLVQHZHk8
2•up2isomorphism•21m ago•0 comments

AI Agent Security: Why Reliability Is the Missing Defense Against Data

https://composio.dev/blog/ai-agent-security-reliability-data-integrity
1•manveerc•21m ago•0 comments

Explaining, at some length, Techmeme's 20 years of consistency

https://news.techmeme.com/250912/20-years
6•nhf•28m ago•0 comments

Using Antigravity for Statistical Physics in JavaScript

https://christopherkrapu.com/blog/2025/antigravity-stat-mech/
1•ckrapu•29m ago•0 comments

Renewed push to preempt US state AI laws gains steam

https://iapp.org/news/a/renewed-push-to-preempt-us-state-ai-laws-gains-steam
2•walterbell•29m ago•0 comments

The Case of the Misread Historian: Thucydides and the Millennia of Mistake

https://medium.com/@gp2030/the-case-of-the-misread-historian-thucydides-and-the-millennia-of-mist...
1•light_triad•30m ago•0 comments

Amazon's Layoffs Are Business as Usual, Not Omens of AI Doom

https://jacobin.com/2025/11/amazon-layoffs-artificial-intelligence-h-1b-visa
1•wahnfrieden•32m ago•1 comments

Show HN: I made a Terminal UI for OpenSnitch, a Linux application firewall

https://github.com/amalbansode/opensnitch-tui
1•quadrophenia•34m ago•0 comments

The Zero-Bullshit Protocol – Hallucination-Proof AI Engineering System

https://gracefultc.gumroad.com/l/ctgyvz
1•Thugonerd•35m ago•0 comments

Show HN: I Built an Interactive Map to Compare Cost of Living by US County

https://watchpennies.com
1•lunava•37m ago•0 comments

How sea turtles learn locations using Earth’s magnetic field: research

https://uncnews.unc.edu/2025/02/13/sea-turtles-secret-gps-researchers-uncover-how-sea-turtles-lea...
1•hhs•39m ago•0 comments

Ruby 3.4.7 Port to Cosmopolitan Libc – Portable Ruby

https://github.com/igravious/cosmoruby/blob/feature/ruby-3.4.7-port/third_party/ruby-wip-3.4.7/RE...
1•Kerrick•41m ago•0 comments

What Is Alternative Upstract.com

https://allheadline.com/
1•fatbrother•43m ago•1 comments

Building an AI-native engineering team [pdf]

https://cdn.openai.com/business-guides-and-resources/building-an-ai-native-engineering-team.pdf
2•gmays•45m ago•0 comments

The Batman effect: The mere sight of the 'superhero' can make us more altruistic

https://phys.org/news/2025-11-batman-effect-mere-sight-superhero.html
1•brycehalley•46m ago•0 comments

This is a solar-powered website, which means it sometimes goes offline

https://solar.lowtechmagazine.com/power/
1•mikenew•47m ago•0 comments

Dell Ryzen 7 Laptop Bundle (32GB RAM, 1TB SSD) Is Almost 70% Off

https://kotaku.com/dell-ryzen-7-laptop-bundle-32gb-ram-1tb-ssd-is-almost-70-off-savings-youll-nev...
1•PaulHoule•50m ago•0 comments

Cloudfare: The Rust Community Knew This Was Coming

https://lucisqr.substack.com/p/the-rust-community-knew-this-was
2•NotThe1Pct•51m ago•0 comments

VideoCore IV 3D Architecture Reference Guide

https://docs.broadcom.com/doc/12358545
3•doener•52m ago•0 comments
Open in hackernews

Ask HN: How are you using LLMs for coding?

2•mraza007•7mo ago
What have been your tips and tricks when coding with LLMs

Comments

benoau•7mo 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•7mo 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•7mo 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.