Created
July 27, 2022 16:08
-
-
Save plexus/dd44d9e0f465d37b1a6298f0cffab442 to your computer and use it in GitHub Desktop.
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
(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