Jump to content

Leaderboard

Popular Content

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

  1. Version 2.x.x and 3.x.x has been moved to branch 3.x About Autoit-Socket-IO Autoit-Socket-IO is a event driven TCP/IP wrapper heavily inspired from Socket.IO with focus on user friendliness and long term sustainability. I constantly want to make this UDF faster and better, so if you have any suggestions or questions (beginner and advanced) Do not hesitate to ask them, I will gladly help! Key features Simple API 99% data-type serialization thanks to Autoit-Serialize Can easily be extended with your own functionality thanks to Autoit-Events "Educational" examples Data encryption thanks to _<Crypt.au3> Limitations Speed. This UDF will sacrifice some speed for convenience Getting started Download the script from AutoIt or pull it from the official github repo git@github.com:tarreislam/Autoit-Socket-IO.git and checkout the tag 4.0.0-beta Check out the documentaion Take a look in the examples/ folder Changelog To see changes from 3.x.x and 2.x.x please checkout the 3.x branch Version 4.0.0-beta (This update break scripts.) Code base fully rewritten with Autoit-Events and decoupled to improve code quality and reduce bloat. The new UDF is very different from 3.x.x so please checkout the UPGRADE guide to fully understand all changes Added new documentation documentaion Success stories Since December 2017-now I have used version 1.5.0 in an production environment for 150+ clients with great success, the only downtime is planned windows updates and power outages. Newest version (2020-09-15!) Older versions (Not supported anymore) Autoit-Socket-IO-1.0.0.zip Autoit-Socket-IO-1.1.0.zip Autoit-Socket-IO-1.3.0.zip Autoit-Socket-IO-1.4.0.zip Autoit-Socket-IO-1.5.0.zip Autoit-Socket-IO-2.0.0.zip
    1 point
  2. 1 point
  3. You can find some examples at GitHub: https://github.com/tarreislam/Autoit-Socket-IO P.S I think you mean UDP
    1 point
  4. Your problem is: Local $Directory = DirCreate($path & $Input1_Read & " " & $Input2_Read & "\" & "Profile") DirCreate returns 1 on successful creation of the directory, not the new directory path. Try this instead: $Directory = $path & $Input1_Read & " " & $Input2_Read & "\" & "Profile" DirCreate($Directory) You should check the creation was successful and have some error trapping, but with the correct input this will work.
    1 point
  5. This is invalid coding as you need to use the FileHandle returned by FileOpen! On top of that you are missing a backslash before the filename. Something like this should be the correct way: $fh = FileOpen(@ScriptDir & "\File.txt", 1) FileWriteLine($fh, "Write something") FileClose($fh) The helpfile is your friend Jos
    1 point
  6. Could you try what happens in this way? _IEFormElementSetValue ($o_user, $TargetUsername) Sleep(200) _IEFormElementSetValue ($o_password, $TargetPassword & @CR ) ; or also @CRLF Sleep(200) ; _IEFormElementSetValue ($o_signin, "{ENTER}")
    1 point
  7. ADMPV

    librhash

    Intel(R) Pentium(R) D CPU 3.40GHz + 3Gb RAM CRC32 2048 MiB total in 3.887 sec, 526.917 MBps MD4 2048 MiB total in 2.221 sec, 922.157 MBps MD5 2048 MiB total in 3.543 sec, 578.038 MBps SHA1 2048 MiB total in 13.992 sec, 146.369 MBps TIGER 2048 MiB total in 26.988 sec, 75.887 MBps TTH 2048 MiB total in 31.240 sec, 65.557 MBps BTIH 2048 MiB total in 14.107 sec, 145.174 MBps ED2K 2048 MiB total in 2.250 sec, 910.213 MBps AICH 2048 MiB total in 14.123 sec, 145.015 MBps WHIRLPOOL 256 MiB total in 12.197 sec, 20.990 MBps RIPEMD-160 2048 MiB total in 9.321 sec, 219.711 MBps GOST 1024 MiB total in 20.129 sec, 50.871 MBps GOST-CRYPTOPRO 1024 MiB total in 20.204 sec, 50.684 MBps HAS-160 2048 MiB total in 4.539 sec, 451.199 MBps SNEFRU-128 256 MiB total in 8.305 sec, 30.825 MBps SNEFRU-256 256 MiB total in 12.088 sec, 21.177 MBps SHA-224 2048 MiB total in 22.861 sec, 89.586 MBps SHA-256 2048 MiB total in 22.931 sec, 89.313 MBps SHA-384 1024 MiB total in 62.102 sec, 16.489 MBps SHA-512 1024 MiB total in 62.488 sec, 16.387 MBps EDON-R256 2048 MiB total in 6.897 sec, 296.931 MBps EDON-R512 2048 MiB total in 20.182 sec, 101.475 MBps SHA3-224 256 MiB total in 10.994 sec, 23.285 MBps SHA3-256 256 MiB total in 11.782 sec, 21.727 MBps SHA3-384 256 MiB total in 15.198 sec, 16.845 MBps SHA3-512 256 MiB total in 22.180 sec, 11.542 MBps
    1 point
  8. Read the header for _Video_Play function then modify the _Player function ....
    1 point
  9. Melba23

    AutoIT Script

    vcd, And please post in the correct section - this is not an "Example", other than of what not to do when posting! M23
    1 point
×
×
  • Create New...