Jump to content

Leaderboard

Popular Content

Showing content with the highest reputation on 05/28/2023 in all areas

  1. TheDcoder

    Kobo Cover Fixer

    Let's not forget about https://wormhole.app for easy file sharing needs, it supports files up to 10 GB.
    1 point
  2. E4A Version 5.4 is out. The most important new features are: File I/O function _Eigen_LoadMatrix_FromTextFile, for fast-loading CSV- and related types of text files into a new E4A matrix. This finally complements existing function _Eigen_SaveMatrix_ToTextFile. It performs limited prior analysis to determine number of rows and columns (or fields), as well as the delimiter used that separates the values; you have to specify yourself how many header lines should be skipped before reading data. Your mileage may vary (should it fail, then the MatrixFileConverter utility may still do the job, albeit far more slowly). Note that complex data expect an even number of data rows, with the first half containing all real parts, immediately followed by the second half containing all imaginary parts. Transformation functions_Eigen_Pack/Unpack for de/compressing bit0-only bitmasks to/from full integers (all bits used), which speeds up file I/O and all logical operations by a factor 32. Transformation function _Eigen_Rotate, which rotates a matrix by any integer multiple of 45 degrees. When applied to matrix parts (other than _Diag), the cells themselves are rotated (with wrap-around) within the chosen subcontainer (Block, Col, or Row). Reduction function _Eigen_GetVectorAngle, to obtain the angle (in radians or degrees) between two vectors (0-180 degrees inclusive, meaning it also distinguishes between parallel and anti-parallel vectors). Hope it helps.
    1 point
  3. example() Func example() Local $tTitleBuffer = DllStructCreate("wchar title[256];") ;Populate title buffer $tTitleBuffer.title = "This is a title" ;Display title & pointer to title ConsoleWrite("Title = " & $tTitleBuffer.title & @CRLF) ConsoleWrite("Title Pointer = " & DllStructGetPtr($tTitleBuffer) & @CRLF) EndFunc Console output: Title = This is a title Title Pointer = 0x00000000005D8070
    1 point
  4. TheSaint

    Kobo Cover Fixer

    Another day of coding and tidying code and adding further elements, plus testing etc. Here is the revised Results window. The ADD, CREATE and FIX buttons, don't yet have any code, but the others work. DOWNLOAD Kobo Cover Fixer.au3 (47 downloads) SEE THE FIRST POST in this topic for the latest version. 22.59 kB
    1 point
  5. @TheDcoder, Thanks for the reply. Well, I am cooking something interesting for AutoIt. A gui library fpr AutoIt. All heavy works are happening inside the dll. So after creating a window class, I need to transfer the necessary properties from the dll function to autoit. Currently map is in my radar. I am planning to use Scripting.Dictionary also. There are more than 20-25 properties and event name indexes to transfer. Anyhow, I am searching for new ways to do it.
    1 point
×
×
  • Create New...