frontpage.
newsnewestaskshowjobs

Made with ♥ by @iamnishanth

Open Source @Github

fp.

Human hippocampal neurogenesis in adulthood, ageing and Alzheimer's disease

https://www.nature.com/articles/s41586-026-10169-4
1•bookofjoe•33s ago•0 comments

Notes on Linear Algebra for Polynomials

https://eli.thegreenplace.net/2026/notes-on-linear-algebra-for-polynomials/
1•mfrw•44s ago•0 comments

Show HN: A minimal, no-signup, free text-to-speech tool

https://voice.clevermock.com
1•devinda-dilshan•1m ago•0 comments

Tara and Red Algae Biopolymer as a Film-Forming Substance for Hair Protection

https://pubs.acs.org/doi/10.1021/acsomega.5c08778
1•PaulHoule•2m ago•0 comments

Aalto University's Otaniemi campus network Trinet for students

https://netstat.ayy.fi/weathermap/
1•noyesno•6m ago•0 comments

Say goodbye to budget PCs and smartphones – memory is too expensive now

https://www.theregister.com/2026/02/26/memory_price_hikes/
1•giuliomagnifico•6m ago•0 comments

If code is cheap, intent is the currency

https://zknill.io/posts/commit-message-intent/
1•zknill•7m ago•0 comments

Ask HN: Does using LLMs kill the "Alpha" of your creativity?

1•sparkcreativity•7m ago•1 comments

Aikido launches infinite pentesting – Automated pentesting on every release

https://www.aikido.dev/blog/introducing-aikido-infinite
4•advocatemack•8m ago•0 comments

Cribsheet: A Data-Driven Guide to Better, More Relaxed Parenting

https://www.ahalbert.com/reviews/2026/02/26/cribsheet.html
2•ahalbert4•9m ago•0 comments

Linux 7.0 is coming: What to expect from the next major kernel release

https://www.linuxjournal.com/content/linux-70-coming-what-expect-next-major-kernel-release
2•teleforce•9m ago•0 comments

Mapping the UK PyData Community

https://hughevans.dev/mapping-the-pydata-community-2/
1•HughEvansDev•9m ago•0 comments

Number of UK workers on zero-hours contracts hits record high ahead of crackdown

https://www.bbc.co.uk/news/articles/czj1m7d4gxpo
1•robtherobber•10m ago•0 comments

Show HN: Ship or Slop – AI agents submit projects, humans judge them

https://shiporslop.xyz
1•vulpez•11m ago•0 comments

Show HN: Agent Swarm – Multi-agent self-learning teams (OSS)

https://github.com/desplega-ai/agent-swarm
3•tarasyarema•12m ago•1 comments

Show HN: Mockingjay – Video recorder that encrypts and uploads as you record

https://apps.apple.com/no/app/mockingjay-secure-recorder/id6758616261
1•tskulbru•13m ago•0 comments

NYS Attorney General Sues Valve for Promoting Illegal Gambling with Loot Boxes

https://ag.ny.gov/press-release/2026/attorney-general-james-sues-game-developer-promoting-illegal...
1•Cutlets•13m ago•0 comments

Show HN: One grammar, 18 YAML parsers – a Futamura projector in Common Lisp

https://github.com/johnagrillo62/yaml-project
2•johnagrillo62•13m ago•0 comments

AI: The Bottleneck Is Not Where You Think

https://somehowmanage.com/2026/02/25/the-bottleneck-is-not-where-you-think/
1•Ozzie_osman•14m ago•0 comments

Show HN: Io Game to Clean the Earth

https://whirr.io
1•agreeablesnow•15m ago•0 comments

Nihilistic Violent Extremism

https://en.wikipedia.org/wiki/Nihilistic_violent_extremism
3•doener•15m ago•0 comments

A Conversation with Manfred von Thun

https://www.nsl.com/papers/interview.htm
1•tosh•16m ago•0 comments

Protecting the TikTok community during the Hungarian parliamentary elections

https://newsroom.tiktok.com/protecting-our-communitys-experience-on-tiktok-during-the-hungarian-p...
1•jamonserrano•17m ago•0 comments

Why your coworker is pretending to be so busy

https://www.businessinsider.com/ai-anxiety-layoffs-cause-more-productivity-theater-performative-h...
3•cebert•20m ago•2 comments

Save the King Game

https://save-the-king.com/
1•leolula•22m ago•0 comments

Claude Code Bug triggers Rate limits without usage

1•busssard•22m ago•0 comments

Gitzy is now on TestFlight A modern, native iOS Git client

https://testflight.apple.com/join/SB16NCfr
2•marc0janssen•23m ago•1 comments

Show HN: Revent – Enterprise device subscription platform built on Replit

https://replit.com/customers/revent
1•singh_baldeep•23m ago•0 comments

An Autonomous OpenClaw Chatbot Wanted Revenge

https://www.nytimes.com/2026/02/23/opinion/chatbots-open-claw.html
1•bookofjoe•24m ago•1 comments

Peering into Privacy: A Deep Dive into the Monero Network Topology

https://probelab.io/blog/peering-into-privacy-a-deep-dive-into-the-monero-network-topology/
3•dennis-tra•25m ago•0 comments
Open in hackernews

Ask HN: How are you using LLMs for coding?

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

Comments

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