Skip to content

Instantly share code, notes, and snippets.

View gyoza's full-sized avatar
💭
Kuuru the bestest doggo - RIP 2009-2018

Jon gyoza

💭
Kuuru the bestest doggo - RIP 2009-2018
  • Some Artificial Intelligence Company.
  • colorado, us
View GitHub Profile
@gyoza
gyoza / py
Created April 26, 2018 17:40
touch
def touch(path):
with open(path, 'a'):
os.utime(path, None)
@gyoza
gyoza / py
Created April 26, 2018 16:28
kill hung nginx workers
#!/usr/bin/env python2.7
#
# kills openresty nginx and possibly regular nginx '"hung"' worker processes
#
# version 0.1
#
import psutil
import os
import time
@gyoza
gyoza / py
Created April 26, 2018 16:28
kill hung nginx workers
#!/usr/bin/env python2.7
#
# kills openresty nginx and possibly regular nginx '"hung"' worker processes
#
# version 0.1
#
import psutil
import os
import time