Does anyone else here participate in the selfhosting hobby without a formal IT related education or a career in a similar field? I’ve only had one or two programming courses as part of my university education, but it was only very basic Python and C. I’ve never formally learned how to use containers, version control or anything else. Sometimes I regret not pursuing an education in IT/programming because there are so many things I’d like to accomplish but can’t (for example if there’s a feature missing in some project, or to feel safe in my abilities to harden my servers and my network in order to expose services to the open internet).

  • hefty4871@lemmy.ca
    link
    fedilink
    English
    arrow-up
    12
    ·
    2 days ago

    Never in an IT profession, but I did show a colleague how to cut and paste using keyboard shortcuts and he asked if used to work in IT.

  • RedEye FlightControl@lemmy.world
    link
    fedilink
    English
    arrow-up
    4
    ·
    1 day ago

    I’m a 26 year veteran systems / infrastructure engineer and often work on large scale data / server migration projects. My homelab is larger and more robust than 95% of the client sites I service; everything is enterprise class hardware and software. I self host my own RMM, VPN, and various data and entertainment services. Most of the things I run here are to make my life better or easier for myself and my family.

    My formal education is in business administration; I did not go to school specifically for an IT Degree. It’s just something I love. I went to school to understand the business side of the thing I love, which has been very helpful. If you find a job doing what you love, work can feel like an accomplishment instead of a burden.

    Never stop learning!

  • Dumbkid@lemmy.dbzer0.com
    link
    fedilink
    English
    arrow-up
    3
    ·
    2 days ago

    Have a server and 2.5gbe network setup, have my own custom router, 2 small game servers and one big media server(240tb). Never had any sort of IT or networking job. This is just fun to do things never worked in the field

  • billwashere@lemmy.world
    link
    fedilink
    English
    arrow-up
    4
    ·
    edit-2
    2 days ago

    I imagine most people that do this are already IT professionals. Or if they can do this they should be IT professionals. The difference between what I get paid to do and self-hosting is generally the scope and cost of the hardware. That’s about it.

  • darntootin@lemmy.world
    link
    fedilink
    English
    arrow-up
    6
    ·
    2 days ago

    I’ve been in film/television/video production my entire career. It’s a creative field that also relies heavily on ever-changing technology, so I’m not too outside of a tech field. But I’ve always been a geek. Eventually the enshittification comes for us all, and I said, fuck this, I’ll just figure out my own music server. Then, I’m gonna support the right to repair (Framework). I’ll use Linux, I’ll focus on privacy. And then it snowballed…and now I’m just the meat bag that keeps the 42U rack in my basement working :)

  • daniskarma@lemmy.dbzer0.com
    link
    fedilink
    English
    arrow-up
    8
    ·
    2 days ago

    I professionally work in IT without formal education or any related career. It’s one field where you can really teach everything yourself with free online resources.

    In fact my self hosting journey has taught me things that were later useful for work. I consider it part of my informal education.

  • Thrashin_Victim@lemmy.world
    link
    fedilink
    English
    arrow-up
    4
    ·
    2 days ago

    I learned everything I know in IT from tinkering/research. Higher education was absolutely worthless for my IT career, but at least it was free and I didn’t get myself into debt. Of course I got into computers in 1994 when people started buying home computers.

    • Strider@lemmy.world
      link
      fedilink
      English
      arrow-up
      5
      ·
      2 days ago

      Was going to say this, I’m a professional too beginning without formal training (whatever exactly thst covers). Did some certificates and stuff later on which may or may not still be relevant (due to specific fields).

  • KlavKalashj@lemmy.world
    link
    fedilink
    English
    arrow-up
    7
    ·
    2 days ago

    Yes. I have no education at all in IT. I have a masters in classical double bass and a career as a musician, working in an opera house now. Computers have always been a hobby and was my second choice for “life path”. Could have easily been the other way around, professional nerd and amateur musician. I am very happy as is, though.

  • D_Air1@lemmy.ml
    link
    fedilink
    English
    arrow-up
    10
    ·
    2 days ago

    It’s always interesting when someone asks this question because while I do have a formal education in computer science. I’ve had this hobby since before I had that formal education. Linux and self hosting are what made me pursue the formal education part and not the other way around.

    • Lemmert@reddthat.com
      link
      fedilink
      English
      arrow-up
      2
      ·
      2 days ago

      That’s funny since I didn’t even know what Linux was when I started my CS education, nor that there were so many services you could host yourself. I was egged on to try Linux and (eventually) get a small homelab by my uni friends, who were probably more like you

  • foggy@lemmy.world
    link
    fedilink
    English
    arrow-up
    17
    arrow-down
    1
    ·
    edit-2
    3 days ago

    I’m gonna speak generally and it doesn’t quite generalize. Sue me.

    Formal education in computer science is a waste, unless you want to be in academia. A formal education in computer science will either prepare you for higher education in Computer Sciences, or it will drill into you some best practices on how to be a good programmer. You can get the latter through brute force for free.

    That said, I have a formal CS education. It has helped my career 0. I’m 10 years into my career and am the 1 man cybersecurity team (plus my boss and my coworker who does most of our networking stuff unless he’s too busy, then that’s me as well) for a fleet of ~4000 devices across ~1500 folks.

    I have never once needed to explain to someone what von Neumann architecture is, and how it differs from Harvard. I have never once needed to explain two’s compliment or how to represent negative numbers in binary. Knowing what an xor swap is and why it’s used has only helped me solve a leetcode problem exactly ONE TIME. I have explained to many people what P vs NP is (no your suno track will not be the next cultural phenomenon) but nobody cares.

    The stuff that did serve me was like, making the card game of war in Java. Even the GUI. That’s a project I would have never done because who TF would. But it forces you to implement recursion (war within a war), it entails some good validation checking practices, etc. the truth is though, I did not need a college education for that project.

    At the end of the day, technical projects teach technical skills. Not PowerPoints based on textbooks.

    If you wanna learn how to harden your servers, I recommend freemium hands on learning platforms like tryhackme or hackthebox.

    Hack the box has a module on server hardening. It’s my go to for hardening servers. Happy to share the bullet points. It’s not too much. Basically just disable root auth, disable ssh except key-based, enable MFA (I use authelia) and you’re harder than 90% of boxes in the wild. Then just setup Fail2ban and you’re more or less golden for a home server.