Skip to content

Instantly share code, notes, and snippets.

View eelzon's full-sized avatar

Nozlee Samadzadeh eelzon

View GitHub Profile
@saranrapjs
saranrapjs / README.md
Created August 4, 2023 15:22
Aggregating the $$$ you spend on OMNY by month

Aggregating the $$$ you spend on OMNY by month

The OMNY dashboard allows you to export Trip History as a CSV. This is a really basic script that aggregates how much you spend on OMNY by month, given the trip-history.csv file you get from OMNY.

Here's how you can run it from the unzipped OMNY download directory:

sqlite3 -init trips.sql trips.db .quit
@ftrain
ftrain / rhymes.clj
Last active July 14, 2023 22:20
Annotated rhyming dictionary
;; This is at: https://gist.github.com/8655399
;; So we want a rhyming dictionary in Clojure. Jack Rusher put up
;; this code here:
;;
;; https://gist.github.com/jackrusher/8640437
;;
;; I'm going to study this code and learn as I go.
;;
;; First I put it in a namespace.