Search found 6 matches

by crgimenes
Wed Jul 03, 2019 3:44 pm
Forum: Feature Requests and Wishlists
Topic: Protocol-buffers support
Replies: 0
Views: 1193

Protocol-buffers support

I wish PureBASIC support protocol-buffers.

This support can be implemented as an external library and I do not know if anyone is already working on it at the moment. So if someone is using protocol-buffers with PureBASIC please let me know.
by crgimenes
Wed Jul 03, 2019 2:40 pm
Forum: Feature Requests and Wishlists
Topic: WebAssembly
Replies: 7
Views: 3747

Re: WebAssembly

I hope webassembly never becomes a standard. I don't like the idea of executing binary code from a website, it will be a hackers dream, security will be bypassed.

I also prefer plain text.
But I prefer webassembly than javascript, at least I can choose the language.
And I do not believe that ...
by crgimenes
Wed Jul 03, 2019 11:41 am
Forum: Feature Requests and Wishlists
Topic: WebAssembly
Replies: 7
Views: 3747

Re: WebAssembly

I use Golang every day and with Go and I have basically two options, compile to JavaScript using
gopherjs or more recently to webassembly.

The problem is that in both options the generated executable is giant and this is bad
because download time matters a lot.

This huge executable happens due ...
by crgimenes
Sun Jun 30, 2019 3:34 pm
Forum: Off Topic
Topic: Raspberry Pi 4
Replies: 8
Views: 3209

Re: Raspberry Pi 4

Intel Edison had the cleanest form and best QA, but Intel is discontinuing all three of it's SBC platforms

it's a shame Intel has discontinued the Intel Edison board. I had some here from when I had a hackerspace.
Without a doubt, it was the best card to run a small golang server. The best part ...
by crgimenes
Sat Dec 15, 2018 2:38 am
Forum: Assembly and C Programming in PureBasic
Topic: ASM Output in the macOS
Replies: 3
Views: 7729

Re: ASM Output in the macOS

It worked!

First I tried adjusting the environment variables that I found in the same Sicro post.

export PUREBASIC_HOME=/Applications/PureBasic.app/Contents/Resources
export PATH=$PUREBASIC_HOME/compilers:$PATH

So I tried running the compiler and it worked.

pbcompiler -c ./main.pb

Then I ...
by crgimenes
Fri Dec 14, 2018 10:29 pm
Forum: Assembly and C Programming in PureBasic
Topic: ASM Output in the macOS
Replies: 3
Views: 7729

ASM Output in the macOS

Hello everyone,

I'm trying to generate the ASM output in the macOS but I'm not getting it, I believe that I am missing some environment variable to inform for the compiler where things are.

This is the error I'm getting.

/Applications/PureBasic.app/Contents/Resources/compilers/pbcompiler -c ...