I… I don’t know what course of action to take after staring at this arrange of pixels…
- 0 Posts
- 17 Comments
certified_expert@lemmy.worldto Programmer Humor@programming.dev•New Jetbrains Update Dropped1·3 days agoEmacs for the homies
Use potato to get root access
That will give you root access
certified_expert@lemmy.worldto Linux Gaming@lemmy.world•If only there were a solution to the Windows handheld problemEnglish2·3 days agoOh, thanks… I meant to say that a common ABI sounds like the first stage of embrace, extend and extinguish
I, actually, teach OSs at a university 😁
I truly appreciate, tough, your kindness on teaching to a lemmy fellow 🙏🏼
That’s all I needed to hear :D
Humans were never meant to take care of babies as couples or alone.
Research suggests that given the tradeoffs of our evolutionary path, we had to shift towards a collective parenting (call it tribe, clan, extended family, etc.)
The modern “individualization” of the person is what has convinced us that such parenting form is “normal” and bearable, and that if you feel overwhelmed, there is something wrong with you.
certified_expert@lemmy.worldto Linux Gaming@lemmy.world•If only there were a solution to the Windows handheld problemEnglish4·4 days ago“common abi”? Like embracing?
certified_expert@lemmy.worldto Memes@sopuli.xyz•It just plain doesn't work, please stop telling people to do this2·5 days agoiirc, WD literally stands for “water displacement”. 40 is because it was the 40th formula
certified_expert@lemmy.worldto Memes@sopuli.xyz•It just plain doesn't work, please stop telling people to do this3·5 days agoWD-40
that IS its reason of existance: https://en.wikipedia.org/wiki/WD-40
(full disclosure: I have never tried it. I don’t recommend trying it, just keep scrolling.)
certified_expert@lemmy.worldto Technology@lemmy.world•Windows 12 May Require a SubscriptionEnglish1·8 days agoI’m dead! It has a song!
certified_expert@lemmy.worldto Memes@sopuli.xyz•Is this the place to talk about Oxford commas?2·8 days agoComically large ball, and chain.
the ball is comical, the chain is normal
TIL!
Are there other animals in that category?
Excuse me, good sir/madam. What?
certified_expert@lemmy.worldto Videos@lemmy.world•Calm Traffic Needs More Than Calm Driving3·16 days agoBeautiful video
Yeah the big question is what’s gonna happen to the project after Linus…
you got it pretty much right. An ABI, depending on the context, could include just the app/OS interface or also the across-apps, across-apps-modules interface too. Things like calling convention, register usage, stack usage, etc.
when you distribute compiled libraries, you want clients to know how to invoke your functions and know how to retrieve your returned values. That’s part of the ABI too.
The ABI also defines the type translation from the language (say, C) to asm undertood by a processor (say riscv64g) so, you map types. Following that example, you may instruct the assembler and linker to use abi “lp64” that maps longs and pointers to 64 bits, and integers (int) to 32 bits. This abi also emulates floating point operations (n the other hand, lp64d would make use of dedicated hardware for “double precision” floats)