As configured in my dotfiles.
start new:
tmux
start new with session name:
package main | |
import ( | |
"os" | |
"encoding/json" | |
"io/ioutil" | |
"fmt" | |
"strings" | |
) |
import socket | |
import select | |
import errno | |
s = socket.socket() | |
s.setblocking(0) | |
try: | |
s.connect(('14.215.177.39', 80)) |
class TimeMeasure | |
{ | |
public: | |
TimeMeasure(const std::string& name) : | |
name_(name), | |
start_time(std::chrono::high_resolution_clock::now()) | |
{ | |
} | |
~TimeMeasure() | |
{ |
As configured in my dotfiles.
start new:
tmux
start new with session name:
__author__ = 'current' | |
import sys | |
class Const(object): | |
class ConstError(TypeError): pass | |
def __setattr__(self, key, value): | |
if self.__dict__.has_key(key): |