• 2 Posts
  • 22 Comments
Joined 1 year ago
cake
Cake day: June 9th, 2023

help-circle

  • In the US, a conductor is the one who checks tickets, makes announcements, and delegates tasks to the crew to help ensure things keep moving on time.

    The locomotive engineer is the one who is “driving” the train. They run the engine and communicate with dispatch and traffic control to keep them informed where this particular train is fitting into the overall juggling act,. They also make every effort to keep things safe (watching for signals, obstructions, etc.).

    I’m not 100% sure if the terminology is different outside of the Us.

    (Source: My father is a 3rd generation locomotive engineer.)







  • I can’t think of any problems I’ve faced in over 3 years. I have an app on my phone that I can use to temporarily disable my Pi-hole if I need to do some testing, but I don’t know if I’ve ever had a situation where the Pi-hole was the source of a problem. Definitely not a maintenance headache. I run an update on it every now and then, but only because I see a notification that there is one, not because there’s something going wrong.



  • It’s my own fault, and the result of 30+ years of muscle memory building up. Plus, while I agree cmd isn’t nearly as powerful as powershell or wsl can be, when I’m in Windows it’s still the fastest way for me to do 90% of the simple things I need to do. I have a long history with it, and a thorough understanding of it, so I don’t really need to think for most of the things I’m doing there.

    If I need to script something, or do anything that seems like it would be annoying to do in CMD, I hop into WSL pretty quickly and get to work with bash or python. The problem I have now is that I’ve developed a little muscle memory there as well… hence my issue with entering ‘ls’ everywhere.





  • You’ll sometimes hear IT people use “Layer 8 problem” which is a reference to the OSI networking model. The model has 7 layers. It starts at layer-1, the physical layer (the literal wires that the signals flow through), and ends with layer-7, the application later (things like http, ftp, etc.).

    “Layer-8” isn’t technically part of the OSI model, but unofficially it refers to the human layer, or the user. When IT people are troubleshooting an issue, trying to identify where in the model the issue is happening, “layer-8” is a tongue-in-cheek way of saying “there isn’t an actual problem… the person is the problem”.

    Another good one is the “ID10T” error (read as “I-D-ten-T”), which looks a lot like “IDIOT” when written down. It means the same thing.




  • I don’t mind. I’m locked into this one because it functions well, handling all of the idiosyncrasies that can be involved in tennis scoring (3 vs 5 game sets, tie breaks, etc.).

    It started as “I could use this for table tennis scoring at our cabin, it can’t be the at hard…” (we use tennis scoring instead of ping pong scoring because we’re all tennis players), but now I just feel like it’s a challenge I want to figure out.



  • Update: I’ve been banging my head against this for another day and have made a bit of progress. I think part of my original problem has to do with CORS issues. I’ve gotten around this by running a local server and navigating to the local html file via http (http://local host:8080/tennis.html) instead of file (file:///drive/path/tennis.html).

    After this, I was running into an error with https. I believed something in the js was forcing redirection to https protocol. I “fixed” this by changing the value of _0x15ea[1] from “https:” to “http:” in the tennis.js file.

    Now, I am able to get the locally saved page to load in a browser, but none of the actions that normally update the score on the scoreboard are working. For example, when loaded from the original website (scorching.com), clicking on the game score (white boxes on right) will increase that player’s score by 1. Likewise, the “z” and “x” keyboard keys will increase the player 1 and 2 scores, respectively. (In case anyone isn’t familiar with tennis scoring, the game score numbers advance through 15, 30, 40…, so don’t be surprised that they aren’t going 1, 2, 3…

    The other things on the page all seem to be working. Just the scoring isn’t working,or the inputs to activate scoring changes aren’t being recognized. (In the browser’s console I can see “scores 1” or “scores 2” being logged, which is the first instruction in the “scores” function, so I know the inputs are being recognized.) Appreciate any thoughts that might help me.