frontpage.
newsnewestaskshowjobs

Open Source @Github

fp.

ZCode: Claude Code from the Makers of GLM

https://zcode.z.ai/cn
207•handfuloflight•2h ago•96 comments

For first time, a cell built from scratch grows and divides

https://www.quantamagazine.org/for-the-first-time-a-cell-built-from-scratch-grows-and-divides-202...
590•defrost•6h ago•205 comments

What to Learn to Be a Graphics Programmer

https://blog.demofox.org/2026/07/01/what-to-learn-to-be-a-graphics-programmer/
142•atan2•3h ago•58 comments

FFmpeg 9.1's new AAC encoder

https://hydrogenaudio.org/index.php/topic,129691.0.html
185•ledoge•7h ago•66 comments

Physical disc production ending in Jan 2028 for new games on PlayStation

https://blog.playstation.com/2026/07/01/physical-disc-production-ending-in-january-2028-for-new-g...
455•Tiberium•8h ago•511 comments

Proliferate (YC S25) Is Hiring

https://www.ycombinator.com/companies/proliferate/jobs/mMHvKR9-founding-product-engineer
1•pablo24602•12m ago

Internal Combustion Engine

https://ciechanow.ski/internal-combustion-engine/
234•StefanBatory•8h ago•50 comments

Box3D, an open source 3D physics engine

https://box2d.org/posts/2026/06/announcing-box3d/
342•makepanic•9h ago•80 comments

Monetization Gateway

https://blog.cloudflare.com/monetization-gateway/
198•soheilpro•7h ago•108 comments

How We Made IPFS Content Publishing 10x Faster

https://probelab.io/blog/optimistic-provide/
115•dennis-tra•5h ago•33 comments

Show HN: Z-Jail – A 130 KB Linux sandbox-C99 with 7 defense layers and zero deps

https://github.com/Division-36/Z-Jail/
16•Zierax•1h ago•14 comments

Ask HN: Who is hiring? (July 2026)

119•whoishiring•6h ago•135 comments

Mortality associated with non-optimal ambient temperatures from 2000 to 2019

https://www.researchgate.net/publication/353058947_Global_regional_and_national_burden_of_mortali...
35•simonebrunozzi•3h ago•3 comments

One KW wind turbine without civil engineering

https://www.windtowatt.com/index-en.html
10•skywal_l•29m ago•4 comments

Hanami 3.0: In Full Bloom

https://hanakai.org/blog/2026/06/30/hanami-3-0-in-full-bloom
44•PuercoPop•3h ago•8 comments

Ask HN: Who wants to be hired? (July 2026)

86•whoishiring•6h ago•189 comments

1-Bit Pixel Art Emojis

https://hypertalking.com/2023/05/15/1-bit-pixel-art-emojis/
117•surprisetalk•6d ago•16 comments

Claude Fable 5 Promotional Access

https://support.claude.com/en/articles/15424964-claude-fable-5-promotional-access
81•zbikowski•1h ago•56 comments

Show HN: Searchable directory of 22k+ products from worker-owned co-ops

https://www.workerowned.info/
4•IESAI_ski•25m ago•1 comments

Fable 5 Is Back

https://twitter.com/claudeai/status/2072402636813607381
166•mfiguiere•1h ago•126 comments

A complete ClickHouse OLAP engine, compiled to WebAssembly

https://wasm.chdb.io/
35•porridgeraisin•4h ago•4 comments

Building Gin: Simple over Easy

https://manualmeida.dev/articles/gin-simple-over-easy/
51•manucorporat•3h ago•16 comments

Most rewrites serve the engineer, not the business

https://anatoliybabushka.com/blog/when-to-rewrite-working-code.html
16•bbsnly•3h ago•15 comments

Sony Deletes 551 Movies PlayStation Owners Paid For

https://reclaimthenet.org/sony-deletes-551-studiocanal-movies-playstation-owners-paid-for
416•bilsbie•6h ago•190 comments

