Pour ceux qui veulent suivre avec moi :
cd /var/www/html
git clone https://github.com/Kenshirosan/js-101.git
https://www.reddit.com/r/spacex/comments/gxb7j1/we_are_the_spacex_software_team_ask_us_anything/| const http = require('http') | |
| const crypto = require('crypto') | |
| const server = http.createServer((req, res) => { | |
| console.log('got request', req.url) | |
| res.writeHead(200, { 'Content-Type': 'text/plain' }) | |
| res.end('okay') | |
| }) | |
| server.on('upgrade', function (req, socket) { |
| { | |
| // Place your GLOBAL snippets here. Each snippet is defined under a snippet name and has a scope, prefix, body and | |
| // description. Add comma separated ids of the languages where the snippet is applicable in the scope field. If scope | |
| // is left empty or omitted, the snippet gets applied to all languages. The prefix is what is | |
| // used to trigger the snippet and the body will be expanded and inserted. Possible variables are: | |
| // $1, $2 for tab stops, $0 for the final cursor position, and ${1:label}, ${2:another} for placeholders. | |
| // Placeholders with the same ids are connected. | |
| // Example: | |
| "Create an express router": { | |
| "scope": "javascript,typescript", |
| { | |
| // Place your GLOBAL snippets here. Each snippet is defined under a snippet name and has a scope, prefix, body and | |
| // description. Add comma separated ids of the languages where the snippet is applicable in the scope field. If scope | |
| // is left empty or omitted, the snippet gets applied to all languages. The prefix is what is | |
| // used to trigger the snippet and the body will be expanded and inserted. Possible variables are: | |
| // $1, $2 for tab stops, $0 for the final cursor position, and ${1:label}, ${2:another} for placeholders. | |
| // Placeholders with the same ids are connected. | |
| // Example: | |
| "Creates bascic express server": { | |
| "scope": "javascript,typescript", |
MongoDB Crash Course 2022 < TODO: Add Video Link
| filetype off " required | |
| " set the runtime path to include Vundle and initialize | |
| set rtp+=~/.vim/bundle/Vundle.vim | |
| call vundle#begin() | |
| Plugin 'VundleVim/Vundle.vim' | |
| Plugin 'tpope/vim-vinegar' | |
| Plugin 'preservim/nerdtree' | |
| " All of your Plugins must be added before the following line |
| set nocompatible " Latest vim setting and options | |
| so ~/.vim/plugins.vim | |
| let mapleader=',' | |
| set number | |
| "----------VISUALS------------" | |
| colorscheme dracula | |
| "set guifont=FIRA_CODE:h17 mac specifics |