Skip to content

Instantly share code, notes, and snippets.

@LordKayBanks
LordKayBanks / metaeditor.ini
Created October 20, 2017 12:35 — forked from f6p/metaeditor.ini
MT4 Code Editor Monokai Theme
[Font]
Bold=700
FaceName=Consolas
Height=10
[Colors]
Color0=2304040
Color1=16119285
Color2=6255480
Color3=2963255
Color4=2304040
patbenatar.advanced-new-file
formulahendry.auto-close-tag
formulahendry.auto-rename-tag
fosshaas.fontsize-shortcuts
BriteSnow.vscode-toggle-quotes
Zignd.html-css-class-completion
christian-kohler.npm-intellisense
christian-kohler.path-intellisense
octref.vetur
dbaeumer.vscode-eslint
@LordKayBanks
LordKayBanks / docker-help.md
Created January 21, 2020 17:07 — forked from bradtraversy/docker-help.md
Docker Commands, Help & Tips

Docker Commands, Help & Tips

Show commands & management commands

$ docker

Docker version info

@LordKayBanks
LordKayBanks / capslock_remap_alt.ahk
Created April 28, 2020 21:27 — forked from Danik/capslock_remap_alt.ahk
Autohotkey Capslock Remapping Script. Makes Capslock function as a modifier key to get cursor keys etc. on the left side of the keyboard, so you never have to move your hand to the right.
; Autohotkey Capslock Remapping Script
; Danik
; More info at http://danikgames.com/blog/?p=714
; danikgames.com
;
; Functionality:
; - Deactivates capslock for normal (accidental) use.
; - Hold Capslock and drag anywhere in a window to move it (not just the title bar).
; - Access the following functions when pressing Capslock:
; Cursor keys - J, K, L, I
@LordKayBanks
LordKayBanks / NPM git pre-commit hook
Last active July 9, 2020 10:49
NPM git pre-commit hook
"scripts": {
"start:local": "react-scripts start --no-cache",
"start": "source dev.env && react-scripts start --no-cache",
"build": "react-scripts build",
"test": "react-scripts test --no-cache",
"eject": "react-scripts eject",
"prettier:fix": "prettier --write --no-config src/**/*.{js,ts,css.scss,json}",
"precommit": "lint-staged"
},
"lint-staged": {
from selenium import webdriver
from selenium.webdriver.common.keys import Keys
import time
import random
import sys
def print_same_line(text):
sys.stdout.write('\r')
sys.stdout.flush()