Poeng.link
  • Communities
  • Create Post
  • heart
    Support Lemmy
  • search
    Search
  • Login
  • Sign Up
lapislazuli@sopuli.xyz to linuxmemes@lemmy.world · 6 months ago

Who would have guessed?!

sopuli.xyz

external-link
message-square
111
link
fedilink
1.29K
external-link

Who would have guessed?!

sopuli.xyz

lapislazuli@sopuli.xyz to linuxmemes@lemmy.world · 6 months ago
message-square
111
link
fedilink
  • TabbsTheBat (they/them)@pawb.socialBanned
    link
    fedilink
    arrow-up
    35
    ·
    edit-2
    4 months ago

    Removed by mod

    • stev3yd@sh.itjust.works
      link
      fedilink
      arrow-up
      31
      ·
      6 months ago

      im still stuck in vi hell… help… cannot exit program

      • LostXOR@fedia.io
        link
        fedilink
        arrow-up
        23
        ·
        edit-2
        2 months ago

        deleted by creator

        • Lembot_0001@lemm.ee
          link
          fedilink
          arrow-up
          14
          ·
          edit-2
          5 months ago

          deleted by creator

        • ѕєχυαℓ ρσℓутσρє@lemmy.sdf.org
          link
          fedilink
          arrow-up
          2
          ·
          6 months ago

          I usually shut off the mains.

        • Ziglin (it/they)@lemmy.world
          link
          fedilink
          English
          arrow-up
          2
          ·
          6 months ago

          Nuh uh, I gave it access to a 3d printer and it boxed me in while I was sleeping.

          • techt@lemmy.world
            link
            fedilink
            arrow-up
            1
            ·
            6 months ago

            I mean it’s on you to manage boxing and unboxing in your projects

      • TabbsTheBat (they/them)@pawb.socialBanned
        link
        fedilink
        arrow-up
        11
        ·
        edit-2
        4 months ago

        Removed by mod

      • Drew Belloc@programming.dev
        link
        fedilink
        arrow-up
        8
        ·
        6 months ago

        Dude, just reboot the machine, as long as vi is not autostarting you should be good

        • the_crotch@sh.itjust.works
          link
          fedilink
          arrow-up
          9
          ·
          6 months ago

          I added vi to startup and I can’t modify my startup items because I can’t figure out how to save in vi

          • Drew Belloc@programming.dev
            link
            fedilink
            arrow-up
            14
            ·
            6 months ago

            I’m sorry, but i can’t save you anymore. I promise to remeber you until my last day on earth

          • DickFiasco@lemm.ee
            link
            fedilink
            arrow-up
            5
            ·
            6 months ago

            Is this what they call a boot loop?

      • limerod@reddthat.com
        link
        fedilink
        arrow-up
        5
        ·
        6 months ago

        That’s why you install Emacs and never look back. Everything you need in one program. No need to exit at all.

        • varyingExpertise@feddit.org
          link
          fedilink
          English
          arrow-up
          3
          ·
          6 months ago

          I think there’s even an editor in there, at least one of the old greybeards at work said something to that effect.

          • limerod@reddthat.com
            link
            fedilink
            arrow-up
            2
            ·
            6 months ago

            There is, I’m pretty sure of it. But, I can’t remember where?!

      • juipeltje@lemmy.world
        link
        fedilink
        arrow-up
        4
        ·
        6 months ago

        The only thing i know about vi is how to exit it lol.

        • GoodLuckToFriends@lemmy.todayBanned
          link
          fedilink
          English
          arrow-up
          6
          ·
          edit-2
          4 months ago

          Removed by mod

          • Laser@feddit.org
            link
            fedilink
            arrow-up
            8
            ·
            6 months ago

            Yes, :q! in normal mode to exit without saving changes.

      • IrateAnteater@sh.itjust.works
        link
        fedilink
        arrow-up
        4
        ·
        6 months ago

        All jokes aside, why do people even bother with vi?

        • TabbsTheBat (they/them)@pawb.socialBanned
          link
          fedilink
          arrow-up
          13
          ·
          edit-2
          4 months ago

          Removed by mod

          • Monstrosity@lemm.ee
            link
            fedilink
            English
            arrow-up
            3
            ·
            6 months ago

            People use Vim to look cool?

            It’s a brave new World.

            • TabbsTheBat (they/them)@pawb.socialBanned
              link
              fedilink
              arrow-up
              3
              ·
              edit-2
              4 months ago

              Removed by mod

              • quincunx@lemm.ee
                link
                fedilink
                English
                arrow-up
                1
                ·
                6 months ago

                And about that, whats the best discords for linux people

          • prole@lemmy.blahaj.zone
            link
            fedilink
            arrow-up
            1
            ·
            6 months ago

            Why is it better than just using nano or whatever?

            • TabbsTheBat (they/them)@pawb.socialBanned
              link
              fedilink
              arrow-up
              2
              ·
              edit-2
              4 months ago

              Removed by mod

        • davad@lemmy.world
          link
          fedilink
          arrow-up
          9
          ·
          6 months ago

          It’s powerful, lightweight, and ubiquitous. If you do sysadmin work, remote into a random machine, and need to update a config file, it probably has vi installed already. It’s also extensible enough to use as a full IDE.

          Personally, I like it because of how fast it feels and because I can do everything while keeping my hands on the home row of the keyboard.

          • zenforyen@feddit.org
            link
            fedilink
            arrow-up
            10
            ·
            edit-2
            6 months ago

            Software developer here.

            I only recently switched from vim to VSCode and I refuse to use any editor without vim emulation.

            Regular expressions for quick and efficient and precise search and replace, modal editing which allows me to type di" to ‘delete inside current double quotes’ (needs vim-surround plugin), typing 123gg to go to line 123, press % to switch between any pair of marching braces, brackets or parentheses, and all sorts of such efficient goodies.

            It’s not only efficient, vi has a whole concept, a philosophy how you can build quick editing commands. It’s not like remembering random shortcuts like Ctrl-C Ctrl-V. Once you understand the language, it becomes second nature and you can translate something you want to do into 5 key strokes which would need 100 otherwise or would involve the mouse and clicking and selecting etc.

            I’m not even that good at vim, I’m just using the surface features.

            It has very good reasons why every notable editor provides some form of vi editing emulation.

        • Luffy@lemmy.mlBanned
          link
          fedilink
          arrow-up
          6
          ·
          edit-2
          5 months ago

          Removed by mod

    • Monstrosity@lemm.ee
      link
      fedilink
      English
      arrow-up
      9
      ·
      6 months ago

      Absolutely! I never break my system the same way twice.

      • TabbsTheBat (they/them)@pawb.socialBanned
        link
        fedilink
        arrow-up
        4
        ·
        edit-2
        4 months ago

        Removed by mod

        • Monstrosity@lemm.ee
          link
          fedilink
          English
          arrow-up
          3
          ·
          edit-2
          6 months ago

          If you haven’t already, try Flatseal, it’s a gui to deal w/ Flatpak permission (such a PITA).

          The last time I broke my system, it was because I removed a folder called /home/monstrosity/home/monstrosity/.

          When I deleted the weird duplicate home folder, it broke the entire desktop environment & I had to use the terminal to log in and reinstall. I have no idea which of my numerous ‘fucking around’ sessions caused any of it lol

    • cRazi_man@lemm.ee
      link
      fedilink
      arrow-up
      5
      ·
      6 months ago

      I’m getting better at finding new ways to break my installation. Now I don’t mess with things and just use it as is. Might start messing with stuff on my laptop rather than PC so I can mess up there instead.

    • kevlar21@lemm.ee
      link
      fedilink
      arrow-up
      3
      ·
      6 months ago

      Not me! It’s been too reliable and everything that I need works fine without much effort at all, so I never get any experience troubleshooting or using the command line.

      • TabbsTheBat (they/them)@pawb.socialBanned
        link
        fedilink
        arrow-up
        3
        ·
        edit-2
        4 months ago

        Removed by mod

