frontpage.
newsnewestaskshowjobs

Made with ♥ by @iamnishanth

Open Source @Github

fp.

Screenshots from Developers: 2002 vs. 2015

https://anders.unix.se/2015/12/10/screenshots-from-developers--2002-vs.-2015/
1•ohjeez•1m ago•0 comments

Show HN: HiFidelity – A native offline music player for macOS

https://github.com/rvarunrathod/HiFidelity
1•rathod0045•4m ago•0 comments

8% performance boost with fine-tunning via biology inspired adapters

https://www.genbais.com/#bio-framework
1•lazarko•4m ago•1 comments

The new human rights industry: the business of sexual politics

https://athena-forum.eu/updates/the-new-human-rights-industry-the-business-of-sexual-politics/
1•binning•6m ago•0 comments

Zedrush – Daily Alphabet Game

https://zedrush.com
1•rouley•7m ago•0 comments

World-famous brewing institution leaving U.S. for Canada

https://www.ctvnews.ca/business/article/world-famous-brewing-institution-leaving-us-for-canada/
1•Teever•7m ago•0 comments

Italian parliament unanimously votes to make femicide a crime

https://www.bbc.co.uk/news/articles/c1dzp050yn2o
2•binning•8m ago•0 comments

Releasing Packages with a Valet Key: NPM, PyPI, and Beyond

https://byk.im/posts/releasing-packages/
1•coloneltcb•8m ago•0 comments

Euro zone banks should prepare for risk of dollar squeeze

https://www.reuters.com/business/finance/euro-zone-banks-with-dollar-exposure-need-more-buffers-e...
1•whynotmaybe•9m ago•0 comments

Atari DOS – By Paul Lefebvre

https://www.goto10retro.com/p/inside-atari-dos
1•rbanffy•9m ago•0 comments

Everything I Own

https://amulya.no/belongings.html
1•amulyabaral•10m ago•1 comments

We managed to secure $25K in GCP credits without a VC

https://substack.bomfather.dev/p/how-we-managed-to-secure-25k-in-gcp
3•nathannaveen•14m ago•0 comments

Intel CEO defends hiring former TSMC exec: He continues to have our full support

https://www.oregonlive.com/silicon-forest/2025/11/intel-ceo-defends-hiring-former-tsmc-exec-he-co...
1•osnium123•16m ago•0 comments

Is there a difference between GNU and BSD Coreutils?

https://svnweb.freebsd.org/base/stable/10/bin/&&https://www.gnu.org/software/coreutils/
1•OwenGrumbles•17m ago•1 comments

OpenAI says dead teen violated TOS when he used ChatGPT to plan suicide

https://arstechnica.com/tech-policy/2025/11/openai-says-dead-teen-violated-tos-when-he-used-chatg...
5•ndsipa_pomu•19m ago•1 comments

A temporary victory – but we still need to stop Chat Control

https://mullvad.net/en/blog/an-important-victory-but-we-still-need-to-stop-chat-control
3•AlgebraFox•22m ago•1 comments

PyDSL: A Python to MLIR Compiler

https://github.com/Huawei-CPLLab/PyDSL
1•pjmlp•23m ago•0 comments

One of the most influential social psychology studies ever – was it all a lie?

https://www.motherjones.com/politics/2025/11/when-prophecy-fails-cognitive-dissonance-ethics/
2•binning•24m ago•0 comments

Gemini CLI Tips and Tricks for Agentic Coding

https://github.com/addyosmani/gemini-cli-tips
1•ayoisaiah•24m ago•0 comments

Show HN: Envgrd – Detect environment variable drift using AST analysis

https://github.com/njenia/envgrd
1•jenia_n•25m ago•0 comments

San Diego Zoo's Gramma, a Galapagos tortoise, dies at 141

https://www.npr.org/2025/11/25/nx-s1-5620714/galapagos-tortoise-gramma-san-diego-zoo-dies-age-141
2•pseudolus•29m ago•0 comments

Rare X-ray images of a 4.5-ton satellite that returned intact from SPAC

https://www.empa.ch/web/s604/eureca-satellit-mit-roentgenmethoden-untersucht
1•giuliomagnifico•30m ago•0 comments

Replicate Image Editing Arena

https://image-editing-arena.replicate.dev
1•minimaxir•30m ago•0 comments

Self‑hosting is not dead: Atlassian just walked away from it

https://plane.so/blog/selfhosting-is-not-dead-atlassian-just-walked-away-from-it
5•viharkurama•31m ago•1 comments

The Penicillin Myth

https://www.asimov.press/p/penicillin-myth
5•devonnull•32m ago•0 comments

Ghostty on macOS now has search

https://twitter.com/mitchellh/status/1993728538344906978
1•sulkie•32m ago•1 comments

Investors expect AI use to soar. That's not happening

https://www.economist.com/finance-and-economics/2025/11/26/investors-expect-ai-use-to-soar-thats-...
14•gaius_baltar•35m ago•5 comments

I forced 4 Big AI to admit structural failure in complex coding. Here is the fix

https://github.com/robertomisuraca-blip/LLM-Entropy-Fix-Protocol
2•robertomisuraca•35m ago•0 comments

iOS Web Browser Latency

https://dbushell.com/2025/11/27/ios-web-browser-latency/
1•speckx•37m ago•0 comments

The Codebase Is Decadent and Depraved

https://gonzo.engineer/posts/the-codebase-is-decadent-and-depraved/
2•Dowwie•39m 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.