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可能会有大的突破。
相关阅读
说一个国内保密单位在硬盘上装软件的故事 (转载)C++11 大家有用过吗?Java 多线程:还需要好CPU?比较spring-boot 和 node.js为什么C语言很难?用scala 算一个东西, out of memory 了,怎么办?kafka vs fluentdAWS上做Deep learning large scale designcloud vs AI 哪个方向更适合职业发展跨平台开发比较visjs点和线一多就特别慢,有更好的画图库吗华人网讨论做梦梦见未来用python分析big data,用哪个library好?怎样能在网上找到计算机类的工作? (转载)uber和当年的apple有点象了,头头被政治斗争赶走了。nativescript开始支持vue了从网站上爬数据用到自己app合法不?胡扯几句什么叫Deep Learning入门哪里去找可以快速搭建的论坛?有人用react + redux么