Is PureBasic dead?

Everything else that doesn't fall into one of the other PB categories.
PHP
User
User
Posts: 66
Joined: Sat Sep 10, 2005 5:38 pm

Is PureBasic dead?

Post by PHP »

Hello everybody,

a question I keep asking myself: is PureBasic ‘dead’?

No, I am not a ‘hater’ and I really like PB.

But if you look at the current development of software, most of it runs in a) the browser and b) has AI connected somehow.

PB's image functions are cool, for example, but of course PB can't keep up with AI graphics books, even if you use DLL files.

There were always problems with customers with a PB desktop exe because it was blocked by the virus scanner, I wasn't allowed to simply install my exe and always had to ask the in-house admin for help (which is of course annoying if you deliver a lot of updates). Or people always wanted to access the application, even with smartphones... which is why a browser-based app was the only option...

I've mostly only programmed "small" tools anyway, but I'd like to hear your thoughts on the matter.

Cheers
PHP
Little John
Addict
Addict
Posts: 4786
Joined: Thu Jun 07, 2007 3:25 pm
Location: Berlin, Germany

Re: Is PureBasic dead?

Post by Little John »

PHP wrote: Fri Aug 29, 2025 2:28 pm Is PureBasic dead?
No.
Fred
Administrator
Administrator
Posts: 18199
Joined: Fri May 17, 2002 4:39 pm
Location: France
Contact:

Re: Is PureBasic dead?

Post by Fred »

Is the same than asking if C, C# or C++ are dead, no it's their are not.
User avatar
jacdelad
Addict
Addict
Posts: 2004
Joined: Wed Feb 03, 2021 12:46 pm
Location: Riesa

Re: Is PureBasic dead?

Post by jacdelad »

Fred has spoken, thread can be closed. :wink:
Good morning, that's a nice tnetennba!

PureBasic 6.21/Windows 11 x64/Ryzen 7900X/32GB RAM/3TB SSD
Synology DS1821+/DX517, 130.9TB+50.8TB+2TB SSD
swhite
Enthusiast
Enthusiast
Posts: 797
Joined: Thu May 21, 2009 6:56 pm

Re: Is PureBasic dead?

Post by swhite »

Hi

It is definitely not dead and very useful. If you want web based applications you can choose SpiderBasic or you can use PB with https://webui.me which is what I have done with some projects.

Simon
Simon White
dCipher Computing
dcr3
Enthusiast
Enthusiast
Posts: 184
Joined: Fri Aug 04, 2017 11:03 pm

Re: Is PureBasic dead?

Post by dcr3 »

It's only dead, when we die. :mrgreen:
miso
Enthusiast
Enthusiast
Posts: 466
Joined: Sat Oct 21, 2023 4:06 pm
Location: Hungary

Re: Is PureBasic dead?

Post by miso »

I can't be considered to be a long time pb user, but for me, those you mentioned are the strengths of Pb. It does not run in a browser, not ai connected, no .net, very fast prototyping, can be used for tools and games alike in a very short amount of time. (compared to c or c++ or anything.) Of course, it has it's limits.
User avatar
NicTheQuick
Addict
Addict
Posts: 1517
Joined: Sun Jun 22, 2003 7:43 pm
Location: Germany, Saarbrücken
Contact:

Re: Is PureBasic dead?

Post by NicTheQuick »

Even web based or smartphone applications usually need a server backend which of course can be written in Purebasic, even if it lacks a lot of features but other languages also need their external libraries.
The english grammar is freeware, you can use it freely - But it's not Open Source, i.e. you can not change it or publish it in altered way.
infratec
Always Here
Always Here
Posts: 7613
Joined: Sun Sep 07, 2008 12:45 pm
Location: Germany

Re: Is PureBasic dead?

Post by infratec »

For the windows warnings and scanners:

Use th 64bit compiler a and sign your executables.
If you sell your applications, you should have the money for codesigning.

If you want a web looking app, use PB and websockets to communicate with a web framework of your choice in a WebViewGadget.
No server needed use file:// as url.

WebSocket on localhost don't need to be secured (up to now)

An example:

https://www.smart-sip-phone.de/softphone-en.html

You can visit the Mac App Store, Microsoft Store and Snap Store to see the look on the different OSs
User avatar
idle
Always Here
Always Here
Posts: 5887
Joined: Fri Sep 21, 2007 5:52 am
Location: New Zealand

Re: Is PureBasic dead?

Post by idle »

