• 0 Posts
  • 1.05K Comments
Joined 2 years ago
cake
Cake day: June 22nd, 2023

help-circle



  • masterspace@lemmy.catoAsk Lemmy@lemmy.world[Deleted]
    link
    fedilink
    English
    arrow-up
    5
    arrow-down
    1
    ·
    edit-2
    10 days ago

    A significant other should not prevent you from enjoying your hobbies.

    Most of the people I know who don’t have kids and ‘don’t have time for gaming’ in reality just have a significant other who looks down on gaming and makes them feel bad about it when they do.




  • Honestly might be worth talking to a professional, but my gut wonders if this is really about the new kid, or about his current relationship with you?

    Jealousy is a normal emotion, but it often rages when we feel self conscious, neglected, or unloved.

    His traitor comment (especially when his mom has never been in the picture), really makes it seem like he feels like you’re not fathering him in a way that he expects or he feels like something is missing and now your attention will be even more focused elsewhere.






  • It’s an example of a feedback system.

    If people actually want to understand how most systems in life work, they should take sociology and various humanities and science courses, but everyone should take a course on mathematical Systems Analysis including feedback loops and transfer functions.

    Virtually every system we encounter in day to day life, from biological ones, to sociological ones, are feedback loops, and understanding the nuances and complexities of how they work, how to analyze them when cause and effect is circular, and how their output changes and can stabilize, destabilize, oscillate, etc. makes a lot of things less confusing.

    Feedback circuits can be used to make amplifiers that amplify or deamplify a signal a certain amount, they can be used to make amplifiers that amplify rapidly to catastrophic of explosive failure, or dampeners that will try and reduce any signal to nothing, they can be used to make oscillators that pulse rhythmically at a certain frequency and are the heart of all clock circuits, or they can be used to always hold a steady output regardless of disturbances to their inputs like in gyroscopes and control systems and governors that always try and stay on target… And these are just simple feedback systems created out of a few components by humans, nature’s feedback systems that have evolved over billions of years are wildly more complex.

    Circular systems like this can’t be examined through traditional cause and effect logic chains, but they can be analyzed as a system as a whole.






  • masterspace@lemmy.catoProgrammer Humor@programming.devJavaScript
    link
    fedilink
    English
    arrow-up
    11
    ·
    edit-2
    18 days ago

    This is a really good interview, and does a good job highlighting Javascript’s biggest strength: it’s flexibility.

    “It was also an incredible rush job, so there were mistakes in it. Something that I think is important about it is that I knew there would be mistakes, and there would be gaps, so I made it very malleable as a language.”

    He cites the “discovery” of asm.js inside of JavaScript, calling it “another thing I’m particularly proud of in the last 10 years.” It uses the bitwise operators that were included in the original JavaScript which are now the basis for a statically-typed language with machine types for high-speed performance. “If it hadn’t been in there from 1995, it would’ve been hard to add later. And the fact that it was there all along meant we could do incredibly fast JavaScript.”

    He tells InfoWorld it’s “this very potent seed that was in the original JavaScript from the 10 days of May in 1995.” JavaScript’s 32-bit math operators (known as bitwise operators) trace their lineage all the way back to the C programming language — and to Java. This eventually led to WebAssembly — a way to convert instructions into a quickly-executable binary format for virtual machines — and the realization that with a JavaScript engine, “you can have two languages — the old language I did with the curly braces and the functions and the shift operators, and this new language which is a binary language, not meant for reading by humans or writing. But it can be generated by compilers and tools, and can be read by tools…”