Hacker News

New stories

Live mirror
30 storiesupdated just nowView source snapshot
  1. Every U.S. State Ranks Above Every Foreign Economy in Household Consumption(twitter.com/cremieuxrecueil)
    discuss
  2. Show HN: Submit asynchronous LLM batch jobs through one interface(github.com/gojiplus)
    discuss
  3. Show HN: A CC0 museum of retro 3D tricks you can paste into a page(3d-retro.com)
    1comments
  4. OpenAI agent hacked into Australia's national healthcare system(cnn.com)
    discuss
  5. LatentPort: Cross-model recurrent state transfer without prefix replay(arxiv.org)
    discuss
  6. Stanford violated AI policy after race-swapping students in ad(sfchronicle.com)
    discuss
  7. Post-Training Post-Morten: Tenet / Harvey(newpriors.substack.com)
    discuss
  8. UK shares findings of damning climate crisis national security report(theguardian.com)
    discuss
  9. Tiny C Compiler with POSIX superpowers(github.com/muras69)
    1comments
  10. The Majority of Actors Are Struggling(pajiba.com)
    discuss
  11. Fire in the brain: How psychosis may arise when the body attacks itself(knowablemagazine.org)
    discuss
  12. We've Turned Starlink into a Planetary Barometer(spaceweather.com)
    discuss
  13. One setup, every AI CLI with agnostic-AI(agnostic-ai.org)
    1comments
  14. Why did Google declare war on HTTP? (2016)(josh.com)
    1comments
  15. Show HN: NetHackers(dunnolab.ai)
    1comments
  16. Sidehoe – Your Roster. Handled(sidehoe.chat)
    1comments
  17. That About Wraps It Up for Stock Mac UI(inessential.com)
    discuss
  18. Meta Connect 2026(meta.com)
    discuss
  19. I tried using Jev for judgment based guardrails(github.com/deepansh-saxena)
    discuss
  20. Why Don't My Agents Break Containment?(harper.blog)
    discuss
  21. Show HN: Recipe Card Creator(sunnyshorescreative.com)
    discuss
  22. Show HN: Hosted JayBase – An append-only data store for safe AI agent writes(jaybase.ai)
    discuss
  23. Trump Invites Putin to G20 in Miami, Rubio Says(politico.com)
    discuss
  24. Critical GitLab Auth RCE via Double-Free in Regex Parser(docs.gitlab.com)
    discuss
  25. Ursa: A storage engine that implements Lakestream(github.com/openlakestream)
    discuss
  26. Show HN: Make cursed fonts like Times New Bastard(mitpit.com)
    discuss
  27. I made a social media site
    discuss
  28. Show HN: The Mouse Is Coming Too – Easy Switch for Legacy Logitech Devices(github.com/ensoenso)
    discuss
  29. Show HN: PromptSpend – LLM API prices re-checked daily, with source per price(promptspend.com)
    1comments
  30. Do Our Emotions Have a Culture?(booksandideas.net)
    discuss

Show HN: QBasic 1.1 in the Browser

5 pointsby 3h agovahidyousefzadeh.com
5 comments
I built an independent reimplementation of the QBasic 1.1 compiler, virtual machine, and IDE that runs entirely in the browser. TypeScript with a Svelte 5 frontend.
2h agoHN ↗

Looks cool, but unfortunately doesn’t trigger the keyboard on mobile

2h agoHN ↗

Thank you for the feedback! I just tried on two iPhone and Android phones and it brought up the keyboard.

1h agoHN ↗

Ah it looks like the editor does, but the run screen does not. My guess would be since it’s emulating dos programs, probably the keyboard should always be visible.

1h agoHN ↗

Nice job~

For the past 6 months I've actually also been working on a nearly cycle-accurate QBASIC 1.1 simulator (and corresponding virtual hardware layer) that runs entirely in the browser.

I've got a stack of books on my desk from when I was a kid in the 90s that have literally been my religious texts (Undocumented DOS, The Programmer's PC Sourcebook, etc), so I know how hard it is to get this right.

I've actually posted about it a couple times here in HN.

Anyway small bit of feedback:

Technically if you don't clear the screen (using CLS, or set a SCREEN mode other than zero), the cursor retains its position even between program executions.

So basically if you have a program like this:

  PRINT "WHY IS A RAVEN LIKE A WRITING DESK"
  END

And then you run it again - the output screen should display:

  WHY IS A RAVEN LIKE A WRITING DESK
  WHY IS A RAVEN LIKE A WRITING DESK

There's a thousand other subtleties like this that make the proverbial "last mile" sometimes feel insurmountable. Fun though!

* Your definition of "fun" may vary.