Skip to content

Instantly share code, notes, and snippets.

@plexus
Created July 27, 2022 16:08
Show Gist options
  • Save plexus/dd44d9e0f465d37b1a6298f0cffab442 to your computer and use it in GitHub Desktop.
Save plexus/dd44d9e0f465d37b1a6298f0cffab442 to your computer and use it in GitHub Desktop.
(ns the-clouncil)
(def posts
(sort-by :date (read-string (slurp "posts.edn"))))
(->> posts
(mapcat (fn [{:keys [categories] :as post}]
(map (fn [category]
[category post])
categories)))
(reduce (fn [acc [category post]]
(update acc category #(conj % post)))
{}))
(reduce
(fn [acc {:keys [categories] :as post}]
(reduce
(fn [acc category]
(update acc category conj post))
acc
categories))
{}
posts)
(update-vals
(group-by
first
(for [post posts
category (:categories post)]
[category post]))
#(map second %))
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment