clojure-italy

🇮🇹
2019-12-05T09:25:15.189600Z

Vorrà dire sostituire Excel con google sheets

Andrea Imparato 2019-12-05T09:57:16.189800Z

buongiorno

Andrea Imparato 2019-12-05T09:57:21.190100Z

domanda clojuristica

Andrea Imparato 2019-12-05T09:57:57.191100Z

codice scritto così può piacervi o secondo voi c’è un modo + idiomatico per scriverlo?

(->>
   (get-in parsed-json ["data" "items"])
   (vals)
   (map #(get % "byDate") )
   (mapcat keys))

Andrea Imparato 2019-12-05T09:58:10.191400Z

(è codice per parsare del json)

reborg 2019-12-05T10:04:37.191900Z

peccato che le stringhe non funzionino come le keyword eh?

reborg 2019-12-05T10:08:19.192300Z

non molto mi sembra, puoi uccidere un map e togliere il get con (->> (get-in parsed-json ["data" "items"]) vals (mapcat (comp keys #(% "byDate"))))

skuro 2019-12-05T10:13:54.192700Z

ave tutti!

skuro 2019-12-05T10:14:27.193400Z

Dutch Clojure Days e' stata annunciata, i dettagli li trovate o su http://clojuredays.org o su #announcements 😉

reborg 2019-12-05T10:15:01.193600Z

evviva gli organizers!

reborg 2019-12-05T10:15:50.193800Z

metto sul cal

Andrea Imparato 2019-12-05T11:17:04.193900Z

ottimo, grazie per la risposta 🙂

Andrea Imparato 2019-12-05T11:17:35.194100Z

sì ho pensato anche io magari potevo trasformare le stringhe in keyword ma non so quanti benefici ne posso trarre

Andrea Imparato 2019-12-05T11:19:02.194300Z

cioè magari il codice è + facile da scrivere ma le performance peggiori se il json è grande?

reborg 2019-12-05T13:52:00.194500Z

un minimo si’. In generale transformo solo se ne ho bisogno ma se posso farne a meno lascio stringhe.