d*o
2 楼
提交485的时候交的是FR和797C。 现在豁免终于在USCIS批了,打算把豁免的结果补交
过去。
还是把材料寄到485邮寄的地址吗?Phenix那个分拣中心?
过去。
还是把材料寄到485邮寄的地址吗?Phenix那个分拣中心?
l*g
3 楼
这个表情就是要主动掏钱的信号了,买了个气球,开心了一下午。
眼镜的反色中彩色的部分就是那个气球,特写如下。
眼镜的反色中彩色的部分就是那个气球,特写如下。
m*u
4 楼
如何设置? thx.
p*2
5 楼
够用就行了
有时间不如看看haskell
scalaz感觉就算了
有时间不如看看haskell
scalaz感觉就算了
p*e
8 楼
这气球应该背在背上照:)
f*0
10 楼
哇,谢谢,包子马上发
l*n
18 楼
scala就是个大杂烩,Frankenstein
s*e
19 楼
baking powder
我也用clabber girl的
超市面粉柜台旁边一堆
我也用clabber girl的
超市面粉柜台旁边一堆
s*n
20 楼
第一张肤色好,很真实。但背景不好看
r*a
21 楼
都只是工具,要是你能用HASKELL写下来,那么转成SCALA容易。
P*D
22 楼
来晚了没包子了……我都用walmart自己的那个品牌,因为便宜,效果也不差。
r*a
24 楼
SCALA主要是和JVM结合在一起。
w*u
29 楼
从每周一作改成每月一作了呀?哈哈
h*i
30 楼
https://github.com/yieldbot/flambo
这是两个startup做的Spark Clojure DSL。
我觉得在Startup公司里面,Clojure铺子不少,相对容易学,jvm上的东西都可以用,
出东西很快。
【在 m******t 的大作中提到】
: 展开说说。
: 另外,Spark的库可以被其他JVM语言(比如clojure)调用么?
这是两个startup做的Spark Clojure DSL。
我觉得在Startup公司里面,Clojure铺子不少,相对容易学,jvm上的东西都可以用,
出东西很快。
【在 m******t 的大作中提到】
: 展开说说。
: 另外,Spark的库可以被其他JVM语言(比如clojure)调用么?
l*g
35 楼
这个表情就是要主动掏钱的信号了,买了个气球,开心了一下午。
眼镜的反色中彩色的部分就是那个气球,特写如下。
眼镜的反色中彩色的部分就是那个气球,特写如下。
p*e
37 楼
这气球应该背在背上照:)
s*n
45 楼
第一张肤色好,很真实。但背景不好看
w*u
53 楼
从每周一作改成每月一作了呀?哈哈
s*d
59 楼
赞美女。没有麻豆,羡慕嫉妒恨啊。
d*r
60 楼
大牛举几个这种 Clojure startup 呢
【在 h*i 的大作中提到】
: https://github.com/yieldbot/flambo
: 这是两个startup做的Spark Clojure DSL。
: 我觉得在Startup公司里面,Clojure铺子不少,相对容易学,jvm上的东西都可以用,
: 出东西很快。
【在 h*i 的大作中提到】
: https://github.com/yieldbot/flambo
: 这是两个startup做的Spark Clojure DSL。
: 我觉得在Startup公司里面,Clojure铺子不少,相对容易学,jvm上的东西都可以用,
: 出东西很快。
n*3
64 楼
is flambo good? easy to use?
Seems not many ppl use it. .. Thanks.
【在 h*i 的大作中提到】
: https://github.com/yieldbot/flambo
: 这是两个startup做的Spark Clojure DSL。
: 我觉得在Startup公司里面,Clojure铺子不少,相对容易学,jvm上的东西都可以用,
: 出东西很快。
Seems not many ppl use it. .. Thanks.
【在 h*i 的大作中提到】
: https://github.com/yieldbot/flambo
: 这是两个startup做的Spark Clojure DSL。
: 我觉得在Startup公司里面,Clojure铺子不少,相对容易学,jvm上的东西都可以用,
: 出东西很快。
p*2
65 楼
Scala's disjoint part has polymorphic sub-typing and implicit dictionaries.
Haskell's disjoint part has first-class type classes, type-level functions,
full type inference, and many other neat little tweaks. The intersection is
a higher-kinded type system with first-class functions.
Scala's part of the intersection, for a list of reasons that include JVM
type erasure, issues combining higher-kinded types with polymorphic sub-
typing, and certain implementation choices, is partially "broken" in that
its higher-kinded type support is weak enough to make its Haskell-style use
troubled because it doesn't curry types. Some detail: Disadvantages of Scala
type system versus Haskell? This necessitates ingenious workarounds like
Using scalaz.Unapply and fingers-crossed hoping that the implicits don't get
messed up.
To Michael O. Church's perfectly fair point about variance annotations,
people wrestling with Scala's type system tend to come to the conclusion
that given the higher-kinded inference limitations described above, using
variance in Scala is not worth the trouble, and you're better off just
leaving everything invariant. Paul Philips has been working on a fresh take
on Scala collections that doesn't necessitate variance: paulp/psp-std.
Written 7h ago.
【在 l******t 的大作中提到】
: type就是category
Haskell's disjoint part has first-class type classes, type-level functions,
full type inference, and many other neat little tweaks. The intersection is
a higher-kinded type system with first-class functions.
Scala's part of the intersection, for a list of reasons that include JVM
type erasure, issues combining higher-kinded types with polymorphic sub-
typing, and certain implementation choices, is partially "broken" in that
its higher-kinded type support is weak enough to make its Haskell-style use
troubled because it doesn't curry types. Some detail: Disadvantages of Scala
type system versus Haskell? This necessitates ingenious workarounds like
Using scalaz.Unapply and fingers-crossed hoping that the implicits don't get
messed up.
To Michael O. Church's perfectly fair point about variance annotations,
people wrestling with Scala's type system tend to come to the conclusion
that given the higher-kinded inference limitations described above, using
variance in Scala is not worth the trouble, and you're better off just
leaving everything invariant. Paul Philips has been working on a fresh take
on Scala collections that doesn't necessitate variance: paulp/psp-std.
Written 7h ago.
【在 l******t 的大作中提到】
: type就是category
l*t
71 楼
,
is
use
Scala
其实Martin Odersky还是很清楚他要干什么的。听他的course收获很大。implicit和
partial function都是为了context injection,manifest/typetag是解决erasure的问
题,covariant是为了解决OO继承的anti pattern。这里面大概除了manifest其他都可
以opt out。可是架不住别人会用所以还是要懂。scala为了OO/jvm compromise太多。
如果能有选择肯定直接haskell。
【在 p*****2 的大作中提到】
: Scala's disjoint part has polymorphic sub-typing and implicit dictionaries.
: Haskell's disjoint part has first-class type classes, type-level functions,
: full type inference, and many other neat little tweaks. The intersection is
: a higher-kinded type system with first-class functions.
: Scala's part of the intersection, for a list of reasons that include JVM
: type erasure, issues combining higher-kinded types with polymorphic sub-
: typing, and certain implementation choices, is partially "broken" in that
: its higher-kinded type support is weak enough to make its Haskell-style use
: troubled because it doesn't curry types. Some detail: Disadvantages of Scala
: type system versus Haskell? This necessitates ingenious workarounds like
z*e
72 楼
那跟用clojure有啥区别?
【在 l******t 的大作中提到】
:
: ,
: is
: use
: Scala
: 其实Martin Odersky还是很清楚他要干什么的。听他的course收获很大。implicit和
: partial function都是为了context injection,manifest/typetag是解决erasure的问
: 题,covariant是为了解决OO继承的anti pattern。这里面大概除了manifest其他都可
: 以opt out。可是架不住别人会用所以还是要懂。scala为了OO/jvm compromise太多。
: 如果能有选择肯定直接haskell。
【在 l******t 的大作中提到】
:
: ,
: is
: use
: Scala
: 其实Martin Odersky还是很清楚他要干什么的。听他的course收获很大。implicit和
: partial function都是为了context injection,manifest/typetag是解决erasure的问
: 题,covariant是为了解决OO继承的anti pattern。这里面大概除了manifest其他都可
: 以opt out。可是架不住别人会用所以还是要懂。scala为了OO/jvm compromise太多。
: 如果能有选择肯定直接haskell。
d*r
93 楼
这个list mark 了, 回头看 Clojure 的话,看看这些公司的 blog
"还有很多正在搞的startups,我的也算一个,呵呵"
大牛威武呀
【在 h*i 的大作中提到】
: 随便讲几个我知道的已经exit了的。
: backtype, 用Clojure写了Apache Storm,被twitter买了。
: Revelytix,被teradata买了。
: flightcaster, 被next jump买了。
: runa, 经常办湾区Clojure meetup, 被staples买了。(湾区每月其实有两个clojure
: meetups,另一个在SF, 一般在几个startups之间轮换)。
: 还有很多正在搞的startups,我的也算一个,呵呵。
"还有很多正在搞的startups,我的也算一个,呵呵"
大牛威武呀
【在 h*i 的大作中提到】
: 随便讲几个我知道的已经exit了的。
: backtype, 用Clojure写了Apache Storm,被twitter买了。
: Revelytix,被teradata买了。
: flightcaster, 被next jump买了。
: runa, 经常办湾区Clojure meetup, 被staples买了。(湾区每月其实有两个clojure
: meetups,另一个在SF, 一般在几个startups之间轮换)。
: 还有很多正在搞的startups,我的也算一个,呵呵。
h*i
97 楼
mainline进展就是transducer,可以比reducer更近一步提速。
但我觉得更主要的进展在于ClojureScript。
Facebook的react.js出来以后,让ClojureScript一下子变得非常有吸引力了,因为
ClojureScript的immutable data structure可以让react.js这种类似3D图形渲染的办
法变得更快。因为在ClojureScript里面,diffing几乎是免费的,只用检查reference
equality, 这就让基于react.js的ClojureScript库比native的react.js还要快,比如
om, reagent等等。
现在纯ClojureScript的库也出来了,甚至比reagent还要快,这样发展下去,用
ClojureScript搞Web UI可能会有大的突破。
【在 p*****2 的大作中提到】
: 大牛说说这一年clojure有什么主要进展吗
但我觉得更主要的进展在于ClojureScript。
Facebook的react.js出来以后,让ClojureScript一下子变得非常有吸引力了,因为
ClojureScript的immutable data structure可以让react.js这种类似3D图形渲染的办
法变得更快。因为在ClojureScript里面,diffing几乎是免费的,只用检查reference
equality, 这就让基于react.js的ClojureScript库比native的react.js还要快,比如
om, reagent等等。
现在纯ClojureScript的库也出来了,甚至比reagent还要快,这样发展下去,用
ClojureScript搞Web UI可能会有大的突破。
【在 p*****2 的大作中提到】
: 大牛说说这一年clojure有什么主要进展吗
N*m
98 楼
good to know
reference
【在 h*i 的大作中提到】
: mainline进展就是transducer,可以比reducer更近一步提速。
: 但我觉得更主要的进展在于ClojureScript。
: Facebook的react.js出来以后,让ClojureScript一下子变得非常有吸引力了,因为
: ClojureScript的immutable data structure可以让react.js这种类似3D图形渲染的办
: 法变得更快。因为在ClojureScript里面,diffing几乎是免费的,只用检查reference
: equality, 这就让基于react.js的ClojureScript库比native的react.js还要快,比如
: om, reagent等等。
: 现在纯ClojureScript的库也出来了,甚至比reagent还要快,这样发展下去,用
: ClojureScript搞Web UI可能会有大的突破。
reference
【在 h*i 的大作中提到】
: mainline进展就是transducer,可以比reducer更近一步提速。
: 但我觉得更主要的进展在于ClojureScript。
: Facebook的react.js出来以后,让ClojureScript一下子变得非常有吸引力了,因为
: ClojureScript的immutable data structure可以让react.js这种类似3D图形渲染的办
: 法变得更快。因为在ClojureScript里面,diffing几乎是免费的,只用检查reference
: equality, 这就让基于react.js的ClojureScript库比native的react.js还要快,比如
: om, reagent等等。
: 现在纯ClojureScript的库也出来了,甚至比reagent还要快,这样发展下去,用
: ClojureScript搞Web UI可能会有大的突破。
m*t
99 楼
赞一下大牛,上半年折腾过Clojure/ClojureScript的飘过.
大牛给讲讲用ClojureScript怎么作SPA吧
reference
【在 h*i 的大作中提到】
: mainline进展就是transducer,可以比reducer更近一步提速。
: 但我觉得更主要的进展在于ClojureScript。
: Facebook的react.js出来以后,让ClojureScript一下子变得非常有吸引力了,因为
: ClojureScript的immutable data structure可以让react.js这种类似3D图形渲染的办
: 法变得更快。因为在ClojureScript里面,diffing几乎是免费的,只用检查reference
: equality, 这就让基于react.js的ClojureScript库比native的react.js还要快,比如
: om, reagent等等。
: 现在纯ClojureScript的库也出来了,甚至比reagent还要快,这样发展下去,用
: ClojureScript搞Web UI可能会有大的突破。
大牛给讲讲用ClojureScript怎么作SPA吧
reference
【在 h*i 的大作中提到】
: mainline进展就是transducer,可以比reducer更近一步提速。
: 但我觉得更主要的进展在于ClojureScript。
: Facebook的react.js出来以后,让ClojureScript一下子变得非常有吸引力了,因为
: ClojureScript的immutable data structure可以让react.js这种类似3D图形渲染的办
: 法变得更快。因为在ClojureScript里面,diffing几乎是免费的,只用检查reference
: equality, 这就让基于react.js的ClojureScript库比native的react.js还要快,比如
: om, reagent等等。
: 现在纯ClojureScript的库也出来了,甚至比reagent还要快,这样发展下去,用
: ClojureScript搞Web UI可能会有大的突破。
相关阅读
老姜来看三亚到三亚的火车票node.js用http实现websocket,真是神了。"short" in Javago 的坑(转载)继续掐1230612306这个能做成一个轮子吗?请推荐perl web frameworkquestion on javascript streamTeacherWei 的订票机的问题C++14新特性硅谷泡沫破裂前兆:高楼+应召女郎 独角兽到独角尸java之后,人类就已经不再意计算机语言了 (转载)Deepmind,蜘蛛坦克,小笼包(zz)菜鸟来了 怎么比较一个modernizr到另一个modernizr技术揭秘12306改造:尖峰日PV值297亿下可每秒出票1032张svn 里·如何change file permission ? (转载)问卷,2016你最想学习的一门技术并联100只猩猩, 能不能过图灵测试? (转载)Tensorflow course (FREE Deep Learning)FLAG这些公司招码农会查信用记录吗?