• 4 Posts
  • 50 Comments
Joined 1 year ago
cake
Cake day: August 22nd, 2023

help-circle




  • brisk@aussie.zonetoLinux@lemmy.mlLaptop for Linux use
    link
    fedilink
    arrow-up
    22
    ·
    edit-2
    1 month ago

    How about MNT Reform or it’s Pocket little brother?

    They get you

    • Full mechanical keyboards, ortholinear if you’re into that
    • Modern components
    • HIGHLY modular and repairable - their main thrust is making messing with your internals accessible
    • No sticky goo coating
    • Cyberdeck aesthetics (esp the Pocket reform)

    They do NOT get you

    • Low price - you didn’t mention a budget constraint
    • Thin. They are chunky kids, though certainly the Pocket reform has a reasonably portable profile


















  • It’s markdown, you should be able to indent your lines by 4 spaces or fence with triple backtics to get code blocks. Your client’s editor may have a button to help

    ```
    $file = Get-Content -Path .\individuals2.txt
    
    foreach ($line in $file)
    {
        Copy-Item -Path .\template.docx -Destination ".\$(2 + $line + '.docs')"
    }
    ```
    

    Becomes

    $file = Get-Content -Path .\individuals2.txt
    
    foreach ($line in $file)
    {
        Copy-Item -Path .\template.docx -Destination ".\$(2 + $line + '.docs')"
    }