Connect the SD card to your computer and open the terminal.
- Find the disk id
df -h
| // While you can edit this file, it's best to put your changes in | |
| // "User/Preferences.sublime-settings", which overrides the settings in here. | |
| // | |
| // Settings may also be placed in file type specific options files, for | |
| // example, in Packages/Python/Python.sublime-settings for python files. | |
| { | |
| // Sets the colors used within the text area | |
| "color_scheme": "Packages/Themes/Espresso Soda/Espresso Soda.tmTheme", | |
| // Note that the font_face and font_size are overriden in the platform | 
| #!/usr/bin/env node | |
| /*! | |
| * Javascript Preprocessor | |
| * Mimicks the #include syntax in C | |
| * | |
| * @example | |
| * | |
| * //#include "relative/folder/file.js"; | 
| /** | |
| * $$ - Creates a DOM Element with the given attributes | |
| * | |
| * @author Luis Couto <couto@15minuteslate.net> (https://github.com/Couto) | |
| * @license MIT (http://couto.mit-license.org) | |
| * | |
| * @function | |
| * @param {String} selector CSS Selector representing the HTML and attributes | |
| * @returns {Node} HTML Element | |
| * | 
Connect the SD card to your computer and open the terminal.
df -h
| { | |
| // If true, when in a docblock, pressing tab after a @tag line (like @param, @return) | |
| // will indent to the description. This is useful if you are writing a long description | |
| // and want that block of text to stay aligned. | |
| "jsdocs_deep_indent": true, | |
| // If true, then pressing enter while in a double-slash comment (like this one) | |
| // will automatically add two slashes to the next line as well | |
| "jsdocs_extend_double_slash": true, | 
| externify: { | |
| command: 'find ./out -name \"*.html\" -exec sed -E -i "" "s/imgs\\/(.*\\.(jpg|png))/http:\\/\\/domain.net\\/email_test\\/\\1/g" {} \\;', | |
| stdout: true, | |
| failOnError: true | |
| } | 
| /** | |
| * __series | |
| * Given an array of functions, it will call every function, | |
| * once at a time, sequentially. | |
| * Every function will have a trigger function as its last argument, | |
| * that should be called when the function is done. | |
| * If arguments are given to this trigger function, those will be passed | |
| * to the next function. | |
| * | |
| * @example | 
| /** | |
| * http://www.w3.org/TR/CSS2/visuren.html#relative-positioning | |
| * | |
| */ | |
| .outer { | |
| position: absolute; | |
| top: 0; | |
| right: 0; | |
| bottom: 0; | |
| left: 0; | 
| /* | |
| Chrome Developer Tools - Monokai Color Theme | |
| Author: Béres Máté Csaba / bjmatt.com / @bjmatt / beres.mate@bjmatt.com | |
| ----------------------------------------------------------------------------------------------------------- | |
| Installation: | |
| 1. Find your Chrome's user stylesheets directory: | 
| /** | |
| * QuickSort | |
| * | |
| * @param {Array} arr Array to be sorted | |
| * @returns {Array} new array sorted | |
| */ | |
| var quickSort = function (arr) { | |
| 'use strict'; | |
| var sort = function (arr) { |