PHP wrote: Fri Aug 29, 2025 2:28 pm if you look at the current development of software, most of it runs in a) the browser and b) has AI connected somehow.
PB is actually well positioned for AI, cloud and edge in my opinion.

If you were asked today to write an MCP server what would you write it in?
how would you deploy it?
If I didn't know I could do it in PB in around 100 lines of user code, I'd probably look to something like rust.

TLS server, Reverse Proxy, HttpsRequest, JSON, SQL, local instance of Ollama, faise if I need vector
only things missing are JWT and Oauth2 though there are probably implementations of those around.

So no PB isn't dead but the forum seems to be a little dead on user engagement, though that's another matter, how do we get people talking, sharing and collaborating?
Little John
Addict
Addict
Posts: 4786
Joined: Thu Jun 07, 2007 3:25 pm
Location: Berlin, Germany

Re: Is PureBasic dead?

Post by Little John »

idle wrote: Sat Aug 30, 2025 12:56 am [...] but the forum seems to be a little dead on user engagement, though that's another matter, how do we get people talking, sharing and collaborating?
Agreed.
User avatar
skywalk
Addict
Addict
Posts: 4215
Joined: Wed Dec 23, 2009 10:14 pm
Location: Boston, MA

Re: Is PureBasic dead?

Post by skywalk »

Ha! Definitely not dead.
It's the best kept secret for rad development on Windows. I have no exposure on Linux/Mac, but assume it's only slightly less fluid.
If you have customers, they should not blink when asking to whitelist your app.

The forum activity could mean more users are busy making software?

I would love to see more colaboration on std libs. Open source them and grow the community.
The nice thing about standards is there are so many to choose from. ~ Andrew Tanenbaum
User avatar
idle
Always Here
Always Here
Posts: 5887
Joined: Fri Sep 21, 2007 5:52 am
Location: New Zealand

Re: Is PureBasic dead?

Post by idle »

skywalk wrote: Sat Aug 30, 2025 1:15 am I would love to see more collaboration on std libs. Open source them and grow the community.
This could be achieved in PB directly with a few minor fixes.

Add std c headers to a sub directory in compilers that are compatible with the pb gcc implementation
set the directory on the command line
move !#include <stdio.h> ... out of main so it won't try and compile it.
add additional command line params for gcc

Then we can build a c lib include the c header directly with inline c and wrap it using pb functions and incline c body and either share as module or create a user lib from it. It's flexible and easy to do.

open sourcing the PB libs probably isn't so straight forward.
User avatar
TI-994A
Addict
Addict
Posts: 2740
Joined: Sat Feb 19, 2011 3:47 am
Location: Singapore
Contact:

Re: Is PureBasic dead?

Post by TI-994A »

Spanning more than 25 years, PureBasic is one of the longest-supported commercial development tools that I've come across in my forty years of programming. It is, perhaps, the longest-supported cross-platform tool for the three major desktop environments. 8)

Sure, it may have its quirks and shortfalls, but all programming languages do. And in my fifteen years of using PureBasic, I would have to say that this forum is, by far, one of the most active and helpful forums around. A slowdown in posts should not denote a slowdown in the usage of PureBasic; but instead, it should reflect the ease-of-use that does not require much support. Nonetheless, this forum has many gurus lurking in the sidelines, ready to pounce on any questions posted and assist its members in any way possible.

So, to answer the titled question:

Image
Texas Instruments TI-99/4A Home Computer: the first home computer with a 16bit processor, crammed into an 8bit architecture. Great hardware - Poor design - Wonderful BASIC engine. And it could talk too! Please visit my YouTube Channel :D
plouf
Enthusiast
Enthusiast
Posts: 282
Joined: Fri Apr 25, 2003 6:35 pm
Location: Athens,Greece

Re: Is PureBasic dead?

Post by plouf »

Thread looks like spam anyway :-)

But lets speak

Practically you have point two questions
1) purebasic is not "running" inside a browser, excludict the fact that the nature of the language is bytecompiled like C/C++ etc
Purebasisc HAS. A dialecct running in browser, its called SpiderBasic... So purebasic is BETTER than c/c++ :-)

2) is the interaction of "AI" tools,
Its too early ro speak for these but always keep in lind that you can write your own plugin/pb lib , that woll do that :-)

These are very specific tools in a very early trend.

Soon or later tou start see more and more in pb too


So yes .. purebasic is not dead, its only deqdly easy :-)
And the aupport of all us keep it alive.... (Food of thought)
Christos
Post Reply