linuxmemes@lemmy.world

linuxmemes@lemmy.world

Subscribe from Remote Instance

Create a post
You are not logged in. However you can subscribe from another Fediverse account, for example Lemmy or Mastodon. To do this, paste the following into the search field of your instance: !linuxmemes@lemmy.world

Hint: :q!


Sister communities:
  • !tech_memes@lemmy.world
  • !memes@lemmy.world
  • !lemmyshitpost@lemmy.world
  • !risa@startrek.website

Community rules (click to expand)

1. Follow the site-wide rules
  • Instance-wide TOS: https://legal.lemmy.world/tos/
  • Lemmy code of conduct: https://join-lemmy.org/docs/code_of_conduct.html
2. Be civil
  • Understand the difference between a joke and an insult.
  • Do not harrass or attack users for any reason. This includes using blanket terms, like “every user of thing”.
  • Don’t get baited into back-and-forth insults. We are not animals.
  • Leave remarks of “peasantry” to the PCMR community. If you dislike an OS/service/application, attack the thing you dislike, not the individuals who use it. Some people may not have a choice.
  • Bigotry will not be tolerated.
3. Post Linux-related content
  • Including Unix and BSD.
  • Non-Linux content is acceptable as long as it makes a reference to Linux. For example, the poorly made mockery of sudo in Windows.
  • No porn, no politics, no trolling or ragebaiting.
4. No recent reposts
  • Everybody uses Arch btw, can’t quit Vim, <loves/tolerates/hates> systemd, and wants to interject for a moment. You can stop now.
5. 🇬🇧 Language/язык/Sprache
  • This is primarily an English-speaking community. 🇬🇧🇦🇺🇺🇸
  • Comments written in other languages are allowed.
  • The substance of a post should be comprehensible for people who only speak English.
  • Titles and post bodies written in other languages will be allowed, but only as long as the above rule is observed.
6. (NEW!) Regarding public figures

We all have our opinions, and certain public figures can be divisive. Keep in mind that this is a community for memes and light-hearted fun, not for airing grievances or leveling accusations.

  • Keep discussions polite and free of disparagement.
  • We are never in possession of all of the facts. Defamatory comments will not be tolerated.
  • Discussions that get too heated will be locked and offending comments removed.

 

Please report posts and comments that break these rules!


Important: never execute code or follow advice that you don’t understand or can’t verify, especially here. The word of the day is credibility. This is a meme community – even the most helpful comments might just be shitposts that can damage your system. Be aware, be smart, don’t remove France.

Visibility: Public
globe

This community can be federated to other instances and be posted/commented in by their users.

  • 452 users / day
  • 2.51K users / week
  • 6.22K users / month
  • 17.6K users / 6 months
  • 1 local subscriber
  • 27.5K subscribers
  • 915 Posts
  • 20.9K Comments
  • Modlog
  • mods:
  • zephyr@lemmy.world
  • rtxn@lemmy.world
  • BE: 0.19.11
  • Modlog
  • Instances
  • Docs
  • Code
  • join-lemmy.org