Adam Shannon
Adam Shannon
Yea, to be completely safe calls like `arabic = stopWordList` need to be protected with a mutex.
Yep. I totally understand that tradeoff. We use this package [in a project called Watchman](https://github.com/moov-io/watchman) but do the stopwords processing in an atomic and single goroutine (for other reasons than...
In my use-case I don't want to execute `cmd/go` binaries as I just want to grab some metadata (i.e. detected license of all dependencies) from a dozen modules and organize...
There's a bit of non-runtime code that assumes RWMutex. https://github.com/search?p=1&q=language%3Ago+%22syscall.ForkLock%22+-filename%3Apipe_bsd.go+-filename%3Apipe_linux.go&type=Code&utf8=%E2%9C%93
Good point. I'll try and do that.
This works locally for me, I tried with and without a firefox master password. ``` $ go run . -install Using the local CA at "/Users/adam/Library/Application Support/mkcert" ✨ The local...
@negbie Do you have an example of what this looks like to a user? Do they get a password prompt from `certutil`?
I agree it's unclear, but the prompt comes from NSS's `certutil` not `mkcert`. I'm not sure if that prompt can be changed.
Good call - Does this PR look ok? https://github.com/FiloSottile/mkcert/pull/100
> "The part in quotes is the name of the PK11 token. Otherwise, certutil doesn't know what's calling it." > > https://searchfox.org/mozilla-central/source/security/nss/cmd/lib/secutil.c#234 We might be relying on the name that...