You probably can't name a project OpenWarp for the same reason you can't name a search engine OpenGoogle, even though it's a different name to the original. In this case, it's particularly confusing because the original warp project _is_ now open source.
It's how you'd talk about a dog that you know the sex of, but if you didn't know you'd probably use "it". An LLM doesn't have a sex or gender, so I think the natural way to refer to them is "it".
You're right, open source and free software are not the same thing, but software licenced under the MIT licence is still free software. Even the FSF describes the MIT licence as a free software licence (see my other reply in this thread).
This seems to be a misunderstanding by the author, a licence doesn't have to be copyleft to be free software. Even the FSF describes the MIT licence as a free software licence (they prefer calling it the Expat licence).
> Expat License (#Expat)
>
> This is a lax, permissive non-copyleft free software license, compatible with the GNU GPL.
I'm pretty sure they show it something like once a year, and it takes two seconds to close it, if you can't spare two seconds of your life every year for something you get for free then you were never going to donate anything.
You won't donate because they will try not to discriminate when hiring? It's illegal to discriminate on things like race, sex and gender when hiring, so pretty much every company avoids it.
Spy (https://github.com/spylang/spy) is an early version of this kind of thing. I believe it compiles to C though, kinda like Nim. Actually speaking of Nim, that's probably the most mature language in this space, although it's less pythonic than Spy
I hate Trump as much as the next guy but this feels like nitpicking. You're obviously right, but if you choose not to vote then you're implicitly approving of whatever outcome you get.
I'm trying out SelfCI [1] for one of my projects and it's similar to what you were describing. My whole CI pipeline is just a shell script that runs the actual build and test commands, I can write a script in another language like python if I need more complexity and I can run it all locally at any time to debug.
I see your point about there being different ways to install a package, but I think I can clarify a bit by explaining how I use NixOS.
If I'm running a package on a server that means I want to install it declaratively, so I find the name of the package in Nixpkgs and put it in my `configuration.nix` file. I'm using flakes, but the configuration is exactly the same, I just put the package in the output section of the flake. Any instructions you see to install a package just boils down to finding the name of the package. To me this is as simple as finding the name of a Debian package and running `apt` to install it.
If you want additional features there are other optional ways to install packages, but these are features other distros don't offer, so if you just ignore them then there's no extra complexity compared to Debian for example.
Sure, and American table manners are the cause of rising fascism, there's a whole Wikipedia article on all their rules. [1] They're more worried about elbows on the table than the increase in authoritarianism.
There are no date, time or datetime types in JSON, so you'll have to serialise it to a string or an int anyway, and then when deserialising you'll need to identify explicitly which values should be parsed as dates.