Wrote my first bit of code in Clojure—a 50 LOC scraper—would love feedback on it :simple_smile: x-posted in #C053AK3F9 Code: https://gist.github.com/revivek/d6559b3fd5b9f661e095 Output (pprinted): https://gist.github.com/revivek/2f61bb8a1fe3311377ea
@revivek: consider map literals instead of hash-map
@revivek: also check partition
vs partition-all
@revivek: (:require …)
can contain multiple namespace requires
@revivek: use of dynamic vars seems unnecessary
(sorry for being so brief, typing w/ one hand :simple_smile:)
@martinklepsch: super helpful—thank you!