start new:
tmux
start new with session name:
tmux new -s myname
| ''' we're solving fizzbuzz with a little help from the web ''' | |
| from html.parser import HTMLParser | |
| from urllib.request import Request, urlopen | |
| import re | |
| import time | |
| base_url = 'https://www.answers.com/Q/' | |
| tag_name = 'div' | |
| class_name = 'answer-body' | |
| delimiter = '_' |
| import styled from "styled-components"; | |
| interface IPadding { | |
| pt?: string; | |
| pr?: string; | |
| pb?: string; | |
| pl?: string; | |
| pa?: string; | |
| pv?: string; | |
| ph?: string; |
| enum keyCodes { | |
| BACKSPACE: 8, | |
| TAB: 9, | |
| ENTER: 13, | |
| SHIFT: 16, | |
| CTRL: 17, | |
| ALT: 18, | |
| PAUSE: 19, | |
| CAPS_LOCK: 20, | |
| ESCAPE: 27, |