http://yanbin.is-programmer.com/posts/94214.html Registery的Key 1. 整数Key用于Lua的引用机制,所以不要使用整数作为Key 2. 通过lua_rawsetp将一个C指针包装成light userdata作为Key使用 3. 使用字符 ...
分类:
其他好文 时间:
2017-07-08 14:17:45
阅读次数:
131
官方定义: Invoke “. build/envsetup.sh” from your shell to add the following functions to your environment: – croot: Changes directory to the top of the tr ...
分类:
移动开发 时间:
2017-07-07 23:38:10
阅读次数:
3139
Split an array into multiple sub-arrays. Please refer to the split documentation. The only difference between these functions is that array_split allo ...
分类:
其他好文 时间:
2017-07-07 23:30:23
阅读次数:
217
无论是 node-sass 还是 ruby-sass 使用 npm 安装都非常的慢,甚至会装不上。及其不利于团队协作。建议使用 less 作为 css 预处理器。 如果因为 less 不支持自定义函数选择用 sass 可以使用 less-plugin-functions 让 less 支持自定义函数 ...
分类:
其他好文 时间:
2017-07-07 14:20:03
阅读次数:
218
1、URL检测脚本[root@sxunscripts]#vicheck_url.sh
[root@sxunscripts]#catcheck_url.sh
#!/bin/sh
./etc/init.d/functions
functionusage(){
echo$"usage:$0url"
exit1
}
functioncheck_url(){
wget--spider-q-o/dev/null--tries=1-T5$1
if[$?-eq0]
then
action"$1isyes."/bin..
分类:
Web程序 时间:
2017-07-06 18:45:02
阅读次数:
152
查看别名: alias设置别名: 临时设置: alias show='ls -al' 永久生效: 修改 家目录/.bashrc [root@localhost ~]# cat .bashrc # .bashrc # User specific aliases and functions alias ...
分类:
系统相关 时间:
2017-07-05 23:39:03
阅读次数:
259
转自:http://blog.csdn.net/u014286994/article/details/51333118 /* CoreGraphics - CGContext.h */ /** Graphics state functions. **/ //为了让开发者在进行坐标变换时无须计算多次坐 ...
分类:
移动开发 时间:
2017-07-05 17:37:18
阅读次数:
2449
明这篇文章是来自Hadoop Hive UDAF Tutorial - Extending Hive with Aggregation Functions:的不严格翻译,因为翻译的文章示例写得比较通俗易懂,此外,我把自己对于Hive的UDAF理解穿插到文章里面。udfa是hive中用户自定义的聚集函... ...
分类:
其他好文 时间:
2017-07-05 16:40:34
阅读次数:
226
开始学Python,到Udacity学习Use functions章节。 主要熟悉了一下Python工作环境,语句Syntax,跟着编写两个小程序。 在https://www.python.org/downloads/下载了mac OS使用的Python 2,打开IDLE,弹出Python Shel ...
分类:
编程语言 时间:
2017-07-05 09:57:27
阅读次数:
170
The Lua code is loaded in one or more files. These files contains main code and functions. Lua have 6 execution context. The Lua file body context. It ...
分类:
其他好文 时间:
2017-07-04 16:37:26
阅读次数:
197