• 1 Post
  • 98 Comments
Joined 1 year ago
cake
Cake day: July 24th, 2023

help-circle
  • With the stock installer? Not really. However, technically the installer itself is a very, very minimal windows. Just open up a cmd (with Ctrl + F12 or smth I believe) and you can open notepad from there, meaning you have a graphical file “manager”. And from there you can do things such as executing BIOS installers, which will actually work - even though the WM looks pretty weird, you will be able to use very simple programs just fine - such as cmd, or the Intel BIOS installer.


  • Windows does not really have a version afaik, so I just update it every few months. Debian live is just for visually editing/moving partition in complex setups, and I can fix my Arch install with an installer/live iso that’s months old. It’s just that I don’t want multiple USB-Sticks, and need multiple ISOs at the same time (eg. Arch and debian live for rescuing my installs, or Win 10/11 for new Installs for more tech illiterate people - Win 10 is the “just functions” thing for my father, when we need a laptop for proprietary laptops, and 11 is for other people who need something set up. Additionally, I use Windows’ installer environment to update my Laptops, servers and workstations BIOS.)







  • 30p87@feddit.detoProgrammer Humor@programming.devblahaj
    link
    fedilink
    arrow-up
    5
    arrow-down
    1
    ·
    edit-2
    2 months ago

    Because you would need to know the code for å in all kb layouts, on all OS’s, even in a bare terminal with no way to just open the emoji picker, with or without special keys and no clipboard. Of course, tab completion or globs may help you, but not in all cases.

    Try to select blåhaj.txt in a dir with blåhaj.txt and blahaj.txt present. Easy, ls bl*haj.txt | grep -i blahaj.txt. Now with blåhaj.txt and bløhaj.txt. Not as easy anymore, but doable with tail -n1 or head -n1. Now do it consistently in a script. So you again need to single out the right string, or single char, and >> it into the script so you have the special char. Then you have a component that does not like certain special chars, so you need to escape it. All because one decided to use special chars as a file name/identifier. Using [a-zA-Z0-9-_.:;,]* would be so easy.