Jump to content

Leaderboard

Popular Content

Showing content with the highest reputation on 02/07/2023 in all areas

  1. Introduction: CBOR is a binary format that can represent arbitrarily nested data. The principle is basically the same as with JSON. There you can take your variables directly from the program and convert them to this format. This way you can store your data outside the program or exchange it with other programs, which is even easier since almost all programming languages understand the JSON standard. CBOR is quite similar, but the difference is that CBOR is not a text-based format, but a binary format. This of course makes it impossible for a human to read it directly but on the other hand the results are usually smaller than in JSON. How to use?: Now how to work with it? - Here is an example: In this case our AutoIt data structure occupies 29 bytes of space at the end. Since the comparison to JSON is obvious - here is another example (the JSON UDF is also needed) to see how both interact: >>sourcecode and download on github<< Changelog: 2023-02-08: fixed bug when encoding big integer numbers
    1 point
  2. @ioa747 I know I was just underlining this fact ps. OP does not want to compile his script !
    1 point
  3. You will need to make a copy of AutoIt3.exe into a new directory, hack its icon to change it to yours, then run with this new exe. VoilĂ  ! Or you can just compile it
    1 point
×
×
  • Create New...