This could be a good thing. Too many applications are overly opinionated, make decisions on behalf of the user (without the ability to override), minimize user choice, don't respect the user's configuration, and in general, do things their way rather than the user's way. More switches is often better.
Chromium has over 1600 command-line switches
41–47 of 47 posts
Re: Chromium has over 1600 command-line switches
#42I've tested 300+ of them for the purpose of reducing browser fingerprintability while building ArchiveBox's puppeteer support. It was quite a journey! Lots of subtle GPU rendering stuff that can easily give away a headless browser, or that differs between OS's in ways that can be used to detect when a browser doesn't match the expected behavior for the OS it reports to be running on. Some of my favorite lesser-known…
I wonder if there is a reference behind '--ash-no-nudges', I tried looking but found nothing.
Re: Chromium has over 1600 command-line switches
#43Re: Chromium has over 1600 command-line switches
#44We're talking about the company that had to contribute arbitrary-length command lines to the Linux kernel, and whose flags library supports reading the flags from a file, in case your appetite for flags is insatiable. https://github.com/torvalds/linux/commit/b6a2fea39318e43fee8...
The real fun story about Google and flags is from the days when their flags library supported flags being passed in gzipped base64 form ... via a flag. I think the reason was there was a server that could take the whole configuration in the form of a flag, but it had got too large for Linux at some point and they didn't want to load the config from a file because there was better support for canaried/partial rollouts of flag changes than data file changes. Or something like that.
Re: Chromium has over 1600 command-line switches
#45Re: Chromium has over 1600 command-line switches
#46Earlier quoted context omitted.
I also found this extension to be useful and more configurable: https://chromewebstore.google.com/detail/allow-cors-access-c...
do you or anyone else happen to know an extension that allows getUserMedia to work without https? i just need a photo from a webcam (a la that opens a camera on a smartphone) for a local network webapp. configuring https just for this is fickle.
Re: Chromium has over 1600 command-line switches
#47I wonder if services like Gmail have hundreds of feature flags at any given point.