This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
shell -$SHELL | |
altscreen on | |
startup_message off | |
autodetach on | |
nonblock on | |
defutf8 on | |
defscrollback 10000 |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
from BeautifulSoup import BeautifulSoup | |
VALID_TAGS = [ | |
'div', | |
'span', | |
'a', | |
'p', | |
'br', |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
export TERM="xterm-color" | |
export CLICOLOR=1 | |
export LSCOLORS=ExFxCxDxBxegedabagacad | |
PS1="\[\033[01;32m\]\u@\h\[\033[01;34m\] \w \$\[\033[00m\] " |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
#!/bin/bash | |
set -e | |
device=$1 | |
vlanid=$2 | |
interface=vlan$vlanid | |
bridge="docker0" | |
modprobe 8021q |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
var c = require('framework.js'); | |
var _step1_url = c.url + '/mine/info/1' | |
var _step2_url = c.url + '/mine/info/2' | |
var _step3_url = c.url + '/mine/info/3' | |
var _step4_url = c.url + '/mine/info/4' | |
var _step5_url = c.url + '/mine/info/5' | |
var check_loaded = function(){ | |
casper.waitForResource(/form_helper\.js$/, function(){ |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
#import "AppDelegate.h" | |
#import "gen-cocoa/ares.h" | |
#import "thrift/Thrift.h" | |
#import "thrift/transport/TSSLSocketClient.h" | |
#import "thrift/transport/TTransport.h" | |
#import "thrift/transport/TSocketClient.h" | |
#import "thrift/transport/TFramedTransport.h" | |
#import "thrift/protocol/TBinaryProtocol.h" | |
@implementation AppDelegate |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
package main | |
import ( | |
"fmt" | |
"net" | |
"os" | |
"time" | |
) | |
func main() { |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
syntax = "proto3"; | |
package tutorial; | |
message Person { | |
string name = 1; | |
int32 id = 2; | |
string email = 3; | |
enum PhoneType { |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
import sys | |
from itertools import chain, combinations | |
def find_partition(int_list): | |
A = set() | |
B = set() | |
for n in sorted(int_list, reverse=True): | |
if sum(A) < sum(B): | |
A.add(n) | |
else: |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
import sys | |
def print_progress(iteration, total, prefix = '', suffix = '', decimals = 2, barLength = 100): | |
filledLength = int(round(barLength * iteration / float(total))) | |
percents = round(100.00 * (iteration / float(total)), decimals) | |
bar = '#' * filledLength + '-' * (barLength - filledLength) | |
sys.stdout.write('%s [%s] %s%s %s\r' % (prefix, bar, percents, '%', suffix)), | |
sys.stdout.flush() | |
if iteration == total: | |
print("\n") |