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
| // Place your key bindings in this file to override the defaultsauto[] | |
| [ | |
| { | |
| "key": "shift+cmd+m", | |
| "command": "editor.action.revealDefinition", | |
| "when": "editorHasDefinitionProvider && editorTextFocus && !isInEmbeddedEditor" | |
| }, | |
| { | |
| "key": "f12", | |
| "command": "editor.action.revealDefinition", |
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
| rails generate migration add_column_name_to_table_name column_name:data_type | |
| Example: | |
| rails generate migration add_email_to_users email:string |
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
| /** | |
| * Typescript 2.4 | |
| * | |
| * Last updated: 2017-08-23 | |
| * Examples from: https://www.typescriptlang.org/docs/handbook/basic-types.html | |
| * 1 Basic Types | |
| * 1.1 Boolean | |
| * 1.2 Number | |
| * 1.3 String | |
| * 1.4 Arrays |
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 crypto = require('crypto'); | |
| // Test if I can only include code up to here | |
| // Test to only include this snippet | |
| // Test stops here |