-
This is a question about the ["Interactive Development" section of the Hello World guide](http://pedestal.io/guides/hello-world-query-parameters#_interactive_development). I'm new to Pedestal and rela…
-
## Describe the Bug
I use TK in a REPL-heavy manner, using `(reset)` repeatedly and also running tests from the REPL or CIDER.
Sometimes, quite rarely I can hit an error in the form:
```
jav…
-
Building off of #8 , we have a better implementation for records. During my optimization exercise for the ICFPC 2019 contest, I ran into a couple of peculiar performance phenomena with records. Reco…
joinr updated
3 years ago
-
In 1935, a gentleman called Alonzo Church came up with a simple scheme that could compute…just about anything. His scheme was called Lambda Calculus. It was a phenomenal innovation, given that there w…
-
I've been playing around with similar ideas recently and was considering what kind of information you'd need to encode the same logic that could be transpiled to Java as well as Haskell. Have you thou…
-
I'm still struggling what problems this solves, can you help me enumerating some of the most compelling use cases this enables? You mentioned iter-ables/then-ables but this being a userland affordance…
-
Kinematic, dynamic data-structure carry semantics which we can use for reasoning/configuring and checking. In C++ I always had to create a new data-structure for a numeric representation _with_ semant…
-
`(defn abs "절대값을 리턴한다" [a]
(if (< a 0) (- a) a))`
프로시져를 정의 할때 "(쌍따옴표 안에 들어간 스트링은 어떤 역할을 하는건가요?
단순히 주석인가요?
-
Sometimes when pasting an exception from a stack trace, you unwittingly end up with:
```
(try ... (catch java.lang.NoSuchFieldError ...
```
But the `java.lang` is already available. So it'd be…
-
The Aleph web server, built on top of Netty, gives the option of returning a manifold deferred object in addition to the standard ring response map. This allows the request to be carried out asynchron…