- J. G. Frazer, Taboo, The Burden of Royalty
In simplified terms, LDP is the center. Its policies span center-right and center-left. It’s basically “the government” since WW2 and swings between left and right depending on the specific PM and their faction.
Linux Foundation (of which Linus is an employee) is an US entity. RISC-V International foresaw this and chose to incorporate in Switzerland.
An update:
If your company is on the U.S. OFAC SDN lists, subject to an OFAC sanctions program, or owned/controlled by a company on the list, our ability to collaborate with you will be subject to restrictions, and you cannot be in the MAINTAINERS file.
That’s more like his opinion or a post facto justification. Turns out it is a US thing.
If your company is on the U.S. OFAC SDN lists, subject to an OFAC sanctions program, or owned/controlled by a company on the list, our ability to collaborate with you will be subject to restrictions, and you cannot be in the MAINTAINERS file.
So to get back, you have to basically prove that you have no relations with OFAC SDN companies.
This update is from https://lwn.net/Articles/995186/
This is a triumph. I’m making a note here, “HUGE SUCCESS”.
Bullshit Jobs get bullshit treatment.
It really is like that. I found a report on People.cn from 2015. I guess it’s just the impact range is expanding. Personally I only heard of people experiencing this post-covid.
For people not in public sectors, application for passports are okay-ish.
For others, I can only speculate. Most of the public sector workers already have passports from years ago. I don’t know if they have any kind of restrictions on new applications. To me, the Immigration Administration of the Ministry of Public Safety (who issues passports) feels more like a “routine” type of branch of the central government, but I could be wrong.
It’s been that way since 3 or 4 years ago. The way it works is that you’ll hand in the passport and if you want to use it, you’d have to apply for it. The party branch (党委) usually has quotas for each year and therefore will seek excuses to reject the application.
In recent git versions (>2.23), git restore
and git restore --staged
are the preferred ways to discard changes in the working tree (git checkout -- .
) and staged changes (git reset --
) respectively.
My point today is that, if we wish to count lines of code, we should not regard them as “lines produced” but as “lines spent”: the current conventional wisdom is so foolish as to book that count on the wrong side of the ledger.
——On the cruelty of really teaching computing science - E.W. Djikstra
If you are looking at learning CS in a more holistic manner, there’s Path to a free self-taught education in Computer Science!. It’s a list of courses, categorized by topics, which are exactly what a CS undergraduate would learn. It might feel daunting at first, but you can pick any interesting topic and dive in.
I especially recommend CS50P for beginners.
One problem with exceptions is composability.
You have to rely on good and up-to-date documentation or you have to dig into the source code to figure out what exceptions are possible. For a lot of third party dependencies (which constitute a huge part of modern software), both can be missing.
Error type is a mitigation, but you are free to e.g. panic in Rust if you think the error is unrecoverable.
A third option is to have effect types like Koka, so that all possible exceptions (or effects) can be checked at type level. A similar approach can be observed in practical (read: non-academic) languages like Zig. It remains to be seen whether this style can be adopted by the mainstream.
Life Pro Tip: trace the writing and you’ll know
Such a shame on the activists to spread disinformation. It was Lizzy who crushed the economy, #NOT THE LETTUCE!
For true immutability, burn something like tails on a read-only CD.
How to poison AI models for fun and (at the cost of other people’s) profit
Conceptually yes, but you can achieve better efficiency by putting multiple adders together with e.g. a Wallace tree.
There are more efficient ways to expand adders than simply chaining them as well.