- Create a .gitignore file in the git repository if it does not contain one
touch .gitignore
2. Open up the .gitignore and add the following line to the file
node_modules 3. Remove the node_modules folder from the git repository
const http = require('http'); | |
const fs = require('fs'); | |
// the http module has a createServer method. | |
// Takes 1 arg | |
// 1. callbacks, callbacks, has 2 args: req, res | |
const server = http.createServer((req, res) => { | |
if (req.url === '/') { | |
//res = ouw way of responding to the requester. | |
//http message. | |
//1. start line check |
#!/bin/sh | |
# This script is called on startup to remap keys. | |
# Increase key speed via a rate change | |
xset r rate 300 50 | |
setxkbmap us -variant colemak # set up the default keyboard layout to colemak | |
# Map the caps lock key to super... | |
setxkbmap -option caps:super | |
# But when it is pressed only once, treat it as escape. | |
killall xcape 2>/dev/null ; xcape -e 'Super_L=Escape' |
#!/bin/sh | |
# This script is called on startup to remap keys. | |
# Increase key speed via a rate change | |
xset r rate 300 50 | |
setxkbmap us -variant colemak # set up the default keyboard layout to colemak | |
# make CapsLock behave like Ctrl: | |
setxkbmap -option ctrl:nocaps | |
# make short-pressed Ctrl behave like Escape: | |
xcape -e 'Control_L=Escape' |
# My remaps to colemak navigation | |
copymap <UP> e | |
copymap <DOWN> n | |
copymap <LEFT> h | |
copymap <RIGHT> i | |
copymap <HOME> gg | |
copymap <END> G | |
# pager navigation remaps | |
copypmap <UP> e <C-p> |
[ | |
{ | |
"key": "ctrl+h", | |
"command": "workbench.action.focusLeftGroup", | |
"when": "editorTextFocus && vim.active && vim.mode != 'Insert'" | |
}, | |
{ | |
"key": "ctrl+l", | |
"command": "workbench.action.focusRightGroup", | |
"when": "editorTextFocus && vim.active && vim.mode != 'Insert'" |
I just got this working so I figured I'd share what I found, since there's hardly any information about this anywhere online except an RFC, the GPG mailing list and one tutorial from the GnuPG blog.
You can use automatic key discovery with WKD (Web key directory) to make it easy for users to import your key, in GPG since version 2.1.12. Since this feature is fairly new, it isn't yet available in the current LTS release of Ubuntu (16.04; xenial), however it is available in Debian stable (stretch).
I couldn't add a DNS CERT or DANE / OPENPGPKEY record through my email service (which also hosts my nameservers). I tried making the PKA record - a foo._pka.example.com
TXT record but GPG doesn't seem to recognize it and fails; I'm still investigating why.
So the last option for self-hosted auto-discovery was WKD.
First thing I had to do was add an email address to my key. My primary UID is just my name so the key represents my identity rather
{ | |
"$schema": "https://aka.ms/terminal-profiles-schema", | |
"defaultProfile": "{c6eaf9f4-32a7-5fdc-b5cf-066e8a4b1e40}", | |
"launchmode" : "maximized", | |
"profiles": | |
{ | |
"defaults": { | |
// Put settings here that you want to apply to all profiles |