Skip to content

Instantly share code, notes, and snippets.

View elwint's full-sized avatar

Elwin Tamminga elwint

  • The Netherlands
View GitHub Profile
@elwint
elwint / virt_messenger.py
Last active December 21, 2017 23:24
Messenger between VM's via CPU execution time
#!/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
@elwint
elwint / main.css
Last active July 26, 2023 11:50
Expanding Search Bar/Box CSS only (no JS)
/* Free to use for everyone */
/* Example: http://codepen.io/elwint/pen/vGMRaB */
body {
font-family: sans-serif;
background-color: #111;
}
.button {
display: inline-block;