Search found 220 matches

by jornmo
Tuesday 30th May 2017 1:12pm
Forum: Lounge
Topic: Today's fun - building an IoT pressure sensor
Replies: 2
Views: 6049

Today's fun - building an IoT pressure sensor

20170530_150534.jpg
20170530_150534.jpg (2.34 MiB) Viewed 6049 times
¨

Making a web based pressure sensor for far-away-monitoring using Arduino Uno with Ethernet Shield :D Fun!
by jornmo
Saturday 20th May 2017 2:36pm
Forum: Lounge
Topic: Why am I so useless at proof reading?
Replies: 8
Views: 12517

Re: Why am I so useless at proof reading?

I have to admit, it was quite a tough one to catch!
by jornmo
Friday 19th May 2017 8:34pm
Forum: Lounge
Topic: Why am I so useless at proof reading?
Replies: 8
Views: 12517

Re: Why am I so useless at proof reading?

Steve, have you lost your identity or what? :lol:
by jornmo
Thursday 6th April 2017 7:37am
Forum: General
Topic: Gambas command-line programming
Replies: 4
Views: 7149

Re: Gambas command-line programming

I am not sure I follow you on the syntax critique? Is it the naming convention? Or that you have to declare an event name at object instantiation?
by jornmo
Thursday 6th April 2017 7:21am
Forum: General
Topic: Saving images in the WebView as files
Replies: 3
Views: 5545

Re: Saving images in the WebView as files

You may also find that gb.xml.html:

http://gambaswiki.org/wiki/comp/gb.xml.html/

is a good alternative to the webkit component for web scraping :)

I just scraped 66 pages in 5-10 seconds here the other day with this method myself.
by jornmo
Wednesday 5th April 2017 2:19pm
Forum: General
Topic: Saving images in the WebView as files
Replies: 3
Views: 5545

Re: Saving images in the WebView as files

If you are asking how to save it? Then look at this: http://gambaswiki.org/wiki/comp/gb.net.curl/httpclient

If you are asking how to extract the filename from the URL, try this:
Dim sFileName As String
Dim sURL As String = "someURL"
sFileName = Split(sURL, "/").Reverse()[0]
by jornmo
Monday 3rd April 2017 1:03pm
Forum: General
Topic: Gambas command-line programming
Replies: 4
Views: 7149

Re: Gambas command-line programming

I think that Gambas could reach very far if the documentation had been better. Take Arch Linux for example. The wiki outshines most other documentation I've ever read. If the Gambas wiki had been more elaborate and included more example code, I guess Gambas user number would take off a lot more, bot...
by jornmo
Wednesday 29th March 2017 6:30pm
Forum: General
Topic: Did you know?
Replies: 91
Views: 406292

Re: Did you know?

It is not recommended to use 1 as a replacement for the comparison mode. If there are internal changes to Gambas, you could end up with bad results. http://gambaswiki.org/wiki/cat/comp And, it really makes no sense for others who read the code, and who in their right mind remembers what each integer...
by jornmo
Friday 17th March 2017 12:19pm
Forum: General
Topic: Did you know?
Replies: 91
Views: 406292

Re: Did you know?

I've seen the option, but haven't figured out how it works. Thank you :D