上一页 1 2 3 4 5 6 7 8 ··· 15 下一页
摘要: 首先是之前看到的精益的循环,能更快的完成这个循环的团队就跑的更快,更能找到方向而产品,开发,运营只是其中的一个阶段,其中每个阶段的人的知识结构越广,涉及到的前后衔接就越顺畅,而每个环节的知识和经验越深就当前阶段的时间越少效果越好之前我一直认为这两点是互斥的,但是现在想想也不尽然更好和快速的衔接就可以... 阅读全文
posted @ 2014-12-08 15:14 wangchao719 阅读(197) 评论(0) 推荐(0) 编辑
摘要: take 从列表中获取子列表into a b 把b conj 到a中(defn count-a-seq [lat] (reduce (fn [x y] (+ x 1)) 0 lat))reduce 将list通过fn一个个合并成一个,当然也可以只是对每个进行+1(defn [x & xs]reduc... 阅读全文
posted @ 2014-11-27 22:59 wangchao719 阅读(233) 评论(0) 推荐(0) 编辑
摘要: 这两天在研究了hbase,hadoop,hive,spark由于spark.py不支持clust(jar才支持,但是太麻烦了>_<)所以最终决定使用hive在hive中用create external table后可以一同指定partition和location,这样就可以直接在hadoop的原始数... 阅读全文
posted @ 2014-11-25 23:40 wangchao719 阅读(112) 评论(0) 推荐(0) 编辑
摘要: 今天看到一篇文章不错,是一个LightTable成员写的关于抽象与语言之类的想法,挖个坑,有时间简单翻译一下 :http://www.vpri.org/html/work/ifnct.htm 阅读全文
posted @ 2014-11-24 02:21 wangchao719 阅读(172) 评论(0) 推荐(0) 编辑
摘要: 这节主要研究下object的一个属性,behaviors定义一个behavior需要提供name,trigger,reaction(behavior ::on-close-destroy :triggers #{:close} :reaction (fn [thi... 阅读全文
posted @ 2014-11-24 01:27 wangchao719 阅读(378) 评论(0) 推荐(0) 编辑
摘要: https://github.com/plexus/chestnut一个用来调试clojurescript的工具,解决Clojure, ClojureScript, and CSS的reload问题https://github.com/swannodette/om一个Facebook的react的w... 阅读全文
posted @ 2014-11-23 16:07 wangchao719 阅读(288) 评论(0) 推荐(0) 编辑
摘要: LightTable使用clojurescript来生成js,然后使用node-webkit来处理UIclojurescript非常适合做抽象程度很高的页面和编辑逻辑结构设计,最近会对整体进行分析整理一个大题的结构图程序的入口在lt.objs.app@init可以看到init做了几件事情进行初始化(... 阅读全文
posted @ 2014-11-22 17:43 wangchao719 阅读(997) 评论(0) 推荐(0) 编辑
摘要: 练习1.6new-if的三个参数会先被执行,这样就会无限循环下去练习1.7(define (sqrt-iter last-guess guess x) (if (good-enough? last-guess guess) guess (sqrt-iter guess (improve... 阅读全文
posted @ 2014-11-11 15:02 wangchao719 阅读(208) 评论(0) 推荐(0) 编辑
摘要: 这天才少年居然自杀了,哎原文点这So how should things work? The first principle is that code should be clear and simple. If you want to output some text, you call web.... 阅读全文
posted @ 2014-11-06 16:57 wangchao719 阅读(144) 评论(0) 推荐(0) 编辑
摘要: https://xumingming.sinaapp.com/302/clojure-functional-programming-for-the-jvm-clojure-tutorial/#introductiondef > binding > letbinding可以影响内部func 阅读全文
posted @ 2014-11-06 16:34 wangchao719 阅读(92) 评论(0) 推荐(0) 编辑
上一页 1 2 3 4 5 6 7 8 ··· 15 下一页