frontpage.
newsnewestaskshowjobs

Open Source @Github

fp.

Show HN: I solved a 12yr math problem using AI (formalized; awaiting review) [pdf]

https://raw.githubusercontent.com/kbr-/math-research/3979e0cc0a75dde9b845df7ec8869d033dfcd8d4/pub...
1•kbr-•26s ago•0 comments

Pair programming: still a good idea

https://revise.io/blog/09-15-2026/pair-programming-still-a-good-idea
2•artursapek•46s ago•0 comments

Code of Conduct for MAI Models

https://microsoft.ai/news/mai-code-of-conduct/
2•sergiotapia•1m ago•1 comments

Mapsnap: Automated Georeferencing for Historic Sanborn Insurance Maps

https://www.danvk.org/2026/09/10/mapsnap.html
1•evakhoury•1m ago•0 comments

Tag index for Org Mode blog

https://entropicthoughts.com/tag-index-for-org-mode-blog
1•ibobev•1m ago•0 comments

Spelling the type of a "self" parameter with Reflection

https://quuxplusone.github.io/blog/2026/09/15/self/
1•ibobev•2m ago•0 comments

Small Programming Tricks

https://will-keleher.com/posts/small-programming-tricks-matter/
1•birdculture•3m ago•0 comments

Malleable software: Restoring user agency in a world of locked-down apps

https://www.inkandswitch.com/essay/malleable-software/
1•evakhoury•3m ago•0 comments

Show HN: deadSPEAKER, inc. – horror comedy puzzle game

https://run.world/lthrjckrjckr/deadspeaker-inc
1•lthrjcktjckr•4m ago•0 comments

Testosterone scripts for women rise, along with denials and delays

https://www.reuters.com/business/healthcare-pharmaceuticals/testosterone-scripts-women-rise-along...
1•elo2000•4m ago•0 comments

From Intern to Software Architect

https://chauhankiran.blogspot.com/2026/09/levels.html
2•ibobev•4m ago•0 comments

California attempts to crack down on health spending

https://www.axios.com/2026/09/14/california-health-spending-limits-affordability
1•elo2000•5m ago•0 comments

China tightens control of overseas travel in new law

https://www.ft.com/content/3f2b2172-0c1a-4708-aba2-559eb37eabc8
1•JumpCrisscross•6m ago•0 comments

From a Whiteboard to Nvidia

https://sageox.ai/blog/thoughts-on-nvidia-hf
1•skadamat•9m ago•0 comments

Vapor 5 Beta

https://blog.vapor.codes/posts/vapor-5-beta/
1•frizlab•9m ago•0 comments

Riddlance – A Puzzle Game

https://riddlance.io
1•bravilogy•9m ago•0 comments

India ends free ride for larger transactions on UPI

https://techcrunch.com/2026/09/15/india-ends-free-ride-for-larger-transactions-on-its-ubiquitous-...
2•twapi•10m ago•0 comments

Tracking the slide into authoritarianism wihin the United States of America

https://protectdemocracy.org/threat-tracker/
2•Varelion•10m ago•0 comments

Neuro-Formal Verification: Agentic Language-Agnostic Formal Program Reasoning

https://arxiv.org/abs/2608.21516
3•matt_d•12m ago•0 comments

Rope Splicing

https://en.wikipedia.org/wiki/Rope_splicing
1•ZeljkoS•13m ago•0 comments

Uridium/Fraktion – The Best of the C64 Game, Uridium

https://uridium.homemade.systems/
1•mwenge•13m ago•0 comments

Public Schools' Eye of Sauron

https://www.educationnext.org/public-schools-eye-of-sauron-student-surveillance-merrill-v-marana-...
2•murphyslab•14m ago•2 comments

What made global e-commerce possible (it wasn't encryption)

https://syntheticauth.ai/posts/the-trust-stack-02-nobody-in-the-room
1•zerolayers•14m ago•0 comments

The Siberian Ice Maiden and the Scythian World

https://patrickwyman.substack.com/p/the-siberian-ice-maiden-and-the-scythian
1•NaOH•15m ago•0 comments

Learning to Solve Hard Problems in RL for LLMs by Never Giving Up

https://mnoukhov.github.io/posts/ngu/
1•natolambert•16m ago•0 comments

What every kernel programmer should know about Jump Labels

https://walac.github.io/jumplabels/
2•mococa•17m ago•0 comments

Understanding Is the New Bottleneck

https://www.geoffreylitt.com/2026/07/02/understanding-is-the-new-bottleneck.html
2•evakhoury•17m ago•2 comments

OGAS- National Automated System for Computation

https://en.wikipedia.org/wiki/OGAS
1•danielmorozoff•20m ago•0 comments

Treemapolis – Your disks, as a city you can fly through

https://github.com/smourier/Treemapolis
1•bj-rn•22m ago•0 comments

NN for Music Recommendations

https://github.com/linn-labs/melody-matcher
1•momotheritz•24m 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.