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
Team behind Go: | |
- Ken Thompson | |
- Co-Creator of Unix | |
- Co-Creator of UTF-8 | |
- Creator of 'B', the direct predecessor to the 'C' programming language | |
- Rob Pike | |
- Member of Unix Team at Bell Labs | |
- Creator of Plan 9 | |
- Co-Creator of UTF-8 |
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 MY_HADOOP_HOME=/data/current_hadoop | |
alias hkill="${MY_HADOOP_HOME}/bin/hadoop --config ${MY_HADOOP_HOME}/conf job -Dmapred.job.tracker=master:9001 -kill " | |
alias hcat="${MY_HADOOP_HOME}/bin/hadoop fs -cat " | |
alias hget="${MY_HADOOP_HOME}/bin/hadoop fs -get " | |
alias hls="${MY_HADOOP_HOME}/bin/hadoop fs -ls " | |
alias hmkdir="${MY_HADOOP_HOME}/bin/hadoop fs -mkdir " | |
alias hchmod="${MY_HADOOP_HOME}/bin/hadoop fs -chmod " | |
alias hput="${MY_HADOOP_HOME}/bin/hadoop fs -put " | |
alias hrm="${MY_HADOOP_HOME}/bin/hadoop fs -rmr " | |
alias hstart="${MY_HADOOP_HOME}/bin/start-all.sh" |
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 ( | |
"crypto/tls" | |
"net" | |
"net/http" | |
"time" | |
"fmt" | |
"errors" | |
) |
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 ( | |
"net/http" | |
"net/url" | |
"log" | |
"io/ioutil" | |
"regexp" | |
"fmt" | |
//"net/http/httputil" |
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
打开/前往 | |
⌘T 前往文件 | |
⌘⌃P 前往项目 | |
⌘R 前往 method | |
⌘⇧P 命令提示 | |
⌃G 前往行 | |
⌘KB 开关侧栏 | |
⌃ ` python 控制台 | |
⌘⇧N 新建窗口 |
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
# -*- Encoding: utf-8 -*- | |
import base64 | |
import binascii | |
import cgi | |
import hashlib | |
import hmac | |
import logging | |
import time | |
import urllib | |
import urlparse |
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
.markdown-body { | |
font-size: 14px; | |
line-height: 1.6; | |
} | |
.markdown-body > *:first-child { | |
margin-top: 0 !important; | |
} | |
.markdown-body > *:last-child { | |
margin-bottom: 0 !important; | |
} |
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
using System; | |
using System.Collections.Generic; | |
using System.Linq; | |
using System.Text; | |
using System.Net; | |
using System.Net.Sockets; | |
using System.Threading; | |
using System.Collections.Concurrent; | |
namespace GraphicsToolkit.Networking |