frontpage.
newsnewestaskshowjobs

Open Source @Github

fp.

TiVo to charge money for skipping commercials in your own recordings

https://cordcuttersnews.com/tivo-plans-to-end-free-automatic-commercial-skipping-in-november-test...
1•dmitrygr•1m ago•0 comments

Show HN: The Duck Has WiFi, a music video drawn with Python

https://www.youtube.com/watch?v=_h1KgS169iM
1•modinfo•3m ago•0 comments

HPE Gives Oracle Right to Buy 4.2M Shares for 1 Cent Each

https://www.forbes.com/sites/antoniopequenoiv/2026/09/03/hewlett-packard-enterprise-gives-oracle-...
1•gurjeet•3m ago•0 comments

I refused to train the AI that could replace me

https://restofworld.org/2026/ai-training-jobs-expert-replacement/
1•colinprince•3m ago•0 comments

The Instinct Thesis: Why Memory Is Becoming the Moat

https://twitter.com/ashwingop/status/2093026452929405356
1•yarapavan•4m ago•0 comments

Marginal Revolution University: Economics for Everyone,taught by econ professors

https://mru.org
1•gurjeet•7m ago•0 comments

I just don't care about your skill files

1•drunkpotato•8m ago•0 comments

From NAND to Tetris (book and course) [video]

https://www.youtube.com/watch?v=LqirVc5SlW0&list=PLrDd_kMiAuNmSb-CKWQqq9oBFN_KNMTaI
1•nomilk•9m ago•1 comments

Show HN: Server hardening playbook where every item is failure/fix/verify

https://github.com/Sanexxxx777/server-hardening-playbook
1•Aleksandr_NFA•11m ago•0 comments

A HN that is better than HN

https://hn.4mn.org/
3•HNSucksDick•12m ago•1 comments

Samsung Debuts zHBM Prototype, Stacking Memory Directly on AI Accelerators

https://www.thelec.net/news/articleView.html?idxno=12835
1•peter_d_sherman•14m ago•1 comments

He's Letting AI Agents Invest His Money. They Even Have Names

https://www.wsj.com/tech/ai/the-ai-shift-turning-everyday-investors-into-mini-quant-funds-ebe4d45f
1•thm•18m ago•0 comments

Show HN: GasMeUp – A gas app that factors in detour time and tank size

https://gasmeup.app/
1•Sharanxxxx•18m ago•0 comments

Show HN: GuidedReview – Review AI-generated code before you sign your name to it

https://github.com/nshntarora/guidedreview
1•nshntarora•19m ago•0 comments

I made legacy SOAP APIs usable by AI agents

https://github.com/bvenkata/legacy2mcp
1•balajijoe5•22m ago•0 comments

Show HN: Golden hour API and a 3D globe of the best light

https://golden.sendafun.com/
1•gpszys•23m ago•0 comments

Coop – Isolated VM Environments for Running Claude Code and Codex

https://github.com/trailofbits/coop
1•aggrrrh•23m ago•0 comments

Iran's Hormuz leverage wanes as US economic squeeze bites

https://www.reuters.com/business/energy/irans-hormuz-leverage-wanes-us-economic-squeeze-bites-202...
1•kaycebasques•23m ago•0 comments

Filepack

https://rodarmor.com/blog/filepack/
1•greyface-•31m ago•0 comments

'RAMageddon' hits consumer electronics as AI drains chip supply

https://www.ft.com/content/ea9a9dcc-b1df-49b0-b80c-f320161b9efa
3•sbulaev•34m ago•0 comments

Tell HN: Anthropic should make Claude the Author and me the Co-Author

2•xeonax•35m ago•1 comments

US Republicans revolt against Flock AI surveillance as backlash intensifies

https://www.ft.com/content/b207536e-6def-4080-878f-d0eba61d11e0
2•sbulaev•35m ago•0 comments

British Museum faces question over Peter Thiel's private Bayeux Tapestry viewing

https://www.londondaily.news/__sentry/balanced/british-museum-faces-questions-over-peter-thiels-p...
2•frm88•37m ago•1 comments

A makeover for college: No gym, no meal plan and two years of work

https://www.npr.org/2026/09/01/nx-s1-5935431/college-reinvented-vermont-work-experience
1•juanplusjuan•37m ago•0 comments

Indonesia's Anak Krakatau eruption halts flights, schools, fishing

https://www.reuters.com/business/environment/indonesias-jakarta-airport-suspends-flights-due-ash-...
1•wslh•41m ago•0 comments

Show HN: Cartoon Photography

https://mkornreich.me/projects/cartoonphotography/
1•enjoyyourlife•46m ago•0 comments

New Twitter Rebrands to Tweet.app After Court's Double-Edged Ruling

https://www.engadget.com/2251699/new-twitter-rebrands-to-tweet-app-after-court-double-edged-ruling/
2•Anon84•47m ago•0 comments

Show HN: Lantunnel – a P2P-first private mesh for reaching your LANs

https://github.com/lantunnel/lantunnel
2•buhuipao•55m ago•0 comments

You almost certainly should connect to Tor through a VPN

https://www.privacyguides.org/en/advanced/tor-overview/
2•Cider9986•1h ago•0 comments

Keep Our Servers Running: Your Recurring Donation Goes 3X This September

https://blog.archive.org/2026/09/01/keep-our-servers-running-your-recurring-donation-goes-3x-this...
87•sonicrocketman•1h ago•21 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.