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/python3 | |
# | |
# Usage: virt_messenger.py [--debug] | |
# Support for sending text, however chance of receiving correct characters: ~5-15%. | |
# Chance could maybe still be improved by sending slower and/or changing the execution time. | |
import os | |
import time | |
import threading | |
import multiprocessing as mp |
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
/* Free to use for everyone */ | |
/* Example: http://codepen.io/elwint/pen/vGMRaB */ | |
body { | |
font-family: sans-serif; | |
background-color: #111; | |
} | |
.button { | |
display: inline-block; |