based on the
Thank you for your interest in contributing to Mikhail Goncharov's apex legends recoils ("We" or "Us").
| eins | |
| zwei | |
| drei | |
| vier | |
| fünf | |
| sechs | |
| sieben | |
| acht | |
| neun | |
| zehn |
| #NoEnv ; Recommended for performance and compatibility with future AutoHotkey releases. | |
| #Warn ; Enable warnings to assist with detecting common errors. | |
| Global SPIProc, User32Module | |
| User32Module := DllCall("GetModuleHandle", Str, "user32", "Ptr") | |
| SPIProc := DllCall("GetProcAddress", "Ptr", User32Module, "AStr", "SystemParametersInfoW", "Ptr") | |
| ; Hotkeys are "WIN+F1" and "WIN+F2" | |
| #F1::DllCall(SPIProc, Int, 0x71, Int, 0, UInt, 10, Int, 0) ; 1x | |
| #F2::DllCall(SPIProc, Int, 0x71, Int, 0, UInt, 6, Int, 0) ; 0.5 speed |
| { | |
| "title": "switch en/ru/de", | |
| "rules": [ | |
| { | |
| "description": "Use alt+shift+4(ru)/5(en)", | |
| "manipulators": [ | |
| { | |
| "from": { | |
| "key_code": "5", | |
| "modifiers": { |
| #!/usr/bin/env python3 | |
| from shapely.geometry.polygon import Polygon | |
| from shapely.geometry.multipolygon import MultiPolygon | |
| from shapely.geometry.linestring import LineString | |
| from shapely.affinity import rotate, translate | |
| import shapely | |
| import shapely.ops as ops | |
| import matplotlib.pyplot as plt | |
| import math |
| kubectl describe certificate -n cert-manager | |
| kubectl rollout restart -n cert-manager deployment/cert-manager | |
| kubectl rollout restart -n cert-manager deployment/cert-manager-cainjector | |
| kubectl rollout restart -n cert-manager deployment/cert-manager-webhook | |
| kubectl describe certificate -n cert-manager | |
| # cert for build.* still not applied | |
| # https://cert-manager.io/docs/installation/uninstall/kubernetes/ | |
| kubectl cluster-info |
| #if defined(LOCAL) | |
| #include "logging.h" | |
| #define L(x...) (debug(x, #x)) | |
| #else | |
| #define L(x, ...) (x) | |
| #endif | |
| #include <bits/stdc++.h> | |
| using namespace std; |