New pages

Jump to navigation Jump to search
New pages
Hide registered users | Hide bots | Show redirects
  • 19:09, 30 April 2024ORELSE (hist | edit) ‎[3,801 bytes]A740g (talk | contribs) (Initial version.)
  • 18:33, 30 April 2024ANDALSO (hist | edit) ‎[3,228 bytes]A740g (talk | contribs) (Initial version.)
  • 15:34, 30 April 2024NEGATE (hist | edit) ‎[2,216 bytes]A740g (talk | contribs) (Initial version.)
  • 19:37, 6 April 2024Download (hist | edit) ‎[9,344 bytes]RhoSigma (talk | contribs) (Created page with "---- ---- <center>'''{{Text|Attention!! - This page is outdated and provided for reference and/or education only.|red}}'''</center> <center>(Return to historic Table of Contents)</center> ---- <center>Starting with '''QB64-PE v3.5.0''' the functionality to make HTTP requests is built-in (see here).</center> ---- ----<br> :'''HTTP/1.1''' protocol downloads can be done using a '''GET''' request using the following format without HT...")
  • 23:46, 15 February 2024WRITEFILE (hist | edit) ‎[3,742 bytes]RhoSigma (talk | contribs) (Created page with "{{DISPLAYTITLE: _WRITEFILE}} The '''_WRITEFILE''' function writes a string into a new file, overwriting an existing file of the same name. It does OPEN, PUT and CLOSE the file in one run. It's the counterpart to _READFILE$. {{PageSyntax}} : {{Parameter|success%}} = _WRITEFILE({{Parameter|fileSpec$}}, {{Parameter|contents$}}) {{PageParameters}} * {{Parameter|success%}} is an INTEGER return value, it shows whether the write operation was success...")
  • 18:28, 13 February 2024READFILE$ (hist | edit) ‎[3,512 bytes]RhoSigma (talk | contribs) (Created page with "{{DISPLAYTITLE: _READFILE$}} The '''_READFILE$''' function returns the complete contents of a file in a single string, but without the usual overhead. It does OPEN, GET and CLOSE the file in one run. {{PageSyntax}} : {{Parameter|content$}} = _READFILE$({{Parameter|fileSpec$}}) {{PageParameters}} * {{Parameter|content$}} is the entire file contents returned as STRING. Maybe empty, if the file specified was an empty file, or if the program is contin...")
  • 13:33, 8 February 2024$INCLUDEONCE (hist | edit) ‎[3,432 bytes]RhoSigma (talk | contribs) (Created page with "The '''$INCLUDEONCE''' metacommand, when placed in include files, prevents that the file's contents can be injected multiple time into a program. {{PageSyntax}} : $INCLUDEONCE {{PageDescription}} * This Metacommand can be placed everywhere in an include file, but must be the only thing in the line, hence no additional whitespace or comments. * If placed in the main program, $INCLUDEONCE does nothing and is simply ignored without error. {{PageAvailability}}...")
  • 00:20, 4 February 2024MD5$ (hist | edit) ‎[2,487 bytes]RhoSigma (talk | contribs) (Created page with "{{DISPLAYTITLE: _MD5$}} The '''_MD5$''' function returns the MD5 hash value of any arbitrary string. {{PageSyntax}} : {{Parameter|md5hash$}} = _MD5$({{Parameter|dataString$}}) {{PageParameters}} * {{Parameter|md5hash$}} is the hash value returned as STRING, if the given {{Parameter|dataString$}} was empty the correct hash value is: ** D41D8CD98F00B204E9800998ECF8427E * {{Parameter|dataString$}} is any literal or variable STRING to build...")
  • 20:42, 2 February 2024CRC32 (hist | edit) ‎[2,864 bytes]RhoSigma (talk | contribs) (Created page with "{{DISPLAYTITLE: _CRC32}} The '''_CRC32''' function returns the Crc-32 checksum of any arbitrary string. {{PageSyntax}} : {{Parameter|chksum~&}} = _CRC32({{Parameter|dataString$}}) {{PageParameters}} * {{Parameter|chksum~&}} is the _UNSIGNED LONG checksum returned (zero, if the given {{Parameter|dataString$}} was empty). * {{Parameter|dataString$}} is any literal or variable STRING to build the checksum from. {{P...")
  • 16:08, 2 February 2024ADLER32 (hist | edit) ‎[2,687 bytes]RhoSigma (talk | contribs) (Created page with "{{DISPLAYTITLE: _ADLER32}} The '''_ADLER32''' function returns the Adler-32 checksum of a string. {{PageSyntax}} : {{Parameter|chksum~&}} = _ADLER32({{Parameter|dataString$}}) {{PageParameters}} * {{Parameter|chksum~&}} is the _UNSIGNEDLONG checksum returned (zero, if the given {{Parameter|dataString$}} was empty). * {{Parameter|dataString$}} is any literal or variable STRING to build the checksum from. {{PageDescription}} {{PageExam...")