2018-02-08 LEo
redis官方网站专门说明了,redis不支持windows平台,但是Microsoft Open Tech开发并维护了一个windows版的redis,如下: The Redis project does not officially support Windows. However, the Microsoft Open Tech group develops and maintains this Windows port targeting Win64. Learn more 继续阅读 »
2016-07-06 ruki
Website Sources Changelog Changes Change install and uninstall actions Update templates Improve to check function Bugs fixed #7: Fix create project bug with '[targetname]' #9: Support clang with c++11 Fix api scope leaks bug Fix path bug for windows Fix check function bug Fix check toolchains failed Fix compile fa 继续阅读 »
2020-11-24 ruki
xmake is a lightweight cross-platform build tool based on Lua. It uses xmake.lua to maintain project builds. Compared with makefile/CMakeLists.txt, the configuration syntax is more Concise and intuitive, very friendly to novices, can get started quickly in a short time, allowing users to focus more on the actual projec 继续阅读 »
2018-05-15 石头人m
Machine Learning Yearning,Technical Strategy for AI Engineers,In the Era of Deep Learning. Andrew NG. Machine Learning Yearning is a deeplearning.ai project. 继续阅读 »
2014-07-29 veryyoung
22岁生日了,过去一年发生了太多,该记录点什么,多年之后,再看起来,应该会很多感触 以流水账的形式,回忆下过去重要的东西。 7月初,帮学院一位玩的蛮好的老师做项目,项目有个很奇葩的名字,叫 禽兽管理系统 。 据说有10级大神带,就参与了项目。大神几天之后就去阿里巴巴实习了,剩下的活全我干了: DB设计和修改,前后端,以及给Android端提供接口,服务器,甚至和老师讨论需求。 现在看起来很low的一个project,当时还算是一个蛮大的挑战。好在有大神远程的帮助,以及自己的一些摸索,每天熬夜两三点,居然活生生的给撸完了。 收获也不止一点点,代码方面的能力培养就不说了,其它方面的帮助挺大的,不细说。 在撸 禽兽管理系统 的时候顺 继续阅读 »
2020-10-17 ruki
xmake is a lightweight cross-platform build tool based on Lua. It uses xmake.lua to maintain project builds. Compared with makefile/CMakeLists.txt, the configuration syntax is more Concise and intuitive, very friendly to novices, can get started quickly in a short time, allowing users to focus more on the actual projec 继续阅读 »
2014-05-31 码农明明桑
当前是有些工具比如apktool,dextojar等是可以对我们android安装包进行反编译,获得源码的。为了减少被别人破解,导致源码泄露,程序被别人盗取代码,等等。我们需要对代码进行混淆,android的sdk中为我们提供了ProGrard这个工具,可以对代码进行混淆(一般是用无意义的名字来重命名),以及去除没有使用到的代码,对程序进行优化和压缩,这样可以增加你想的难度。最近我做的项目,是我去配置的混淆配置,因此研究了一下,这里分享一下。 如何启用ProGuard ant项目和eclipse项目启用方法 在项目的project.properties文件中添加一下代码 proguard.config=prog 继续阅读 »
2015-12-30 litaotao
1. Pythonic Thinking 1.1 know which version of python you're using two major python version; multiple popular runtimes for python: cpython, jython, ironpython, pypy, etc; be sure that the command line for running python on your system is the version you want; prefer python 3 in your next project; 继续阅读 »
2014-08-04 Kun Ren
pipeR 0.4 is released! Check it out at the project page. In this new version, two things happen. First, %>>% handles everything. Second, the introduction of Pipe object. 继续阅读 »
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文件,我 继续阅读 »