dd bs=4M if=/path/to/archlinux.iso of=/dev/sdx status=progress && sync
loadkeys <your-keymap>
// ==UserScript== | |
// @name ___ChromeExtention_Keyboard | |
// @version 1 | |
// @grant none | |
// @run-at document-start | |
// @include /^https:\/\/(lichess\.org|lichess\.dev|mskchess\.ru)\/(\w{8}|\w{12})(\/white|\/black)?$ | |
// The original script and inspiration by Vempele: https://gist.github.com/Vempele/46333e85e33b6d488c3ffb131942272d | |
// ==/UserScript== | |
(() => { |
function FindProxyForURL(url, host) | |
{ | |
return "SOCKS5 192.168.8.141:8080;"; | |
} |
[Unit] | |
Description=Phone Home Reverse SSH Service | |
ConditionPathExists=|/usr/bin | |
After=network.target | |
[Service] | |
User=sshtunnel | |
ExecStart=/usr/bin/ssh -NTC -o ServerAliveInterval=60 -o ExitOnForwardFailure=yes -o StrictHostKeyChecking=no -i /home/sshtunnel/.ssh/id_rsa -R 22223:localhost:22 user@remote-ssh-server | |
# Restart every >2 seconds to avoid StartLimitInterval failure | |
RestartSec=3 |
#include <windows.h> | |
#include <stdio.h> | |
#include <TlHelp32.h> | |
#include <Setupapi.h> | |
#include <string.h> | |
void vmx_check(); | |
void process_name_check(); | |
void class_name_check(); | |
void cpuid_check(); |