This file contains hidden or 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
| pg.migration | |
| > (-> "https://raw.githubusercontent.com/InteractiveAdvertisingBureau/vast/master/vast4macros/data/macros-data.json" | |
| java.net.URL. | |
| slurp | |
| pg.json/read-string | |
| type | |
| ) | |
| clojure.lang.PersistentHashMap | |
| pg.migration | |
| > (-> "https://raw.githubusercontent.com/InteractiveAdvertisingBureau/vast/master/vast4macros/data/macros-data.json" |
This file contains hidden or 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
| <?xml version="1.0" encoding="UTF-8"?> | |
| <!DOCTYPE plist PUBLIC "-//Apple//DTD PLIST 1.0//EN" "http://www.apple.com/DTDs/PropertyList-1.0.dtd"> | |
| <plist version="1.0"> | |
| <dict> | |
| <key>EnterprisePoliciesEnabled</key> | |
| <true/> | |
| <key>AppAutoUpdate</key> | |
| <false/> | |
| <key>DisableAppUpdate</key> | |
| <true/> |
This file contains hidden or 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
| (for [_ all-colls] | |
| (gensym "X")) | |
| COLLS | |
| (for [_ all-colls] | |
| (gensym "COLL")) | |
| N | |
| (gensym "N")] |
This file contains hidden or 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
| (defn pmap+ | |
| " | |
| Like pmap but accepts a custom size of a parallel | |
| window. Not lazy, returns a vector. Takes only | |
| one collection of arguments at the moment. | |
| " | |
| [n func items] | |
| (lazy-seq | |
| (let [[head tail] | |
| (split-at n items)] |
This file contains hidden or 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
| (defn index-by | |
| "Return a map where a key is (f item) and a value is item." | |
| {:added "1.11" | |
| :static true} | |
| [f coll] | |
| (persistent! | |
| (reduce | |
| (fn [ret x] | |
| (assoc! ret (f x) x)) | |
| (transient {}) coll))) |
This file contains hidden or 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
| (try | |
| (let [result# (do ~@body)] | |
| ~(if rollback? | |
| `(.rollback ~bind) | |
| `(.commit ~bind)) | |
| result#) | |
| (catch Throwable e# | |
| (.rollback ~bind) | |
| (throw e#))) |
This file contains hidden or 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
| )) | |
| (defn command | |
| [ctx {:keys [id]}] | |
| (let [{:keys [aws | |
| service-name | |
| environment-name-lower]} | |
| ctx |
This file contains hidden or 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
| (->> summary | |
| (.getKey) | |
| (.getObject s3 bucket) | |
| (.getObjectContent))))) |
This file contains hidden or 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
| (.withCredentials cred-wrapper) | |
| (.build)))) | |
| (defn ctx->client ^AmazonS3 [ctx] | |
| (let [{:keys [aws]} | |
| ctx | |
| {:keys [aws-access-key-id |
This file contains hidden or 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 glms.report.indexes | |
| (:import | |
| java.io.Reader | |
| java.io.File | |
| java.io.FileWriter | |
| java.io.BufferedReader) | |
| (:require | |
| [aws.athena :as ath] | |
| [glms.index :as idx] | |
| [clojure.data.csv :as data.csv] |