• 0 Posts
  • 40 Comments
Joined 1 year ago
cake
Cake day: July 14th, 2023

help-circle
  • Those are a big part of it, it’s also that our brain chemistry interacts with stimulants differently.

    One of the major effects of stimulants is the increase in availability of dopamine. The under-stimulated feeling comes from a lack of dopamine due to the reward system not functioning properly in ADHD. When the stimulant forces a release of dopamine it’s not as “stimulating” to an ADHD brain that didn’t have much dopamine to begin with, whereas a neurotypical person experiences a huge abundance of dopamine and feels incredibly stimulated and energized.


  • From what I’ve read, they will do everything in their power to ruin someones life and career if they publicly leave Scientology. That’s not even denouncing it, just saying you’re not a part of it anymore.

    Also people keep saying they want a “truthful apology”, but if her statement is honest then she doesn’t have much to apologize for. She said he was a friend, but then immediately stopped supporting him after hearing the evidence. I think most people would have done the same. So far though it’s all just their word vs. hers so I’m holding out on any real judgement until some kind of evidence of something comes out.






  • First, there are more than enough resources to tackle multiple issues at a time. Just because the money is the more important aspect doesn’t mean we can’t also invest in things to improve people’s quality of life.

    Second, this:

    You don’t have to build it; it will build itself once the people have money to spend.

    Is probably the most ridiculous rebuttal you could have come up with. People will bring the infrastructure with them? It will build itself? Where the hell do you think these things come from?


  • But at a more macro level, geographic access to grocery stores and clinics and colleges and bus stops and permanent homes and factories matter just as much.

    Here’s some emphasis for you. “Give them money” is a part of the solution, but it can only go so far when they lack access to places to spend that money. And no, delivery is not a real solution. It’s a very expensive bandaid.



  • to be honest the GOP lost the chance to be free of Trump when their senators refused to convict him after the Jan 6 impeachment.

    I think they lost their chance when he won in 2016. He has so thoroughly captured their base that ousting him would certainly lose them the next several elections, if they ever could fully recover. That’s not to say it’s not 100% on the GOP, he’s the consequence of decades of pandering to the far-right. I’m convinced they could have gotten rid of him before 2016 as well, but the conservatives thought they could control Hitler again and now he’s got them by the balls.




  • If a saw sucks ass like the one I used a few days ago, you can’t safely cut through wood and you end up doing dangerous things like putting your body weight on the top of the miter saw to get it down all the way, gripping the piece closer to the blade to try to get it to cut better with less tear out or to not slip, etc…

    There is a big difference between cheaping out on blades/never replacing them and cheaping out on the saw itself. I agree I wouldn’t get the absolute cheapest miter saw, but a relatively cheap one with good blades that are replaced often shouldn’t be significantly more dangerous than a more expensive one.


  • That’s fair, I honestly haven’t used it in a while and forgot the real usage of unsafe code. As I said to another comment, it is a really rough language for game dev as it necessitates very different patterns from other languages. Definitely better to learn game dev itself pretty well first in something like C++, then to learn Rust separately before trying game dev in Rust.



  • The biggest reason is that it’s much harder to write prototype code to test out an idea to see if it’s feasible and feels/looks good enough. I don’t want to be forced to fully plan out my code and deal with borrowing issues before I even have an idea of if this is a good path or not.

    There are options for this with Rust. If you wanted to use pure Rust you could always use unsafe to do prototyping and then come back and refactor if you like it. Alternatively you could write bindings for C/C++ and do prototyping that way.

    Though, I will say that this process gets easier as you gain more experience with Rust memory management.