frontpage.
newsnewestaskshowjobs

Made with ♥ by @iamnishanth

Open Source @Github

fp.

Is Claude opus 4.5 any good?

https://www.aithings.dev/blog/is-claude-opus-45-good
2•irere123•6m ago•1 comments

Made a simple pastebin – feedback appreciated

https://fourbin.onrender.com/
1•redemption•8m ago•0 comments

Virtual ARchaeological Computer EMulator – cycle exact old x86 PC emulator

https://github.com/VARCem/VARCem
2•peter_d_sherman•9m ago•0 comments

Show HN: AI agent that rotates your passwords (browser-use and zero-knowledge)

https://thepassword.app/
2•thepasswordapp•11m ago•0 comments

Reduce Cron Email Noise with Logdiff

https://chapati.systems/reduce-cron-email-noise-with-logdiff/
2•Wronnay•15m ago•0 comments

DeepSeekMath-V2: Towards Self-Verifiable Mathematical Reasoning

https://github.com/deepseek-ai/DeepSeek-Math-V2
2•maxloh•16m ago•0 comments

Anime event in Shanghai canceled after singer's show interrupted

https://www.japantimes.co.jp/news/2025/11/29/japan/shanghai-japan-anime-event-cancel/
1•DustinEchoes•19m ago•0 comments

Unconditional self-acceptance is impossible

https://www.technotheoria.org/p/unconditional-self-acceptance-is
1•paulpauper•19m ago•0 comments

A Different Type of Dementia Is Changing What's Known About Cognitive Decline

https://www.nytimes.com/2025/11/28/health/late-dementia-alzheimers.html
1•mitchbob•21m ago•1 comments

Why Doesn't Anyone Monitor AI Consciousness? [video]

https://youtu.be/S8ttAlUXbc0
1•indigodaddy•23m ago•0 comments

Colleges Are Preparing to Self-Lobotomize

https://www.theatlantic.com/ideas/2025/11/colleges-ai-education-students/685039/
2•JumpCrisscross•25m ago•1 comments

We're learning more about what Vitamin D does to our bodies

https://www.technologyreview.com/2025/11/21/1128206/vitamin-d-bodies-bone-health-immune/
5•Brajeshwar•27m ago•0 comments

A real-time stream of anonymous human thoughts

https://cloudly.cc
2•98469056•28m ago•0 comments

Inside the deal-making power of the F-35: A weapon, a network, strategic lock-in

https://timesofindia.indiatimes.com/world/us/inside-the-deal-making-power-of-the-f-35-a-weapon-a-...
1•rustoo•28m ago•0 comments

UN Convention Against Torture–Findings Re Albania, Argentina, Bahrain and Israel

https://tbinternet.ohchr.org/_layouts/15/treatybodyexternal/SessionDetails1.aspx?SessionID=2844&L...
2•treetalker•28m ago•1 comments

How and Why You Should Cut Your Social Media Usage

https://www.samstack.io/p/how-and-why-you-should-cut-your-social
1•paulpauper•28m ago•0 comments

N.Y. Law Could Set Stage for A.I. Regulation's Next 'Big Battleground'

https://www.nytimes.com/2025/11/29/nyregion/personalized-surveillance-pricing-ai-new-york.html
1•mitchbob•29m ago•1 comments

Experts warn of growing risk of 'ChatGPT psychosis' among AI chatbot users

https://techoreon.com/ai-chatgpt-psychosis-delusion-among-chatbot-users-experts/
3•ashishgupta2209•30m ago•0 comments

Auditing Large-Scale GCP Environments with InSpec/CINC

https://www.alexbilz.com/post/2025-11-18-auditing-gcp-with-inspec/
1•ninefinger•30m ago•1 comments

I measure my cortisol from sweat using a hacked-together device

https://www.reddit.com/r/Biohackers/s/lSS8Z42oWq
2•hentrep•30m ago•0 comments

His Very Variousness: Benjamin Franklin's Experiments

https://www.lrb.co.uk/the-paper/v47/n22/ferdinand-mount/his-very-variousness
1•jger15•31m ago•0 comments

I used an algorithm to see every inch of my neighborhood

https://youtu.be/hjuu-w2sK2g
2•dbsdev•32m ago•0 comments

How much do I owe in taxes?

https://taxquarterly.com/
1•vetraxneo_apps•33m ago•2 comments

FAA issues airspace warning for the SVZM FIR

https://safeairspace.net/venezuela/
1•ByteBlaster•34m ago•0 comments

Openreview Statement Regarding API Security Incident

https://openreview.net/forum/user%7Cstatement_regarding_api_security_incident
1•sieste•38m ago•0 comments

Individual and well-being factors associated w chatbot usage: A 6-country study

https://journals.sagepub.com/doi/10.1177/02654075251392956
1•DrierCycle•38m ago•0 comments

I'm a Concert Pianist. This Is Why I Seek Imperfection.

https://www.nytimes.com/2025/11/29/opinion/pianist-music-performance-perfection.html
1•mitchbob•39m ago•1 comments

Schubfach: The smallest double-to-string implementation

https://vitaut.net/posts/2025/smallest-dtoa/
2•todsacerdoti•40m ago•0 comments

Setting a wallpaper with less than 250 Kb

https://www.lgfae.com/posts/2025-11-21-SettingAWallpaperWithLessThan250KB.html
1•todsacerdoti•42m ago•0 comments

Bikeshedding, or why I want to build a laptop

https://geohot.github.io//blog/jekyll/update/2025/11/29/bikeshedding-or-laptop.html
4•lairv•44m ago•1 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.