Glibc is the opposite of backwards compatible. This thread I was a part of explains some issues faced in the past: https://news.ycombinator.com/item?id=47029789
HN user
HexDecOctBin
You see a user account. To the south are links. To the north is the name.
meet.hn/city/in-Bengaluru
Unfortunately, Glibc and loader are linked together intrinsically in the Linux ecosystem. So, if you want to be able to launch a program reliably, shipping your own loader and libc might actually be the only way.
using arenas for arrays that grow wastes memory a lot since it keeps every previous version around
Not if you use segmented arrays
Was your argument not about replacing non-local languages like Sanskrit and Arabic (used exclusively for liturgical purposes in Tamil Nadu) with local languages like Tamil? If not, it might be useful if you spelled your argument out.
And if you want a perspective other than imperial apologists and colonial nostalgics, read https://www.goodreads.com/book/show/32618967-an-era-of-darkn... and https://www.goodreads.com/book/show/42972023-the-anarchy
UPI has been adopted by eight countries and a few dozen are in progress [1]. Additionally, UPI has started to integrate with other nation's similar system (Singapore's PayNow [2] for instance).
[1] https://www.pib.gov.in/PressReleasePage.aspx?PRID=2224505&re... [2] https://www.nipl.com/how-it-works/frequently-asked-questions...
SQLite did come from TCL everything-is-a-string world, so this attitude is not surprising. TCL makes for a very good shell language (much better than Bash or Batch), but a rigid systems language it is not.
I do wonder how it compares against Jolt. Both seem to have a good pedigree, one from Valve and Eric Catto, and another used in Horizon games.
I see, so would it would only be relevant to unions, or would adding a new node to a linked list or pushing another element in a dynamic array or setting a pointer to null also count?
What is "stable shape"?
Clarity and predictability is more important than modernity when serving 1.5 billion diverse people.
The one big issue with Indian Government websites is that there is no single unified visual language, something that UX4G [1] is aiming to fix.
Other than that, I agree; this reads like the rantings of an young intern incapable of operating anything not built using whitespace-heavy "flat" interfaces.
Did you use some resource on how to layer immutability on top of B-trees? This is finicky enough that I don't feel comfortable YOLOing.
It might have been better to publicly document and stabilise the LuaJIT bytecode, which would allow people to then come up with whatever syntax they wanted in their own custom frontends.
Same in India, this is the first time I am seeing this on Internet Archive
Can someone point to a resource/tutorial for learning point splatting (the 90s rendering technique)? Gaussian Splatting has completely over taken the search results, and the original technique is now near impossible to find.
Wouldn't know.
you can disable all the annoying AI/Advertising shit
What Stockholm Syndrome is this? Why should you have to do this in the first place?
No modern libc uses (or should use) brk() as the heap. Allocate virtual memory using mmap, VirtualAlloc, etc., and manage your set of heaps.
When western politicians and media lectures the world on human rights, I can't help but wonder how funny it is that because westerners front loaded their genocidal violence, they now get to feel superior to others that didn't completely wipe out the conquered.
Yeah, but then I'll have to deal with Embarcadero.
Does this support declaring variables anywhere (as opposed to only in the beginning of a function)? That was my primary complaint when using Lazarus.
How do people find Lightning cables robust? Every single one I got from Apple failed around the one year mark. So much so that I finally started buying cheap knockoffs that only lasted 6 months but cost a tenth of official ones. To compare, I haven't seen a single Micro-USB or USB-C cable fail on me whether expensive or cheap. Am I simply uniquely unlucky in the matters of Lightning cables?
"Abrahamic bad", "Eastern good"
Is that what you read in my comment? Because that is not what I wrote. People sympathise with those who are similar to them. Europeans sympathise with Ukrainians, Muslims with Palestinians, Abrahamics with other Abrahamics. How you got from that to your "Abrahamic bad", I can't even fathom.
Abrahamic societies will naturally be sympathetic to the acts of other Abrahamic peoples and antagonistic to pagan and polytheistic cultures, especially if the non-Abrahamic culture rejects the Abrahamic proselytising that purports to "civilise the heathens" as many Indic societies did. To expect anything else under some expectation of fairness or empathy is nothing but childish naïveté.
iPads have M-series chips in them that support hardware virtualisation. But Apple goes out of its way to disable the hypervisor for its iOS/iPadOS builds[1]. All they have to do is stop doing that and allow apps to make use of the virtualisation APIs. UTM hypervisor already exists in App Store, so Apple is clearly not against the principle of it. As soon as that happens, running macOS (or Linux) will become elementary.
Is Pijul implemented in form of a library (a la libgit2)?
What physics do I need to know to follow this book?
I was attacked in this way a couple of months back. I use a different email address for each account (of the pattern product@example.com), and use a separate address for Git commits (like git@example.com). It was this second one that was attacked and I ended up with some 500 emails within 12 hours. Fortunately, since I don't expect anyone to actually email me on the Git address, I just put up a filter to send them all to a separate folder to go over at my leisure.
After 12 hours, the pace of emails came to a halt, and then I started receiving emails to made up addresses of a American political nature on the same domain (I have wildcard alias enabled), suggesting that someone was perhaps trying to vent some frustration. This only lasted for about half an hour before the attacker seems to have given up and stopped.
Strangely, I didn't receive any email during the attack which the attacker might have been trying to hide. Which has left me confused at to the purpose of this attack in the first place.
The classic Doug Lee's memory allocator[1] has explicit heaps by the name of mspaces. OP, were you aware of that; and if yes, what does your solution do better or different than dlmalloc's mspaces?