This file contains hidden or 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
/Applications/Firefox.app/Contents/MacOS/firefox-bin --ProfileManager |
This file contains hidden or 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
(\n(?: {2})+) ([^\s]) | |
$1$2 |
This file contains hidden or 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
function* testYield() { | |
console.log("#1"); | |
yield new Promise(r => setTimeout(r, 2000)); | |
console.log("#2"); | |
yield new Promise(r => setTimeout(r, 2000)); | |
console.log("#3"); | |
return; |
This file contains hidden or 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
try: -b do -p linux,linux64,macosx64,win32,win64 -u mochitests,mochitest-e10s-1,mochitest-e10s-2,mochitest-e10s-3,mochitest-e10s-4,mochitest-e10s-5,mochitest-e10s-browser-chrome-1,mochitest-e10s-browser-chrome-2,mochitest-e10s-browser-chrome-3,mochitest-e10s-browser-chrome-4,mochitest-e10s-browser-chrome-5,mochitest-e10s-browser-chrome-6,mochitest-e10s-browser-chrome-7,mochitest-e10s-devtools-chrome -t none |
This file contains hidden or 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
╔═════════════════════════════════════════════════════════════════════════════════╗ | |
║ How to load/import a file in Firefox Devtools ? ║ | |
╚═════════════════════════════════════════════════════════════════════════════════╝ | |
╔════════════════════════╗ | |
║ SYNC FILE LOADING ║ | |
╚════════════════════════╝ | |
┌ ─ ─ ─ ─ ─ ─ ─ ─ ─ ─ ─ ─ ┌───────────────────────────────┐ |
This file contains hidden or 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://www.googleapis.com/freebase/v1/text/en/bob_dylan |
This file contains hidden or 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
var rand = function (base) { | |
base = base || 1; | |
return (Math.random() * base) | 0; | |
}; | |
var pad = function (str) { | |
if (str.length == 1) { | |
return "0" + str; | |
} | |
return str; |
This file contains hidden or 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
cf http://stackoverflow.com/questions/5501804/easiest-way-to-split-a-change-set-in-mercurial | |
- hg histedit / edit | |
- hg record | |
- hg histedit --continue |
This file contains hidden or 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
transparent linear-gradient(0deg, blue, red, green 40%, blue, red, blue, red, blue, red, gold) repeat scroll 0% 0% |
This file contains hidden or 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
/* Any copyright is dedicated to the Public Domain. | |
http://creativecommons.org/publicdomain/zero/1.0/ */ | |
"use strict"; | |
/** | |
* Tests if Copy as cURL works. | |
*/ | |
const EXPECTED_POSIX_RESULT = [ |