Search found 161 matches

by MSandro
Sep 9th, '18, 18:00
Forum: Projects
Topic: GP Studio - just an idea and some plans
Replies: 7
Views: 17175

Re: GP Studio - just an idea and some plans

Currently I am work on some basic libraries e.g. to make GUI-WIndows easy. I would like to create my own libraries instead of copying it from GP. Because using the GP libs would cause too much unnecessary dependencies. I have already many working ideas for the project structure and management but I ...
by MSandro
Sep 9th, '18, 17:49
Forum: Working with GP
Topic: Why does GP crash with the openWindow primitive?
Replies: 2
Views: 7130

Re: Why does GP crash with the openWindow primitive?

Yes I am sure something like an feedback loop is necessary. I am currently working on a really minimal GUI library. Unfortunately until now I wasn't really success with my tries but I'll let you know.
by MSandro
Sep 9th, '18, 07:48
Forum: Projects
Topic: GP Studio - just an idea and some plans
Replies: 7
Views: 17175

Re: GP Studio - just an idea and some plans

Good to know. Thanks this would be nice.
by MSandro
Sep 8th, '18, 16:01
Forum: Projects
Topic: GP Studio - just an idea and some plans
Replies: 7
Views: 17175

GP Studio - just an idea and some plans

I thought about how to work with GP in its most basic form. I thought about how to develop software in the GP language like we do it woth languages like Java or Phyton. I would like to have the feeling of an general IDE. The Idea to work on an IDE for GP named GP Studio. It is currently just an idea...
by MSandro
Sep 5th, '18, 11:16
Forum: Bugs
Topic: log outputs nil at the end, bug?
Replies: 1
Views: 8772

log outputs nil at the end, bug?

The log commands outpus a nil in a new line after all other argumens, but only if I've started GP in REPL mode. Why? Is this a bug? I am a bit confused.
by MSandro
Sep 5th, '18, 06:27
Forum: Requests
Topic: Discord for better communication?
Replies: 4
Views: 97202

Discord for better communication?

I'm not sure, but I think some of you agree that the communication in the GP community through the forum is not the best. I thought about how we could communicate better with GP users. I think that many GP users are not using the forum. The registration in the forum could also confuse some. To make ...
by MSandro
Sep 5th, '18, 05:24
Forum: Working with GP
Topic: Pulls GP benefits from the 64bit architecture?
Replies: 3
Views: 16126

Re: Pulls GP benefits from the 64bit architecture?

GP uses the same size integers on both 32-bit and 64-bit architectures. GP does run a little faster when compiled for 64-bit architectures. However, the speed increase isn't really noticeable except on benchmarks. Okay ... good to know I've asked this because I thought about an 64 bit variant of my...
by MSandro
Sep 5th, '18, 05:19
Forum: Requests
Topic: Using microphone and webcam in GP?
Replies: 5
Views: 16016

Re: Using microphone and webcam in GP?

GP supports getting data from the microphone using the "sound input" block in the Sound category. I agree, camera support would be nice to have as well, but its a fair bit of work to support that on all platforms. Nice to know. Yes camera support would be realy nice but might be realy difficult to ...
by MSandro
Aug 26th, '18, 21:24
Forum: Working with GP
Topic: Pulls GP benefits from the 64bit architecture?
Replies: 3
Views: 16126

Pulls GP benefits from the 64bit architecture?

Hi, does GP pulls any benefits from the 64 bit VM? Or does it make any difference whether the 32 or 64 bit VM is used.
by MSandro
Aug 24th, '18, 17:19
Forum: Requests
Topic: asymetrical encryption/decryption?
Replies: 7
Views: 26701

Re: asymetrical encryption/decryption?

Hi, I have tried working with asymmetrical encryption in GP with limited success. The biggest problem that I ran into was that there is a limit to how large integers are allowed to be in GP (1073741823 is the largest allowed integer). Interessting, yes the integers are not that big. But could you u...