Computer\HKEY_LOCAL_MACHINE\SYSTEM\CurrentControlSet\Enum\HID\<device_instance_path>\Device Parameters
- Change value of
FlipFlopHScrollfrom0to1.
| #!/bin/bash | |
| export RESTIC_REPOSITORY="s3:https://url.to/s3/compatible/bucket" | |
| export RESTIC_PASSWORD="RESTIC_PASSWORD" | |
| export AWS_ACCESS_KEY_ID="AWS_ACCESS_KEY_ID" | |
| export AWS_SECRET_ACCESS_KEY="AWS_SECRET_ACCESS_KEY" | |
| # Automatically initialize restic repo if it does not exist | |
| status="$(restic cat config 2>&1)" | |
| if [ $? -ne 0 ]; then |
| #!/bin/bash | |
| if [ "${TERM_PROGRAM}" != 'tmux' ]; then | |
| echo "Error: Must be run inside a tmux session!" | |
| exit 1 | |
| fi | |
| ssh_list=($@) | |
| split_list=() |
| import java.util.ArrayList | |
| import hudson.model.*; | |
| import jenkins.model.Jenkins | |
| // Remove everything which is currently queued | |
| def q = Jenkins.instance.queue | |
| for (queued in Jenkins.instance.queue.items) { | |
| q.cancel(queued.task) | |
| } |
| #!/usr/bin/env python3 | |
| import argparse | |
| import copy | |
| import json | |
| import subprocess | |
| import sys | |
| import multiprocessing as mp | |
| { | |
| "$help": "https://aka.ms/terminal-documentation", | |
| "$schema": "https://aka.ms/terminal-profiles-schema-preview", | |
| "actions": | |
| [ | |
| { | |
| "command": | |
| { | |
| "action": "globalSummon", | |
| "monitor": "any" |
Imperative configuration example:
git config gpg.format ssh
git config user.signingKey /path/to/private/ed25519key
git commit -S -m "signed commit"
git tag --sign --annotate -m "signed tag" v0.1.0Now we can verify the signatures with allowed_signers file: