Resolve is an open-source CLI app for people who make New Year's resolutions1 and intend to keep them. I decided to develop this tool after six years of using spreadsheets to track habits that I wanted to adopt.
You're welcome to fork and clone this repo to your heart's content. If you've found value in my work, please consider buying me a coffee.
- Install
pipenv
for package management if you don't already have it (instructions) - Clone this repo to your local machine and navigate into the
cli-resolve
directory - Install all dependencies:
pipenv install
- Run the program:
pipenv run python cli_resolve
Keep track of your progress on existing resolutions and add new resolutions.
Generate heatmaps from your data across multiple years and resolutions. Heatmaps are temporarily stored as PDFs in data/exports
and saved over the next time you graph.
You can overlay event labels on your graph, for example, to mark days when you were traveling (see how it's stored).
You can also generate minimaps of individual resolutions.
Export your data (stored locally as JSON) as a CSV file. Exported CSVs reside in data/exports
).
If you used to keep track of your resolutions in a spreadsheet (or you want to keep using a spreadsheet) but now want to import and visualize them in Resolve, you can use convert_legacy_resolutions.py
(location).
- Save legacy spreadsheet as a CSV file under
data/legacy
(here's my actual data from 2022). In order for the conversion script to work, your data must meet the following assumptions:- Must have a date field under the column header of "Date" or "date"
- Date field must be in MM/DD/YYYY format
- Must contain columns with headers that refer to resolutions (such as "exercise")
- Each row must correspond to a unique date, as well as contain data pertaining to whether and how a resolution was met on that date
- Run
python convert_legacy_resolutions.py {filename}.csv
from thescripts
folder. The output is a cleaned CSV saved todata/cleaned
which can then be used for graphing. - Run the CLI tool and export graph from file.
You may want to import some or all of your legacy data into the app if you are ditching spreadsheets altogether or wish to generate graphs spanning multiple years.
- Follow the steps above to Convert Legacy Data for Graphing. This will generate a clean and standardized CSV in the
data/cleaned
folder, which can then be used to backpopulate the application data stored locally indata/resolutions.json
. - Run
python backpopulate_data.py {filename}.csv
in thescripts
folder and follow the instructions.
No, but sometimes you just gotta let a gal overengineer.
Also, you can schedule a cron job to run this program or host it in the cloud to automatically run once a day.
Probably, possibly, and most definitely!
I do have it somewhere on my backlog to turn this into a more accessible GUI app (with additional features), but I'm just one person and my backlog never shrinks. You're welcome to contribute, though!
Feel free to shoot me an email if you have any questions or are interested in collaborating.
Footnotes
-
Or, indeed, at any time of the year. ↩