08 2013 档案

摘要:The most convenient method to add NHibernate and SQLite for C# project is using NuGet. But I prefer a more free way to do it with NAnt. Let's do it. 阅读全文
posted @ 2013-08-25 17:30 独木 阅读(1734) 评论(0) 推荐(0)
摘要:用了比较长时间的 SVN,但现在新的项目都采用Git。之前的项目又不得不维护,那么能不能将项目从SVN迁移到Git呢。答案是肯定的,网上的方案是 git-svn,或者更高级的封装 svn2git。方法其实很明确,导出SVN的历史数据,建立新的Git Repo。但是在实际操作中遇到了一些问题,且在这里记录一下。这次的操作环境是Windows。 阅读全文
posted @ 2013-08-17 10:20 独木 阅读(2898) 评论(0) 推荐(0)
摘要:Scala is pronounced skah-lah.Scala 全称为scalable language,是一种面向对象(object)-函数式(functional)静态类型(statically typed)编程脚本(script)语言。1. 全面支持函数式编程(Functional Programming Paradigm)。如果之前用过LISP或者Scheme应该对这些特性比较熟悉。 currying pattern matching algebraic data types lazy evaluation tail recursion immutability2. 面向对象和函 阅读全文
posted @ 2013-08-11 20:12 独木 阅读(360) 评论(0) 推荐(0)