Hacker News

New stories

Live mirror
30 storiesupdated just nowView source snapshot
  1. ArXiv receives multiyear commitments to support it as an independent nonprofit(arxiv.org)
    discuss
  2. ASML currently sells no chipmaking machines in Europe, executive says(nltimes.nl)
    discuss
  3. AI leaders warn UN of security risks as systems grow more powerful(reuters.com)
    discuss
  4. In-Process MCP for MySQL(villagesql.com)
    1comments
  5. Researcher Found 76 Vulnerabilities in Managed PostgreSQL Security Extensions(mehmetince.net)
    discuss
  6. Linux support is coming to Snapdragon X2 Series(qualcomm.com)
    discuss
  7. Toyota is finally taking its best-seller electric(electrek.co)
    discuss
  8. Getting the most out of Opus 5.5 in Claude and Claude Code / claude.dev(claude.dev)
    discuss
  9. A new world airport and its baggage(computer.rip)
    discuss
  10. Wasmer Swift SDK: Run Node.js, Python and FFmpeg Sandboxes on iOS(wasmer.io)
    discuss
  11. Open Source Opinions(stanceoftheday.com)
    discuss
  12. FBI Hack Exposed FBI's Own Hacking Unit(404media.co)
    discuss
  13. Google's Summer of Love(demandsphere.com)
    discuss
  14. Latent-GRPO and Continuous Reasoning Deep Dive(g-ftech.com)
    discuss
  15. CB Rank (Person) 1000 Recommendation Your Startup on LinkedIn(chatgpt.site)
    discuss
  16. Open Analytics(getopen.so)
    discuss
  17. Show HN: Fjordfall – Take the long way down(fjordfall.fly.dev)
    discuss
  18. Mercury 2.5 LLM hits 770 tokens per second(artificialanalysis.ai)
    1comments
  19. Jevgpt – reinventing the wheel with another wheel
    discuss
  20. North Korea uses remote IT worker to clandestinely earn NZ currency(rnz.co.nz)
    discuss
  21. The AI Hype Index: AI Loves Cheating(technologyreview.com)
    discuss
  22. Show HN: The Mirror Act – a magic show that performs cognitive biases on you(avestura.dev)
    discuss
  23. Cortical thinning and hippocampal expansion linked to ADHD symptom trajectories(cam.ac.uk)
    discuss
  24. I stress-tested LLM quantization by deliberately breaking models(github.com/gracejackson-sudo)
    discuss
  25. We just shipped support for the ugliest part of HTTP: Vary – Cloudflare Blog(cloudflare.com)
    discuss
  26. Opus 5.5 Scores 75.6% on Part Catalog Bench(adamjohnson.site)
    discuss
  27. Neuromancer in 3 Axioms(2600hz.substack.com)
    1comments
  28. Manage Firezone as code with Terraform(firezone.dev)
    discuss
  29. The Bayeux Tapestry: Woven by the Victors(historytoday.com)
    discuss
  30. Where's the Beef?: The lab-grown-meat revolution that wasn't(harpers.org)
    discuss

Show HN: QBasic 1.1 in the Browser

5 pointsby 2h 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

1h 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.

18m 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.