This file contains 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 sys | |
import time | |
import urllib.request | |
from threading import Thread | |
class fgcolor: | |
green = "\x1b[32;20m" |
This file contains 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 json | |
import sys | |
import time | |
from http.server import BaseHTTPRequestHandler, HTTPServer, ThreadingHTTPServer | |
from pathlib import Path | |
from urllib.parse import parse_qs, urlparse | |
sessions = {} |
This file contains 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
### Keybase proof | |
I hereby claim: | |
* I am sveniu on github. | |
* I am sveniu (https://keybase.io/sveniu) on keybase. | |
* I have a public key ASCXcAeocUehdWNzStzoljv_TXj41zGMm5ANzeg6kkaL3wo | |
To claim this, I am signing this object: |
This file contains 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
#!/bin/sh | |
# Enumerate all interrupts used by either the default or a specified | |
# network interface, and map them to separate CPUs. Each CPU that gets | |
# assigned interrupts will also have its C-states deeper than C1 | |
# disabled to reduce the probability of rx queue overflow. | |
# | |
# TODO: NUMA interrupt scheduling. | |
# |