2014-05-11 码农明明桑
一直使用Ubuntu+Intellig IDEA进行android开发,并且android源码已经花了两三个星期下载回来了,但是linux平台,没有好用的source insight,所以一直阅读都是需要看哪个了才去搜索那一个。原来发现,原来android提供了eclipse,idea等工具进行阅读的方法。 在android源码目录有一个目录development/tools/idegen,这个就是用来生成idea的project文件的。 那么就开始生成吧! more 首先在源码根目录执行这个文件 bash sh ./development/tools/idegen/idegen.sh 发现需要idegen.jar文件,我 继续阅读 »
2015-04-19 Eric Wang
Apache Commons是Apache软件基金会的项目,曾隶属于Jakarta项目。Commons的目的是提供可重用的、开源的Java代码。Commons由三部分组成:Proper(是一些已发布的项目)、Sandbox(是一些正在开发的项目)和Dormant(是一些刚启动或者已经停止维护的项目)。 目前Commons-IO包稳定版本是Version 2.4,可惜的是,对于我目前很需要的copyInputStreamToFile(final InputStream source, final File destination, boolean closeSource)方法,只能等到Version 2.5了,关于详情参见:http 继续阅读 »
2018-03-18 KasperDeng
Code Review 是什么? wikipedia: Code review is systematic examination (sometimes referred to as peer review) of computer source code. It is intended to find mistakes overlooked in software development, improving the overall quality of software. 继续阅读 »
2017-03-06 Klaus Ma
Creat second disk for k8s In Vagrantfile, add the following customized command to create disk for k8s source code. The vagrant/virtual box will create a disk with only 10Gi by default, which is not enough for k8s's build & test. 继续阅读 »
2014-03-14 Kun Ren
Oftentimes, we obtain a long or a wide table from a certain data source, and it may be the only format we can get. For example, some financial databases provide daily tick data for all stocks in a financial market. The data table may be arranged in a long format like this: 继续阅读 »
2017-01-08 ruki
In order to better promote TBOOX open source project development, we decided to adopt a more relaxed, more developer-friendly Apache License 2.0 The tbox and xmake projects have updated to new license. If you want to known more, please refer to:Apache License 2.0 继续阅读 »
2016-08-20 craneyuan
我经常使用的快捷键 | 快捷键 | 功能 | | ------------ | ------------ | | Ctrl+Shift+X | 代码大写 | | Ctrl+Shift+Y | 代码小写 | | Alt+Shift+S | “source”快捷键 | | alt+shift+A | 多列编辑 | | Ctrl+D | 删除当前行 | | Ctrl+1| 快速修复 | | Ctrl+Alt+↓ | 复制当前行到下一行(复制增加) | | Ctrl+Q | 定位到最后编辑的地方 | | Ctrl+L | 定位在某行| | Ctrl+M | 最大化当前的Edit或View (再按 继续阅读 »
2014-11-25 林长宇
rubygems.org is slowly to visite in China, Use Taobao source to speen gem install. More information visit http://ruby.taobao.org/. 继续阅读 »
2015-04-07 Li Shuai
这是新的开始,我用hexo创建的第一篇文章. 用下面的命令可以新建文章: lishuai08@ls-pc01:~/Hexo$ hexo new 新的开始 INFO Created: ~/Hexo/source/_posts/新的开始.md 以后会经常写点东西. 继续阅读 »
2016-02-29 AllanChan
随着公司的业务的发展有幸接触到OpenCV 这个图形库,这篇文章主要是总结一下在Mac 上使用OpenCV做一个动态的广告植入。 OpenCV 是什么: OpenCV的全称是:Open Source Computer Vision Library。OpenCV是一个基于BSD许可(开源)发行的跨平台计算机视觉库,可以运行在Linux、Windows和Mac OS操作系统上。它轻量级而且高效——由一系列 C 函数和少量 C++ 类构成,同时提供了Python、Ruby、MATLAB等语言的接口,实现了图像处理和计算机视觉方面的很多通用算法。 OpenCV用C++语言编写,它的主要接口也是C++语言,但是依然保留了大量的C语言接口。 继续阅读 »