create different ssh key according the article Mac Set-Up Git
$ ssh-keygen -t rsa -C "[email protected]"
| #!/bin/bash | |
| # Mullvad + Tailscale Exit Node Setup Script | |
| # Run this inside your Proxmox LXC container | |
| # Prerequisites: LXC must have TUN device access configured | |
| set -e | |
| RED='\033[0;31m' | |
| GREEN='\033[0;32m' |
| #!/usr/bin/env bash | |
| DRY_RUN=true # Set to false for real run | |
| # Then wrap all pct commands: | |
| if [ "$DRY_RUN" = false ]; then | |
| pct create $CTID ... | |
| else | |
| echo "[DRY RUN] Would create: pct create $CTID ..." | |
| fi |
| { | |
| "node-path" : ":/usr/local/bin", | |
| "config": { | |
| "always-semicolon": true, | |
| "block-indent": 2, | |
| "color-case": "lower", | |
| "color-shorthand": true, | |
| "element-case": "lower", | |
| "eof-newline": true, | |
| "leading-zero": false, |
create different ssh key according the article Mac Set-Up Git
$ ssh-keygen -t rsa -C "[email protected]"
| Object.defineProperty(Function.prototype, '$inject', { | |
| configurable: true, | |
| get: function() { | |
| return this.$injectHooked; | |
| }, | |
| set: function (arr) { | |
| if (arr.length && arr[0].length < 3) { | |
| console.error('missing @ngInject:', this); | |
| } | |
| return this.$injectHooked = arr; |
| function query() { | |
| var | |
| total = 0, shown = 0, | |
| // HN is done with very unsemantic classes. | |
| job_list = Array.prototype.slice.call(document.querySelectorAll('.c5a,.cae,.c00,.c9c,.cdd,.c73,.c88')), | |
| query_list = Array.prototype.slice.call(arguments); | |
| // This traverses up the dom stack trying to find a match of a specific class | |
| function up_to(node, klass) { | |
| if (node.className === klass) { |
| g:commit() { | |
| message="${1}" | |
| if [ $# -gt 1 ]; then | |
| case "$1" in | |
| -s) | |
| message="${2} --skip-ci" | |
| ;; | |
| esac | |
| fi | |
| git commit -m "${message}" |
| Stash this hunk [y,n,q,a,d,/,K,g,s,e,?]? :q | |
| y - stash this hunk | |
| n - do not stash this hunk | |
| q - quit; do not stash this hunk or any of the remaining ones | |
| a - stash this hunk and all later hunks in the file | |
| d - do not stash this hunk or any of the later hunks in the file | |
| g - select a hunk to go to | |
| / - search for a hunk matching the given regex | |
| j - leave this hunk undecided, see next undecided hunk | |
| J - leave this hunk undecided, see next hunk |
| { | |
| "bold_folder_labels": true, | |
| "caret_extra_bottom": 0, | |
| "caret_extra_top": 0, | |
| "caret_extra_width": 1, | |
| "caret_style": "phase", | |
| "color_scheme": "Packages/Colorcoder/Seti_orig (Colorcoded).tmTheme", | |
| "default_line_ending": "unix", | |
| "draw_white_space": "all", | |
| "ensure_newline_at_eof_on_save": true, |
| { | |
| "vars": { | |
| "@gray-base": "#000", | |
| "@gray-darker": "lighten(@gray-base, 13.5%)", | |
| "@gray-dark": "lighten(@gray-base, 20%)", | |
| "@gray": "lighten(@gray-base, 33.5%)", | |
| "@gray-light": "lighten(@gray-base, 46.7%)", | |
| "@gray-lighter": "lighten(@gray-base, 93.5%)", | |
| "@brand-primary": "darken(#428bca, 6.5%)", | |
| "@brand-success": "#5cb85c", |