Generating Images with a 2025 Android

https://www.duration.ai/blog/generating-images-with-a-2025-android
8•sudb•1d ago•0 comments

Launch HN: Parsewise (YC P25) – Reason Across Documents with an API

40•gergelycsegzi•7h ago•37 comments

Fixing a kubelet memory leak in Kubernetes 1.36

https://heyoncall.com/blog/fixing-kubernetes-kubelet-memory-leak
60•compumike•18h ago•12 comments

Reduce GVisor Cold Starts with GPU Snapshotting

https://cerebrium.ai/blog/reducing-gpu-cold-starts-with-memory-snapshots-restoring-cuda-workloads...
43•jono_irwin•4h ago•15 comments

Apple 'Hide My Email' vulnerability reveals peoples' real email addresses

https://easyoptouts.com/guides/apple-hide-my-email-is-leaking-email-addresses
212•sashk•10h ago•46 comments

Asahi Linux 7.1 Progress Report

https://asahilinux.org/2026/06/progress-report-7-1/
503•pantalaimon•11h ago•182 comments
Open in hackernews

FreeBASIC is a free/open source BASIC compiler for Windows DOS and Linux

https://freebasic.net/
115•90s_dev•1y ago

Comments

orionblastar•1y ago
This one emulates GW-BASIC as PC-BASIC so old BASIC programs for the IBM PC DOS systems can run on modern systems: https://robhagemans.github.io/pcbasic/

FreeBASIC is like Microsoft's QuickBASIC.

More BASIC Languages: https://www.thefreecountry.com/compilers/basic.shtml

WalterGR•1y ago
> FreeBASIC is like Microsoft's QuickBASIC.

Except that it doesn't emulate Microsoft's QuickBASIC, or ... ?

banana_giraffe•1y ago
It does support "-lang qb" which is designed to specifically limit FreeBASIC to a QuickBASIC compatible dialect.
TonyTrapp•1y ago
And more specifically, "-lang qb" is more or less how FreeBASIC started out. The more modern dialects came later, and became the default, hence the addition of "-lang qb".
vunderba•1y ago
It really isn't - from the docs themselves:

  FreeBASIC gives you the FreeBASIC compiler program (fbc or fbc.exe),
  plus the tools and libraries used by it. fbc is a command line program
  that takes FreeBASIC source code files (*.bas) and compiles them into
  executables.  In the combined standalone packages for windows, the main
  executable is named fbc32.exe (for 32-bit) and fbc64.exe (for 64-bit)

The magic of QuickBasic was that it was an editor, interpreter, and help system all rolled up into a single EXE file. Punch F5 and watch your BAS file execute line-by-line.
bencollver•1y ago
Wasn't QBasic the interpreter as opposed to QuickBasic the compiler?
analog31•1y ago
This is what I recall too. QuickBasic was perhaps BASIC's answer to Turbo Pascal, a relatively lightweight but usable text based IDE. I knew some happy users.
orionblastar•1y ago
https://winworldpc.com/product/quickbasic/45 for a look at QuickBASIC 4.5 abandonware; they also had QuickC and QuickPascal.
pjmlp•1y ago
No, the answer was Quick Pascal, however Microsoft didn't really cared that much about it.
lproven•1y ago
No, FBC is not like QuickBASIC: there's no IDE in FBC.

However, the QB64PE project does have an IDE. Some screenshots in this thread:

https://qb64phoenix.com/forum/showthread.php?tid=2469&pid=23...

gus_massa•1y ago
Old discussion: https://news.ycombinator.com/item?id=38730966 (105 points | Dec 2023 | 70 comments)
andrea76•1y ago
Is there an ide with form designer like visual basic?
TonyTrapp•1y ago
I think FBEdit was the closest to that, but like with most other languages, it never reached the same level of integration and quality because forms are simply not first-class citizens in FreeBASIC, unlike VB where the whole development process evoled around forms. You always need native GUI code or use a GUI library like GTK to achieve the same in FreeBASIC.
lproven•1y ago
Not with FreeBASIC.

