2015-05-26 628 Code-Tuning Techniques ——Even though a particular technique generally represents poor coding practice, specific circumstances might make it the best one to use. ——One key to writing effective loops is to minimize the work don…
2015-03-06 328 Unusual Data Types ——You can carry this technique to extremes,putting all the variables in your program into one big,juicy variable and then passingit everywhere.Careful programmers avoid bundling data any more than is logically…
fix SamuraiCRM/engines/core/test/dummy/config/routes 修改如下 Rails.application.routes.draw do mount Samurai::Core::Engine => "/core" end SamuraiCRM/engines/core/test/dummy/config/application.rb 修改如下 require “samurai/core” SamuraiCRM/engines/core…
一直想着花时间学习下gradle,今天有空.入门一下.参考:极客学院gradle使用指南,官方文档:gradle-2.12/docs/userguide/installation.html,以及百度阅读的官方文档中文译本:gradle翻译 手下下载gradle的zip,然后根据极客学院的教程手动打一遍. 测试代码:https://github.com/chenxing12/l4gradle 笔记: Chapter 4. Using the Gradle Command-Line each tas…