Search found 16 matches

by idle
Tue Jul 30, 2024 4:52 am
Forum: Coding Questions
Topic: Info about CompressString(String$) needed
Replies: 4
Views: 6723

Re: Info about CompressString(String$) needed

Quin wrote: Thu Jul 11, 2024 5:48 pm
Fred wrote: Thu Jul 04, 2024 11:39 am Yes, it's zlib compression
Would you consider putting this in the docs by chance? Could be useful info
It should also specify if that it's deflate or gzip format. Same compressor but different headers
by idle
Mon Jul 29, 2024 10:28 pm
Forum: General Discussion
Topic: Do you feel like procrastinating?
Replies: 2
Views: 15407

Re: Do you feel like procrastinating?

just saw the write up of this he scaled it to 650,000,000. he was running an nginx reverse proxy to two flask servers setting and getting from redis. Each update to a client was 125kb which I expect was based on where you were paged in the browser
by idle
Wed Jul 24, 2024 3:20 am
Forum: General Discussion
Topic: Atomic webserver 3
Replies: 5
Views: 21831

Re: Atomic webserver 3


Sure, there is a full JSON lib support in SB


That's very encouraging. The only hurdle I have to make it transparent to users it InsertJSONStructure as it wants a compile time structure reference rather than a mapped runtime reference.

The goals for interoperability between PB server and SB ...
by idle
Tue Jul 23, 2024 4:42 am
Forum: General Discussion
Topic: Atomic webserver 3
Replies: 5
Views: 21831

Re: Atomic webserver 3

I'm in the process of making an in memory object DB similar to mongoDB. It's an indexed keypair store and can persist data to disk using the PB JSON lib. Coupled with Atomic Web Server you can then use it embedded in your server application locally or use it remotely with or without a reverse proxy ...
by idle
Sun May 12, 2024 3:33 am
Forum: General Discussion
Topic: Atomic webserver 3
Replies: 5
Views: 21831

Atomic webserver 3

If you haven't seen Atomic webserver 3 or know what it's about, here it is
https://atomicwebserver.com

It in part designed to provide an easy way to host Spider Basic apps on the web or desktop and with it's virtual file system you can also embed your assets and deploy your app as a single ...
by idle
Fri Apr 05, 2024 1:32 am
Forum: Coding Questions
Topic: Pixi deprecated?
Replies: 7
Views: 6891

Re: Pixi deprecated?

It's my source I will send you a link to download.

when I tried to add touch controls to it all I got was a black screen, though I'm still using v2.31 so that might be the issue, it's a very early source which I only did as a test.
by idle
Sun Jul 08, 2018 6:01 am
Forum: Showcase
Topic: PB_Civet_Server project and demo
Replies: 0
Views: 10912

PB_Civet_Server project and demo

Not done in Spider Basic but for Spider Basic!

PB_Civet_Server is an embedded in memory http/https server to host or pack and deploy your Spider Basic apps.
Built on Civetweb which was forked from Mongoose before it went GPL in 2013

Currently a windows only demo that doesn't do much but it'll be ...
by idle
Fri Apr 27, 2018 9:38 pm
Forum: General Discussion
Topic: embed widget in webpage
Replies: 2
Views: 4539

Re: embed widget in webpage

Thanks I didn't think of trying that.
by idle
Fri Apr 27, 2018 3:29 am
Forum: General Discussion
Topic: embed widget in webpage
Replies: 2
Views: 4539

embed widget in webpage

Is it possible or feasible to embed a spider application into a webpage?
I want to build up a pricing calculator and embed it, any suggestions.

I tried out of curiosity but it didn't work.
by idle
Mon Oct 31, 2016 5:34 am
Forum: Coding Questions
Topic: deviceorientation events?
Replies: 2
Views: 3364

Re: deviceorientation events?

Thanks, that helps a lot.
I'm still trying to work out how to syntactically mash it together or should I just stick to js!


Enumeration
#mainForm

#ax
#ay
#az
EndEnumeration

Declare motion()
Declare onExit()

OpenWindow(#mainForm, 0, 0, 0, 0, "", #PB_Window_Background)

TextGadget(-1, 10 ...