Buddyverse
  • Communities
  • Create Post
  • Create Community
  • heart
    Support Lemmy
  • search
    Search
  • Login
  • Sign Up
Richat@lemmy.ml to linuxmemes@lemmy.world · 2 months ago

Windows 10 Support Ending Soon

lemmy.ml

message-square
104
link
fedilink
20

Windows 10 Support Ending Soon

lemmy.ml

Richat@lemmy.ml to linuxmemes@lemmy.world · 2 months ago
message-square
104
link
fedilink
alert-triangle
You must log in or register to comment.
  • Schiffsmädchenjunge@sh.itjust.works
    link
    fedilink
    arrow-up
    3
    ·
    2 months ago

    sudo touch grass

    • msage@programming.dev
      link
      fedilink
      arrow-up
      4
      ·
      2 months ago

      I love this image too much

    • cmgvd3lw@discuss.tchncs.de
      link
      fedilink
      arrow-up
      1
      ·
      edit-2
      2 months ago

      command not found: touch

      • gnutrino@programming.dev
        link
        fedilink
        English
        arrow-up
        0
        ·
        edit-2
        2 months ago

        What the hell kind of setup are you working with that doesn’t have touch?

        • kurumin@linux.community
          link
          fedilink
          English
          arrow-up
          2
          ·
          2 months ago

          One could say they are out of… touch. 😎

        • Matriks404@lemmy.world
          link
          fedilink
          arrow-up
          0
          ·
          edit-2
          2 months ago

          Probably not Version 7 Unix or anything more modern (ref).

  • kittenzrulz123@lemmy.blahaj.zone
    link
    fedilink
    arrow-up
    2
    ·
    2 months ago

    How about you sudo apt install deodorant and maybe a life :3

    • Ricky Rigatoni@lemm.ee
      link
      fedilink
      arrow-up
      1
      ·
      2 months ago

      Why why would I have apt installed on gentoo

  • Geodad@lemm.ee
    link
    fedilink
    English
    arrow-up
    2
    ·
    2 months ago

    Don’t be elitist. You were a noob once, and someone helped you along the way.

    The more people who leave corporate platforms, the better. Punch up, not down.

    • markovs_gun@lemmy.world
      link
      fedilink
      arrow-up
      2
      ·
      2 months ago

      The meme is poking fun at elitism.

      • Geodad@lemm.ee
        link
        fedilink
        English
        arrow-up
        1
        ·
        2 months ago

        Ah, ok. I’m a bit neurodivergent, so I sometimes miss the tone of memes.

    • haui@lemmy.giftedmc.com
      link
      fedilink
      arrow-up
      1
      ·
      2 months ago

      Last sentence shows you’re the real hero.

    • Billegh@lemmy.world
      link
      fedilink
      arrow-up
      1
      ·
      2 months ago

      someone helped you

      New to the FOSS community, eh? 😉

      • Geodad@lemm.ee
        link
        fedilink
        English
        arrow-up
        1
        ·
        edit-2
        2 months ago

        Been here since Fedora Core 5.

        The FOSS community is awesome, if you hang out on the right IRCs.

        • SmokeyDope@lemmy.world
          link
          fedilink
          English
          arrow-up
          1
          ·
          2 months ago

          The people who voulenteer in the irc chats of the Linux mint help I talked with were so chill and helpful

      • chainysawrs@lemmy.world
        link
        fedilink
        arrow-up
        1
        ·
        2 months ago

        Sometimes you just need to be told to “read the manual”

    • chunes@lemmy.world
      link
      fedilink
      arrow-up
      1
      ·
      2 months ago

      If by “someone” you mean man.

      • Geodad@lemm.ee
        link
        fedilink
        English
        arrow-up
        0
        ·
        2 months ago

        I can name 2 women right off the top of my head who helped me greatly early in my venture into FOSS.

        One is an Ubuntu MOTU on the forums, and the other helps organize the Ohio Linuxfest.

        • chunes@lemmy.world
          link
          fedilink
          arrow-up
          1
          ·
          2 months ago

          https://man7.org/linux/man-pages/man1/man.1.html

          • Geodad@lemm.ee
            link
            fedilink
            English
            arrow-up
            0
            ·
            2 months ago

            That bit of context was missing from your comment. It probably would have savwd you a few downvotes if you had included it to begin with.

            You already had a few when I saw the comment.

            Yeah, the man pages, various forums and LUGs.

  • MTK@lemmy.world
    link
    fedilink
    arrow-up
    1
    ·
    2 months ago

    Yeah? No looking it up, give me a bash script for a ping scan of a subnet with a 24 bit mask.

    • gens@programming.dev
      link
      fedilink
      arrow-up
      0
      ·
      edit-2
      2 months ago

      nmap -sn x.x.0.0/24 I think, was a while. Pure coincidence how I know.

      Edit: no, it’s one less x because 16 is the middle.

      • MTK@lemmy.world
        link
        fedilink
        arrow-up
        0
        ·
        2 months ago

        Close!

      • x00z@lemmy.world
        link
        fedilink
        English
        arrow-up
        0
        ·
        2 months ago

        That’s not a bash script silly.

        • ewenak@jlai.lu
          link
          fedilink
          arrow-up
          0
          ·
          2 months ago

          Just add #!/bin/bash before the code from above.

    • dream_weasel@sh.itjust.works
      link
      fedilink
      arrow-up
      0
      ·
      edit-2
      2 months ago

      #!/bin/bash

      ping 255.255.255.0 > checker &

      sleep 5

      kill “$!”

      grep unreachable checker || echo ‘255.255.255.0’

      ping 255.255.255.1 > checker &

      sleep 5

      kill “$!”

      grep unreachable checker || echo ‘255.255.255.1’

      ping 255.255.255.2 > checker &

      sleep 5

      kill “$!”

      grep unreachable checker || echo ‘255.255.255.2’

      …

      Did I do it coach? 😭

      • MTK@lemmy.world
        link
        fedilink
        arrow-up
        1
        ·
        2 months ago

        You get an A for effort!

    • ihawk@programming.dev
      link
      fedilink
      arrow-up
      0
      ·
      edit-2
      2 months ago

      #!/bin/bash

      for i in 0…254; do ping -c 4 10.0.0.$i &; done

      wait

      Throwing that many background tasks at once is a little risky, but awesome

  • CannedCairn@lemmy.world
    link
    fedilink
    arrow-up
    1
    ·
    2 months ago

    As a 20 year Linux user I cringed at this.

    • console.log(bathing_in_bismuth)@sh.itjust.works
      link
      fedilink
      English
      arrow-up
      1
      ·
      2 months ago

      That’s the purpose

    • Fizz@lemmy.nz
      link
      fedilink
      arrow-up
      1
      ·
      2 months ago

      As a 2 week arch Linux user I related to this meme. In fact I might incorporate this into my personality.

      • reksas@sopuli.xyz
        link
        fedilink
        arrow-up
        1
        ·
        2 months ago

        but why? more users for linux means better linux support for everything

        • Fizz@lemmy.nz
          link
          fedilink
          arrow-up
          1
          ·
          2 months ago

          Sorry if it wasn’t clear but I’m completely joking and not serious.

    • Possibly linux@lemmy.zip
      link
      fedilink
      English
      arrow-up
      0
      ·
      2 months ago

      You are 20 years old?

    • bier@feddit.nl
      link
      fedilink
      arrow-up
      0
      ·
      2 months ago

      Exactly the same, what kind of lame bs is this, the best thing about the Linux community is that people help each other, not for money or fake internet points, but because they are good people.

  • andybytes@programming.dev
    link
    fedilink
    English
    arrow-up
    1
    ·
    2 months ago

    Windows is the virus.

  • slacktoid@lemmy.ml
    link
    fedilink
    English
    arrow-up
    1
    ·
    2 months ago

    I know this is a joke but I genuinely get annoyed by people who seriously believe this.

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

      I mean I do reserve the right to get annoyed when I’m asked for help because windows messed something up and they want it fixed in windows.

      In that cases while perhaps a little less polite and more over the top than I would phrase it the meme’s end at least is valid in my opinion.

      I also very quickly get frustrated when people fail to follow the instructions with a program.

      • slacktoid@lemmy.ml
        link
        fedilink
        English
        arrow-up
        0
        ·
        2 months ago

        I just say I don’t use windows anymore so I can’t help you from the windows side of things.

        And not following instructions are something that needs to be undone slowly. I tend to just point out the instructions they missed and how they could have avoided the whole ordeal if they read that. Unfortunately you need to teach (or unlearn the windows habit) people that in Linux there’s no BS next next next where there’s no useful info given.

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

          I just say I don’t use windows anymore so I can’t help you from the windows side of things.

          And yet they come back again and again :(

          I think the rest I would agree with, I’m just impatient with that.

    • Damage@feddit.it
      link
      fedilink
      arrow-up
      0
      ·
      2 months ago

      the whole 3 or 4 of them?

      • Sunsofold@lemmings.world
        link
        fedilink
        English
        arrow-up
        0
        ·
        2 months ago

        Unfortunately, people like that are an outsized problem wherever they exist. The extremes are often the most visible parts of a group, especially in the world of algorithmic relevance. If you really want to see whatever your group is achieve cultural success, those people are counterproductive.

  • termaxima@programming.dev
    link
    fedilink
    arrow-up
    1
    ·
    edit-2
    1 month ago

    deleted by creator

  • Hyphlosion@lemm.ee
    link
    fedilink
    English
    arrow-up
    1
    ·
    edit-2
    1 month ago

    deleted by creator

  • moving to lemme.zip. @lemm.ee
    link
    fedilink
    arrow-up
    1
    ·
    2 months ago

    Sudo apt install edge

    • Matriks404@lemmy.world
      link
      fedilink
      arrow-up
      0
      ·
      2 months ago

      You mean flatpak install flathub com.microsoft.Edge?

      • moving to lemme.zip. @lemm.ee
        link
        fedilink
        arrow-up
        1
        ·
        2 months ago

        Wait is that real? Why would anyone do that? Omg…I’m gonna vomit brb

        • ocean@lemmy.selfhostcat.com
          link
          fedilink
          English
          arrow-up
          0
          ·
          2 months ago

          I used to like edge. It was a much better choice over chrome and IE.

          • Matriks404@lemmy.world
            link
            fedilink
            arrow-up
            0
            ·
            edit-2
            2 months ago

            I think at least few years ago it was much better for laptops if you cared about your laptop’s battery life (on Windows). Not sure how it’s nowadays, or if it works the same way on Linux.

            I think in the end, if you need Chromium-based browser and want something that is supported by bigger corporation for some reason, you need to decide which company you hate more and use competitor’s product.

          • irmoz@lemmy.world
            link
            fedilink
            English
            arrow-up
            0
            ·
            2 months ago

            Isn’t edge just IE ported to Chromium?

          • moving to lemme.zip. @lemm.ee
            link
            fedilink
            arrow-up
            0
            ·
            2 months ago

            Yea back when windows 10 was just peeking out it seemed great

  • wpb@lemmy.world
    link
    fedilink
    arrow-up
    1
    ·
    2 months ago

    I’m kind of surprised at the number of people taking this post seriously.

    • Richat@lemmy.mlOP
      link
      fedilink
      arrow-up
      1
      ·
      2 months ago

      Lemmy is SRS BUZINESS!!!

    • deltapi@lemmy.world
      link
      fedilink
      arrow-up
      0
      ·
      edit-2
      2 months ago

      Half the people at my local LUG would espouse beliefs like this post unironically.

  • shiroininja@lemmy.world
    link
    fedilink
    arrow-up
    0
    ·
    2 months ago

    This is absolutely top tier

  • Rando@sh.itjust.works
    link
    fedilink
    English
    arrow-up
    0
    ·
    2 months ago

    💯💯💯

  • Jumi@lemmy.world
    link
    fedilink
    arrow-up
    0
    ·
    2 months ago

    Ehm… yes?

    • explodicle@sh.itjust.works
      link
      fedilink
      English
      arrow-up
      0
      ·
      2 months ago

      Excellent. It looks like you’ve already installed Audacity, so next let’s copy over your songs.

  • kibiz0r@midwest.social
    link
    fedilink
    English
    arrow-up
    0
    ·
    2 months ago

    Do not nixos-install me without reason

    Do not uwsm start select me without valor

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.

  • 13 users / day
  • 1.22K users / week
  • 5.77K users / month
  • 9.63K users / 6 months
  • 1 local subscriber
  • 26.3K subscribers
  • 512 Posts
  • 6.8K Comments
  • Modlog
  • mods:
  • zephyr@lemmy.world
  • rtxn@lemmy.world
  • BE: 0.19.11
  • Modlog
  • Legal
  • Instances
  • Docs
  • Code
  • join-lemmy.org