上一页 1 ··· 22 23 24 25 26 27 28 29 30 ··· 40 下一页
  2015年2月22日
摘要: livereloadatom dark themeautoprefixerauto save files on window blurbeautifybrackets file iconsbrackets sassemmetextensions ratinginteractive linterjav... 阅读全文
posted @ 2015-02-22 20:38 c3tc3tc3t 阅读(365) 评论(0) 推荐(0)
  2015年2月17日
摘要: 现在有很多代码管理平台,例如github,oschina-git,coding.net,我的网速有时候访问github比较慢。这时候我使用国内的。但是只使用一家我已不知道我的代码在他们的管理平台是否足够安全。所以我需要将我的代码同时放到多个平台我本地游一份代码 每次写完后。我同时推送到多个平台去,下... 阅读全文
posted @ 2015-02-17 13:45 c3tc3tc3t 阅读(644) 评论(0) 推荐(0)
  2015年2月16日
摘要: 1 brew install macvim 安装 macvim2alias vim='/usr/local/Cellar/macvim/7.4-73_1/MacVim.app/Contents/MacOS/Vim' 在shell的配置文件中设置别名未完待续 阅读全文
posted @ 2015-02-16 22:03 c3tc3tc3t 阅读(354) 评论(0) 推荐(0)
  2015年1月17日
摘要: sudo add-apt-repository ppa:maarten-baert/simplescreenrecordersudo apt-get updatesudo apt-get install simplescreenrecorder# if you want to record 32-b... 阅读全文
posted @ 2015-01-17 19:36 c3tc3tc3t 阅读(732) 评论(0) 推荐(0)
  2015年1月10日
摘要: 1 点击黑色 倒三角 按钮 选择 run configurations2 2.1 点击new 添加 LANG = en_US 2.2 选择 replace native environment with specied environment 阅读全文
posted @ 2015-01-10 17:07 c3tc3tc3t 阅读(396) 评论(0) 推荐(0)
  2014年12月25日
摘要: sudoapt-getinstallttf-wqy-zenhei 阅读全文
posted @ 2014-12-25 22:43 c3tc3tc3t 阅读(292) 评论(0) 推荐(0)
  2014年12月20日
摘要: int a[3][4] = { 0, 1,2,3,4,5,6,7,8,9,11,12}; printf("\n%d,%d", a,*a); //两个一样的16进制地址 printf("\n%d,%d", sizeof(a), sizeof(*a)); // 48 16 ... 阅读全文
posted @ 2014-12-20 13:55 c3tc3tc3t 阅读(168) 评论(0) 推荐(0)
  2014年12月17日
摘要: #define _CRT_SECURE_NO_WARNINGS#include #include #include void main() { int a[3][5][3]; int num = 0; for (int * b = &a[0][0][0]; b < (&a[0][... 阅读全文
posted @ 2014-12-17 19:58 c3tc3tc3t 阅读(481) 评论(0) 推荐(0)
摘要: int a[3][4][5]; for (int i = 0; i < 3 * 4 * 5; i++) { a[i / 20][(i / 5) % 4][i % 5] = i; printf("%-2d,%-2d,%-6d", i / 20, (i / 5)... 阅读全文
posted @ 2014-12-17 16:35 c3tc3tc3t 阅读(337) 评论(0) 推荐(0)
  2014年12月16日
摘要: #define _CRT_SECURE_NO_WARNINGS#include #include #include void main() { int num[3][4]; for (int i = 0; i #include #include void main() { int ... 阅读全文
posted @ 2014-12-16 21:34 c3tc3tc3t 阅读(291) 评论(0) 推荐(0)
上一页 1 ··· 22 23 24 25 26 27 28 29 30 ··· 40 下一页