参照:http://yeoman.io/codelab/setup.html1:$npm install --global yo bower grunt-cli提示以下错误npm ERR! tar.unpack untar error /home/y/.npm/grunt-cli/0.1.13/pa...
分类:
其他好文 时间:
2015-05-08 14:38:48
阅读次数:
351
gerrit服务器迁移后,clone和pull代码到本地,都没问题。但是,push时,报错:查看了下git版本库存储目录,发现git下版本库镜像文件owner都是root。因为之前安装的gerrit服务器使用root账号安装的。新的服务器使用了gerrit用户安装。并结合网络上的这个问题解决方案:h...
分类:
其他好文 时间:
2015-05-06 12:42:21
阅读次数:
171
Download:http://ftp.gnu.org/gnu/wget/Unpack:tar zxvf wget-1.16.tarConfiguration: ./configureIf you see these error below:You can run the configure wit...
分类:
系统相关 时间:
2015-04-22 13:28:45
阅读次数:
186
批量替换程序的文件注释头Install: Just unpack the files into your home directory. It will create a directory ~/rh containing all files. Now edit the file ~/rf/head...
分类:
其他好文 时间:
2015-04-16 15:41:49
阅读次数:
240
PHP与C服务器的socket通信,在做数据转换的时候,PHP没有提供对应将网络字节序和机器字节序相互转换的程序,但是根据函数的意义,我们可以做相应的转换来实现这一函数:function ntohl($str){ $arr = unpack('I', pack('N', $str)); ...
分类:
Web程序 时间:
2015-04-13 12:42:27
阅读次数:
149
一、pack任何一款拥有socket操作能力的语言都有一个专门用于组包的函数,php也不例外。参数中文说明:pack/unpack 的摸板字符字符 含义a 一个填充空的字节串A 一个填充空格的字节串b 一个位串,在每个字节里位的顺序都是升序B 一个位串,在每个字节里位的顺序都是降序c 一个有符号 c...
分类:
Web程序 时间:
2015-04-12 16:05:04
阅读次数:
234
Useinnounp.exe to unpack setup.exe created by using Inno setup:for example, unpack all the files wrapped inside setup.exe to a folder named unpacked i...
分类:
其他好文 时间:
2015-04-07 19:17:34
阅读次数:
195
写得不完善也不完美 尤其是高低位转换那(go和c 二进制高地位相反 需要转换,还有go int转[]byte长度是4位),希望牛人看后指导一下项目需要通过socket调取 客户端是go ,服务器端是python,由于需要封包解包,就参照python写的python 的pack/unpack 参考 P...
分类:
编程语言 时间:
2015-04-07 11:20:39
阅读次数:
216
有的时候需要用python处理二进制数据,比如,存取文件,socket操作时.这时候,可以使用python的struct模块来完成.可以用 struct来处理c语言中的结构体.struct模块中最重要的三个函数是pack(), unpack(), calcsize()pack(fmt, v1, v2...
分类:
编程语言 时间:
2015-04-07 11:17:31
阅读次数:
113
import struct
import os
#这里定义一个读取字符串长度的函数
def DecUnsignedLEB128(file):
result = struct.unpack("i", file.read(4))[0]#读取4字节中的第一个字节
result = result&0x000000ff
file.seek(-3, 1) #倒退回前面的第三个字节 ...
分类:
其他好文 时间:
2015-04-06 15:45:18
阅读次数:
217