(by @andrestaltz)
If you prefer to watch video tutorials with live-coding, then check out this series I recorded with the same contents as in this article: Egghead.io - Introduction to Reactive Programming.
#!/usr/bin/python | |
import random | |
import re | |
import sys | |
options = {} | |
class RollSpec: | |
def __init__(self, spec): |
#! /usr/bin/env python3 | |
"""html_to_csv.py | |
Prompts for a URL, displays HTML tables from that page, then converts | |
the selected table to a csv file. | |
""" | |
import sys | |
import pandas | |
url = input("Enter the URL: ") |
(by @andrestaltz)
If you prefer to watch video tutorials with live-coding, then check out this series I recorded with the same contents as in this article: Egghead.io - Introduction to Reactive Programming.
# 0 is too far from ` ;) | |
set -g base-index 1 | |
# Automatically set window title | |
set-window-option -g automatic-rename on | |
set-option -g set-titles on | |
#set -g default-terminal screen-256color | |
set -g status-keys vi | |
set -g history-limit 10000 |