Skip to content

Instantly share code, notes, and snippets.

View tonkoandrew's full-sized avatar
🎯
Focusing

Andrew Tonko tonkoandrew

🎯
Focusing
View GitHub Profile
import this
def hello_world():
print("Hello world!")
hello_world()
@tonkoandrew
tonkoandrew / remover.py
Last active September 26, 2021 23:19
remove nag screen in sublimetext 3
# Place this file in ~/.config/sublime-text-3/Packages/User/
import sublime
import sublime_plugin
import subprocess
from time import sleep
import sys
cl = lambda line: subprocess.Popen(line, shell=True, stdout=subprocess.PIPE).communicate()[0].strip()
log = lambda message: sys.stderr.write("Log: %s\n" % message)