• 0 Posts
  • 42 Comments
Joined 1 year ago
cake
Cake day: July 8th, 2023

help-circle

  • I think it’s important to know that this program is for code developers, and the issue here is with a tool called git. Git is like file saving on steroids, because on top of saving a single file, you save many changes to files in git, add a comment for why you made those changes, and share your changes across dozens of files with other developers.

    What this guy did was develop for many months after starting to use git, but he never actually committed the files. Then he asked for to reset everything back to the original state, something that I do multiple times a day, and it gave him a warning that original means original and you will lose everything. And he said do it anyways.







  • It might be too late, but if you have your license renewed tell that to the judge. They will ask you how do you plead, I wouldn’t try to pull any shit with the not guilty plea. Just say you plead guilty, it was a mistake, and you renewed it immediately.

    I had my state inspection expire and it was dismissed by the judge. Just dress nice, be respectful, and tell them it happened and you fixed it ASAP. You will still have to pay a court fee, so you won’t get out of jail free, but not having points on your license is worth it.

    At the end of the day, most judges just want to see that there wasn’t a nefarious reason you didn’t have a valid drivers license. If you were able to renew it, no harm no foul.






  • To actually answer your question, you need some kind of job scheduling service that manages the whole operation. Whether that’s SSM or Ansible or something else. With Ansible, you can set a parallel parameter that will say that you only update 3 or so at a time until they are all done. If one of those upgrades fails, then it will abort the process. There’s a parameter to make it die if any host fails, but I don’t recall it right now.


  • There used to be a saying that Intel had a vault where they paid out the next ten years of CPU tech, so when they invented something new they put it there so they could make profits and control the advancement.

    Now, I’m not sure which thing they got wrong, but if it was true, I think Intel was probably caught off guard by all the speculative execution security issues and the GPU revolution (blockchain and AI).


  • If I see comments explaining every other line, especially describing “what” instead of “why”, I assume the code was written by a recent grad and is going to be bad. Describing what you are doing looks like you are doing a homework assignment.

    Like on that line, obviously we’re initializing a variable, but why 1 instead of 0? Could be relevant to a loop somewhere else, but I guess I’ll have to figure that out by reading the code anyways.