HN user

skoob

213 karma
Posts3
Comments58
View on HN

The term "opensource software" was coined by the OSI founders explicitly to have the meaning they laid out in the Open Source Definition. The term didn't exist before that.

By default, ArgoCD doesn't remove resources if the manifests are deleted, but you can switch this by turning on auto prune[1]. Likewise, you can specify whether a persistent volume should be retained or deleted if the k8s PersistentVolume resource is deleted[2]. Both of those settings would have prevented data loss in this case, but of course that's easy to say in hindsight.

[1] https://argo-cd.readthedocs.io/en/stable/user-guide/auto_syn...

[2] https://kubernetes.io/docs/concepts/storage/persistent-volum...

That's pretty typical for how typography develops. Majuscule and miniscule letters were just two different styles of writing the same letter. But eventually, people started using majuscule (i.e uppercase) letters to give emphasis to the beginning of sentences or certain words, like names.

Italic typefaces were created by Italian type designers to mimic the cursive handwriting of the time. They weren't meant to be mixed with roman style typefaces. However, typesetters who had access to both roman and italic fonts started to use italic for emphasis when typesetting texts in roman type.

And of course blackletter is also just a style that originally tried to mimic earlier handwriting.

But any shell that tab completes make targets should also tab complete executables? Just write ./scripts (or whatever) and whack tab.

ISO Warning Signs 4 years ago

You mean the phone app icon? The symbol that's in the middle of the Whatsapp logo? I think it'll be fine for a while. Probably for as long as physical emergency phones exist.

This is about making the same files accessible inside and outside a container. Docker does that by bind mounting files from outside of the container's file tree into it. Bind mounts are just a way to provide a different file path to access an existing directory. It has zero performance cost.

The reason Docker Desktop and similar solutions need to come up with these different complicated solutions is that they want to share files between containers running inside a Linux VM and the host system. So they need some kind of way of syncing the files.

"Don't hate the player, hate the game" is a false dichotomy. It's perfectly possible to conclude that the system is rotten and still call out those who take advantage of it in ways which hurt others. The fact that there's money to be made and that it's legal doesn't make it any less sleazy and immoral.

This assumes that the reporting rate is the same for robberies committed by males and females. It is entirely possible that e.g. victims are less likely to report robberies commited by women. It's also possible that there is a bias in the reporting because victims tend to assume that robbers are male, even when the robber is masked and it's difficult to tell the gender of the robber.

It's designed so that the different weights take approximately the same width, so that does mean that the lighter weights have larger tracking (ie spacing between letters) than the heavier weights.

Right, lets just "cope" with climate change the same way we did 425,000 years ago. By dying, I guess?

What's wierd is that despite that fact that's you've done your best to make AGW look like a non-issue, the chart for the 100 last years looks extremely worrying.

However, there is a trap in this. [...] Pigs and cows would exist in a wild state in a small fraction of their former "territory." If at all.

Why would that be a problem?

> But a dict is a list of paired elements?

Not really. A dict is an unordered set of keys where each key has a value associated with it. If you try to access a dict as a list, you might expect to get a list of key-value pairs or a list of values or possibly a list of keys. And in what order will the elements in the list be?

Yes, Opus is basically a merge of CELT and SILK.

SILK is a speech codec developed by Skype whereas CELT is a general purpose audio codec developed by Xiph.org. Opus can use either of them (to encode speech or e.g. music, respectively) or it can use both codecs simultaneously for high-quality speech.