• 0 Posts
  • 8 Comments
Joined 2 years ago
cake
Cake day: June 20th, 2023

help-circle
  • A degree will help you get in the door and it will teach you the theory behind the practice, which is helpful for the problem solving parts.

    Other than that, read good code and write lots of code, even if it’s crap, as long as you’re learning from your mistakes. Experiment and venture outside your comfort zone. Don’t focus too much on leet coding.

    Contribute to open source if you can. I’m always happy to see a candidate with a solid GitHub profile, where I can see actual code that they wrote. It will also teach you to collaborate with others.

    But mostly: stay curious, and don’t stop learning.



  • You can still do that on Linux. Just download it and run. You can even compile it from source if that’s your thing.

    However, because there is a much greater variety of Linux distros and dependencies compared to Windows or MacOS versions, it’s better to either have a Flatpak, AppImage, or package from your distro’s repo. That way you’re ensured that it will work without too much fiddling around.





  • folekaule@lemmy.worldtoProgrammer Humor@lemmy.mlOld timers know
    link
    fedilink
    English
    arrow-up
    9
    ·
    edit-2
    9 months ago

    It depends. I’ve done it a few different ways:

    • YOLO: especially with thugs like PHP you only affect one page at a time and with low traffic the odds of a problem is small
    • Maintenance page: temporarily show a page. Some servers like IIS have this built in. Otherwise it’s a simple update to httpd conf
    • In a cluster environment, just take the node you’re updating out of rotation, and only update one node at a time.
    • Copy and switch like you suggested. Can be combined with any of the above and is a smart move if upload is slow or can be interrupted, or it’s cumbersome to restore the old files

    Edit: spelling