frontpage.
newsnewestaskshowjobs

Made with ♥ by @iamnishanth

Open Source @Github

fp.

The Last Principle We Learn to Use

https://gpt.gekko.de/the-last-principle-we-learn-to-use/
1•ekadagami•24s ago•0 comments

Show HN: Enoch – Control Plane for Autonomous AI Research

https://github.com/alias8818/enoch-agentic-research-system
2•aliasocracy•4m ago•0 comments

Grok 'drive an iron nail through the mirror while reciting Psalm 91 backwards'

https://www.theguardian.com/technology/2026/apr/24/musk-grok-x-ai-researchers-delusional-advice-i...
2•iamflimflam1•9m ago•1 comments

Revived Mozilla's BrowserQuest game on popular demand play online for free

https://threej.in/games/browserquest/index.html
1•cryptpal•10m ago•0 comments

Why Did Huawei Build Its Own Programming Language? [video]

https://www.youtube.com/watch?v=ujpl5_TmAaE
2•melchizedek6809•11m ago•0 comments

Why TUIs Are Back

https://wiki.alcidesfonseca.com/blog/why-tuis-are-back/
1•vinhnx•14m ago•0 comments

BTC Pulse – 4-factor composite model · Bitcoin Real-time macro signals

https://btcpulse.vercel.app/
1•tvvocold•15m ago•0 comments

Online Signature Generator

https://www.online-unterschriftgenerator.de/
1•Hamaq•15m ago•0 comments

Who Killed Spirit Airlines?

https://www.thebignewsletter.com/p/who-killed-spirit-airlines
1•chmaynard•16m ago•0 comments

Word Clouds Considered Harmful (2011)

https://jacobharr.is/published/word-clouds
1•Tomte•17m ago•0 comments

Show HN: A modern Git based age-encrypted secrets manager for teams

https://github.com/sayanarijit/cottage
1•sayanarijit•17m ago•0 comments

Local-first Kubernetes UI in a single Go binary

https://github.com/skyhook-io/radar
5•nadaverell•18m ago•1 comments

Executable installer will stop being released with Python 3.16

https://www.python.org/downloads/release/pymanager-261/
2•ankitg12•24m ago•0 comments

Learning Pseudorandom Numbers with Transformers

https://arxiv.org/abs/2510.26792
1•pizza•28m ago•0 comments

Cajal – Local AI that writes peer-reviewed papers with simulated peer review

https://huggingface.co/Agnuxo/CAJAL-4B-P2PCLAW
1•Frank1976•33m ago•0 comments

Quantum computers will break RSA-2048 by February 2032

https://gagliardoni.net/#20260503_rsa_broken_2032
1•tomgag•34m ago•0 comments

Has anyone tried using Hyperframes?

https://github.com/heygen-com/hyperframes
1•nastrofa•35m ago•0 comments

I Don't Vibe Code

https://jacobharr.is/personal/i-dont-vibe-code
1•birdculture•35m ago•0 comments

A Wandering Mind Is an Unhappy One (2010)

https://www.scientificamerican.com/article/a-wandering-mind-is-an-un/
1•the-mitr•39m ago•0 comments

The Human Line Project: Documenting AI Chatbot Harm

https://www.thehumanlineproject.org/
1•thinkingemote•41m ago•0 comments

Show HN: I made a website for couples in a long distance relationship

https://www.couples-questions.com
2•mahfouz22•41m ago•0 comments

AMD Readies Full Open-Source HDMI 2.1 Support for Linux

https://www.techpowerup.com/348723/amd-readies-full-open-source-hdmi-2-1-support-for-linux
3•SockThief•43m ago•0 comments

Context Mode v1.0.0

https://context-mode.mksg.lu/
2•ankitg12•44m ago•1 comments

Musk vs. Altman week 1: Elon Musk says he was duped, warns AI could kill us all

https://www.technologyreview.com/2026/05/01/1136800/musk-v-altman-week-1-musk-says-he-was-duped-w...
2•joozio•47m ago•0 comments

ZenTTY – A terminal that gets out of your way

https://zentty.org/
1•fdb•51m ago•0 comments

Show HN: Julius, a New Lisp Implementation

https://github.com/tgflynn/Julius
1•tgflynn•51m ago•1 comments

Musk's AI told me people were coming to kill me (BBC)

https://www.bbc.com/news/articles/c242pzr1zp2o
6•walden789•53m ago•0 comments

Physicists have measured 'negative time' in the lab

https://theconversation.com/physicists-have-measured-negative-time-in-the-lab-278996
2•thunderbong•55m ago•0 comments

Arknet – decentralized AI inference, fair launch, one binary

https://github.com/st-hannibal/arknet
1•st-hannibal•56m ago•0 comments

HP 3585A spectrum analyzer teardown

http://7400.me/2026/04/30/HP3585A/
2•picture•57m ago•0 comments
Open in hackernews

Ask HN: LLM is useless without explicit prompt

4•revskill•12mo ago
After months playing with LLM models, here's my observation:

- LLM is basically useless without explicit intent in your prompt.

- LLM failed to correct itself. If it generated bullshits, it's an inifinite loop of generating more bullshits.

The question is, without explicit prompt, could LLM leverage all the best practices to provide maintainable code without me instruct it at least ?

Comments

ben_w•12mo ago
Your expectations are way too high.

> - LLM is basically useless without explicit intent in your prompt.

You can say the same about every dev I've worked with, including myself. This is literally why humans have meetings rather than all of us diving in to whatever we're self-motivated to do.

What does differ is time-scales of the feedback loop with the management:

Humans meetings are daily to weekly.

According to recent research*, the state-of-the-art models are only 50% accurate at tasks that would take a human expert an hour, or 80% accurate at tasks that would take a human expert 10 minutes.

Even if the currently observed trend of increasing time horizons holds, we're 21 months from having an AI where every other daily standup is "ugh, no, you got it wrong", and just over 5 years from them being able to manage a 2-week sprint with an 80% chance of success (in the absence of continuous feedback).

Even that isn't really enough for them to properly "leverage all the best practices to provide maintainable code", as archiecture and maintainability are longer horizon tasks than 2-week sprints.

* https://youtu.be/evSFeqTZdqs?si=QIzIjB6hotJ0FgHm

revskill•12mo ago
It's not as high as you think.

LLM failed at the most basic things related to maintainable code. Its code is basicaly a hackery mess without any structure at all.

It's my expectation is that, at least, some kind of maintainable code is generated from what's it's learnt.

ben_w•12mo ago
Given your expectation:

> It's my expectation is that, at least, some kind of maintainable code is generated from what's it's learnt.

And your observation:

> LLM failed at the most basic things related to maintainable code. Its code is basicaly a hackery mess without any structure at all.

QED, *your expectations* are way too high.

They can't do that yet.