Once again, in this series of posts I look at the parts of the .NET Framework that may seem trivial, but can help improve your code by making it easie...
分类:
Web程序 时间:
2014-07-16 23:25:24
阅读次数:
601
环境声明:主从服务器位于192.168.0.0/24网段master-->IP:192.168.0.88master-->IP:192.168.0.89在Master---主数据库的脚本master-IP:192.168.0.88#!/bin/sh
#Function:Thisisusedformysql-masterrole
#madebyzhigang.wang
#contact:44850823@qq.com
MYUSER=root
MYPASS..
分类:
数据库 时间:
2014-06-28 00:56:03
阅读次数:
432
判断CPU 是小端存储(Little endian)还是大端存储(Big endian)模式
static union
{
int a;
char b;
}_s_var_endian_check = {1};
#define ISLITTLEENDIAN (_s_var_endian_check.b == 1)
#define ISBIGENDIAN !ISLITTLEENDIAN...
分类:
其他好文 时间:
2014-06-27 09:28:41
阅读次数:
198
KM 求权值最小的完美匹配
Going Home
Time Limit: 1000MS
Memory Limit: 65536K
Total Submissions: 17309
Accepted: 8824
Description
On a grid map there are n little...
分类:
其他好文 时间:
2014-06-27 08:56:18
阅读次数:
135
a little riak book 的无聊总结
#!/bin/bash
# Riak HTTP interface stays true to their intent: 1xx Informational, 2xx Success,
# 3xx Further Action, 4xx Client Error, 5xx Server Error
### put
PORT=10...
分类:
其他好文 时间:
2014-06-25 08:22:11
阅读次数:
178
大字节序(Big Endian):低地址存高位小字节序(Little Endian):高地址存地位int main(){ int x=1; char *temp = NULL; temp= (char *)&x; if (*temp =...
分类:
其他好文 时间:
2014-06-22 23:23:02
阅读次数:
202
常见的80x86 CPU是先存放小值,再存放大值。这是小端字节(Little endian)序列。
而数字在互联网上传输的时候,是大端字节序列(Big endian)。所以,网络编程里有一个api是htons(),用来将主机字节顺序转化成为网络字节顺序。
常见的CPU平台如下:
处理器
操作系统
字节顺序
Alpha...
分类:
其他好文 时间:
2014-06-22 16:32:56
阅读次数:
228
走进WAVE文件
WAVE是录音时用的标准的Windows文件格式,文件的扩展名为“wav”,数据本身的格式为PCM或压缩型,属于无损音乐格式的一种,符合RIFF(Resource
Interchange File Format)规范。所有的WAV都有一个文件头,这个文件头音频流的编码参数。数据块的记录方式是小端(little-endian)字节顺序,标志符并不是字符串而是单独的符号
表1...
分类:
系统相关 时间:
2014-06-22 16:18:11
阅读次数:
326
binansuo bat摩索拉斯陵墓埃及的金字塔god秦始皇陵兵马俑 xia shang zhou han qing qi jifa houyi yingzheng liubang(feng wang)秦始皇兵马俑3号坑介绍巴比伦空中花园阿尔忒弥斯月神庙亚历山大港灯塔爱琴海太阳神像shuntiany...
分类:
其他好文 时间:
2014-06-22 11:01:47
阅读次数:
325
Running KVM and Openvswitch on Ubuntu 12.10 I’ve got an aging VMWare ESXi 4.0 server that needs to be replaced with something a little more modern and...
分类:
其他好文 时间:
2014-06-21 14:53:30
阅读次数:
338