Others that do: Gambas, Xojo, RAD BASIC, Twin BASIC.

Libcat99•1y ago
Not free, but this was one of my favorite things when learning to program. https://everybasic.info/lib/exe/fetch.php/basics/vbdos-3.png Visual Basic for DOS.
larodi•1y ago
I really wonder why MS would not supper the whole BASIC legacy that anyway exists even without them.
anta40•1y ago
I have some CDs from a computer magazine (in the 2000s) which provided you code archives even back to 90s (including good old QB stuffs).

FBC easily compile lots of them. Well, too bad still no macOS support.

zozbot234•1y ago
Did you check whether these are available on Internet Archive already?
anta40•1y ago
The magazine I meant is Mikrodata. It's an Indonesian IT magazine, which was was closed few years ago. Until 2000-ish, the magazines came with CDs which has code archives from practically all Mikrodata contributors.

I started learning programming in 2002 with VB, so it felt kinda amusing looking at 90s DOS stuffs (Turbo Pascal 7, QB, TASM) etc

zozbot234•1y ago
Looks like the Internet Archive has no content from this magazine as of yet! It may be that they have it archived privately and it's just hidden from public view, but you may want to write to Jason Scott https://en.wikipedia.org/wiki/Jason_Scott (who works on the Software section at the Internet Archive) about getting this stuff backed up and archived properly for the foreseeable future. As an official archive and library, the Internet Archive is one entity that can keep copies of rare and fragile content safely backed up (and CD coverdiscs from old Indonesian magazines definitely qualify) without being restricted by copyright laws as most other people and organizations might be.
Firehawke•1y ago
Microsoft really should go back and look into open sourcing more of their really old tools. Get versions of MASM, QuickBasic, VisualBasic (the DOS version, of course), and so forth out there.

There's a lot to learn from these old tools and it'd be nice to have this stuff opened up for tinkerers on ancient platforms. It's not like MS is going to make any money off any of this anymore, nor is it viable for use on a modern platform even with substantial effort.

JdeBP•1y ago
Of course, things like NASM have existed for a long time precisely because MASM and TASM were not open source.

* https://www.nasm.us

ironicgnome•1y ago
But can it run Nibbles or Gorillas?
vunderba•1y ago
It's been a long time, but my impression was that QuickBASIC had an interpreter and the ability to compile. Then later on, Microsoft bundled a more limited version called QBasic with later versions of MS DOS which lacked the compiler.

But all of them (QBasic, QuickBASIC, Microsoft PDS, and even Visual Basic for DOS which almost nobody remembers sadly) had the editor, interpretative execution, and built-in help.

90s_dev•1y ago
I remember VB-DOS, and fondly too. It was magical. I think I used it even before VB3.
agf•1y ago
This matches my memory. When I got my dad's old work computer with QuickBASIC on it, and I discovered the compiler, and could write programs other people could "just run", I felt like a real programmer for the first time.
90s_dev•1y ago
Yet you were even before that, the moment you made programs work at all.
pjmlp•1y ago
Yes that was the case, by the time Visual Basic 5 came to be, its compiler was based on Visual C++ backend.
DCKP•1y ago
All this brings back fond memories of my first programming foray, an ASCII game in QBASIC from Mars and Back: Computer Programming Handbook by Andrew J. Read. So much fun, so much frustration.
the_af•1y ago
No, QuickBasic was both an interpreter and a compiler. QBasic was just an interpreter.
klipt•1y ago
"Compiler". Even Visual Basic only compiled to p-code, which had to be interpreted at runtime. Not to fully native code.

That's why it always ran slower than Delphi.

pjmlp•1y ago
Wrong, starting with with Visual Basic 5, a proper compiler was introduced based on Visual C++ backend, in addition to the P-Code interpreter.

Additionally VB devs no longer needed to rely on C++ for ActiveX controls, aka OCX, the VBX replacement.

