duplicates = multiple editions
A Classical Introduction to Modern Number Theory, Kenneth Ireland Michael Rosen
A Classical Introduction to Modern Number Theory, Kenneth Ireland Michael Rosen
def start_repl(): | |
import code | |
import readline | |
import rlcompleter | |
vars = globals() | |
vars.update(locals()) | |
readline.set_completer(rlcompleter.Completer(vars).complete) | |
readline.parse_and_bind("tab: complete") | |
code.InteractiveConsole(vars).interact() |
# To reload this conf, run: | |
# :source-file ~/.tmux.conf | |
# or | |
# $ tmux source-file ~/.tmux.conf | |
# | |
# To sync panes: | |
# :setw synchronize-panes | |
# this can be followed by on/off | |
set-option -g default-shell /usr/bin/zsh |
import collection.mutable.Queue | |
import java.util.concurrent.locks.ReentrantLock | |
import java.util.Timer | |
import java.util.Date | |
import java.util.TimerTask | |
import concurrent.Promise | |
import concurrent.Future | |
object TimerBasedThrottler { | |
lazy val timer: Timer = new Timer(true) |