https://www.collinsdictionary.com/dictionary/english/gaol
I believe Collins is the standard dictionary that British people use, much like Merriam-Webster for Americans.
But, as a C#/C++/Typescript developer, I don't have the first clue how any I might go about implementing those rules.
Anybody know of patterns for this kind of safe programming that I can use?
Does just using a language like Zig automatically make my code 'safe'?
Anybody know if generating code from a proof checking language like Lean would satisfy all these rules?
They aren’t pure plastic.
I found this reference, so 80 valuation, Be wanted upwards of 200, “In 1996, Apple Computer decided to abandon Copland, the project to rewrite and modernize the Macintosh operating system. BeOS had many of the features Apple sought, and around Christmas time they offered to buy Be for $120 million, later raising their bid to $200 million. However, despite estimates of Be's total worth at approximately $80 million,[citation needed] Gassée held out for $275 million, and Apple balked. In a surprise move, Apple went on to purchase NeXT, the company their former co-founder Steve Jobs had earlier left Apple to found, for $429 million, with the high price justified by Apple getting Jobs and his NeXT engineers in tow. NeXTSTEP was used as the basis for their new operating system, Mac OS X.”
I can’t find it right now but I read a great comment on legalization that pointed out that a kid experimenting with weed and cocaine in college is doing so for a radically different reason than a kid doing it escape the daily misery of his ghetto neighborhood.
This is also why you’ll often see staunch opposition to legalization in the lower socio-economic classes, with them having seen people close to them destroyed by drug use.
And yes, legalization and regulation would of course also allow harm reduction. But it is good to be able to take the opposition’s perspective :)
Our goal should be to legalize use and then take the money saved from police enforcement and funnel that into programs that get people off drugs. In the US an issue is that the latter part is part of the healthcare system, and we all know that has a lot of issues in serving people who fall into the under-employed category.
Code words and phrases can be cracked once one gets enough context.
More specifically, it was active counter intelligence where the US sent a false report of a water issue on Midway broadcast in the clear that they then picked up the Japanese report of the issue. They used that to discern which codeword Japan used for Midway.
Then there are regulations like these which are aimed at protecting the investment companies have made into infrastructure, effectively granting them a monopoly.
When people debate this, they often are thinking of the first class of protective regulations that are too onerous on companies, but I think most people like clean drinking water and rivers that no longer catch fire.
Whereas the second class of protection is really harmful to the consumer, and the powers-that-be have effectively been given a monopoly, and with that the money and power to protect their place in the market through continued influence on elections and other things to maintain these rent seeking businesses. We all hate the latter, but these companies have a lot of sway over politicians.
// Good? for walrus in walruses { walrus.frobnicate() }
Is essentially equivalent to
// BAD for walrus in walruses { frobnicate(walrus) }
And this is good,
// GOOD frobnicate_batch(walruses)
So should the first one really be something more like
// impl FrobicateAll for &[Walrus] walruses.frobicate_all()