heidsoft

Results 219 issues of heidsoft

# tcpdump 选项 ``` -i any 监听所有的网卡接口,用来查看是否有网络流量 -i eth0 只监听eth0网卡接口 -D 显示可用的接口列表 -n 不要解析主机名 -nn 不要解析主机名或者端口名 -q 显示更少的输出(更加quiet) -t 输出可读的时间戳 -tttt 输出最大程度可读的时间戳 -X 以hex和ASCII两种形式显示包的内容 -XX 与**-X**类似,增加以太网header的显示 -v, -vv, -vvv 显示更加多的包信息...

linux

查找最近7天访问过的文件 find . -type f -atime -7 -print 打印恰好7天前访问过的文件 find . -type f -atime 7 -print 打印访问时间超过7天访问过的文件 find . -type f -atime +7 -print 找出访问时间大于7分钟的文件 find . -type f -amin...

区块链相关网站 数据浏览器 币和交易所列表:coinmarketcap.com 比特币交易数据:blockchain.info 以太币交易数据:etherscan.io 中文网站 加密纪元:cryptoepoch.com 金色财经:jinse.com 巴比特:8btc.com 区块链铅笔:chainb.com 英文网站 coindesk.com bitcointalk.com bitcoinist.com bitcoininsider.org cryptopotato.com livebitcoinnews.com altcointoday.com cointelegraph.com cryptocoin.news medium.com coinspeaker.com 4-traders.com thebitcoinnews.com btcurrencies.com cointelligence.com cryptoninjas.net investing.com worldcoinindex.com zerohedge.com...

为了支持网络协议栈的多个实例,linux在网络协议栈引入了网络命名空间,这些独立的协议栈被隔离到不同 的命名空间中,处于不同的命名空间的网络协议栈事完全隔离的,彼此之间无法通信。docker 就是通过这种实现了不同容器之间的隔离。Veth这个设备对可以联通两个不同的命名空间,使得两个命名空间可以通信。 下面来模拟实现一下: 1. 创建一个命名空间。必须root用户。 $ ip netns add test0 查看命名空间 $ ip netns show test0 查看命名空间下的设备,目前只有回环地址。 $ip netns exec test0 ip addr show 1: lo: mtu 65536 qdisc...

http://www.cnblogs.com/Onlywjy/p/Elasticsearch.html

# fabric 编译报错处理 ``` Step 12/12 : RUN chmod a+rw -R /opt/gopath ---> Running in d486d902f24b ---> 0705672ca98d Removing intermediate container d486d902f24b Successfully built 0705672ca98d Successfully tagged hyperledger/fabric-baseimage:latest Building docker...

# 360公司 [360](https://github.com/Qihoo360) # facebook [facebookresearch](https://github.com/facebookresearch)

# 地图 https://github.com/neveldo/jQuery-Mapael https://datamaps.github.io/ https://github.com/ecomfe/echarts/issues/543 http://echarts.baidu.com/download-map.html

``` module: { //加载器配置 loaders: [ //.css 文件使用 style-loader 和 css-loader 来处理 { test: /\.css$/, loader: 'style-loader!css-loader' }, //.js 文件使用 jsx-loader 来编译处理 { test: /\.js$/, loader: 'jsx-loader?harmony' }, //.scss 文件使用...

javascript

1. [Angular 1.x和ES6的结合](https://github.com/xufei/blog/issues/29) 2. [phodal](https://github.com/phodal/repractise) 3. [front-end-manual](https://github.com/giscafer/front-end-manual)