Paulus Esterhazy
Paulus Esterhazy
In https://github.com/pesterhazy/boot-react-native/tree/develop, source maps seem to be broken. Anytime there's an exception, I get a message in the logs: ``` [6:27:58 PM] symbolicate (1140ms) Error: Found a source and line,...
When using boot-react-native for a longer time, `~/.boot/cache/tmp` fills up, quickly reaching 10G. I'm guessing there's a `tmp-dir` that is not being cleaned up properly.
Seeing this warning in the log for the example app on iOS: `Unbalanced calls start/end for tag 5` Doesn't seem to be harmful, but may indicate a deeper problem. See...
Love this idea, thanks for building this as an open project! I just tried to submit a story. After entering the url and title, I was prompted to sign in....
Just thinking out loud. In JVM land we have `:import`. ``` (ns foo) (def mom (js/require "moment")) (defn main [] (println "Today is" (-> (mom.) (.format "dddd")))) ``` Might be...
It's handy to load external js/css files in KLIPSE, do demo dependencies. https://unpkg.com/#/ serves CSS and JS files in many NPM dependencies. Cljsjs also includes CSS files in some cases....
Sometimes nothing happens when I try to switch to parinfer mode. Is that because the editor detects unbalanced parentheses?
If I require cljsjs/react-select in a normal clojurescript project, transitive dependencies like `classnames` are automatically required (`window.classNames` exists). The same thing does not work in Klipse. The workaround is simply...
``` (+ 3 4) ;; foo ``` Expected: snippet evaluates to 7. Actual: snippet evaluates to `nil`. This occurs frequently when klipsifying clojuredocs snippets such as https://clojuredocs.org/clojure.core/map
When the server parses request lines, it refuses to parse header lines with a length > max-line (see [here](https://github.com/http-kit/http-kit/blob/master/src/java/org/httpkit/LineReader.java#L32)). I ran into this issue because I kept seeing errors of...