Damn I should do this. I’ve gotten “Dear ${name}” before tho
- 1 Post
- 21 Comments
Tbh at the moment I just have an idea, tell everyone about it, and I have no energy for it for 2 weeks and forget about it. It’s more frustrating because you don’t even get the satisfaction of starting anything and seeing the early rapid progress before ditching it
gerryflap@feddit.nlto Games@lemmy.world•Stardew Valley dethrones Valve classic Portal 2 as Steam’s top-rated gameEnglish1·10 days agoPersonally I’d say that “always striving for the maximum and stressing myself out” is a personality trait that’s not only a problem in Stardew Valley for me haha. I’m o it’s not a great mindset to have, but unfortunately it’s a subconscious drive that’s hard to eliminate.
gerryflap@feddit.nlto Games@lemmy.world•Stardew Valley dethrones Valve classic Portal 2 as Steam’s top-rated gameEnglish2·10 days agoI guess it’s just a mindset difference. I’d say me and my friends are all pretty competitive gamers (as opposed to more creative gamers). We tend to play games mostly for the challenge. Also didn’t help that we had just finished our Facorio playthrough. So in our mind we still had “the factory must grow”. So our minds were like “if space -> use space”.
gerryflap@feddit.nlto Games@lemmy.world•Stardew Valley dethrones Valve classic Portal 2 as Steam’s top-rated gameEnglish15·11 days agoWhile I enjoyed it, it was also very stressful. I think we just played wrong. We covered every millimeter of the plot with farms or other useful stuff and then proceeded to be busy for more than half the day with just maintenance. At some point this meant that we never got to explore and often barely had time to go to the stores or talk to the people in the village.
Apart from overcooked it was probably the most stressful game Is ever played and it’s not supposed to be like that
gerryflap@feddit.nlto Games@sh.itjust.works•Founder of Arkane Studios: "I think Gamepass is an unsustainable model that has been increasingly damaging the industry for a decade"; impacts salesEnglish581·15 days agoWe should absolutely avoid it. Subscription services are wreaking havoc in many other parts of the media landscape. The deal is good now because they’re subsidizing the hell out of it, but just like what happened with streaming services the deal will get shittier and shittier until we’re stuck with a horrible deal.
gerryflap@feddit.nlto Technology@lemmy.world•Men are opening up about mental health to AI instead of humansEnglish2·18 days agoPersonally I also ran some distilled versions of DeepSeek locally, though I’d imagine that isn’t really possible for most people.
gerryflap@feddit.nlto Technology@lemmy.world•Men are opening up about mental health to AI instead of humansEnglish91·21 days agoBetter than nothing I guess. Obviously it’s a privacy nightmare. But therapy is hard to reach nowadays and I’ve noticed that many men are reluctant to make that step. It’d be preferable if they did, but if ChatGPT can at least give an outlet for the emotions then it might just save a few people. Seeing men demolish themselves because they’re too ashamed to seek help is something I’ve unfortunately seen quite often. Even though I’m aware of this I’ve still waited till it was way too late because I subconsciously didn’t want to give in to the “weakness”. I hate that men are conditioned this way, it costs lives.
Are you me lol? I did exactly the same, and at some point I started computing how many slides I had to make to make anything larger and I pivoted. My dad didn’t know this stuff but I also ended up at gamemaker
I’ve been using Linux with Nvidia for 10 years and it’s been a constant dumpster fire. The Nvidia driver constantly caused issues over these 10 years, especially during updates. Currently I’m having the issue that the entirety of Wayland, including all open programs, crash when I run out of VRAM because the Linux Nvidia drivers cannot fall back on RAM when running out of VRAM. It’s making my gaming experience very frustrating.
gerryflap@feddit.nlto Technology@lemmy.world•Honda successfully launched and landed its own reusable rocketEnglish1·30 days agoCall me an optimist, but I still hold the hope that we can one day do better as humanity than we do now. Humanity has become a “better” species throughout its existence overall. Even a hundred years ago we were much more horrible and brutal than we are now. The current trend is not great, with climate change and far-right grifters taking control. But I hold hope that in the end this is but a blip on the radar. Horrible for us now, but in the grand scheme of things not something that will end humanity. It might in the worst case set us back a few hundred years.
gerryflap@feddit.nlto Technology@lemmy.world•Honda successfully launched and landed its own reusable rocketEnglish71·1 month agoImo it’s a good thing tho. Spreading our civilization across multiple planets is the only way to guarantee long long term success. Obviously we should also fix the climate change issue (and many others). But still, being spread across the solar system would give our species redundancy. An extinction event on earth like a large meteor strike would no longer be the end.
With mapreduce you should generally have your code written in such a way that that cannot happen. Unless the reduce step is improperly programmed.
Yeah that checks out. Now you’re ready for that massively parallel big data (or sandwich?) processing
As an asexual person this anology is very confusing
For a few files, sure. Idk how I’d use that on the large corporate Java codebase that I usually work with though. Despite all its memory hogging and unnecessary features, IntelliJ also proves remarkably useful when trying to find anything in these mega projects. Features like ctrl + clicking on a method call to get to its definition (even when it is in a different project that I don’t have checked out), the refactoring tools, the debugger, etc are absolutely necessary to get anything done.
Awesome!
gerryflap@feddit.nlto Games@lemmy.world•Cyberpunk 2 is now in preproduction, CD Projekt saysEnglish21·2 months agoOkay but I don’t know anything about the boardgame. I’m judging the game based on the game itself. It’s a cool game set in a cool Cyberpunk world.
No Haskell so I’m not a nerd 😎. Though from the languages I use the most (Java & Python) and other languages I enjoy (Rust, Julia) I can infer that I’m probably a bit of a nerd.
We can clearly see that this design is silly, because it allows for so many invalid states. Yet when we represent some type, let’s say in Java, were so often forced to do this exact same thing. Have variables in a container of which only a certain combination is valid. And then have at most a comment saying “this number is only valid if X is also set” or “if the validity boolean is true”. Luckily Java finally has some ability for the so-called sum types now, just like Haskell’s data types or Rust’s enum types. Imo any language should have this.