Search found 161 matches

by MSandro
Jun 30th, '18, 18:08
Forum: Extending GP
Topic: Securely using Cloud Data
Replies: 1
Views: 5896

Re: Securely using Cloud Data

You could use sha256 to encrypt the pw localy ans, send it to the server and compare the hash.
To encrypt data we would need something like gpg but GP does not support this yet.
by MSandro
Jun 26th, '18, 14:18
Forum: Requests
Topic: Do in Parallel Block?
Replies: 3
Views: 12387

Re: Do in Parallel Block?

https://gpblocks.org/forum/viewtopic.php?f=23&t=446 yes gp doesn't support custom c-block atm, but you can create them by yourself with some manual work. Under Advanced > Tips > How to create C-Blocks (build a launchFor block) you can find my tutorial. It is posible to build a launch c-block, so I ...
by MSandro
Jun 18th, '18, 09:41
Forum: Working with GP
Topic: Is the Source for the GP Cloud Server Going to be Released?
Replies: 3
Views: 7715

Re: Is the Source for the GP Cloud Server Going to be Released?

Under Working with GP you should find the topic "How to build my own cloud-data-server?" maybe this helps. There is a CloudDataServer.gp in the lib folder.
by MSandro
Jun 11th, '18, 19:30
Forum: Extending GP
Topic: Increasing VM Memory?
Replies: 7
Views: 25010

Re: Increasing VM Memory?

Calloway wrote:
Jun 10th, '18, 23:08
Are you going to post your version of /lib, MSandro?
Yes soon, I would like to improve and clean up before publishing it.
by MSandro
Jun 10th, '18, 12:54
Forum: Extending GP
Topic: Increasing VM Memory?
Replies: 7
Views: 25010

Re: Increasing VM Memory?

Hi John, nice to read from you again in this forum :D
Those are very usefull informations. Because I've changed a lot in my GP runtimes folder, I will share it in this forum soon. I think a Github repo is a bit to much atm.
by MSandro
Jun 4th, '18, 20:23
Forum: Tips and Tutorials
Topic: [Linux Tipp] Easiest way to run Bash commands with GP
Replies: 0
Views: 21608

[Linux Tipp] Easiest way to run Bash commands with GP

Hi, because I've needed a better interaction between GP and my OS (Linux), I've tried to find a easy solution to run Bash-Command from GP. I've wrote the following short script to make this posible: #!/bin/bash while : do $(head -1 cmd.txt) > cmd.txt done This script is able to check the first line ...
by MSandro
May 30th, '18, 06:18
Forum: Extending GP
Topic: Code tab in GP
Replies: 4
Views: 8418

Re: Code tab in GP

Yes it should make it posible to work with both, blocks and code. It should be able to switch seamlessly between modes. I added this tab because I'm not exactly satisfied with GP's current text mode. I want to add a save button to the page. If you switch from "Code" to "Scripts" the code should be a...
by MSandro
May 29th, '18, 06:42
Forum: Extending GP
Topic: Code tab in GP
Replies: 4
Views: 8418

Code tab in GP

What do you think about this additional tab which I've added to GP. code.png It shows the code of the current class. I would like to create a better text-based script editor, because in my opinion the current implementation is not well implemented. I am still working on the possibility to save back ...
by MSandro
May 28th, '18, 13:04
Forum: Extending GP
Topic: JSON en/decode for a simple configuration file
Replies: 0
Views: 10190

JSON en/decode for a simple configuration file

This is a very simple project / extension to understand how to manage a config file with JSON en/decode and global variables. You don't have to use global variables, I've used it because it makes the management easier. settings.png I hope you can do something with it. There is currently not fallback...
by MSandro
May 23rd, '18, 15:47
Forum: Tips and Tutorials
Topic: How to create C-Blocks (build a launchFor block)
Replies: 1
Views: 6300

How to create C-Blocks (build a launchFor block)

Hi, In this small tip I want to show you, how to customize your custom blocks. In this case, I'll show you how to use "cmd" to create C-Blocks. 1. create your block At first, you have to build your own block. There is nothing special to consider in this step. Simply click on "Make a shared block" an...