This is the reference point. All the other options are based off this.
|-- app
| |-- controllers
| | |-- admin
| alexkrechik.cucumberautocomplete | |
| andys8.jest-snippets | |
| christian-kohler.path-intellisense | |
| dbaeumer.vscode-eslint | |
| dracula-theme.theme-dracula | |
| eamodio.gitlens | |
| esbenp.prettier-vscode | |
| GitHub.vscode-pull-request-github | |
| janjoerke.jenkins-pipeline-linter-connector | |
| jpoissonnier.vscode-styled-components |
| { | |
| "editor.fontFamily": "'Fira Code', 'Droid Sans Mono', 'monospace', monospace, 'Droid Sans Fallback'", | |
| "editor.fontLigatures": true, | |
| "editor.fontSize": 16, | |
| "editor.fontWeight": "500", | |
| "editor.formatOnPaste": true, | |
| "editor.minimap.enabled": false, | |
| "editor.multiCursorModifier": "ctrlCmd", | |
| "editor.renderLineHighlight": "all", | |
| "editor.rulers": [ |
| const { readdirSync, statSync } = require("fs"); | |
| const { dirname, join } = require("path"); | |
| // Usage: | |
| // const walkSync = require("walk-dir-sync"); | |
| // console.log(walkSync(path)); | |
| // return a matrix of files path | |
| // [ [path, path], [path, path] ] | |
| const walkSync = d => |
| /** | |
| * Simple authentication and authorization example with passport, node_acl, | |
| * MongoDB and expressjs | |
| * | |
| * The example shown here uses local userdata and sessions to remember a | |
| * logged in user. Roles are persistent all the way and applied to user | |
| * after logging in. | |
| * | |
| * Usage: | |
| * 1. Start this as server |
| /** | |
| * Documentation: http://docs.azk.io/Azkfile.js | |
| */ | |
| // Adds the systems that shape your system | |
| systems({ | |
| wordpress: { | |
| // Dependent systems | |
| depends: ["mysql"], | |
| // More images: http://images.azk.io | |
| image: {"docker": "azukiapp/php-fpm"}, |
| { | |
| "scripts": { | |
| "build": "webpack", | |
| "start": "webpack-dev-server" | |
| }, | |
| "devDependencies": { | |
| "babel-core": "^6.5.2", | |
| "babel-loader": "^6.2.3", | |
| "babel-preset-es2015": "^6.5.0", | |
| "babel-preset-react": "^6.5.0", |
| !!! 5 | |
| html(class='no-js') | |
| head | |
| meta(charset='utf-8') | |
| meta(http-equiv='X-UA-Compatible', content='IE=edge') | |
| title | |
| meta(name='description', content='') | |
| meta(name='viewport', content='width=device-width, initial-scale=1') |
| #!/bin/bash | |
| # 1. Enable all software repositories | |
| # It shall launch the dialog box for configuring software sources. | |
| # Go to the tab named "Other software" and check all boxes named "Canonical Partners" and "Independent". | |
| software-properties-gtk | |
| # 2. Update the system | |
| apt-get update | |
| apt-get upgrade |
| [ | |
| { "keys": ["ctrl+alt+up"], "command": "select_lines", "args": {"forward": false} }, | |
| { "keys": ["ctrl+alt+down"], "command": "select_lines", "args": {"forward": true} }, | |
| ] |