• 0 Posts
  • 14 Comments
Joined 11 months ago
cake
Cake day: September 27th, 2023

help-circle



  • I can only speak for myself. For me it felt really great being able to explore the world having absolutely zero idea of what is what, how much game is left, etc. It is reminiscent of a time when I was a kid and playing a game was exactly like that.

    I even got quite sad when my friend “accidentally” told me

    spoiler

    That a certain action I did locked me into a specific ending unless I did something I probably wouldn’t be able to figure out. Rationally I understand that this is as inconsequential as it gets, but I didn’t even know for sure if there were multiple endings until that point.





  • I’d argue that with their definition of bots as “a software application that runs automated tasks over the internet” and later their definition of download bots as “Download bots are automated programs that can be used to automatically download software or mobile apps.”, automated software updates could absolutely be counted as bot activity by them.

    Of course, if they count it as such, the traffic generated that way would fall into the 17.3% “good bot” traffic and not in the 30.2% “bad bot” traffic.

    Looking at their report, without digging too deep into it, I also find it concerning that they seem to use “internet traffic” and “website traffic” interchangeably.


  • Without knowing any specifics of the TOS or the exact setup beyond what I could gather in this thread: generally speaking they could still send you a bill through email or otherwise.

    After that, if you’re not paying up, they might be able to successfully get the money out of you through court regardless, depending on a few factors. What’s more likely for smaller sums is that they’ll just drop it and ban you though.

    IANAL of course.


  • I think the humor is meant to be in the juxtaposition between “reference” in media contexts (e.g. “I am your father”) and “reference” in programming contexts and applying the latter context to the former one.

    What does “I’m your father” mean if the movie is jaws?

    I think the absurdity of that question is part of said humor. That being said, I didn’t find it funny either.




  • I’m not really sure how to describe it other than when I read a function to determine what it does then go to the next part of the code I’ve already forgotten how the function transforms the data

    This sounds to me like you could benefit from mentally using the information hiding principle for your functions. In other words: Outside of the function, the only thing that matters is “what goes in?” and “what comes out?”. The implementation details should not be important once you’re working on code outside of that function.

    To achieve this, maybe you could write a short comment right at the start of every function. One to two sentences detailing only the inputs/output of that function. e.g. “Accepts an image and a color and returns a mask that shows where that color is present.” if you later forget what the function does, all you need to do is read that one sentence to remember. If it’s too convoluted to write in one or two sentences, your function is likely trying to achieve too much at once and could (arguably “should”) be split up.

    Also on a different note: Don’t sell your ability to “cludge something together” short. If you ever plan to do this professionally or educationally, you will sadly inevitably run into situations where you have no choice but to deliver a quick and dirty solution over a clean and well thought out one.

    Edit: typos