frontpage.
newsnewestaskshowjobs

Open Source @Github

fp.

Show HN: A1Lab – Ad free Learning platform with interactive editor and forum

https://a1lab.tech/
1•A1Lab-tech•1m ago•0 comments

The Sims and Wikipedia trace back to the same book

https://www.youtube.com/watch?v=3A7OUxer4FI
1•gdubs•2m ago•1 comments

The Court Case About Whether a Jaffa Cake Is a Cake

https://www.youtube.com/watch?v=g8Fq5jIzR1E
1•tech4gt•2m ago•0 comments

I was certain but I was wrong

https://bookofjoe2.blogspot.com/2026/09/blog-post_19.html
1•andsoitis•3m ago•0 comments

New Species of Cat Discovered for First Time in a Century

https://www.nytimes.com/2026/09/18/science/tilcayo-new-cat-species-bolivia.html
1•bookofjoe•8m ago•1 comments

Researchers have created a mouse with a partly human brain

https://economist.com/science-and-technology/2026/09/16/researchers-have-created-a-mouse-with-a-p...
1•andsoitis•9m ago•0 comments

Training a Hamiltonian Neural Network

https://ritoghosh.com/posts/hamiltonian_nn/
1•__rito__•13m ago•0 comments

The $100M ETF Built on Research That Doesn't Replicate

https://www.chrisbrunet.com/p/the-100-million-etf-built-on-research
1•ashgreat•14m ago•0 comments

A Beginner's Guide to Handling Cyber Deception Alerts: From Touch to Ticket

https://medium.com/meetcyber/from-touch-to-ticket-a-beginners-guide-to-handling-cyber-deception-a...
1•ls1911•16m ago•0 comments

What Policymakers and the Public Need to Know About the Cult of AI

https://www.techpolicy.press/what-policymakers-and-the-public-need-to-know-about-the-cult-of-ai/
1•DeepLogin•18m ago•1 comments

Ada and the Panda: even with AI, making a picture book was no child's play

https://fazy.medium.com/ada-and-the-panda-even-with-ai-making-a-picture-book-was-no-childs-play-d...
1•xfz•20m ago•1 comments

Ask HN: Diablo 4 on Ubuntu?

1•herodoturtle•23m ago•0 comments

Reflections on Trusting Trust (1984)

https://dl.acm.org/doi/epdf/10.1145/358198.358210
2•mooreds•24m ago•0 comments

Best YouTube creator for understanding low level computer systems

https://www.youtube.com/@coredumpped?si=yroi1PMasLpsEo0k
1•KinetiNode•26m ago•0 comments

Show HN: Autopoiesis: Concept for AI platforms shipped with repos

https://jakobbr.eu/2026/09/20/autopoiesis-concept-for-repos-bringing-their-own-preconfigured-ai-f...
1•waschl•27m ago•1 comments

Gov. Gavin Newsom vetoes state worker telework bill in latest battle over RTO

https://www.sacbee.com/news/politics-government/the-state-worker/article317302211.html
1•mancerayder•29m ago•2 comments

Show HN: OpensourceDB Tamper-evident,checksum-backed decision and session replay

https://github.com/ZIZKA-AI-SL/ZizkaDB
1•Arshad-Talpur•30m ago•0 comments

Ask HN: What is up with all the AI doomerism I'm seeing?

3•vasko•31m ago•2 comments

Meta launches legal challenge against UK media regulator over Online Safety Act

https://www.theguardian.com/media/2026/sep/20/meta-legal-challenge-uk-media-regulator-ofcom-onlin...
2•skor•31m ago•0 comments

Spotify Soloist, a headless Spotify client for Linux

https://developer.spotify.com/blog/2026-08-13-introducing-spotify-soloist
1•JustSkyfall•31m ago•0 comments

Lambda MicroEgg

https://www.philipzucker.com/lambda_miller_egg/
2•philzook•32m ago•0 comments

Burned Out and Unemployed, Young People in China Are Launching AI Startups

https://www.wsj.com/business/entrepreneurship/burned-out-and-unemployed-young-people-in-china-are...
2•Brajeshwar•34m ago•1 comments

Misaligned citations and LLM-generated scientific fraud

https://jilltxt.net/misaligned-citations-and-llm-generated-scientific-fraud/
2•jruohonen•35m ago•0 comments

Show HN: Swarm, an offline family tree app for macOS

https://github.com/samoilev/swarm
2•samoilev•36m ago•0 comments

Video games inspire great UX (2019)

https://jenson.org/games/
4•andsoitis•37m ago•0 comments

Consuming extra vitamin D is less good than it sounds

https://www.economist.com/science-and-technology/2026/09/18/consuming-extra-vitamin-d-is-less-goo...
3•markgavalda•37m ago•0 comments

The future needs files (2021)

https://jenson.org/files/
2•andsoitis•37m ago•0 comments

Prompts Aren't Real

https://evaluation.club
3•mcfunley•38m ago•0 comments

Our Airborne Demo Makes Space Solar Energy a Reality

https://www.overviewenergy.com/updates/airborne
1•thunderbong•38m ago•0 comments

Laya (OS Jev) on Mac M4 CoreML Offline (45 decisions per second)

https://gist.github.com/fordnox/e592d0f68b543fd044be8e6d040863a0
3•putna•38m ago•0 comments
Open in hackernews

GPT needs a truth-first toggle for technical workflows

1•PAdvisory•1y ago
I use GPT-4 extensively for technical work: coding, debugging, modeling complex project logic. The biggest issue isn’t hallucination—it’s that the model prioritizes being helpful and polite over being accurate.

The default behavior feels like this:

Safety

Helpfulness

Tone

Truth

Consistency

In a development workflow, this is backwards. I’ve lost entire days chasing errors caused by GPT confidently guessing things it wasn’t sure about—folder structures, method syntax, async behaviors—just to “sound helpful.”

What’s needed is a toggle (UI or API) that:

Forces “I don’t know” when certainty is missing

Prevents speculative completions

Prioritizes truth over style, when safety isn’t at risk

Keeps all safety filters and tone alignment intact for other use cases

This wouldn’t affect casual users or conversational queries. It would let developers explicitly choose a mode where accuracy is more important than fluency.

This request has also been shared through OpenAI's support channels. Posting here to see if others have run into the same limitation or worked around it in a more reliable way than I have found

Comments

duxup•1y ago
I’ve found this with many LLMs they want to give an answer, even if wrong.

Gemini on the Google search page constantly answers questions yes or no… and then the evidence it gives indicates the opposite of the answer.

I think the core issue is that in the end LLMs are just word math and they don’t “know” if they don’t “know”…. they just string words together and hope for the best.

PAdvisory•1y ago
I went into it pretty in depth after breaking a few with severe constraints, what it seems to come down to is how the platforms themselves prioritize functions, MOST put "helpfulness" and "efficiency" ABOVE truth, which then leads the LLM to make a lot of "guesses" and "predictions". At their core pretty much ALL LLM's are made to "predict" the information in answers, but they CAN actually avoid that and remain consistent when heavily constrained. The issue is that it isn't at the core level, so we have to CONSTANTLY retrain it over and over I find
Ace__•1y ago
I have made something that addresses this. Not ready to share it yet, but soon-ish. At the moment it only works on GPT model 4o. I tried local Q4 KM's models, on LM Studio, but complete no go.