Skip to content

Instantly share code, notes, and snippets.

View mastro35's full-sized avatar
👾

Davide Mastromatteo mastro35

👾
View GitHub Profile
import time
from watchdog.observers import Observer
from watchdog.events import PatternMatchingEventHandler
PATHTOBEOBSERVED = '.'
def on_created(event):
print(f"hey, {event.src_path} has been created!")
def on_deleted(event):
{
"font_face": "Monoid",
"font_size": 9,
"theme": "ayu-dark.sublime-theme",
"ignored_packages":
[
"Vintage",
],
"color_scheme": "Packages/ayu/ayu-dark.sublime-color-scheme",
}
import time
from watchdog.observers import Observer
from watchdog.events import PatternMatchingEventHandler
PATHTOBEOBSERVED = '.'
def on_created(event):
print(f"hey, {event.src_path} has been created!")
def on_deleted(event):
nc neonecronomicon.it 8010 | awk '{gsub(/\xFF/,""); gsub(/\xF1/,"");}1'
nc neonecronomicon.it 8010 | awk '{gsub(/\xFF/,""); gsub(/\xF1/,"");}1'
#!/usr/bin/env python
import os
import sys
import errno
from fuse import FUSE, FuseOSError, Operations
from Passthrough import Passthrough
class dfs(Passthrough):
#!/usr/bin/env python
from __future__ import with_statement
import os
import sys
import errno
from fuse import FUSE, FuseOSError, Operations
"""
Engine class of the RPN Calculator
"""
import math
from inspect import signature
class rpn_engine:
def __init__(self):
""" Constructor """
"""
Engine class of the RPN Calculator
"""
import math
class rpn_engine:
def __init__(self):
""" Constructor """
self.stack = []
"""
Engine class of the RPN Calculator
"""
import math
class rpn_engine:
def __init__(self):
""" Constructor """
self.stack = []