This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
#! /usr/bin/env python3 | |
import psutil | |
import signal | |
from time import sleep | |
from subprocess import Popen, PIPE | |
import logging | |
logger = logging.getLogger("sidekiq-killer") | |
#logging.basicConfig(level=logging.INFO) |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Couscous: | |
- 1 Tasse Couscous mit 1.5 Tassen Wasser aufkochen, dazu ein EL Gemüsebrühe | |
- Köcheln lassen bis das Wasser vollständig weg ist (nicht zu heiß, verbrennt leicht) | |
Dressing: | |
- 1 EL Öl + 2 EL Essig (Balsamico oder "normalen") + 1/2 EL Senf | |
- gut vermischen | |
- etwas Zitrone | |
Sonstiges: |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
g_LastCtrlKeyDownTime := 0 | |
g_AbortSendEsc := false | |
g_ControlRepeatDetected := false | |
*CapsLock:: | |
if (g_ControlRepeatDetected) | |
{ | |
return | |
} |