Borbin the 🐱

🔍 Suche...
🔍
Alle Begriffe müssen vorkommen (UND), "Phrase" für exakte Treffer, r"regex" für Muster (oder ').
  • Using List in PowerShell

    📅 24. April 2022 · Software · ⏱️ 1 min

    PowerShell has lots of array and lists support, but changing or creating a list with dynamic data recreate the list on each change which is inefficient for large lists.
    The most simple solution is to use the .NET List class:

        [System.Collections.Generic.List[string]]$content = [System.Collections.Generic.List[string]]::new()
    
        $content.Add("line1")
        $content.Add("line2")
  • Text file encoding with PowerShell

    📅 24. April 2022 · Software · ⏱️ 4 min

    Text files contain Text with a certain encoding. The usual symbols can be displayed with one byte and encoded as such in the file. But extended chars or other glyphs need more than one byte for representation. The standard for this is Unicode.


    Common Unicode encodings are utf-8 and utf-16.
    utf-8 encodes 7bit chars as it is and is one of the most used formats out there because it results in small file sizes as most text is 7bit anyway. All non 7bit chars are encoded with a sequence.
    utf-16 uses the surrogate pairs to encode char points out of the basic plane, but for most cases it is 2 byte per char. Also known as 'Unicode' with the option for big/little endian order of the byte sequence. The .NET string class is also using utf-16 encoding. As with the file format, do not assume each char is two bytes.


    The PowerShell functions Get-Content and Set-Content need an encoding to properly read/write the file.
    Without any encoding, this loops through all bytes in the text file instead of the encoded chars, and the loop variable is only the byte part of the original encoding and not very useful.

    # No encoding.
    Get-Content $textFile | % { 
        $_
    } | Set-Content $textFileOut


    If the encoding is missing when the file is read, the original text content in utf-8:
    😺abcパワーシェル
    will be stored as this instead:
    😺abcパワーシェル

    # Encoding missing, wrong content in output file.
    Get-Content $textFile | % {
        $_
    } | Set-Content -Encoding UTF8 $textFileOut


    The encoding is needed to properly read the chars in a text file:

    # Read utf-8 file and write as utf-8.
    Get-Content -Encoding UTF8 $textFile | % {
        $_
    } | Set-Content -Encoding UTF8 $textFileOut


    # Read utf-8 file and write as Unicode (utf-16).
    Get-Content -Encoding UTF8 $textFile | % {
        $_
    } | Set-Content -Encoding Unicode $textFileOut


    Note: The Get-Content will read a unicode file even when the utf-8 encoding is used, but it will not read a utf-8 file when the unicode encoding is used. Do not rely on this.
    But when the encoding is not known, it is difficult to use Get-Content. Best practice is to use the ReadLines API from .Net to read any file encoding:

    # Read any file encoding and write as utf-8.
    [System.IO.File]::ReadLines($textFile) | % { 
        $_
    } | Set-Content -Encoding UTF8 $textFileOut


    By default, Set-Content -Encoding UTF8 is not writing a BOM.
    Use the Text.UTF8Encoding to control how if the BOM should be used.
    If the Byte Order Mask (BOM) is not needed, use this to write out as utf-8 without BOM:

    # Read any file encoding and write as utf-8 without BOM.
    [string[]]$contentLines = [System.IO.File]::ReadLines($textFile)
    [Text.UTF8Encoding]$encoding = New-Object System.Text.UTF8Encoding $false
    [IO.File]::WriteAllLines($textFileOut, $contentLines, $encoding)

    If the Byte Order Mask (BOM) is needed, set the first constructor arg of the encoding to $true:

    [Text.UTF8Encoding]$encoding = New-Object System.Text.UTF8Encoding $true


    The ReadLines API does not load all content into memory at once and allow for very large files to be processed line by line. If you need the file in one string, use this:

    # Read text as one string with any file encoding and write as utf-8 without BOM.
    [string]$content = [System.IO.File]::ReadAllText($textFile)
    [Text.UTF8Encoding]$encoding = New-Object System.Text.UTF8Encoding $false
    [IO.File]::WriteAllText($textFileOut, $content, $encoding)


    XML files are also text files using an encoding. Most XML files use utf-8, but if the encoding is different, this commonly used code is not working anymore:

    # Do not use.
    [xml]$xml = Get-Content -Encoding UTF8 $xmlFile


    Use this instead:

    # Read XML file.
    [xml]$xml = New-Object xml
    $xml.Load($xmlFile)


    The default output file encoding is utf-8 with a BOM:

    # Save xml as utf-8 with signature (BOM).
    $xml.Save($xmlFileOut)


    To not write a BOM, use this:

    # Save xml as utf-8 without BOM.
    $encoding = [System.Text.UTF8Encoding]::new($false)
    $writer = [System.IO.StreamWriter]::new($xmlFileOut, $false, $encoding)
    $xml.Save($writer)
    $writer.Dispose()
  • AI code calculus examples

    📅 11. Oktober 2021 · Software · ⏱️ 1 min

    Example scripts to calculate the integral and zero points of functions using the AI code programmable calculator for Android.

    import."mathlib"
    
    // Math calculus examples
    
    // Store the function in a variable 'fx1' .
    // -e^(x-2)
    { 2 - e swap ^ -1 * } sto.fx1
    
    // Integral
    0    // start
    2    // end
    0,001    // precision
    rcl.fx1  // f(x) as lambda
    integral
    
    // Zero point, uses the function inline.
    -3    // start
    { sto.x rcl.x dup dup * * rcl.x dup * + rcl.x 4 * - 4 - }    // x^3+x^2-4x-4
    nullstelle
    

    See the pre installed scripts for more examples.

  • Project AI code update

    📅 11. Oktober 2021 · Software · ⏱️ 1 min

    AI code is a programmable calculator for Android.
    AI code supports Forth-style definitions, variables, code import and lamda expressions. The latest update adds Vector/Matrix operations and statistics. Along with the color coded editor it is a new concept of using a programmable calculator.

    // Vector, Matrix in variable
    [ 1 2 3 ] "Vector " +
    sto.v1
    [ [ 3 2 1 ]
      [ 1 0 2 ] ] "Matrix " +
    sto.m1
    
    rcl.v1
    rcl.m1
    
    // Matrix multiplication
    [ [ 1 2 ]
      [ 0 1 ]
      [ 4 0 ] ]
    
    [ [ 3 2 1 ]
      [ 1 0 4 ] ]
    
    *
    
    // solve system of equations
    [ [ 1 2 3 ]
    [ 1 1 1 ]
    [ 3 3 1 ] ]
    
    [ 2 2 0 ]
    
    solve
    
    // Matrix invert
    [ [ 1 2 0 ]
      [ 2 4 1 ]
      [ 2 1 0 ] ] 
    
    inv

    See the pre installed scripts for more examples.

  • Project AI code

    📅 27. März 2021 · Software · ⏱️ 1 min

    AI code is a programmable calculator for Android.
    It is also available within the StockRoom App to support financial calculations.

    AI code supports Forth-style definitions, variables and lamda expressions. As an engineer, I have been using a HP calculator since University and this is how I imagine a modern programmable calculator. The app comes preloaded with lots of example code to try out.
    Use :clearcode to remove all examples, and :defaultcode to restore all examples.

    See also Project AI code update and AI code calculus examples

    AI code @github

    Observe the secret message to find out what AI stands for and enjoy the psychedelic dots while staring at the keys.

← Neuere Beiträge Seite 3 von 6 Ältere Beiträge →
ÜBER

Jürgen E
Principal Engineer, Villager, and the creative mind behind lots of projects:
Windows Photo Explorer (cpicture-blog), Android apps AI code rpn calculator and Stockroom, vrlight, 3DRoundview, BitBlog and my github


Blog-Übersicht Chronologisch

KATEGORIEN

Auto • Electronics • Fotografie • Motorrad • Paintings • Panorama • Software • Querbeet


Erstellt mit BitBlog!