Em Adespoton

  • 0 Posts
  • 45 Comments
Joined 2 lata temu
cake
Cake day: 4 czerwca 2023

help-circle


  • The main point is that with a regular backup regime, it doesn’t matter if SSD will lose your data if unpowered for a long time… because a) they won’t be unpowered for a long time (there’s rotation happening here, not archival), and b) you’ll have already hopefully moved off any specific piece of media before MTBF, and if you haven’t, hopefully all your devices don’t fail at exactly the same time.

    So yeah: SSD isn’t for archival purposes. But archival isn’t really what we’re after here, as backup of ALL data is a possibility. It’s not like we have a monk or vellum shortage to worry about.











  • In reality, coding is something you can learn on your own… or not. Colleges are good for teaching computing science and architectural design, but the good ones will assume you already know how to code. The problem of course, is that when you graduate you are unlikely to find a job as a computer scientist or software architect, and will most likely need to spend 5+ years as a junior programmer first.


  • Namanyay, I’m sorry to say, sounds like a relative newbie when it comes to software development. The refrain “junior software developers can’t actually code” has been around as long as software development.

    I remember when Stack Exchange first popped up, senior developers complained “junior developers don’t actually LEARN anything anymore; they just copy code off of Stack Exchange without understanding what it does!”

    And before SE? We were doing the exact same thing in the comp.* newsgroups. And before that? When you started developing something, a senior dev dropped a bunch of books on your desk and said “when you’ve finished reading those, let’s talk.”

    The truth is, ever since libraries have been a thing, the majority of developers have just used the libraries without really understanding what goes on inside them. And that’s not necessarily a bad thing — the entire point of abstraction is so that developers can focus on the stuff they need to get done while ignoring the already solved problems.

    The issues arise when you place code monkeys in software architecture or senior development positions, and they’ve never had the curiosity to read through the header files for those libraries they use, but instead just let Claude code complete their way to functionality. Because then most style guides with teeth go out the window, as there’s no intention behind the choices made.

    And this results in something that really irks (and always has) senior software developers: instead of writing really clean, performant and novel code, those senior devs have to spend all their time doing code reviews and editing and refactoring codebases that nobody else understands.

    Same as it ever was.