• 1 Post
  • 25 Comments
Joined 1 year ago
cake
Cake day: June 9th, 2023

help-circle

  • Bingo. Why did I begin to stink when I hit puberty even though I showered twice daily and lived in a temperate climate? This person makes it sound like no one would stink if they simply never start using deodorant, when the reality is that people start using deodorant because they realize that they stink without it. For centuries, people around the world have used perfumes to cover their BO before (and after) deodorant became available. Why would they need this if they simply don’t use deodorant?

    I also know a woman who swears that you never actually need to wash your hair. Your head will stop producing as much oil and you’ll naturally have beautiful hair. She is a lovely, smart, confident, and attractive woman, but her hair is greasy and stringy AF.









  • 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.







  • 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.





  • 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.