• 0 Posts
  • 35 Comments
Joined 1 year ago
cake
Cake day: June 12th, 2023

help-circle



  • The story seems generic at first, but it goes places later.

    One feature I really liked about this game was that you can adjust the encounter rate, even down to 0%. No in-game consumables or equipment needed, just an option in the menu. If you want to gain a few levels, you can crank it up. If you just want to revisit an old location because you missed an item, you can turn it off.




  • I had never heard of Humane until I read this article. After also reading Engadget’s review of the thing, it sounds like an absolute nightmare to use.

    Maybe I’m too old-school and impatient, but I’ve never been able to make voice assistants work for me. It’s a feedback loop: the assistant fails to do a task, so I become resistant to using it in the future. Even the thing I’ve used an assistant for the most, playing music out of a Nest speaker, seems to still be hit-or-miss after years of trying, and in some ways seems to be getting worse.

    The gestures also sound awful. As with voice assistants, I’ve never gotten comfortable with smartphone gestures beyond the most rudimentary. I strictly use 3-button navigation on my phone, and I use Connect as my Lemmy app of choice because it allows me to disable all the swipe commands for upvote/downvote.


  • I only ever got one ad in RIF, repeated in every spot. I think it was an app for organizing decks in TGCs, but as I don’t play any TGCs, I never bothered to investigate. As with every other ad on the internet, I only interacted with it by accident.



  • I mean, Traveller’s Gate is still good, if a bit unpolished in hindsight. It’s just plain fun, especially if you’re familiar with fantasy and anime tropes, though I recommend keeping a glossary nearby to make the comprehension of the the various terms easier.

    The Last Horizon, the series he’s working on now, is also a lot of fun. It mixes sci-fi and fantasy, and all the main characters are already able to bench-press continents (literally or proverbially), so their development comes via different avenues than Cradle, where Lindon’s personal growth was tied directly to his power level. I wasn’t as enamoured with the second Last Horizon book as I was the first, but it was still good, and unless Will Wight starts writing Nazi propaganda or something I’ll continue to read everything he publishes.




  • Briefly: I didn’t.

    More substantively: I never owned a cell phone growing up, even though I was at the right age when they became a common thing for teenagers to have. It wasn’t a money thing, nor household rule, as my sisters got phones when they were in high school. The biggest reason was probably just how I communicate. I wasn’t big into IM services either, and I preferred email or face-to-face, or a (landline) phone call if it was an urgent matter.

    Then there was also my adolescent brain thinking I was making a bold counter-culture statement by steadfastly resisting the march of technology. In reality, I was probably just being a pain in the neck for my friends and family, and I probably unnecessarily endangered myself at least once.

    I did finally, begrudgingly, get an old hand-me-down flip-phone in my final year of university, but that was out of necessity, and I used it to make maybe only a dozen calls the 2.5 years I had it before getting a smart device.

    To bring it full circle: I did try sending a text message with that flip-phone exactly once, at the insistence of my family. That message was predictably a garbled mess, and to this day my sisters still wonder how I managed to get a number to appear in the middle of the “word”.

    I have a number of other somewhat amusing stories about people’s reactions to my lack of a cellphone, but this post is long enough already.



  • BenVimes@lemmy.catoGames@lemmy.worldHow Greed Ruined Gaming
    link
    fedilink
    English
    arrow-up
    5
    ·
    2 months ago

    Well, there’s the fact that outrage seems to drive more activity than other types of content. YouTube sees it as a more profitable option to advertise a Very Angry Gamer™ to you, even if you aren’t interested. I guess they assume that you’ll find something to watch anyhow, but if they will profit even more of they can hook you into the outrage machine.

    Then there’s my personal hypothesis that in order to enable this, YouTube’s algorithm weights your demographics, subscriptions, and viewing history much more heavily than your manual inputs.


  • My wife and I had this conversation the other day. Our kid is only two right now, but as we’ve learned, these milestones sneak up on you.

    I used my own life as a guide to my opinion, and so landed on age eight or so. That’s around the age I remember being able to go to the park or to a friend’s house within the neighbourhood on my own.

    Other questions about how much functionality the phone would have and how much access they would have to it at home are still to be determined.


  • At least last time I donated blood in my country (Canada), you could discretely indicate “do not use” by applying a different sticker to the bag. This was done in case someone got peer pressured into donating but didn’t want to reveal something private that would have disqualified them otherwise.


  • You are welcome.

    Pointers do make more sense to me now than two decades ago, mostly owing to me being married to a computer scientist. But I always go back the fact that for the purposes of my first year programming course, pointers were (probably) unnecessary and thus confusing. I have a hard time understanding things if not given an immediate and tangible use case, and pointers didn’t really help me when most of my programs used a bare few functions and some globally defined variables to solve simple physics problems.

    EDIT: I’ll also say that pointers alone weren’t what sunk my interested in programming, they’re just an easily identifiable concept that sticks out as “not making sense.” At around the same time we had the lesson on pointers, our programs were also starting to reach a critical mass of complexity, and the amount of mental work I had to do to follow along became more than I was willing to put into it - it wasn’t “fun” anymore. I only did well on my final project because a friend patiently sat in my dorm room for a few hours and talked me through each step of the program, and then fed me enough vocabulary to convince the TA that I knew what I was doing.



  • I am but one man whose only education in programming was a first year university course in C from almost two decades ago (and thus I am liable to completely botch any explanation of CS concepts and/or may just have faulty memories), but I can offer my own opinion.

    Most basic programming concepts I was taught had easily understood use cases and produced observable effects. There were a lot of analogous concepts to algebra, and functions like printf did things that were concrete and could be immediately evaluated visually.

    Pointers, on the other hand, felt designed purely of and for programming. Instead of directly defining a variable by some real-world concept I was already familiar with, it was a variable defined by a property of another variable, and it took some thinking to even comprehend what that meant. Even reading the Wikipedia page today I’m not sure if I completely understand.

    Pointers also didn’t appear to have an immediate use case. We had been primarily concerned with using the value of a variable to perform basic tasks, but none of those tasks ever required the location of a variable to complete the calculations. We were never offered any functions that used pointers for anything, either before or after, so including them felt like busywork.

    It also didn’t help that my professor basically refused to offer any explanation beyond a basic definition. We were just told to arbitrarily include pointers in our work even though they didn’t seem to contribute to anything, and I really resented that fact. We were assured that we would eventually understand if we continued to take programming courses, but that wasn’t much comfort to first year students who just wanted to pass the introductory class they were already in.

    And if what you said is true, that later courses are built on the assumption that one understands the function and usefulness of pointers despite the poor explanations, then its no wonder so many people bounce off of computer science at such a low level.