• 0 Posts
  • 20 Comments
Joined 11 months ago
cake
Cake day: August 9th, 2023

help-circle

  • Utter nonsense. Your argument is that because you can imagine a god and spread the idea they are real. The logical conclusion there is that anything you can imagine is equally real. Bigfoot really is wandering around a forest, spaghetti absolutely does grow in trees, and the moon landing was definitely on a sound stage (but they also really landed on the moon because I can picture that too).



  • I’m not convinced. Most magic systems in fiction have rules, meaning they can be scientifically proven and studied. Magic is simply when something falls outside your understanding of how the world works. It’s all about your perspective.

    There’s a part in the Lord of the Rings where Galadriel shows Sam and Frodo a scrying pool. To Galadriel it’s normal, simply the way the world is. To the hobbits it’s magic.

    ‘And you?’ she said, turning to Sam. ‘For this is what your folk would call magic, I believe; though I do not understand clearly what they mean; and they seem to use the same word of the deceits of the Enemy. But this, if you will, is the magic of Galadriel. Did you not say that you wished to see Elf-magic?’






  • This may have been true historically but I’m not sure it still holds up. I switched to Linux Mint as my regular OS a while back and the only driver issue I’ve had was that the installer didnt properly install my wifi card’s proprietary driver (which was working during live boot from usb), so I had to tether to my phone to download the driver through the driver manager. It even installed Nvidia drivers just fine.

    It might still be an issue for more barebones or heavily customisable systems but I’m fairly certain nobody’s recommending people switch to Arch for their first Linux experience.


  • That’ll never work. Say for instance there was a fan fiction community for The Last of Us; is this a gaming community, a TV show community, or a literature community? Really it’s all of the above, so you have to use a more awkward name to fit into one category that doesn’t even fully describe the community.

    No, if you want to categorise communities like that it shouldn’t be done through the name. You’ll need to build a separate tag or label system instead, allowing communities to properly identify with multiple tags.










  • That’s because they’re not necessarily mutually exclusive. The function is being called twice so there’s no way to guarantee the result will be the same both times without knowing what it does under the hood.

    Consider a case where isalpha performs a coin flip, 50% chance each call to return true. The first call returns false so the first condition fails, then the second call returns true so the second condition fails; in 25% of cases neither code block executes.

    You could store the result of the first call in a local variable and reuse it if you really wanted to, but the smart solution is to either use if/else properly or switch to early returns instead.