Christian Johansen

Results 24 issues of Christian Johansen

I'm using figheel.main with node, and the process locks and needs to be restarted quite frequently. To reproduce, start a figwheel-main REPL, using this config: ```clj ^{:watch-dirs ["src"] :open-file-command "emacsclient"}...

enhancement

If you have a newline in the link text of a markdown link, the parser spits it out verbatim: ```md [Here is a long link text](/page) ``` This is rendered...

I put some HTML in a markdown file, nad markdown-clj treated parts of it as an indented code block. This differs from the pegdown parser I switched from. E.g.: ```md...

I'm using `cljs.spec.alpha/fspec` to add some constraints to functions in my code-base, among other places in React components, as an improved `PropTypes` (if you're familiar with those). Anyway, when these...

I'm using the `cljsjs/moment` package, and on node it seems to only work when `optimizations` is set to `none`. When I set it to `simple` I see "no such package...

The build provided uses `require('promise')` which does not work out of the box in the browser.

I'm trying to run logspout to put my logs in Papertrail without much luck. Here's the output of `docker logs logspout`: ``` # logspout v3.1 by gliderlabs # adapters: udp...

type: bug
needs: documentation

When I try completions with my cursor on the pipe: ```clj (.| (java.time.LocalDate/now)) ``` I can find methods on `LocalDate`, among what seems to be every other method currently on...

Is there any way to generate a URL for a route with some additional query parameters? I would want to do something like `(silk/depart routes :login {} {:query {"returnUrl" "/somewhere"}})`,...

I tried to use `remove` styles to fade out an element as it is removed from a list. I ran into some ordering issues. ## Expected behavior Initially the following...