Harold

Results 42 issues of Harold

Hi! Thanks as ever for muuntaja, we do _a lot_ of requests every day through this middlware and it works extremely well. Very grateful to you. It appears that the...

First, thanks for this lib, if it didn't exist we'd need to start by making something like it, and ours would be worse. This PR merely adds some type hints...

Here is the command line I am currently using to do png seqence -> mp4 conversion: `ffmpeg -framerate 60 -i ./out-%03d.png -r 60 -c:v libx264 -pix_fmt yuv420p out.mp4` Note, this...

Thanks for this excellent library, we use it to hash many many strings, and it works great. Similar to this `buddy-core` pull request: https://github.com/funcool/buddy-core/pull/53 - but for this `buddy-hashers` repo...

The ellipsis printing of tensors is great, and makes repl programming with `dtype-next` a lot of fun. In the last week I had an idea for some possible improvements. Right...

Hello again! Hope you've been well. I'm updating my system to 22.04 today and doing a clean install of regolith and everything is going great. I am so grateful for...

enhancement

![deps](https://cloud.githubusercontent.com/assets/7443/24819334/6a617ae6-1ba1-11e7-894b-2157f9225a95.png) `com.amazonaws/aws-java-sdk-core` depends on both: 1) `commons-logging` "1.1.3" 2) `org.apache.httpcomponents/httpclient` "4.5.2" :arrow_right: `commons-logging` "1.2" AKAICT `com.amazonaws/aws-java-sdk-core` switches out `commons-logging` to an older version out from under `org.apache.httpcomponents/httpclient`. I haven't looked...

feature-request
help wanted

Hi, thanks as ever for CIDER - we live inside it and it's amazing. I'm digging deeper into `shadow-cljs` and am getting hung up because my print output is getting...

bug
help wanted
ClojureScript

Partition, I guess, would turn a dataset into a sequence of datasets - with the similar semantics and arguments to `clojure.core/partition` `partition-by` is a little less clear to me, perhaps...

Is this expected? ```clojure user> (ds/print-all (ds/->dataset {:a (range 100)})) _unnamed [100 1]: | :a | |---:| | 0 | | 1 | | 2 | | 3 | |...