Search found 1458 matches

by NicTheQuick
Mon Feb 23, 2026 6:33 pm
Forum: Off Topic
Topic: Please fix this annoyingly slow forum
Replies: 22
Views: 1199

Re: Please fix this annoyingly slow forum

What a bummer. :|

Thanks for trying out that solution though. I was really hoping this could be helpful but it seems Cloudflare maybe just does a bit too much here.
by NicTheQuick
Mon Feb 23, 2026 3:00 pm
Forum: Off Topic
Topic: Please fix this annoyingly slow forum
Replies: 22
Views: 1199

Re: Please fix this annoyingly slow forum

I changed the IP address of *.purebasic.fr to the old one locally on my side and the login to the German board is working again.
I can only assume that Cloudflare does cache pages with POST forms and also caches the CSRF token in it which is then invalid for everyone else that retrieves that cached ...
by NicTheQuick
Mon Feb 23, 2026 1:54 pm
Forum: Off Topic
Topic: Please fix this annoyingly slow forum
Replies: 22
Views: 1199

Re: Please fix this annoyingly slow forum

Oh no. I got logged out from the German Board and I am not able to login again or to reset my password. It says the form was invalid. :|
by NicTheQuick
Mon Feb 23, 2026 1:51 pm
Forum: Off Topic
Topic: Please fix this annoyingly slow forum
Replies: 22
Views: 1199

Re: Please fix this annoyingly slow forum

Or maybe that's because of the new Cloudflare DNS. It has not yet propagated to me. I still see the old IP until my DNS has refreshed itself. Should still take 53 minutes on my side.
by NicTheQuick
Mon Feb 23, 2026 1:48 pm
Forum: Off Topic
Topic: Please fix this annoyingly slow forum
Replies: 22
Views: 1199

Re: Please fix this annoyingly slow forum



I am very surprised : I have absolutely no problem

Excepted I must click << I don't consent >> on every page, since three years, I have absolutely no problem, as you describe...


Hi
I have problem with Firefox , could NOT log in. But when I used the Brave browser there where no problem at all ...
by NicTheQuick
Mon Feb 23, 2026 10:20 am
Forum: Off Topic
Topic: Please fix this annoyingly slow forum
Replies: 22
Views: 1199

Re: Please fix this annoyingly slow forum

Olli wrote: Sun Feb 22, 2026 6:55 pm I am very surprised : I have absolutely no problem

Excepted I must click << I don't consent >> on every page, since three years, I have absolutely no problem, as you describe...
Since yesterday everything is working fast again. You're just late to the waiting party.
by NicTheQuick
Sat Feb 21, 2026 2:01 pm
Forum: Off Topic
Topic: Please fix this annoyingly slow forum
Replies: 22
Views: 1199

Re: Please fix this annoyingly slow forum

And it's not only the forums. The whole domain is slow as hell.
Yesterday I wanted to browse the documentation via browser but I had to wait around 20 seconds after each click. Or did you try to open just https://www.purebasic.com ? I takes double the time because of an additional redirect in between.
by NicTheQuick
Fri Feb 13, 2026 7:31 pm
Forum: Mac OSX
Topic: How to upload files to this board
Replies: 2
Views: 163

Re: How to upload files to this board

Just sign in on Github, create a repository there and you can upload as much code as you want, (basically). Then you can link it here.
by NicTheQuick
Fri Feb 13, 2026 3:58 pm
Forum: Off Topic
Topic: Please fix this annoyingly slow forum
Replies: 22
Views: 1199

Re: Please fix this annoyingly slow forum


this mining of the AI bots could potentially promote PureBasic and hindering the bots could potentially have a negative impact

I don't think so. The good AI bots don't take down a whole website until it's nearly unusable. I don't think that Gemini, ChatGPT or Perplexity would do that. It's only ...
by NicTheQuick
Fri Feb 13, 2026 3:49 pm
Forum: Coding Questions
Topic: Get the bigger used enumeration [Resolved]
Replies: 17
Views: 633

Re: Get the bigger used enumeration

First you have to distinguish the different namespaces for IDs in Purebasic. I can not list all of them out of my head but here are some examples:
Windows
Gadgets
Images
Sprites
...
Then you can use named enumerations to have lists for each kind of objects in Purebasic like so:
Enumeration ...
by NicTheQuick
Fri Feb 13, 2026 2:09 pm
Forum: Coding Questions
Topic: Get the bigger used enumeration [Resolved]
Replies: 17
Views: 633

Re: Get the bigger used enumeration

Why exactly do you want that? For what purpose do you use these numbers?
If someone asks such questions it mostly means there is a better way to solve the problem.
by NicTheQuick
Fri Feb 13, 2026 2:06 pm
Forum: Off Topic
Topic: Please fix this annoyingly slow forum
Replies: 22
Views: 1199

Re: Please fix this annoyingly slow forum


Rogue AI crawling can take down any website, nothing we can do about it. Moving to cloudflare protection can also have its own issues.

I just searched around a bit and the best solution I found was indeed the Cloudflare Protection which can block these kinds of attacks and still does not cost ...
by NicTheQuick
Tue Feb 10, 2026 7:45 pm
Forum: Off Topic
Topic: Please fix this annoyingly slow forum
Replies: 22
Views: 1199

Please fix this annoyingly slow forum

Hi Fred,

the whole day now the forums are very very unresponsive and I really don't like to surf it like that.

I just tested a simple curl to the main page and it took more than 20 seconds as an anonymous user to load just the index:
$ time curl https://www.purebasic.fr/english/index.php > /dev ...
by NicTheQuick
Tue Feb 10, 2026 2:48 pm
Forum: Off Topic
Topic: PureBasic: the Quiet Survivor
Replies: 40
Views: 9239

Re: PureBasic: the Quiet Survivor

For me, OOP is just another tool in the toolbox. If I need an object, I need an object. It's not a religion, as you see with many users of Java or C++ with Objects . I believe PB already is OOP. Module + AllocateStructure gives you more than you need, except the syntactic sugar of the dot. With ...
by NicTheQuick
Sat Feb 07, 2026 5:08 pm
Forum: Coding Questions
Topic: CryptRandomData() Odd behavior
Replies: 11
Views: 564

Re: CryptRandomData() Odd behavior

Why do you still try to read binary data as a Unicode string?
UCS-2 does not allow 2^16-1 characters. It's less than that and you have to read the specification for it. Here's a start point: https://en.wikipedia.org/wiki/UTF-16

But why would you wanna do that? Do you really need Chinese and ...