• 0 Posts
  • 24 Comments
Joined 1 year ago
cake
Cake day: July 3rd, 2023

help-circle


  • lte678@feddit.detoMemes@lemmy.mlA King regardless
    link
    fedilink
    arrow-up
    4
    ·
    9 months ago

    Thanks! Both look like very decent studies so I am not certain where the difference comes from. I suspect that the division into age brackets, or averaging across all of the them may be the cause. Either way, it seems that the effects of being slightly overweight are barely statistically significant. The more you know



  • And when someone says “dream job” they are referring to the semantically correct meaning of the word? I have my doubts. When people say they’re dream job consists of doing something, like “helping people”, I think it is the “work” that interests them, and not the financial details.

    What you call sick is only sick if you take your awfully correct definition, which I honestly don’t think correlates well with what people mean with it.

    Thats also why I would still tend to agree with you, because I dont believe in laboring for some bosses benefit either. But certainly not with the initial wording


  • Nah thats bullshit. And this is coming from somebody who would tend to agree with you, but you can’t always be so excruciatingly black and white. For example, my dream job is what I do in my free time, except in a non-profit organisation where I am not chained by an individual lack of resources. Some work furthers humanity. Some work is completely voluntary. Sometimes a dream job is that way to scratch the biological itch to keep our brains busy.

    Additionally, this supports the bullshit capitalist argument that people wouldnt want to work anymore if not coerced into it. I believe people would still dream of doing important jobs that help humanity even out of their own free will.





  • lte678@feddit.detoCurated Tumblr@sh.itjust.worksFanart is Art
    link
    fedilink
    English
    arrow-up
    3
    arrow-down
    2
    ·
    10 months ago

    What the hell is this? I am wondering if the people in this picture ever even met boys and men that wrote fan fiction, because it sure as hell never was cool. Writing in general in many genres like romance, poetry - and of course fan fiction - got young men I knew bullied. The girls I knew also were made of fun of for it, but typically less so. Except for creative writing being more normalized for women in the cultures I have experienced, I would argue this is a gender agnostic issue. The later posts get it, imo



  • Cool, didn’t think of that one. But it would still work, since you could consider that a constant in front of the f(x) not raised to the nth power (easier to imagine if we have a constant function, then its just (b-a)). The nth root will then normalise it to 1 for any real factor.


  • lte678@feddit.detoMemes@lemmy.mlA very dairy meme
    link
    fedilink
    arrow-up
    58
    arrow-down
    6
    ·
    11 months ago

    I don’t know a single person who consumes milk because they think they require it. They just like the taste of dairy products.

    The subsidization is an issue imo, but I don’t think people are as brainwashed regarding milk as you assume.






  • Clearly you can address more bytes than your data bus width. But then why all the “hacks” on 32-bit architectures? Like the 36-bit address bus via memory mapping on SPARCv8 instead of using paired index registers ( or ARMv7 width LPAE). From a perfomance perspective using an address width that is not the native register width/ internal data bus width is an issue. For a significant subset of operations multiple instructions are required instead of one.

    Also is your comment about turing completeness to be taken seriously? We are talking about performance and practicality. Go ahead and crunch on some 64-bit floats using purely 8-bit arithmetic operations (or even using vector registers). Of course you can, but the point is that a suitable word size is more effective for certain computational tasks. For operations that are done frequently, they should ideally be done at native data-bus width. Vectored operations will also cost performance.


  • I am unsure about the historical reasons for moving from 32-bit to 64-bit, but wouldnt the address space be a significantly larger factor? Like you said, CPUs have had vectoring instructions for a long time, and we wouldn’t move to 128-bit architectures just to be able to compute with numbers of those size. Memory bandwidth is, also as you say, limited by the bus widths and not the processor architecture. IMO, the most important reason that we transitioned to 64-bit is primarily for the larger address address space without having to use stupidly complex memory mapping schemes. There are also some types of numbers like timestamps and counters that profit from 64-bit, but even here I am not sure if the conplex architecture would yield a net slowdown or speedup.

    To answer the original question: 128 bits would have no helpful benefit for the address space (already massive) and probably just slow everyday calculations down.