The real deal y0

  • 1 Post
  • 228 Comments
Joined 3 years ago
cake
Cake day: July 16th, 2023

help-circle
  • Those thingies sticking out are like part of the traces. It can be solder, but that looks very sus and with the brown shade i assume its the back of a trace hehe
    EDIT: and i just noticed there is a fitting mark on the other side. So very very likely ripped traces. And the more i look at it the more i think thats more ripped traces then alive ones haha



  • DacoTaco@lemmy.worldto196@lemmy.blahaj.zoneBites & Bytes Rule
    link
    fedilink
    English
    arrow-up
    1
    ·
    edit-2
    5 hours ago

    I didnt think about it, but byte and short and the only names that kinda kept their definition of the number of bits.
    Byte is 8, short is 16.
    And then there is int…
    Its 16 on 16 bit systems and 32 on 32 and 64bit systems
    Long is silly too, it can be 32 or 64, and then there is long long which wth is that even suppose to be.

    Thats why c/c++ systems often ditch ‘int’ or ‘long’ and rather use things like ‘int8_t’, ‘int32_t’ or ‘int64_t’ to explicitly specify the amount of bits