Apple下发了支持64位的最后通牒:As we announced in October, beginning February 1, 2015 new iOS apps submitted to the App Store must include 64-bit support and be b...
分类:
其他好文 时间:
2015-01-06 13:26:11
阅读次数:
137
关于MSYS2的文章可以参考下面的链接,笔者不多赘述:msys2安装笔记MSYS2 + MinGW-w64 + Git + gVim 环境配置由于GFW作怪,访问SF的源并不稳定,笔者推荐使用北京理工大学的镜像:http://mirror.bit.edu.cn/msys2/REPOS/修改msys2...
分类:
其他好文 时间:
2015-01-05 20:25:00
阅读次数:
1828
How to setup Darwin Streaming Server 6.0.3 on 32 or 64 bit Linux platforms, add custom functionality by developing plugins ("modules" as Apple calls t...
题目:
Given an array of integers, every element appears twice except for one. Find that single one.
Note:
Your algorithm should have a linear runtime complexity. Could you implement it without us...
分类:
编程语言 时间:
2015-01-04 23:10:13
阅读次数:
286
1、计算机存储信息的最小单位,称之为位(bit),音译比特,二进制的一个“0”或一个“1”叫一位。
2、计算机存储容量基本单位是字节(Byte),音译为拜特,8个二进制位组成1个字节,一个标准英文字母占一个字节位置,一个标准汉字占二个字节位置。
3、计算机存储容量大小以字节数来度量,1024进位制:
1024B=1K(千)B
1024KB=1M(兆)B
1024MB=1G(吉)B
10...
分类:
其他好文 时间:
2015-01-04 21:26:07
阅读次数:
230
问题:存储一个日期的序列,例如保存用户一年的登录时间序列,20140201,20130102这样两个日期,如果用INT那么需要八个字节,用STRING就更多了。解决:通过bit来存储一天,具体的组织形式是这样的struct daybits { Year[] before_years; Year[.....
分类:
其他好文 时间:
2015-01-04 16:38:13
阅读次数:
133
ios 上传app提示miss 64-bit support警告
最近上传app提示了这个警告问题,记录一下
App store 发布,64位问题,Missing 64-bit support...
分类:
移动开发 时间:
2015-01-04 15:20:27
阅读次数:
458
作者:zhanhailiang 日期:2014-12-21bitmap apiSETBIT key offset value对key所储存的字符串值,设置或清除指定偏移量上的位(bit)。位的设置或清除取决于value參数,能够是0也能够是1。当key不存在时,自己主动生成一个新的字符串值。字符串会...
分类:
其他好文 时间:
2015-01-03 15:52:12
阅读次数:
137
代码如下:#include //#include #include #include #include using namespace std;#define GL_PI 3.1415fvoid RenderScene(){ glClear(GL_COLOR_BUFFER_BIT|GL_DEP...
分类:
其他好文 时间:
2015-01-03 13:09:37
阅读次数:
107