PM_ME_VINTAGE_30S [he/him]

Anarchist, autistic, engineer, and Certified Professional Life-Regretter. I mosty comment bricks of text with footnotes, so don’t be alarmed if you get one.

You posted something really worrying, are you okay?

No, but I’m not at risk of self-harm. I’m just waiting on the good times now.

Alt account of PM_ME_VINTAGE_30S@lemmy.sdf.org. Also if you’re reading this, it means that you can totally get around the limitations for display names and bio length by editing the JSON of your exported profile directly. Lol.

  • 4 Posts
  • 107 Comments
Joined 1 year ago
cake
Cake day: July 9th, 2023

help-circle




  • PM_ME_VINTAGE_30S [he/him]@lemmy.sdf.orgtoMemes@lemmy.mlMath
    link
    fedilink
    English
    arrow-up
    1
    ·
    edit-2
    15 days ago

    Sounds like fun! I’m going to bed soonish but I’m willing to answer questions about multivariable calculus probably when I wake up.

    When I took multivariable calculus, the two books that really helped me “get the picture” were Multivariable Calculus with Linear Algebra and Series by Trench and Kolman, and Calculus of Vector Functions by Williamson, Crowell, and Trotter. Both are on LibGen and both are cheap because they’re old books. But their real strength lies in the fact that both books start with basic matrix algebra, and the interplay between calculus and linear algebra is stressed throughout, unlike a lot of the books I looked at (and frankly the class I took) which tried to hide the underlying linear algebra.






  • PM_ME_VINTAGE_30S [he/him]@lemmy.sdf.orgtoMemes@lemmy.mlGuess I'll just burn
    link
    fedilink
    English
    arrow-up
    5
    arrow-down
    1
    ·
    edit-2
    1 month ago

    If your signal looks like f(t) = K•u(t)e^at with u(t) = {1 if t≥0, 0 else}:

    • If Real(a) > 0, then your signal will eventually blow up.
    • If Real(a) < 0, then you signal will not blow up. In fact, your signal will have a maximum absolute value of |K|, and it will approach zero as time goes on.
    • If Real(a) = 0, it is either a complex sinusoid or a constant. In either case, it is bounded with maximum absolute value of |K|. It very much does not blow up.

    So e pops up all the time in stable systems and bounded signals because the function e^at solves the common differential equation dx/dt = ax(t) with x(0)=1 regardless of the value of a, particularly regardless of whether or not the real part of a causes the solution to blow up.


  • I don’t judge anyone by their weight, but it’s sure hard to direct that same acceptance toward myself.

    Yeah same here, but I’m at a weight where I’m exceeding weight limits of things like ladders, furniture, etc. And I’m in terrible physical shape on top of all that. It’s really more of a “tactical” thing for me at this point. Just gotta get it done.

    Sounds like you’re doing well, though.

    Thank you. Could be better, could be a lot worse. I’m still a social disaster.

    And I make my own frozen meals

    Me too. The other day I made like half my meals for the entire summer in one giant cook.


  • Do most people generally eat the same things all the time?

    Yeah. IMO variety is expensive because it’s usually cheaper to buy a few things in bulk.

    consulting a professional before doing so.

    I consulted a nutritionist before doing my first weight loss [1] because I wanted to make sure my diet was nutritionally sound. Surprisingly, it was fine, just too much of everything. Very surprising considering that I’m a picky eater with texture issues, but I’ll take it.

    In contrast, my sister had to see a nutritionist to go on hormones and apparently her diet was nutritionally whack, so she had to make a bunch of changes.

    vegetables

    Please God no (at least not raw)

    [1] I put it back on when I went to engineering school, but I managed to keep it off for a couple years. Oh well. I’ll get around to losing it again soon.


  • way more than $π million.

    I don’t need more than $π million. I just need enough to get some stuff started. I’m not interested in getting rich.

    I would also use the first loop to take medical tests of my health as much as possible since it wouldn’t matter if I went into debt in the first loop.

    Fair enough, but I really need the charm. I’m autistic and I’m not good at being social. I’d definitely be willing to give up a few years of life for more charm.







  • Not the ideal way to do it, but I literally just pirated the game [1] and installed it as a Windows application with stock WINE-staging. I then installed Vortex as a Windows application with stock WINE, installed some mods, and played some modded FNV on Linux. It played just as well on Linux as it did on Windows even with all the mods.

    Point being, the way that worked best for me was to just treat it and all its mods as a Windows application and let stock WINE handle it for me.

    [1] I purchased the game on Steam but I couldn’t be arsed to find the Windows executables or get it to work with Steam and Proton.



  • Well I just tried #define int void in C and C++ before a “hello world” program. C++ catches it because main() has to be an int, but C doesn’t care. I think it is because C just treats main() as an int by default; older books on C don’t even include the “int” part of “int main()” because it’s not strictly necessary.

    #define int void replaces all ints with type void, which is typically used to write functions with no return value.