Chris Nuernberger

Results 29 issues of Chris Nuernberger

Try running lein repl with included files. You should see sa-jdi.jar on the classpath but you will not: [issue.zip](https://github.com/RickMoynihan/lein-tools-deps/files/2733976/issue.zip) ```bash chrisn@chrisn-dt:~/dev/tech.all/tech.jdi$ clj -R:test Clojure 1.9.0 user=> (-> (ClassLoader/getSystemClassLoader) (.getURLs) (vec))...

``` clojure (defn reshape-time-test [] (let [n-rows 100 n-cols 1000 src-array (double-array (* n-rows n-cols))] (println "reshape time") (time (dotimes [idx 100] (m/reshape src-array [n-rows n-cols]))) (println "c-for time") (time...

There are reasonable conversions that should be automatic. - Timestamp to java.time.Instance.

1.11 and beyond include an abs function leading to these warning: ```console WARNING: abs already refers to: #'clojure.core/abs in namespace: uncomplicate.neanderthal.math, being replaced by: #'uncomplicate.neanderthal.math/abs Warning: protocol #'uncomplicate.neanderthal.internal.api/VectorMath is overwriting...

**URL** `https://api.polygon.io/v2/aggs/ticker/ULTR/range/1/day/2012-03-17/2022-03-17?adjusted=true&limit=50000&apiKey={...}` **Result** ```clojure vestedus.polygon> (def test-ds (since-date-impl "ULTR" "day" (java.time.LocalDate/parse "2012-03-17") (java.time.LocalDate/now))) https://api.polygon.io/v2/aggs/ticker/ULTR/range/1/day/2012-03-17/2022-03-17?adjusted=true&limit=50000&apiKey={...} #'vestedus.polygon/test-ds vestedus.polygon> test-ds _unnamed [1818 8]: | :timestamp | :volume | :volume-weighted-average | :n-transactions | :low...

bug

**URL** `"https://api.polygon.io/v3/reference/tickers/ULTR?apiKey={...}"` **Result** ```clojure vestedus.polygon> (ticker-details "ULTR") {:cik "0001415995", :locale "us", :composite_figi "BBG00PPRNFN3", :name "IQ Ultra Short Duration ETF", :ticker "ULTR", :primary_exchange "ARCX", :type "ETF", :share_class_shares_outstanding 2049999, :list_date "2006-10-13", :active...

bug

Trying to get this wordcloud example working: https://vega.github.io/vega/examples/word-cloud/ ```clojure applied-science.darkstar> (->> (slurp "wordcloud.json") vega-spec->svg (spit "wordcloud.svg")) ERROR TypeError: Cannot set property 'height' of null nil ``` That error isn't propagated...

**Describe the issue** When compiling a codebase that uses the jdk-16 memory model into a native application you will get (at the very least) linker errors: ```console /usr/bin/ld: tech.v3.datatype.main.o:(.data+0xb28): undefined...

bug
native-image

Users should not have to provide a seq or seq-like things to write sequences of datasets to either arrow or parquet. A transduce-compatible rf function is more ideal for these...

Just had a user who wanted to build a local copy get a bit in the weeds - I think this could be expanded upon a bit.