Krzysztof Władyka

Results 41 comments of Krzysztof Władyka

Any suggestion how can i get better logs for you?

```clojure (def sb `( (alias "Triggers" (either (steps/wait-for-git sb-repo sb-refs) manualtrigger/wait-for-manual-trigger)) (alias "Test and build" (with-workspace (steps/clone sb-repo) git/list-changes steps/lein-test)) (alias "Deploy" steps/info) #_(alias "Post-deploy" steps/slack) )) ``` But from...

```clojure (defproject sb-pipeline "0.1.0-SNAPSHOT" :description "FIXME: write description" :url "http://example.com/FIXME" :dependencies [[lambdacd "0.12.1"] [ring-server "0.4.0"] [org.clojure/clojure "1.8.0"] [org.clojure/tools.logging "0.3.1"] [org.slf4j/slf4j-api "1.7.22"] [ch.qos.logback/logback-core "1.1.8"] [ch.qos.logback/logback-classic "1.1.8"] [lambdacd-git "0.2.0"] [http-kit "2.2.0"] [cheshire...

I refactored your solution with https://github.com/tolitius/mount. What do you think about it? ```clojure (defn start-pipelines [pipelines] (doseq [pipeline (vals pipelines)] (runners/start-one-run-after-another pipeline))) (defn stop-pipelines [pipelines] (doseq [pipeline (vals pipelines)] (when-let...

I will be glad to do it. After put project on production (this week?) i will share what i did. But maybe i can share solution for only `lein ring...

touch() is Laravel function. Anyway touch() shouldn't fire validate function in Ardent - it makes no sense.

I don't know how it is working, but maybe it is good idea to get some ideas from [FPDF](http://www.fpdf.org). There is option to set position. After closer look on clj-pdf...

Yes. Anyway i wrote feedback about library. If you don't plan make changes maybe it will be good idea to write about cons of the library in readme. It can...

But why is splited? How should use it to not split into 2 pages? I am not sure i understand.