Just your normal everyday casual software dev. Nothing to see here.

  • 0 Posts
  • 91 Comments
Joined 2 years ago
cake
Cake day: August 15th, 2023

help-circle
rss
  • I mean that does seem to make it pretty simple. However, the US imports roughly 460B annually from china, whereas china imports about 165B annually from the US. and China while doesn’t import as much as the US does, it also has vastly diversified it’s imports so while it might hurt losing the US if an embargo did occur, it would harm the US way more. About 14-15% of all imports the US does is from China, the US is only about 7% of China’s overall imports.









  • PikatoLinux@lemmy.mlHow do you backup?
    link
    fedilink
    English
    11 month ago

    for my server I use proxmox backup server to an external HDD for my containers, and I back up media monthly to an encrypted cold drive.

    For my desktop? I use a mix of syncthing (which goes to the server) and windows file history(if I logged into the windows partition) and I want to get timeshift working I just have so much data that it’s hard to manage so currently I’ll just shed some tears if my Linux system fails



  • Mint is another good one, I would probably recommend against their Debian Edition(LMDE 6) though, it sounds good but, it’s their newer system so it doesn’t have all the bugs ironed out yet. I struggled with LMDE when I tried it last summer, which granted a lot of time has passed, but I rarely ever have an issue with their standard Linux Mint releases.


  • if you liked the design of older style windows (think like windows XP), you could look into Q4OS. I use it for my laptop and it’s Debian based so you will have pretty decent support applications wise and it has a pretty simple UI. I had never heard of it prior to a few months ago but I have had no issues with it.

    Being said, I can’t remember if it has UnattendedUpgrades by default, but that program can be configured on any debian based system to allow for automatic updates. It does take a little bit of configuration if it isn’t pre-installed though.



  • PikatoProgrammer Humor@lemmy.mlErrors
    link
    fedilink
    English
    32
    edit-2
    3 months ago

    I hate that I noticed the syntax error on line 263 before I realized what the joke was. (at least I assume that 260 contains a function with a callback meaning it is missing the closing parenthesis)


  • Yeah but it was more so talking about how when Democrats are in power it’s okay to criticize both Democrat and republicans, however once Republicans are in power you’re not allowed to criticize Republicans because the power stigma shifts.

    something that I’ve started noticing as of late as well. If you try to criticize the Republican Party you’ll be met with resistance, arguments and full shutdown leadin to personal attacks, where if you criticize the Democratic Party, they will still disagree with what you say but they’ll at least listen to you.



  • I think a big reason is, people always think it’s an all or nothing migration. Personally I still have a windows install on my system from when I migrated. Sure I can count on one hand the number of times ive had to actually use it, nor have I had to at all in the past few months, but it’s there in case I needed it.

    I think people would be much more apt to do that, if they could realize that you can “try it” and if it doesn’t work then switch back again without much difficulty. Which most user friendly installs support dual booting, and the worse case scenario from it is that Windows decides to nuke the bootloader (which doesn’t happen as much anymore due to it changing to UEFI boot) and then at the end of the day, they still have the windows OS to fall on, and the linux OS still exists, it just doesn’t know its there which is a simple fix with just a google search and a boot repair disk (available on the same install medium that the original install was done with)


  • This is my boat with fish shell at the moment, like I started learning how to make scripts with it, and I very quickly realized that it’s definitely a minority shell, and that it’s not worth it to make scripts for, it’s missing functionality that normal bash has and has zero functionality with existing Scripts so I’m finding myself having to switch to bash anyway for most scripting.

    I never really tried zsh, I might tinker with it if it does have that functionality as that’s the part I really like about fish


  • Practice.

    Practice.

    Practice.

    That’s really the best I can give you. The more you use the commands the easier they come to you.

    Even novices can struggle with the command line. Don’t be afraid to search online for answers. I still need to look up arguments for things that I don’t use daily and I’ve been using Linux for almost 20 years now. Duck duck go and man are your friends.

    One thing that I have found nice is using a shell that remembers what you have typed in the past because sometimes I will remember part of a command but not the whole thing, for example fish shell remembers commands and will start to auto fill commands that are typed as long as I have the beginning of the command correct and as long as I have typed the command in the past, which works wonders when you’re doing similar commands but with different file names or you are trying to remember the more advanced portions of git

    A side note that I want to add regarding alternative shells be aware that every shell has its own strengths and weaknesses, for example fish shell is amazing for auto completion and plug in support, but it’s downside is it’s not compatible with standard bash Scripts and scripting as a whole on it is pretty mediocre