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

help-circle


  • rhombus@sh.itjust.worksto196@lemmy.blahaj.zoneADHD rule
    link
    fedilink
    arrow-up
    19
    arrow-down
    1
    ·
    24 days ago

    That’s not necessarily true. Myself, and several other people I know, have definitely experienced a boost from stimulants, just not in the same wired way neurotypical people get. Sometimes it feels like a weight off your shoulders that in a way almost feels stimulating. At the very least more talkative.


  • rhombus@sh.itjust.workstoScience Memes@mander.xyzTough Shit
    link
    fedilink
    English
    arrow-up
    4
    ·
    24 days ago

    The way I understand it is that your colon will work harder to reclaim water if you’re dehydrated, so staying hydrated will help keep stool softer overall. That said, rehydrating while constipated (or immediately before a bowel movement) won’t make a real difference since the water has already been absorbed from the stool and it can’t add it back.

    I would imagine your drinking lots of water before, if you do it consistently, is probably just contributing to your overall hydration which makes it easier next time.



  • I think it’s usually done to let them pretend their being impartial and “equal opportunity” despite never really intending to be. I personally think it’s bullshit, internal promotions are totally valid and shouldn’t be seen as favoritism (unless the candidate is wildly unqualified).







  • 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.


  • Those are fair points. I haven’t used it for a little while and forgot the exact usage of unsafe code. I love Rust, but I totally agree that it’s a rough language for game dev. Especially if you’re trying to migrate an existing project to it since it requires a complete redesign of most systems rather than a straight translation.


  • 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.