摘要:
golang的rpc有两种方法进行调用,一种是rpc例子中给的:package mainimport ( "net/rpc" "net/http" "log" "net" "time")type Args struct { A, B int}type Arith intfunc (t *Arith) Multipl... 阅读全文
随笔档案-2013年02月
安装ffmpeg及nginx模块
2013-02-20 09:26 by 轩脉刃, 4445 阅读, 收藏, 编辑
摘要:
安装ffmpeg:下载文件wget http://ffmpeg.org/releases/ffmpeg-1.0.1.tar.gztar -xf ffmpeg-1.0.1.tar.gzcd ffmpeg-1.0.1./configure显示错误:[root@tester ffmpeg-1.0.1]# ./configure yasm not found, use --disable-yasm for a crippled build If you think configure made a mistake, make sure you are using the latest ve... 阅读全文
Polemo Chat客户端行为
2013-02-19 11:30 by 轩脉刃, 4619 阅读, 收藏, 编辑
摘要:
chatofpomelo的git地址在这里: https://github.com/NetEase/chatofpomelo 当你启动game-server和web-server之后,你就可以在web上进入一个聊天室进行实时聊天了。这里的实时聊天是使用了websocket技术,在网页和服务器上建立了一个连接,本文的目的在于分析清楚下客户端和服务端聊天的过程。 首先是客户端(页面)的js有: ... 阅读全文
go的websocket实现
2013-02-18 09:35 by 轩脉刃, 29198 阅读, 收藏, 编辑
摘要:
websocket分为握手和数据传输阶段,即进行了HTTP握手 + 双工的TCP连接 RFC协议文档在:http://tools.ietf.org/html/rfc6455 握手阶段 握手阶段就是普通的HTTP 客户端发送消息: GET /chat HTTP/1.1 Host: server.example.com Upgrade: websocket ... 阅读全文
系统知识点
2013-02-17 17:41 by 轩脉刃, 1336 阅读, 收藏, 编辑
摘要:
如何连号输出 seq 1 0 | xargs -i echo a_{} 查看两个文件夹的不同 diff -Naur test test2 输出到每天不同的日志文件 /usr/local/bin/php /home/q/system/test/api/bootstrap/index.php -m msg.clearMsg -t shell >> /home/yejianfeng/clea... 阅读全文
Go知识点记录
2013-02-06 11:21 by 轩脉刃, 4619 阅读, 收藏, 编辑
摘要:
import包命名 import的包可以给它命名 import l4g "code.google.com/p/log4go" testing的Error和Fatal的区别 Error : Log() + Fail() 即记录当前错误,记录为失败,但是继续执行 Fatal : Log() + FailNow() 即记录当前错误,记录为失败,不继续执行 path.Clean使用 pat... 阅读全文
在darwin上使用基于SecurID的Cisco VPN
2013-02-04 12:36 by 轩脉刃, 1487 阅读, 收藏, 编辑
摘要:
借鉴了@jqlblue的这篇 http://blog.sina.com.cn/s/blog_4c6b0c8e01017dev.html 步骤: 1 (如果已经知道组密码了,就直接忽略) 假设你在windows上已经登录过 进入路径如:C:\Program Files\Cisco Systems\VPN Client\Profiles 打开这个文件夹下的文件会看到诸如 enc_Grou... 阅读全文