dspillett•1y ago
VB6 (and IIRC 5 too) could compile to native, as seen in the compile options: https://imgur.com/a/v0QcbBU

P-code was still offered as an option because some wanted the smaller output binary sizes, and the build process was faster⁰.

Some incorrectly assume that the native option wasn't really fully compiled because the main supporting library (msvbvm60.dll) was still used¹, but this was for common library functions³ and the interpreter portion was not touched.

There were unofficial tools that would statically link your exe with the relevant VB runtime (and certain other libraries) but the use of those was rare.

----

[0] Though I don't think the build speed matter was actually significant for many, if any, workflows, even on really slow kit.

[1] Some didn't distribute it after a time, to reduce download sizes, as they were included with Windows so users already had them. Windows 7 (and maybe Vista?) included msvbvm60.dll and friends by default, and most XP and 98 installs² had it too as it came with Internet Explorer updates.

[2] though there was a compatibility break at one point that meant you needed to recompile with VB6sp6 if you hadn't included a local copy in your apps directory

[3] Much like many C programs don't have glibc statically linked into them, but work because it is practically ubiquitous on the systems they target.

pjmlp•1y ago
Having to depend on msvbvm60.dll was hardly any different than msvcrt.dll, but try to explain that to most folks.
lproven•1y ago
Both of these are incorrect.

Both QuickBASIC and the BASIC Professional Development System compiled to full native DOS code, and could make standalone EXE files.

VB finally gained this with VB 6 which could also make native EXE files.

the_af•1y ago
QuickBasic produced a DOS .EXE file.

It didn't output p-code. You're confusing it with Visual Basic.

lproven•1y ago
You are correct, and VB 6, the final version, at last included a native-code compiler as well.
westurner•1y ago
> The magic of QuickBasic was that it was an editor, interpreter, and help system all rolled up into a single EXE file. Punch F5 and watch your BAS file execute line-by-line.

That's still how vscode works; F5 to debug and Ctrl-[Shift]-P like CtrlP.vim: https://code.visualstudio.com/docs/debugtest/debugging

FWICS,

The sorucoder.freebasic vscode extension has syntax highlighting: https://marketplace.visualstudio.com/items?itemName=sorucode...

There's also an QB64Official/vscode extension that has syntax highlighting and keyboard shortcuts: https://github.com/QB64Official/vscode

re: how qb64 and C-edit are like EDIT.COM, and GORILLA.BAS: https://news.ycombinator.com/item?id=41410427

C-edit: https://github.com/velorek1/C-edit

vunderba•1y ago
I tried QB64 a couple years ago, but IIRC it's still compiled as opposed to interpretative, e.g. you can't Ctrl-Break and drop into the current executing line of BASIC code unless they've radically changed how it works.
90s_dev•1y ago
Rather, QB was the pico8 of the 1990s. Convenient, self-contained, mysterious, quasi-powerful, in-app help menu for the entire language and API, and a few built-in demo games.
westurner•1y ago
'Edit' - a CLI/TUI text editor similar to EDIT.COM but written in rust - is now open source https://news.ycombinator.com/item?id=44031529
pjmlp•1y ago
A magic also available in Turbo BASIC.

Ironically Borland gave up competing against Microsoft on BASIC tooling, while Microsoft gave up competing against Borland on Pascal tooling (Quick Pascal).

Both products where short lived, Microsoft killed Quick Pascal quite quickly, while Borland sold Turbo BASIC, which became Power BASIC.

orionblastar•1y ago
PowerBASIC is dead; the website no longer works. The old PowerBASIC for DOS abandonware can be found here: https://winworldpc.com/product/powerbasic/3x

It is a DOS 16-bit program.

pjmlp•1y ago
Yeah, I lost track of where it went back in Windows 9X days.

Real BASIC seemed the only alternative to VB that was somehow still market relevant.

anthk•1y ago
Kinda like any Forth. Even PForth has a bundled block editor and a rudimentary help system.