you’re high on mushrooms in the Viking age, the gods are everywhere

  • 0 Posts
  • 19 Comments
Joined 8 months ago
cake
Cake day: February 19th, 2024

help-circle


  • Comp sci undergrad from a mid tier university graduated in 2012, didn’t need Windows at all. I mostly used an Ubuntu desktop, pocket sized mini laptop with bsd, and a red hat vdi the school provided during a research assistantship.

    The school had labs in the library and comp sci building if you needed windows for something but it never came up. Group projects shared files on school provided web based tools or dropbox and used the same for class forums, sharing docs and assignments, etc. Some web stuff was broken for Firefox and had to use chrome, but never hit anything requiring IE (pre Edge).

    Even if you’re not in a technical field you may want to explore some of the common tools they use like git for version control (like save/restore points in a video game), LaTeX/TeX for better typesetting than office, and off-site backups.















  • Not op but guessing she had an idea from media like TV shows and movies that make technical jobs seem much more exciting for entertainment over realism. Crises are usually more Jerry accidentally deleted a directory and we need to recover some files and establish safe guard procedures to prevent it from happening again or this thing broke that nobody even knew existed so we gotta figure it out and less type fast enough to save the mainframe from l33t hackers.


  • I think the general idea would be to take the original const, and create a new const with the new location applied. Destroy the original when it’s no longer needed or scoped. State maintained through parameters passed to the move function e.g. move(original const, new location) -> new const object instead of stateful members in the object like move(mutable, new location) -> updated mutable.