摘要:
http://www.xuanyusong.com/archives/2664
阅读全文
posted @ 2017-12-05 15:12
lilei9110
阅读(715)
推荐(0)
摘要:
http://zh-google-styleguide.readthedocs.io/en/latest/google-cpp-styleguide/contents/
阅读全文
posted @ 2017-12-02 16:38
lilei9110
阅读(323)
推荐(0)
摘要:
https://plugins.jetbrains.com/plugin/5055-lua
阅读全文
posted @ 2017-11-10 10:53
lilei9110
阅读(615)
推荐(0)
摘要:
https://www.zhihu.com/question/25414422 http://blog.csdn.net/kun1234567/article/details/7917847 http://blog.csdn.net/adambieber/article/details/467336
阅读全文
posted @ 2017-11-08 14:44
lilei9110
阅读(1396)
推荐(0)
摘要:
https://confluence.atlassian.com/bitbucket/reduce-repository-size-321848262.html https://rtyley.github.io/bfg-repo-cleaner/
阅读全文
posted @ 2017-11-03 16:12
lilei9110
阅读(1656)
推荐(1)
摘要:
语法: git clone --bare 「src」 「dest」 e.g. cd ~/Workspace/SourceRepo/ git clone --bare ./ ../Git/bareRepo.git cd ~/Git/bareRepo.git/ # 这个文件夹就是你的裸库,拖出去随便放到
阅读全文
posted @ 2017-11-03 11:11
lilei9110
阅读(505)
推荐(0)
摘要:
sudo kill -9 <PID>
阅读全文
posted @ 2017-10-26 12:22
lilei9110
阅读(264)
推荐(0)
摘要:
http://www.jb51.net/article/47916.htm
阅读全文
posted @ 2017-10-26 10:45
lilei9110
阅读(212)
推荐(0)
摘要:
http://blog.csdn.net/mywcyfl/article/details/37765751 http://blog.csdn.net/teng_ontheway/article/details/38900211 http://www.cnblogs.com/howeho/p/4048
阅读全文
posted @ 2017-10-24 11:21
lilei9110
阅读(225)
推荐(0)
摘要:
http://blog.csdn.net/akof1314/article/details/49028279 http://blog.csdn.net/akof1314/article/details/49077983 https://docs.unity3d.com/Manual/StyledTe
阅读全文
posted @ 2017-09-27 14:30
lilei9110
阅读(747)
推荐(0)
摘要:
http://en.cppreference.com/w/cpp/experimental/fs https://www.starmessagesoftware.com/cpcclibrary https://github.com/emcrisostomo/fswatch https://githu
阅读全文
posted @ 2017-09-20 10:50
lilei9110
阅读(783)
推荐(0)
摘要:
http://blog.csdn.net/haihsl123456789/article/details/40626195
阅读全文
posted @ 2017-09-17 13:13
lilei9110
阅读(939)
推荐(0)
摘要:
http://blog.csdn.net/yqj2065/article/details/39724873
阅读全文
posted @ 2017-09-10 17:56
lilei9110
阅读(100)
推荐(0)
摘要:
C++模板函数只能全特化不能偏特化
阅读全文
posted @ 2017-09-10 17:55
lilei9110
阅读(849)
推荐(0)
摘要:
https://stackoverflow.com/questions/10335747/how-to-download-xcode-dmg-or-xip-file
阅读全文
posted @ 2017-08-11 18:39
lilei9110
阅读(2668)
推荐(0)
摘要:
http://blog.csdn.net/meegomeego/article/details/25704645 /private/etc/php.ini /usr/local/etc/php/5.5/php.ini /usr/local/etc/php/7.0/php.ini
阅读全文
posted @ 2017-08-11 18:31
lilei9110
阅读(3949)
推荐(0)
摘要:
http://www.cnblogs.com/cheemon/p/5638394.html
阅读全文
posted @ 2017-08-11 18:24
lilei9110
阅读(115)
推荐(0)
摘要:
命令 lsof -i tcp:port (port替换成端口号,比如6379)可以查看该端口被什么程序占用,并显示PID,方便KILL
阅读全文
posted @ 2017-08-11 18:21
lilei9110
阅读(601)
推荐(0)
摘要:
参考文章:https://www.sourcetoad.com/resources/debugging-php-save-time-with-xdebugs-remote-autostart/ 配置参数详解:https://xdebug.org/docs/remote 根据Xdebug的文档,触发X
阅读全文
posted @ 2017-08-11 17:37
lilei9110
阅读(226)
推荐(0)
摘要:
http://lua.2524044.n2.nabble.com/LightUserData-and-metatables-td3807698.html https://www.lua.org/manual/5.3/manual.html#2.4 https://www.lua.org/manual
阅读全文
posted @ 2017-07-30 14:51
lilei9110
阅读(1445)
推荐(0)
摘要:
索引:堆栈的索引 伪索引:一个类似于索引,但是有着特殊存储的索引,使用方式和索引一样,看上去像在操作堆栈 引用:LUA_REGISTRYINDEX伪索引下的表的整数键
阅读全文
posted @ 2017-07-29 18:49
lilei9110
阅读(1660)
推荐(0)
摘要:
这里有List<T>的源码http://referencesource.microsoft.com/#mscorlib/system/collections/generic/list.cs
阅读全文
posted @ 2017-07-18 11:37
lilei9110
阅读(203)
推荐(0)
摘要:
int luaL_newmetatable (lua_State *L, const char *tname); 如果注册表中不存在名为tname的表,则在注册表中创建一个名为tname的表,并将这个表压栈,返回值为1; 如果注册表中已存在名为tname的表,则直接将这个表压栈,返回值为0。 voi
阅读全文
posted @ 2017-07-15 19:19
lilei9110
阅读(507)
推荐(0)
摘要:
C++ http://en.cppreference.com/w/cpp/language/overload_resolution Java http://www.2cto.com/kf/201410/339676.html (2.3.1的补充资料)泛读 Java overload resoluti
阅读全文
posted @ 2017-07-15 17:55
lilei9110
阅读(201)
推荐(0)
摘要:
http://www.cnblogs.com/yangxia-test/p/4611946.html
阅读全文
posted @ 2017-07-14 19:19
lilei9110
阅读(110)
推荐(0)
摘要:
http://yanbin.is-programmer.com/posts/94214.html Registery的Key 1. 整数Key用于Lua的引用机制,所以不要使用整数作为Key 2. 通过lua_rawsetp将一个C指针包装成light userdata作为Key使用 3. 使用字符
阅读全文
posted @ 2017-07-08 13:23
lilei9110
阅读(224)
推荐(0)
摘要:
https://godotengine.org/features#3d-games
阅读全文
posted @ 2017-07-08 12:26
lilei9110
阅读(209)
推荐(0)
摘要:
http://www.xuanyusong.com/archives/2811
阅读全文
posted @ 2017-07-04 16:31
lilei9110
阅读(268)
推荐(0)
摘要:
http://gad.qq.com/article/detail/7192267
阅读全文
posted @ 2017-07-03 19:25
lilei9110
阅读(108)
推荐(0)
摘要:
http://www.cppblog.com/sunicdavy/archive/2013/12/07/204648.html https://segmentfault.com/a/1190000005765697 http://www.tuicool.com/articles/yuaqIrn
阅读全文
posted @ 2017-07-02 21:59
lilei9110
阅读(206)
推荐(0)
摘要:
https://developer.android.com/studio/profile/investigate-ram.html
阅读全文
posted @ 2017-06-30 12:00
lilei9110
阅读(678)
推荐(0)
摘要:
http://gamma.cs.unc.edu/RVO/ http://gamma.cs.unc.edu/CA/ https://arongranberg.com/astar/docs/writing-rvo-colliders.php
阅读全文
posted @ 2017-06-28 19:34
lilei9110
阅读(160)
推荐(0)
摘要:
https://docs.unity3d.com/ScriptReference/Physics.OverlapSphere.html https://www.zhihu.com/question/29885931 http://www.qbiao.com/17233.html http://blo
阅读全文
posted @ 2017-06-28 18:21
lilei9110
阅读(548)
推荐(0)
摘要:
http://answers.unity3d.com/questions/590800/how-to-cullrender-to-through-a-window.html 使用DepthMask Shader "NexgenDragon/DepthMask" { SubShader { // Re
阅读全文
posted @ 2017-06-21 10:34
lilei9110
阅读(265)
推荐(0)
摘要:
将一个子类的对象赋值给父类指针,当删除该指针时,如果没有将基类的指针写为虚函数,那么只会调用基类的析构函数。 测试上面的代码: 1、ClxBase1* cp = new ClxDerived(); 当删除指针时,会打印三条Log; 2、ClxBase2* cp = new ClxDerived();
阅读全文
posted @ 2017-06-16 19:24
lilei9110
阅读(158)
推荐(0)
摘要:
https://yq.aliyun.com/articles/27002
阅读全文
posted @ 2017-06-10 14:02
lilei9110
阅读(224)
推荐(0)
摘要:
DHCP(dynamic host configuration protocol)用于内网动态分配IP,是一种基于UDP的应用层协议。 NAT(net address translation)用于内网于外网IP转换,是一种网络层协议。内网通常使用的是下面的地址:10.0.0.0~10.255.255
阅读全文
posted @ 2017-06-07 11:16
lilei9110
阅读(464)
推荐(0)
摘要:
http://blog.csdn.net/yuleslie/article/details/7430094 https://github.com/mangostwo/ https://www.getmangos.eu/wiki/documentation/installation-guides/gu
阅读全文
posted @ 2017-06-04 12:07
lilei9110
阅读(242)
推荐(0)
摘要:
http://www.cnblogs.com/KevinSong/p/3323372.html
阅读全文
posted @ 2017-05-31 22:34
lilei9110
阅读(86)
推荐(0)
摘要:
http://www.cnblogs.com/zhongfq/p/4158388.html
阅读全文
posted @ 2017-05-30 09:57
lilei9110
阅读(623)
推荐(0)