-
Editor: atom plugins
-
Markdown style https://github.com/…/styleg…/blob/gh-pages/docguide/style.md
-
firefox addons
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
| <h3>BMI</h3> | |
| <label for="height">Height(cm)</label> | |
| <input id="height"></input> | |
| <br/> | |
| <label for="weight">Weight(kg)</label> | |
| <input id="weight"></input> | |
| <br/> |
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
| <h3>BMI</h3> | |
| <label for="height">Height(cm)</label> | |
| <input id="height"></input> | |
| <br/> | |
| <label for="weight">Weight(kg)</label> | |
| <input id="weight"></input> | |
| <br/> | |
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
| $ adb reboot bootloader | |
| $ fastboot oem mem 319 | |
| $ fastboot getvar mem | |
| mem: 319m | |
| $ fastboot reboot |
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
| # crop screen | |
| 附屬應用程式 > 剪取工具 | |
| # App | |
| * iTerm - cmder | |
| * git - github desktop | |
| * dash - [vilocity](https://velocity.silverlakesoftware.com/) | |
| * nvm - [nvm for windows](https://github.com/coreybutler/nvm-windows) | |
| # Shortcuts |
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
| /* global loadBodyHTML*/ | |
| 'use strict'; | |
| require('/shared/js/component_utils.js'); | |
| require('/shared/elements/gaia_radio/script.js'); | |
| requireApp('settings/shared/test/unit/load_body_html_helper.js'); | |
| requireApp('settings/shared/test/unit/mocks/mock_navigator_moz_settings.js'); | |
| suite('Improve browser os panel > ', function() { | |
| var MockSettingsCache; |
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 Shape({ x, y }) { | |
| this._x = x; | |
| this._y = y; | |
| } | |
| Shape.prototype = { | |
| get coords() { | |
| return { x: this._x, y: this._y }; | |
| }, | |
| } |
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
| // from https://jigsawye.gitbooks.io/mostly-adequate-guide/content/ch3.html | |
| var memorize = function(f) { | |
| var cache = {}; | |
| return function() { | |
| var arg_str = JSON.stringify(arguments); | |
| cache[arg_str] = cache[arg_str] || f.apply(f, arguments) | |
| return cache[arg_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
| # -*- mode: ruby -*- | |
| # vi: set ft=ruby : | |
| $bootstrap = <<SCRIPT | |
| !/bin/bash | |
| SCRIPT | |
| # To use this script and prepare your build environment, run the following | |
| # command in the same directory as the Vagrantfile. |
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
| /* -*- indent-tabs-mode: nil; js-indent-level: 2; fill-column: 80 -*- */ | |
| /* vim: set ts=2 et sw=2 tw=80: */ | |
| /* Any copyright is dedicated to the Public Domain. | |
| http://creativecommons.org/publicdomain/zero/1.0/ */ | |
| "use strict"; | |
| const {LocalizationHelper} = require("devtools/shared/l10n"); | |
| const L10N = new LocalizationHelper("devtools/locale/sourceeditor.properties"); |