Y
HN Search
Hacker News Search
new
|
comments
|
top
|
jobs
kachayev
searching Neon…
1.
▲
2.
▲
3.
▲
4.
▲
5.
▲
6.
▲
6 ms
·
1.
▲
Does your type system work on you? Refined types in Clojure
(speakerdeck.com)
1 points
by
kachayev
8y ago
|
0 comments
2.
▲
Reinventing Haxl: Efficient, Concurrent and Concise Data Access in Clojure
(speakerdeck.com)
2 points
by
kachayev
11y ago
|
0 comments
3.
▲
Solving the “N+1 Selects Problem” with Muse
(github.com)
9 points
by
kachayev
11y ago
|
0 comments
4.
▲
ClojureScript and React. Moving from Bad to Good
(speakerdeck.com)
4 points
by
kachayev
11y ago
|
0 comments
5.
▲
Microservices in Clojure. Lessons learned
(speakerdeck.com)
1 points
by
kachayev
11y ago
|
0 comments
6.
▲
Channels Are Not Enough
(gist.github.com)
235 points
by
kachayev
12y ago
|
221 comments
7.
▲
by
kachayev
12y ago
Nice question! It "easy". Cause it takes less characters in your code: you don't need "type classes" of any form, you don't care about liftings etc. You can start from 2-3 lines of code and see immediate result
8.
▲
Monadic parser for CSS in Clojure
(gist.github.com)
35 points
by
kachayev
12y ago
|
3 comments
9.
▲
Deterministic parallel and distributed programming. Quick intro
(speakerdeck.com)
1 points
by
kachayev
12y ago
|
0 comments
10.
▲
Monadic parser combinators in Python for FP beginners
(speakerdeck.com)
1 points
by
kachayev
12y ago
|
0 comments
11.
▲
Fn.py (functional python library), now with persistent data structures
(github.com)
3 points
by
kachayev
13y ago
|
0 comments
12.
▲
Developing social applications platform in Erlang. Lessons learned [slides]
(speakerdeck.com)
3 points
by
kachayev
13y ago
|
0 comments
13.
▲
Tweetping: beautiful visualisation of Twitter activity in realtime
(tweetping.net)
2 points
by
kachayev
14y ago
|
0 comments
14.
▲
by
kachayev
14y ago
To answer the question when STM is hard to use, you can imaging any case of simulation. Few years ago I worked with engine for real-time brokers trading simulations: thousands of independent players accept different information streams and
15.
▲
Modern Concurrency: Erlang, Scala, Go, Clojure
(kachayev.github.com)
7 points
by
kachayev
14y ago
|
2 comments
16.
▲
Fn.py: enjoy functional programming in Python
(kachayev.github.com)
2 points
by
kachayev
14y ago
|
0 comments
17.
▲
by
kachayev
14y ago
This example was given to describe map/reduce pattern, not advice to use it instead of sum: reduce(operator.add, map(len, ss)) You know, it's hard to understand new concept. And it's twice harder to explain new concept with sophist