Show Posts

This section allows you to view all posts made by this member. Note that you can only see posts made in areas you currently have access to.


Messages - Support

Pages: 1 ... 16 17 [18] 19 20 ... 59
256
General Discussions / Re: sb buoy plot
« on: April 09, 2014, 09:17:56 PM »
Do you have the libSDL_gfx.so in the /usr/lib and SDL 1.2 (64 bit) installed?


257
General Discussions / Re: linux
« on: April 09, 2014, 08:59:09 PM »
I never had any problems with sbhttpd on XP. I need to figure out why Win7 64 bit is being so hard on sbhttpd and not allowing it to communicate with anything. I just need more time to figure out what is going on.

BTW: Armando (AIR) added the -f config_file option to sbhttpd (like scriba) so you can select the configuration file to use rather than what SCRIBACONF points to.




258
General Discussions / Re: linux
« on: April 09, 2014, 07:09:59 PM »
Good to hear! Thanks for the feedback. Windows 7 64 bit and SBHTTPD don't seem to get along. (some security issue) I have no SBHTTPD errors, the log file says it's running fine but a Windows service isn't created or can I connect to SBHTTPD with Apache via a proxy rewrite.  :(  Yes, I did start SBHTTPD with ADMIN privileges.

I'm filing this one under why I don't use Windows any longer for my primary development desktop.

259
General Discussions / Re: linux
« on: April 09, 2014, 12:44:42 PM »
I would be lying if I said I was surprised.  :-X

260
General Discussions / Re: linux
« on: April 09, 2014, 12:05:36 PM »
You need to install libcurl. The Script BASIC curl.so is the interface to it and resides in the modules directory. The scriba -d will tell you if the dependencies are satisfied.


261
General Discussions / Re: linux
« on: April 08, 2014, 11:17:45 AM »
Great choice!

Wine 7 does a good job with both Windows 32/64 bit applications if there is something you don't want to leave behind.


262
General Discussions / Re: linux
« on: April 08, 2014, 09:24:35 AM »
Hi Ron,

I compiled Script BASIC 2.2 (32/64 bit ) on Ubuntu 12.04 LTS. I assume that it will work with any of the Ubuntu variations.

John

263
General Discussions / Re: sb buoy plot
« on: March 28, 2014, 12:46:05 PM »
Script BASIC has been used in embedded controllers for years. (ARM/POSIX) I have the current 2.2 version of Script BASIC running native on Android Linux. (ARM) I think Script BASIC and tablets make a great mobile application development environment. The beauty of Script BASIC is it can morph into about anything you need it to.

It wouldn't be too hard to convert your GD based web app to a desktop app with the Script BASIC GFX SDL extension. You could use the alpha channel for more granularity with intensity and pop an info box with the retrieved values if the user clicks on a buoy station. Just saying ...  ;)


264
General Discussions / Re: sb buoy plot
« on: March 28, 2014, 09:41:51 AM »
It's fine where it's at. I plan to do a bit of house cleaning after April 1st. I will be focusing most of my efforts after the 2.2 release towards the commercial / business / research use of Script BASIC. That was the focus from the beginning, not hobbyists.

265
General Discussions / Re: sb buoy plot
« on: March 28, 2014, 08:54:34 AM »
Amazon EC2 has dropped their prices again as of April 1st. You could run a 64 bit Linux instance 24/7 for less than $60 / year.

Something to consider ...

266
General Discussions / Re: sb buoy plot
« on: March 28, 2014, 07:45:07 AM »
Thanks!

BTW: How do the bouy's retain their designated position?

267
General Discussions / Re: sb buoy plot
« on: March 27, 2014, 10:56:57 PM »
That is pretty slick!

Did you use the GD extension module or one of the other (SDL GFX, BBC or SDL_draw) modules?

Is this something you can share?


268
What's New / Re: Script BASIC project site upgrade
« on: March 22, 2014, 09:18:00 AM »
I was able to get the Script BASIC SQLite3 extension module running under Windows 7 64 bit and working with the SB ODBC extension module.  It seems I discovered a bug in the MySQL ODBC driver as it's substituting the first 5 or so characters of a returned string (column) with spaces. I'm hoping there is a fix for this already and I just need to update the driver.

Code: [Select]
import sqlite.bas

db = sqlite::open("testsql")

sqlite::execute(db,"create table demo (someval integer, sometxt text);")
sqlite::execute(db,"insert into demo values (123,'hello');")
sqlite::execute(db, "INSERT INTO demo VALUES (234, 'cruel');")
sqlite::execute(db, "INSERT INTO demo VALUES (345, 'world');")

stmt = sqlite::query(db,"SELECT * FROM demo")

while (sqlite::row(stmt) = sqlite::SQLITE3_ROW)
  if sqlite::fetchhash(stmt,column) then
    print column{"someval"},"\t-\t",column{"sometxt"},"\n"
  end if
wend

sqlite::close(db)

C:\scriptbasic\test>scriba t_sqlite3.sb
123     -       hello
234     -       cruel
345     -       world

C:\scriptbasic\test>

269
What's New / Re: Script BASIC project site upgrade
« on: March 20, 2014, 02:18:47 PM »
Just got the Script BASIC zlib extension module compiled and here is a quick test of compressing a file to gzip format. (.gz) Attached is a WinRAR screen shot of the results.

Code: [Select]
IMPORT zlib.bas

zlib::gzip "customer.sb", "customer.gz"

270
What's New / Re: Script BASIC project site upgrade
« on: March 20, 2014, 02:14:00 PM »
This is a bring out your dead call.  ::)

You have been flagged as an active member. Thanks !

Pages: 1 ... 16 17 [18] 19 20 ... 59