• 0 Posts
  • 21 Comments
Joined 2 months ago
cake
Cake day: February 14th, 2025

help-circle









  • LeninOnAPrayer@lemm.eetolinuxmemes@lemmy.worldIt's that simple
    link
    fedilink
    English
    arrow-up
    0
    ·
    edit-2
    19 days ago

    I don’t wanna be a politics guy in a Linux sub. But this is not just a problem with Windows or even the choice of software. This is a fundamental problem with capitalism and won’t simply go away if every company suddenly replaced every OS with Linux. The same material incentives would still exist. Look at what Android OS has become. Would it be better for nerds like us? Sure. But software freedom goes hand in hand with the economic structures and incentives of our economic system. Windows is used because of how unfriendly it is. Linux is not used because of how much freedom it gives the end user. And if it is used it’s a special packaged restricted version of Linux.

    If you happen to be a economics nerd and a Linux nerd I can’t recommend this video enough. There is too much to be said on how we got to this state we live in today in a single comment.

    https://youtu.be/oLLxpAZzy0s



  • LeninOnAPrayer@lemm.eetolinuxmemes@lemmy.worldIt's that simple
    link
    fedilink
    English
    arrow-up
    0
    ·
    edit-2
    19 days ago

    Having to use windows 11 for work for the last few years.

    (1) Randomly a program on the taskbar just has an invisible icon. Like you can click it but if you don’t know it’s there it just seems like that program is gone. I keep waiting it to be fixed after every forced update 3-4x a week. Still happening.

    (2) Sometimes the entire process just disappears graphically. Not even an invisible icon on the task at. Still running in the background but it’s gone in the UI. Have to manually kill it or restart.

    (3) I can’t unzip multiple ZIP files at the same time. Like I can’t select multiple ZIP files and extract them all into their own folder. Something that worked since I’ve used windows. Worked on windows 10, 7, and XP. It now just unzips only the file you right click even if multiple are selected.

    I’m sure there are more but I avoid using windows and mostly just use it to connect to a work VPN and SSH into my redhat VM. Still, all 3 of these really common issues have existed for at least two years. The first two are constant on MS teams and Outlook. Literally no excuse, they are windows apps. Total garbage OS.


  • My only windows is force upon me as my work laptop. I sadly actually work for Microsoft. I literally only use it to SSH to my virtual machine running redhat.

    Microsoft really enjoys forcing updates at the worst time when their employees are trying to work. Sometimes it literally just makes me stop working for that day. Their loss.








  • LeninOnAPrayer@lemm.eetoLinux@lemmy.mlHappy with my bash progress!
    link
    fedilink
    English
    arrow-up
    0
    ·
    edit-2
    2 months ago

    Yes. You’re correct. The script will execute with /bin/bash by default but only in a bash shell. #!/bin/bash is still a good habit to have. Some platforms may be running an “sh” shell by default. In this case if you ran the script it would execute with /bin/sh instead. Which would work or not work depending on if your script was written in purely sh syntax and not using any uniquely bash style syntax.

    Bash can run all sh scripts but sh cannot run all bash scripts. So explicitly stating for which one your script was written for is good practice to not run into errors if you move your script to a different environment.