ekk
  • N
    13
    0

    Eh. Genx understood how to work a VCR and deal with the rat's nest of cables behind the TV

    Computers are millennials

  • V
    2
    0

    Even Skynet will forget Gen X, trust me.

  • zombiepirate@lemmy.worldZ
    1
    0

    Here's your regulation issue avocado toast and collapsed economy. Oh, I see you've already got one of those. Welcome aboard!

  • cidvicious@sh.itjust.worksC
    5
    0

    There are nerds in every generation.

  • robolemmy@lemmy.worldR
    3
    0

    Utter BS. I’m on the old end of Gen X and I’m still building PCs for people and troubleshooting their shit when it breaks. I have yet to meet a much younger person who can do it as well.

  • Y
    1
    0

    Deletes entire hardrive.

    Installs arch Linux.

    "OK it's fixed, gotta go, see ya!"

  • Z
    1
    0

    People can be exceptions to the norm. Most GenX we all interact with are as hopeless as the boomers.

  • moseschrute@lemmy.worldM
    15
    0

    Let’s settle this once and for all.

    I’m Gen Z. Quiz me on how computers work.

    Edit: I bet I can run circles around some of you millennials 🙂

  • S
    2
    0

    Though i’m the very tail end of genX and a “computer expert”, I pretty much think that the millennial generation being the only generation was all part of a solid de-education plan. At the rate we’re going Its only a matter of time where the tech we have today is forced to be only approved OS, controlled, monitored and IT capable people who know how to bypass will be arrested for violating the law.

    The water is starting to get warm…

  • P
    3
    0

    Younger GenX are basically Millenials (but cooler and less uptight), and older GenX are basically Boomers (but nastier and louder).

  • linkinkampf19@lemmy.worldL
    1
    0

    41 myself and the future scares me for too many reasons, this definitely being one of them.

  • S
    119
    0

    I had home computers 10 years before the internet really hit.

  • V
    36
    0

    No we're not!!

  • V
    36
    0

    How does computers work?

  • korne127@lemmy.worldK
    3
    0

    It’s funny how bubbles can change so much. In my personal experience, most Gen Z people know their way around computers and how to fix stuff. I regularly help my millennial sister with stuff like that.

  • jaymesrs@piefed.worldJ
    2
    0

    Chromebooks and iPads as the primary devices in schools have hurt the kids in my opinion. Too locked down to allow for exploration.

  • W
    3
    0

    Older Millenial here. It was definitely GenX that paved the way for the computer world I learned, and it was mostly GenX who wrote the books and taught the lessons (often informal) that brought us what knowledge we have, at least in the beginning. Plus a small selection of exceptional individuals from older generations, including, dare I say it,… the baby boomers.

  • P
    28
    0

    Gen X, Millennials, Gen Z, etc. are marketing bullshit that need to stop being used in the common lexicon.

  • C
    6
    0

    Oh you know computers? Name every group policy.

  • moseschrute@lemmy.worldM
    15
    0
    • The lowest level is transistors, which are electronic switches that have an on and off state. In other words, they are binary and can represent 0 and 1
    • Those get combined into gates of two inputs. An “and” gate outputs 1 if both its inputs are 1. An “or” gate outputs 1 if either of its inputs are 1. And Xor gate outputs 1 if and only if one of its inputs is 1.
    • A bunch of other complicated shit happens
    • Boom assembly. Don’t try and read or write it, because it will make you wanna quit computers
    • C comes into play. Designed to unfuck, assembly so you can actually write readable code. Just don’t forget to release your memory
    • More complicated shit. Something about kernels and GNU. Userland vs kernel land? Idk
      • ARM might be different since it can run process outside of userland and kernel I think? Something about secure compute/marketing BS
    • Inside of user land, we have the web browser. This is there the cool shit happens.
    • The browser runs JavaScript, CSS and HTML. JavaScript is a single threaded, but nonblocking language with an even loop and microtask queue.
    • Inside of the browser we run React. React is a framework where UI is a function of state and the data flows in one direction. It can also be used to slam your CPU.
    • Now that we’re into high level languages, it would only be fun if it looped back around to the beginning. So we invoke some C code that has been compiled to web assembly. Mmmm how efficient

    Edit: I tried to do this all off the top of my head. After writing this, I think I meant user space vs kernel space. Idk if user land is a word