-
Posts
82 -
Joined
-
Last visited
Everything posted by Jazkal
-
Hello everybody. I'm looking for ideas on how to deal with finding patterns in raw data, when the pattern may not be known ahead of time. I have lots of lists of some small, but mostly blocks of large number strings. I need to be able to sort out the patterns and identify the ones that are repeating. As an example, here is one of the strings: 11235831459437077415617853819099875279651673033695493257291011235831459437077415617853819099875279651673033695493257291011235831459437077415617853819099875279651673033695493257291011235831459437077415617853819099875279651673033695493257291011235831459437077415617853819099875279651673033695493257291011235831459437077415617853819099875279651673033695493257291011235831459437077415617853819099875279651673033695493257291011235831459437077415617853819099875279651673033695493257291011235831459437077415617853819099875279651673033695493257291011235831459437077415617853819099875279651673033695493257291011235831459437077415617853819099875279651673033695493257291011235831459437077415617853819099875279651673033695493257291011235831459437077415617853819099875279651673033695493257291011235831459437077415617853819099875279651673033695493257291011235831459437077415617853819099875279651673033695493257291011235831459437077415617853819099875279651673033695493257291011235831459437077415617853819099875279651673033695493257291011235831459437077415617853819099875279651673033695493257291011235831459437077415617853819099875279651673033695493257291011235831459437077415617853819099875279651673033695493257291011 As you can see visually in the block, there is a repeating number sequence. But in this sequence itself, there are repeating patterns. These other patterns show up in other data blocks, and I need to index them to related sequences. 14594370774156178538190998752796516730336954932572910112358314594370774156178538190998752796516730336954932572910112358314594370774156178538190998752796516730336954932572910112358314594370774156178538190998752796516730336954932572910112358314594370774156178538190998752796516730336954932572910112358314594370774156178538190998752796516730336954932572910112358314594370774156178538190998752796516730336954932572910112358314594370774156178538190998752796516730336954932572910112358314594370774156178538190998752796516730336954932572910112358314594370774156178538190998752796516730336954932572910112358314594370774156178538190998752796516730336954932572910112358314594370774156178538190998752796516730336954932572910112358314594370774156178538190998752796516730336954932572910112358314594370774156178538190998752796516730336954932572910112358314594370774156178538190998752796516730336954932572910112358314594370774156178538190998752796516730336954932572910112358314594370774156178538190998752796516730336954932572910112358314594370774156178538190998752796516730336954932572910112358314594370774156178538190998752796516730336954932572910112358314594370774156178538190998752796516730336954932572910112358314 Here is a second block with the related sequences. I'm mainly looking for direction in how to tackle the issue. Thanks for looking.
-
I found this page: http://www.autoitscript.com/wiki/Snippets_%28_Math_%26_Numbers_%29#Integer2Binary.28.29_.26_Binary2Integer.28.29_.7E_Author_-_UEZ And it has some great code listed. But I can't seem to find anything that explains how to convert Big to Little or Little to Big. Any help would be great.
-
great work! I changed it up to be able to pull the ballance of the client, which works. Local $Data1='{"method":"getbalance","params":[]}:' But I'm not sure how to getthe ballance to include the unconfirmed transactions. Do you know how to pass that option? EDIT: Here is a link, just scroll down to the getballance items: http://blockchain.info/api/json_rpc_api
-
compiled exe version number issue
Jazkal replied to Jazkal's topic in AutoIt General Help and Support
Thanks for the info. I see there is a way to force the AutoIt3Wrapper to build the exe's as x64, but I don't see a way to force x86. It looks like it only builds x86 if it is being compiled on an x86 OS. Am I missing something to allow me to build the same au3 script into multiple different exe's (some x86 and some x64) via command line with AutoIt3Wrapper? -
Here is my working test script: #Region ;**** Directives created by AutoIt3Wrapper_GUI **** #AutoIt3Wrapper_icon=C:\Program Files\AutoIt3\Icons\au3.ico #AutoIt3Wrapper_outfile=.\NewTest.exe #AutoIt3Wrapper_Compression=4 #AutoIt3Wrapper_Res_Comment=Place Comments Here #AutoIt3Wrapper_Res_Description=Place Description Here #AutoIt3Wrapper_Res_Fileversion=1.2.3.4 #AutoIt3Wrapper_Res_Fileversion_AutoIncrement=y #AutoIt3Wrapper_Res_LegalCopyright=© 2011 Mine #AutoIt3Wrapper_Res_Language=1033 #EndRegion ;**** Directives created by AutoIt3Wrapper_GUI **** #cs ---------------------------------------------------------------------------- AutoIt Version: 3.3.6.1 Author: myName Date: Script Function: Template AutoIt script. #ce ---------------------------------------------------------------------------- $var = DriveStatus( "c:\" ) MsgBox(4096,"Status",$var) When I compile it under scite it records the version number listed: #AutoIt3Wrapper_Res_Fileversion=1.2.3.4 However, when I compile via command line in a script, it only reports the AutoIt version number. this is the comand that scite says it ran: C:\Program Files (x86)\AutoIt3\aut2exe\aut2exe_x64.exe /in "C:\NewTest.au3" /out "C:\NewTest.exe" /nopack /icon "C:\Program Files\AutoIt3\Icons\au3.ico" /comp 4 Here is the output from the scite window: When it says: "Updated the Source Version to:1.2.3.5..." what is it actually running? I need this command so I can update my exe after it is created.
-
Would like to see the source, if you don't mind sharing.
-
New XML-RPC Client Functionality
Jazkal replied to kimosabe's topic in AutoIt General Help and Support
I tried my test after registering the four dll's. I'll try the actual installer package next. I didn't try that one, because the environment I need to run this in, I can't use the installer, just the dll's. thanks EDIT: After installing the actual installer for 'Win32 Version v1.5.4 Packaged Install', I still get the same error. -
New XML-RPC Client Functionality
Jazkal replied to kimosabe's topic in AutoIt General Help and Support
Anyone know how to get this working with current version of Autoit? I get the following error when running the example code in the first post: -
Does this still work? Trying to figure out if it's me, or the script.
-
#include <_DougFunctions.au3>
-
compiling a script without version info?
Jazkal replied to John117's topic in AutoIt General Help and Support
That would be greatly appreciated. -
compiling a script without version info?
Jazkal replied to John117's topic in AutoIt General Help and Support
So there will be no way to get rid of that field and value (once the bug is fixed) ? -
compiling a script without version info?
Jazkal replied to John117's topic in AutoIt General Help and Support
AU3 File for testing: #Region;**** Directives created by AutoIt3Wrapper_GUI **** #AutoIt3Wrapper_icon=C:\Program Files\AutoIt3\Icons\filetype2.ico #AutoIt3Wrapper_outfile=.\ReNameMe.exe #AutoIt3Wrapper_Compression=4 #AutoIt3Wrapper_Res_Comment=Place Comments Here #AutoIt3Wrapper_Res_Description=Place Description Here #AutoIt3Wrapper_Res_Fileversion=1.0.0.5 #AutoIt3Wrapper_Res_Fileversion_AutoIncrement=y #AutoIt3Wrapper_Res_LegalCopyright=© 2007 #EndRegion;**** Directives created by AutoIt3Wrapper_GUI **** #cs ---------------------------------------------------------------------------- AutoIt Version: 3.2.10.0 Author: myName Date: Script Function: Template AutoIt script. #ce ---------------------------------------------------------------------------- ; Script Start - Add your code below here Compile that using F7 in scite. Now look at the properties of the EXE file, under the 'Version' tab. How do you remove or change the 'CompiledScript' item? I've tried using: #AutoIt3Wrapper_Res_Field=CompiledScript|Change Me But that just creates a second item named 'CompiledScript'. I've also tried using the AutoIt3Wrapper_Gui.exe, but don't see that option listed anywhere. Can someone tell me what I'm missing? EDIT: After some more experimenting, I find that the 'CompiledScript' value disapears is you add this line: #AutoIt3Wrapper_Res_Language=1033 Don't know why that would have anything to do with 'CompiledScript', but it does get the value erased. -
WinAPI to grab cursor, GDIPlus to write to file ?
Jazkal replied to ofLight's topic in AutoIt General Help and Support
Anyone know who the experts are on GDI and WinAPI? -
Useing _ScreenCapture_Capture and $fCursor=True
Jazkal replied to ofLight's topic in AutoIt General Help and Support
I've been banging my head on the keyboard for the last couple of days, trying to figure this out. Does anyone have an idea of which direction I should go to get this output to a bitmap file? -
Useing _ScreenCapture_Capture and $fCursor=True
Jazkal replied to ofLight's topic in AutoIt General Help and Support
smashly, great looking code. Anyone know how to take the output from that directly to a bitmap file, instead of outputting to a window? Even if you have a general idea of what direction I need to look? -
Anyone have this working on v3.2.10.0 ?
-
Refresh wireless networks from command line?
Jazkal replied to ACalcutt's topic in AutoIt General Help and Support
Anyone have a solution for this? EDIT: Found a solution. Stop the 'Wireless Zero Configuration' service, and restart. -
Anyone know what is required to access the local WoW files and pull collision data (trees, fences, etc), to create a path finding function? The path finding function would generate a list of way points that would avoid the collision object.
-
Does anyone know the command line to compile a 64bit EXE from an AU3 file?
-
How do you configure IIS to do this?
-
Thanks again for the info. Maybe you know of something else that would meet my needs? I'm looking to run an Autoit app on a 'server', and pass it commands or info (to do things with) from 'client' machines. Know of any UDF's or whatever that would handle this? Thanks
-
Did you ever get anywhere with the AU3 server side?