Here is a for instance starter, that impresses the heck out of me.
vince, tempodiBasic, Adrian and other chess lovers might like it too.
SmallBASIC code that visits a site and copies 20 end game programs.
I wonder can be translated to QB64 and generalized to be done with simple commands to a bot.
'internet grabber jasali SmallBASIC 0.12.11 2018-02-13
open "http://moodle.usm.md/endgame/getpgn.php?pid="+i
as #1 tload #1,p
?p:?#2,p
pause 'for screen shot and scroll through screen
file extension name changed from pgn to txt because that is all the file is, a text file.
TLOAD loads a file in a single pop to an array or a long string. Here it looks to be single line arrays??? either that or ? (PRINT) can print an array in a pop too?? with variable typing p could be a string or an array??
I have not seen TLOAD used with Open and file handle before, I guess it is to create file names on the fly.
usually it is used as
TLOAD "thePath\theFile.theExt", myArray
without an OPEN statement.
I am not sure QB64 can do that specially off Internet???