Search results

From Sputnik Wiki
Jump to: navigation, search
  • You can use Signed Binary numbers if you place a 0b before the number such as 0b101 this will produce You can use Unsigned Binary numbers if you place a 0b before the number and a U after it such as 0b101U
    72 KB (10,669 words) - 11:57, 27 September 2015
  • == Function Reference == === How to create a Function ===
    124 KB (17,207 words) - 07:54, 20 December 2015
  • Name of the file to open (can be text or binary). [[Category:Core Function]]
    1 KB (217 words) - 10:36, 18 June 2015
  • Returns a formatted string (similar to the C sprintf() function). ...ely print to the console rather than return a string you should see [[Core Function Printf|Printf( <format control>, <params> )]].
    32 KB (4,292 words) - 12:38, 14 June 2015
  • UBound( <array/binary-array> ) ==== array/binary-array ====
    817 B (111 words) - 12:38, 14 June 2015
  • Pack data into a binary array. Pack given arguments into a binary string according to format.
    21 KB (3,130 words) - 19:17, 18 September 2015
  • Unpack( <format>, <data/binary-array>, <flag> ) Unpack data from a binary array
    3 KB (523 words) - 12:38, 14 June 2015
  • LBound( <array/binary-array> ) ==== array/binary-array ====
    655 B (84 words) - 12:37, 14 June 2015
  • BinaryStr( <binary-array>, <separator> ) Create a Hex string from a binary array.
    765 B (89 words) - 12:38, 14 June 2015
  • Create a binary array from a hex string. A string of hex to convert into a binary variable.
    2 KB (225 words) - 12:38, 14 June 2015
  • BinaryLen( <binary-array>, <newLen>, <fillWith> ) Returns the number of bytes in a binary variable.
    3 KB (433 words) - 12:38, 14 June 2015
  • BinaryGet( <binary-array>, <index> ) Get the byte at an index of a binary variable.
    1 KB (135 words) - 12:38, 14 June 2015
  • BinarySet( <binary-array>, <index>, <value> ) Get the byte at an index of a binary variable.
    1 KB (146 words) - 12:38, 14 June 2015
  • BinaryReverse( <binary-array>, <start>, <length> ) Reverse the order bytes a binary variable.
    2 KB (206 words) - 12:38, 14 June 2015
  • BinaryClone( <binary-array> ) Clone a binary variable 100% and return a new binary variable with exactly same data as the old one.
    1 KB (160 words) - 12:38, 14 June 2015
  • BinaryMid( <binary-array>, <start>, <length> ) Create a binary variable by extracting a number of bytes from another binary variable.
    1 KB (196 words) - 12:38, 14 June 2015
  • BinaryAppend( <binary-array>, <binary-array2>, <flag> ) Append a binary variables data onto the end or beginning of another binary variables data.
    1 KB (154 words) - 12:38, 14 June 2015
  • BinaryPush( <binary-array>, <byte> ) Add a byte to the end of a binary variable.
    785 B (106 words) - 12:38, 14 June 2015
  • BinaryUnshift( <binary-array>, <byte> ) Add a byte to the beginning of a binary variable.
    812 B (106 words) - 12:38, 14 June 2015
  • BinaryPop( <binary-array> ) Delete the last byte from a binary variable.
    671 B (82 words) - 12:38, 14 June 2015
  • BinaryShift( <binary-array> ) Delete the first byte from a binary variable.
    676 B (82 words) - 12:38, 14 June 2015
  • Create a new binary variable by loading binary data from a file. Success: Returns the new binary variable.
    1 KB (129 words) - 21:53, 26 June 2015
  • BinarySave( <binary-array>, <file>, <flag> ) Save a binary variable data to file.
    1 KB (185 words) - 12:38, 14 June 2015
  • BinaryCompress( <binary-array> ) Compress a binary variables data.
    1,006 B (117 words) - 12:38, 14 June 2015
  • BinaryUncompress( <binary-array> ) Uncompress a binary variable data
    807 B (83 words) - 12:38, 14 June 2015
  • BinaryWipe( <binary-array> ) Wipes a binary variables data 100% and sets the variable to a blank int containing null.
    918 B (111 words) - 12:38, 14 June 2015
  • BinaryResize( <binary-array>, <size>, <data> ) Resize a binary variables data array.
    1 KB (159 words) - 12:38, 14 June 2015
  • BinaryInsert( <binary-array>, <binary-array2>, <index>, <overwrite> ) Insert a binary variables data into another binary variable at a specific location.
    2 KB (254 words) - 12:38, 14 June 2015
  • FileWriteBinary( <file>, <binary-array> ) Write the data from a binary variable to previously opened file at the current File Steam pointer locati
    1,009 B (133 words) - 12:38, 14 June 2015
  • FileAppendBinary( <file>, <binary-array> ) Append the data from a binary variable to the end of a previously opened file.
    1,019 B (133 words) - 12:38, 14 June 2015
  • Success: Returns a binary variable filled with data read from file. $binary = FileReadBinary($File);
    1 KB (163 words) - 12:38, 14 June 2015
  • Create a new binary variable and its array size and fill data type. The size (in bytes) of the new binary variable.
    883 B (121 words) - 12:38, 14 June 2015
  • ... a function to be private you must insert the "Private" keyword before the function. ...ction by name inside the class and by using $this-> but you can't call the function from outside the class this will prevent people from using functions that c
    20 KB (2,768 words) - 18:39, 21 September 2015
  • It also has a huge amount of functions in its core that are very fast (avoiding the user having to reinvent the wheel and havi ... overload every operator and cast and multiple inherit as well as powerful binary functions with powerful functions for handling bits.
    19 KB (3,356 words) - 20:07, 18 September 2015
  • $Result = MsgBox("My Message", "My Title", 32 | 4); // Binary operator [[Category:Core Function]]
    3 KB (325 words) - 12:38, 14 June 2015
  • Some might wonder the point of such a function when clear ~ operators exist but why not!. 5 == 00000000000000000000000000000101 binary
    952 B (116 words) - 12:38, 14 June 2015
  • ...ment is byte[n] OR ubyte[n] and index is omitted the data is returned as a Binary Variable example : // Get the whole byte array and store it as Binary data
    3 KB (341 words) - 12:38, 14 June 2015
  • ...byte[n] OR ubyte[n] and index is omitted the byte array can be set using a Binary Variable example : // Create a binary variable containing "Hello World!"
    3 KB (341 words) - 12:38, 14 June 2015
  • "v" Binary (Reads an Int32 for size then reads that many bytes) "V" Binary (Reads from current positoin to end of the buffer)
    964 B (147 words) - 06:22, 15 June 2015
  • $binary = Pack("ifz0", (int)100, (float)777.42, "Hello"); foreach( $binary as $item )
    763 B (92 words) - 11:38, 2 December 2011
  • Checks if a variable is a binary type. [[Category:Core Function]]
    419 B (45 words) - 10:36, 29 August 2013
  • BINARY @typeBINARY [[Category:Core Function]]
    1 KB (161 words) - 12:37, 14 June 2015
  • You can also load the image from a Binary Variable like GUIPictureBox($PB, "Load", $binary);
    1 KB (143 words) - 12:37, 14 June 2015
  • BinarySHA1( <binary-array> ) Returns the SHA1 hash of a binary variable.
    492 B (55 words) - 12:37, 14 June 2015
  • BinarySHA1( <binary-array> ) Returns the SHA1 hash of a binary variable.
    489 B (55 words) - 12:37, 14 June 2015
  • BinaryCompare( <binary-array>, <offset>, <needle, <needleOffset>, <length>, <ignoreCase> ) Compare two binary variables.
    4 KB (534 words) - 12:37, 14 June 2015
  • Reading and writing binary // Create binary from a string
    4 KB (441 words) - 12:37, 14 June 2015
  • /////////////////////////// THE FUNCTION BELOW Function Completed()
    6 KB (644 words) - 12:37, 14 June 2015
  • // Define an *binary* based variable // Type '17' (as String 'Binary')
    5 KB (668 words) - 12:55, 23 June 2015
  • Count( <array/binary-array/class> ) ==== array/binary-array ====
    2 KB (272 words) - 18:37, 21 September 2015
  • "REG_BINARY" Binary data Reading and writing binary
    4 KB (463 words) - 12:37, 14 June 2015
  • BinaryReplace( <binary-array>, <needle>, <replacement>, <offset>, <maxReplacements> ) Search for a byte or string of bytes in a binary variable and replace it.
    5 KB (735 words) - 12:37, 14 June 2015
  • If the class has __Clone() function then it will be called during the clone process to allow the class the abil Example of cloning a binary variable
    2 KB (285 words) - 12:07, 21 June 2015
  • BinaryToStr( <binary-array>, <flag>, <start>, <length> ) Returns a new string containing the binary data as raw bytes.
    2 KB (241 words) - 12:37, 14 June 2015
  • Returns a new binary variable created from a strings raw bytes Returns a new binary variable created from a strings raw bytes
    1 KB (148 words) - 12:37, 14 June 2015
  • ...specified by OFFSET as an unsigned integer and optionally sets BITS in the binary variable to a given value. If BITS is 8, "elements" coincide with bytes of the input binary variable.
    15 KB (2,407 words) - 16:15, 26 June 2015
  • ...sion will be interpreted as a hexadecimal string if begins wit 0x and as a binary string if it begins with 0b. If you want to convert numbers in or from a binary, octal or hexadecimal format you need to write them as literals, otherwise
    2 KB (255 words) - 21:27, 7 October 2015
  • BinaryStripNull( <binary-array> ) Strip all NULL bytes (0x00) from a binary variable.
    768 B (69 words) - 12:37, 14 June 2015
  • Uuencode translates all strings (including binary's ones) into printable characters, making them safe for network transmissio Can be a string or binary variable.
    2 KB (320 words) - 12:37, 14 June 2015
  • Can be a string or binary variable. This function produces results that are equal to PHPs.
    2 KB (299 words) - 12:37, 14 June 2015
  • * Made a tweak for binary "$var[0] = 'T'" it now works and doesnt need @'T' since it will correctly u * If you do "$var[7] = 'T'" on binary it will now expand the binary size so the position fits inside just like how it does with strings
    124 KB (21,439 words) - 12:00, 9 November 2016
  • 2 = Generate a random binary variable (you provide size) Optional; Size in bytes of the binary variable to make
    1 KB (158 words) - 12:37, 14 June 2015
  • BinaryExpand( <binary-array>, <start>, <length> ) Reverse the order bytes a binary variable.
    2 KB (326 words) - 12:37, 14 June 2015
  • BinaryRandom( <binary-array>, <seed> ) Randomize all bytes in a binary variable.
    1 KB (170 words) - 12:37, 14 June 2015
  • BinaryUUEncode( <binary-array> ) Encodes a binary variable using the uuencode algorithm
    1,006 B (130 words) - 12:37, 14 June 2015
  • BinaryUUDecode( <binary-array> ) Decodes a binary variable using the uuencode algorithm
    1,006 B (130 words) - 12:37, 14 June 2015
  • BinaryStartsWith( <binary-array>, <binary-array2> ) Check if this binary variable starts with a specific sequence of bytes.
    701 B (80 words) - 12:37, 14 June 2015
  • BinaryEndsWith( <binary-array>, <binary-array2> ) Check if this binary variable ends with a specific sequence of bytes.
    696 B (80 words) - 12:37, 14 June 2015
  • BinaryHash( <binary-array> ) Gain a unique Hash of the bytes in this binary variable.
    642 B (85 words) - 12:37, 14 June 2015
  • Join together a ton of Binary variables in an extremely fast and efficient way. Success: Returns a new binary variable.
    2 KB (336 words) - 12:37, 14 June 2015
  • @JSON_BASE64_BINARY // Encodes Binary in Base64 Encode and Decode binary (Default method)
    11 KB (1,391 words) - 18:34, 21 September 2015
  • BinaryPadLeft( <binary-array>, <padSize>, <padWith>, <flag> ) Left pad a binary variable with a number of bytes or pad it to a total number of bytes.
    2 KB (260 words) - 12:37, 14 June 2015
  • BinaryPadRight( <binary-array>, <padSize>, <padWith>, <flag> ) Right pad a binary variable with a number of bytes or pad it to a total number of bytes.
    2 KB (260 words) - 12:37, 14 June 2015
  • BinaryRemove( <binary-array>, <start>, <length> ) Remove bytes from a binary variable.
    2 KB (309 words) - 12:37, 14 June 2015
  • BinaryMidReplace( <binary-array>, <replacement>, <start>, <length> ) Replace a section (from start to length) of the binary with the replacement binary.
    4 KB (519 words) - 12:37, 14 June 2015
  • BinaryContains( <binary-array>, <needle>, <start>, <length> ) Check if a binary variable contains a given byte or contains another binary variable .
    2 KB (233 words) - 12:37, 14 June 2015
  • Here we cycle through binary data : [[Category:Core Function]]
    2 KB (193 words) - 12:37, 14 June 2015
  • Here we cycle through binary data : $binary = Pack("ifz0", (int)100, (float)777.42, "Hello");
    6 KB (898 words) - 13:38, 29 September 2015
  • Success: Returns a cryptographically strong random number/binary array. [[Category:Core Function]]
    1 KB (134 words) - 12:37, 14 June 2015
  • GetBit( <binary-array>, <index> ) ==== binary-array ====
    529 B (71 words) - 12:37, 14 June 2015
  • InvertBit( <binary-array>, <index> ) ==== binary-array ====
    588 B (82 words) - 12:37, 14 June 2015
  • ClearBit( <binary-array>, <index> ) ==== binary-array ====
    612 B (85 words) - 12:37, 14 June 2015
  • FillBit( <binary-array>, <value> ) ==== binary-array ====
    658 B (92 words) - 12:37, 14 June 2015
  • SetBit( <binary-array>, <index>, <value> ) ==== binary-array ====
    6 KB (873 words) - 12:37, 14 June 2015
  • Create a new binary variable. One or more things to place into the new binary variable.
    2 KB (146 words) - 12:37, 14 June 2015
  • Function __Construct( $size = 0 ) Function WriteByte( $value )
    6 KB (896 words) - 12:37, 14 June 2015
  • Pack a single value into a binary array. Read [[Core Function Pack|Pack( )]] to learn about format codes.
    3 KB (501 words) - 12:37, 14 June 2015
  • UnpackSingle( <format>, <data/binary-array>, <position> ) Unpack a single value from a binary array optionally from a given index.
    928 B (128 words) - 12:37, 14 June 2015
  • "v" Binary (Writes an Int32 for size then writes the bytes) "V" Binary (Writes all bytes)
    886 B (133 words) - 07:25, 15 June 2015
  • Mass append a ton of Binary variables in an extremely fast and efficient way. IF this param is NOT an array then it expects a binary variable or something it can as such.
    2 KB (251 words) - 10:34, 14 September 2015

View (previous 100 | next 100) (20 | 50 | 100 | 250 | 500)

Personal tools
Namespaces
Variants
Views
Actions
Navigation
Toolbox