• 0 Posts
  • 52 Comments
Joined 6 months ago
cake
Cake day: February 9th, 2025

help-circle



  • Is this the first time you’ve had the pleasure of using vi/vim? 😄 visudo is a command that locks the sudo file and just opens vi or vim. It’s not a text editor in and of itself.

    Vim is the source of the famous “how do you quit vim”, meme. (:q <Enter>, btw) The interface is completely nonintuitive and has modes. In “edit mode”, all the buttons do different edits to text or move the cursor. That must have been your experience: trying to type in edit mode and getting garbage. You have to enter “insert mode” to type using the I key. Commands to do things like save and quit are started by typing a colon in edit mode. You navigate in edit mode using HJKL as arrow keys.

    To avoid it, set your default editor to nano instead. Nano’s hotkeys are nonsensical to people coming from Windows, but at least they’re displayed on the screen at all times.

    $ export EDITOR=nano


  • Having to install apps manually and figure out dependencies myself because a popular piece of software only officially supports Ubuntu and Debian. No normal human would ever do this. They would go back to Windows. Hell, I still haven’t even gotten one piece of software to work on my new OpenSUSE system yet: Beyond Compare 4. There’s no flatpack for it. The RPM test says all dependencies are satisfied, but when I run the program, nothing happens. I did some web searching, but I haven’t dug too deep yet.

    Why are there so many package managers with such different syntaxes? And why does one repo maintainer decide to call it “package” and another calls it “package4”? Or some entirely different name! It’s maddening. I’ve had to create empty proxy packages that translate package names just to install some RPM file. Again, the average person is not going to do this.

    In KDE plasma, the first thing most people do is set up Wi-Fi on their computer, but you need to set up KWallet first or else the password gets stored in some other dimension. I accidentally typed my Wi-Fi password wrong, and I couldn’t for the life of me figure out how to clear it out and make it ask me for the proper password when I try to connect. I even went into network manager and switched the network to say, “ask me every time”. It wouldn’t! It would just sit there and hang on “authenticating”. I never did figure it out. I ended up forgetting to encrypt my system partition, so I simply reinstalled the OS.














  • You didn’t read closely enough.

    “Replit QA’s it itself (super cool), at least partially with some help from you … and … then you push it to production — all in one seamless flow.”

    Replit is an agent that does stuff for you including deploying to production. If someone don’t want to use a tool like that, I don’t blame you, but it was working as it is supposed to. It’s a whole platform that doesn’t cleanly separate development and production.