摘要: 苹果已经不提供给IOS做交叉编译的纯gcc了。 阅读全文
posted @ 2012-04-14 08:45 maadiah 阅读(150) 评论(0) 推荐(0) 编辑
摘要: 用户: 一切皆服务 技术: Blender 图形三维 虚拟现实3D gis uniscope OSG 3D game OGRE DOOM 编程语言 类型系统 静态和动态:确定类型的时间 强类型和弱类型:不同类型的相互转化 函数式编程 本质是没有副作用的函数调用 高阶函数 闭包 重新审视面向对象:广义函数;类 lisp 3d enginehttp://code.go... 阅读全文
posted @ 2012-04-11 14:36 maadiah 阅读(169) 评论(0) 推荐(0) 编辑
摘要: http://docs.info.apple.com/article.html?path=Mac/10.5/zh/9036.html 阅读全文
posted @ 2012-04-06 14:08 maadiah 阅读(295) 评论(0) 推荐(0) 编辑
摘要: success for android ,here is the Android.mkLOCAL_PATH := $(realpath $(call my-dir)/../.. )include $(CLEAR_VARS)LOCAL_MODULE := zthreadsLOCAL_CPP_EXTENSION := .cxx### Add all source file names to be included in lib separated by a whitespaceLOCAL_SRC_FILES := \ZThread/src/AtomicCount.cxx \ZThread/s... 阅读全文
posted @ 2012-04-06 14:07 maadiah 阅读(855) 评论(0) 推荐(0) 编辑
摘要: cd /usr/binsudo ln -s /Applications/Sublime\ Text\ 2.app/Contents/SharedSupport/bin/subl subl 阅读全文
posted @ 2012-04-06 13:14 maadiah 阅读(2549) 评论(0) 推荐(0) 编辑
摘要: grep -r --exclude=*.svn search_query * 阅读全文
posted @ 2012-04-05 20:59 maadiah 阅读(132) 评论(0) 推荐(0) 编辑
摘要: 查表法,c语言实现;用的是比较小的表 // 7b10 typedef unsigned char u8; typedef unsigned short u16;#include <stdio.h>u16 const wCRCTalbeAbs[16] ={ 0x0000, 0xCC01, 0xD801, 0x1400, 0xF001, 0x3C00, 0x2800, 0xE401, 0xA001, 0x6C00, 0x7800, 0xB401, 0x5000, 0x9C01, 0x8801, 0x4400, };u16 CRC16(u8* pchMsg, u8 wData... 阅读全文
posted @ 2012-04-05 10:33 maadiah 阅读(1396) 评论(0) 推荐(0) 编辑
摘要: 按照官方说明转移自己的库到bitbucketgit push origin master // 向远程master分支提交代码git push origin refactor // 向远程 refactor 分支提交代码 阅读全文
posted @ 2012-03-29 12:03 maadiah 阅读(156) 评论(0) 推荐(0) 编辑
摘要: 原创:http://297020555.blog.51cto.com/1396304/592030#!/bin/bashwhile truedoecho "#############################################################"echo "# Author: netcat #"echo "# Lable: jinzhi.sh #"echo "# QQ: ... 阅读全文
posted @ 2012-03-19 14:15 maadiah 阅读(278) 评论(0) 推荐(0) 编辑
摘要: System.out.printf("The value of the float variable is %f, while the value of the " + "integer variable is %d, and the string is %s", floatVar, intVar, stringVar); 阅读全文
posted @ 2012-03-19 13:59 maadiah 阅读(161) 评论(0) 推荐(0) 编辑