frontpage.
newsnewestaskshowjobs

Open Source @Github

fp.

Fredkin's Paradox

https://en.wikipedia.org/wiki/Fredkin%27s_paradox
1•throw0101a•1m ago•0 comments

Handover of In-Context Learning State Across Session Boundaries

https://arxiv.org/abs/2608.14528
1•ninadwrites•2m ago•0 comments

We still don't know how people are using AI

https://www.technologyreview.com/2026/08/18/1142226/how-people-use-ai/
2•joozio•3m ago•0 comments

Daron Acemoğlu: We Are "At the Cusp of Losing" Liberal Democracy [video]

https://www.youtube.com/watch?v=rvOfGzNn3-0
3•mertbio•4m ago•0 comments

Show HN: AirStats – Mac menu bar system monitor, 0.046% CPU idle, MIT

https://github.com/byrencheema/airstats
1•byrencodes•5m ago•0 comments

The Case for Deep Conversation in a World of Small Talk

https://thewalrus.ca/small-talk/
1•pseudolus•7m ago•0 comments

Data driven essay: Misogyny kills; misandry kills at scale

https://socialsommentary.substack.com/p/misogyny-kills-misandry-hurts-feelings
1•dandare•7m ago•0 comments

ARM64 BBML3 Feature Ready with Linux 7.3, Nvidia Olympus Workarounds

https://www.phoronix.com/news/ARM64-Linux-7.3
2•rbanffy•7m ago•0 comments

Show HN: ImageSage – Find the screenshot you want from 10k messy screenshots

https://apps.microsoft.com/detail/9mt89hd9s6sm?hl=en-US&gl=US
1•ringlochid•13m ago•0 comments

Bootstrappable Builds: How and Why

https://lwn.net/SubscriberLink/1088279/ada6cd53d01cdafa/
1•6581•17m ago•0 comments

Security Through Obscurity

https://en.wikipedia.org/wiki/Security_through_obscurity
2•thuva4•20m ago•0 comments

Meta faces pivotal kids' safety trial

https://www.politico.com/news/2026/08/18/meta-faces-pivotal-kids-safety-trial-01039903
1•0in•22m ago•0 comments

Each degree of warming could add a month of intolerable heat for 1B people

https://phys.org/news/2026-08-degree-month-intolerable-billion-people.html
2•geox•23m ago•0 comments

Operation Blue Skies: Reducing aviation climate impact with AI

https://blog.google/innovation-and-ai/models-and-research/google-research/blue-skies/
1•thm•24m ago•0 comments

Show HN: MCP-Proxy Add MCP support to any REST API – no code changes required

https://github.com/crhuber/mcp-proxy
2•cr_huber•29m ago•0 comments

Show HN: MyPdfly – 30 free PDF tools, no signup required

https://mypdfly.com
1•Tauseef199•30m ago•0 comments

Tell HN: Use AI to music score your books

1•arisAlexis•30m ago•0 comments

The Berlin Government has been Hacked

https://www.heistberlin.com/news/berlin-senate-government-hacked-cyberattack-bela/
5•dudefeliciano•30m ago•1 comments

Show HN: DynaJS – New JavaScript runtime with batteries included

https://github.com/corporatepiyush/dynajs
1•truth_seeker•31m ago•0 comments

Toxicity and Antisocial Behavior over User Lifetimes on Social Media (2024)

https://arxiv.org/abs/2407.09365
1•wslh•31m ago•0 comments

Job Ads Tell You What Employers Want, Not What You Want

https://julienreszka.com/blog/job-ads-tell-you-what-employers-want-not-what-you-want/
2•julienreszka•38m ago•0 comments

How Krackpot works: secp256k1, SHA-256 and RIPEMD-160 in WebGPU

https://krackpot.io/blog/how-it-works
2•svenfaw•38m ago•0 comments

Executable pseudocode for learning CS without syntax barriers

https://thaduscodelabs.com
2•thadusTeam•41m ago•0 comments

Anthropic's Annualized Revenue Tops $65B Before IPO

https://www.bloomberg.com/news/articles/2026-08-17/anthropic-revenue-run-rate-surpasses-65-billio...
6•johnbarron•41m ago•1 comments

So Long Relayd, and Thanks for All the Fish

https://btxx.org/posts/so-long-relayd/
3•bradley_taunt•41m ago•0 comments

Everybody Wants You to Win

https://web.navan.dev/posts/2026-07-15-everybody-wants-you-to-win.html
3•jger15•43m ago•0 comments

AI automation: Lock in payroll savings or reinvest capacity into growth

https://urnicus.com/blog/the-quiet-cost/
2•urnicus•46m ago•0 comments

Show HN: The Hacker News Puzzle

https://pzlgames.com/games/hackernews/
4•pompomsheep•47m ago•0 comments

Maiden voyage for India's first hydrogen train

https://www.chemistryworld.com/news/maiden-voyage-for-indias-first-hydrogen-train-signals-the-cou...
2•valeg•47m ago•0 comments

Show HN: Samuel, a Silly Speech Model

https://samuel.vvolhejn.com/
2•vvolhejn•48m 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.