This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
[alias] | |
# Check status and then check outgoing | |
# Useful to make sure there are no uncommitted changes before attempting to push. | |
stout = !hg out $1 && hg status && ./mach lint --outgoing $1 | |
# Continue grafting a patch that needed rebasing. | |
continue = !hg resolve --mark && hg graft -c && hg status | |
# Import a patch from phabricator using the phabread command | |
#phabimport = !hg phabread $1 | hg import --partial -e - |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
--pref "extensions.allow-non-mpc-extensions:true" "extensions.legacy.enabled:true" "xpinstall.signatures.required:false" "extensions.autoDisableScopes:0" "extensions.enabledScopes:5" |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
https://sql.telemetry.mozilla.org/queries/4438/source#8912 | |
Most Popular NVIDIA Driver Versions | |
SELECT | |
system_gfx[1].adapters[1].driver_version AS driver_version, | |
COUNT(*) AS sample_count | |
FROM longitudinal_v20170422 | |
WHERE | |
system_gfx[1].adapters[1].vendor_id = '0x10de' | |
AND system_os[1].version = '10.0' |