Skip to content

Instantly share code, notes, and snippets.

@n3fariox
n3fariox / interruptible_cmd.py
Created May 2, 2017 05:22
Non-Blocking Cmd w/Readline Completion
import cmd
import readline
import select
import sys
import threading
import time
def setup_readline():
import ctypes
@n3fariox
n3fariox / html_width_test.html
Last active January 16, 2018 01:30
HTML Test File with a Tiny Column
<table>
<colgroup>
<col width="95%">
<col width="5%">
</colgroup>
<tr>
<td>Question</td>
<td>Y/N?</td>
</tr>
<tr>