genmeblog
genmeblog
Ok, thanks! Do you plan to add BufferedImage in the near future?
This works indeed: ```clojure (tap> (let [bufferedimage (java.awt.image.BufferedImage. 300 300 java.awt.image.BufferedImage/TYPE_INT_ARGB) baos (java.io.ByteArrayOutputStream.)] (javax.imageio.ImageIO/write bufferedimage "png" baos) (pview/image (.toByteArray baos)))) ```
I think it's a good idea! It was discussed in the past, take a look at this topic: https://clojurians.zulipchat.com/#narrow/stream/236259-tech.2Eml.2Edataset.2Edev/topic/partition-by.20at.20tablecloth and following issue in TC https://github.com/scicloj/tablecloth/issues/30
Generally when `a` or `b` is zero, the result should be 1.0. This is verified in weniger but not in general call. For example `HypergeometricFunctions._₂F₁(0.5,0.0,1.5,1)` returns NaN.
I've just hit by this in tests for tablecloth (https://github.com/scicloj/tablecloth/blob/master/test/tablecloth/api/reshape_test.clj#L9) When I run `lein midje` everything looks ok. But when I evaluate them from Cider/Emacs (C-c C-k) I'm getting the...
Sure: ```clojure Syntax error macroexpanding clojure.core/defn at (test/tablecloth/api/reshape_test.clj:9:1). (api/column-names ds)45000 - failed: simple-symbol? at: [:fn-name] spec: :clojure.core.specs.alpha/defn-args user> (.getCause *e) #error { :cause "Call to clojure.core/defn did not conform to...
I've created minimal project to test some of the paths. So: #### deps.edn ```clojure {:deps {org.clojure/clojure {:mvn/version "1.10.3"} midje/midje {:mvn/version "1.9.9"}}} ``` #### project.clj ```clojure (defproject midjebug "0.1.0-SNAPSHOT" :plugins [[lein-tools-deps...
or `docs/clay` With the current setup it's very easy to lost content of the `docs` folder.
I would enhance this to all hardcoded styles in Clay. I mean I propose to avoid any styles in the code at all. This applies to separator (https://github.com/scicloj/clay/blob/main/src/scicloj/clay/v2/item.clj#L82), embedded charts...
What about setting `toc-depth 3`?