start new:
tmux
start new with session name:
tmux new -s myname
Prerequisites:
Software components used:
The process starts by creating the CSR and the private key:
openssl req -nodes -newkey rsa:2048 -nodes -keyout dotmarks.net.key -out dotmarks.net.csr -subj "/C=GB/ST=London/L=London/O=dotmarks/OU=IT/CN=dotmarks.net"
Generates
| { | |
| "id": "nsqadmin-http", | |
| "kind": "Service", | |
| "apiVersion": "v1beta1", | |
| "port": 14171, | |
| "protocol": "TCP", | |
| "selector": { "name": "nsqadmin" } | |
| } | |
| var gulp = require('gulp'); | |
| var sourcemaps = require('gulp-sourcemaps'); | |
| var source = require('vinyl-source-stream'); | |
| var buffer = require('vinyl-buffer'); | |
| var browserify = require('browserify'); | |
| var watchify = require('watchify'); | |
| var babel = require('babelify'); | |
| function compile(watch) { | |
| var bundler = watchify(browserify('./src/index.js', { debug: true }).transform(babel)); |
| // Place your settings in this file to overwrite the default settings | |
| { | |
| "editor.fontSize": 15, | |
| "editor.fontFamily": "Consolas", | |
| "editor.tabSize": 2, | |
| "editor.wordWrapColumn": 80, | |
| "editor.fontLigatures": true, | |
| "editor.snippetSuggestions": "top", | |
| "editor.minimap.enabled": true, | |
| "files.exclude": { |
I am moving this gist to a github repo so more people can contribute to it. Also, it makes it easier for me to version control.
Please go to - https://github.com/praveenpuglia/shadow-dom-in-depth for latest version of this document. Also, if you find the document useful, please shower your love, go ⭐️ it. :)
Heads Up! It's all about the V1 Spec.
In a nutshell, Shadow DOM enables local scoping for HTML & CSS.