Jacob Emcken

Results 37 comments of Jacob Emcken

@Cyrik A gutter is the blank space between the content and the border of the content area. https://code.visualstudio.com/docs/getstarted/tips-and-tricks#_gutter-indicators

> Any updates on this? Why not just hack it and use [convert-json-logs-legacy](https://github.com/ricojf-mongodb/convert-json-logs-to-legacy) as a dependency to handle the conversion `convert-json-logs-to-legacy` seems like a very nice workaround :+1: It took...

> Why did you choose `concat` over `cons` here? My lack of knowledge. > I think the "by default" is misleading, because in this case it can't be changed. Either...

> ... and it's not converted into a file instance. The reason why it worked as a string regardless, is that both `check` and `fix` parses the list of "paths"...

I have a build setup specifically for Storybook: ``` {:source-paths ["src/frontend" "src/storybook"] ... :storybook {:target :npm-module :as-regexp "-stories$" :output-dir "resources/public/js/storybook"}}} ``` When I create new files in `src/storybook` matching the...

I found the lib Beholder didn't have the bug: https://github.com/nextjournal/beholder

When receiving a 503 I would expect the code to automatically retry: ```clojure (client/request {:url "https://httpbin.org/status/503" :method :get :retry-handler (fn [ex try-count http-context] (println "Got:" ex) (if (> try-count 4)...