├── .gitignore ├── README.md ├── configs ├── bashrc │ └── .bashrc ├── cron │ ├── backup_bash_logs.sh │ ├── backup_chrome_history.sh │ ├── backup_code_stats.sh │ ├── backup_financial_data.sh │ ├── backup_github_events.sh │ ├── backup_github_notifications.sh │ ├── backup_rescuetime_analytics.sh │ └── backup_rescuetime_daily_summary.sh ├── emacs │ └── init.el └── organize │ ├── README.md │ └── config.yaml ├── dashboard ├── .babelrc ├── .env.development ├── .env.production ├── .env.staging ├── .eslintrc.js ├── .gitignore ├── .prettierignore ├── .prettierrc ├── README.md ├── __mocks__ │ ├── fileMock.js │ └── styleMock.js ├── config │ ├── paths.js │ ├── webpack.common.js │ ├── webpack.dev.js │ ├── webpack.prod.js │ └── webpack.stag.js ├── package.json ├── postcss.config.js ├── public │ └── index.html ├── src │ ├── App.js │ ├── assets │ │ ├── altafino.svg │ │ └── icons │ │ │ └── favicon.png │ ├── hooks │ │ └── useMemex.js │ ├── index.js │ ├── index.scss │ ├── pages │ │ └── Memex.js │ └── utils │ │ ├── axios.js │ │ └── dates.js ├── tailwind.config.js └── yarn.lock ├── docs ├── interface.png └── this_project.png ├── hq ├── __init__.py ├── analysis │ └── Dashboard.ipynb ├── api │ ├── README.md │ ├── __init__.py │ ├── eventlog.py │ ├── handler.py │ └── server.py ├── common.py ├── exporters │ ├── README.md │ ├── github_events.py │ ├── github_notifications.py │ ├── nubank.py │ ├── readings.py │ ├── rescuetime_analytics.py │ ├── rescuetime_daily_summary.py │ ├── toggl.py │ ├── utils.py │ └── wakatime.py ├── main.py ├── modules │ ├── README.md │ ├── __existio │ │ ├── README.md │ │ ├── create_attribute.py │ │ ├── receive_authorization.py │ │ ├── request_authorization.py │ │ └── update_attribute.py │ ├── __init__.py │ ├── bash.py │ ├── chrome.py │ ├── daylio.py │ ├── github.py │ ├── google_takeout │ │ ├── README.md │ │ ├── __init__.py │ │ ├── calendar.py │ │ ├── maps.py │ │ ├── my_activity.py │ │ ├── play_store.py │ │ ├── utils.py │ │ └── youtube.py │ ├── habits.py │ ├── kindle.py │ ├── notion_articles.py │ ├── nubank.py │ ├── rescuetime.py │ ├── toggl.py │ ├── voice.py │ └── wakatime.py ├── pyproject.toml ├── routines │ ├── __init__.py │ ├── articles.py │ ├── importer.py │ ├── incremental_notes.py │ ├── manager.py │ └── scan_repos.py ├── runs.py ├── scripts │ └── nubank.py ├── settings.py ├── sqlite_db.py ├── tests │ └── test_modules.py └── views │ ├── __init__.py │ ├── articles.py │ └── kindle.py ├── requirements.txt └── setup.py /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rsarai/hq/HEAD/.gitignore -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rsarai/hq/HEAD/README.md -------------------------------------------------------------------------------- /configs/bashrc/.bashrc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rsarai/hq/HEAD/configs/bashrc/.bashrc -------------------------------------------------------------------------------- /configs/cron/backup_bash_logs.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rsarai/hq/HEAD/configs/cron/backup_bash_logs.sh -------------------------------------------------------------------------------- /configs/cron/backup_chrome_history.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rsarai/hq/HEAD/configs/cron/backup_chrome_history.sh -------------------------------------------------------------------------------- /configs/cron/backup_code_stats.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rsarai/hq/HEAD/configs/cron/backup_code_stats.sh -------------------------------------------------------------------------------- /configs/cron/backup_financial_data.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rsarai/hq/HEAD/configs/cron/backup_financial_data.sh -------------------------------------------------------------------------------- /configs/cron/backup_github_events.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rsarai/hq/HEAD/configs/cron/backup_github_events.sh -------------------------------------------------------------------------------- /configs/cron/backup_github_notifications.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rsarai/hq/HEAD/configs/cron/backup_github_notifications.sh -------------------------------------------------------------------------------- /configs/cron/backup_rescuetime_analytics.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rsarai/hq/HEAD/configs/cron/backup_rescuetime_analytics.sh -------------------------------------------------------------------------------- /configs/cron/backup_rescuetime_daily_summary.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rsarai/hq/HEAD/configs/cron/backup_rescuetime_daily_summary.sh -------------------------------------------------------------------------------- /configs/emacs/init.el: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rsarai/hq/HEAD/configs/emacs/init.el -------------------------------------------------------------------------------- /configs/organize/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rsarai/hq/HEAD/configs/organize/README.md -------------------------------------------------------------------------------- /configs/organize/config.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rsarai/hq/HEAD/configs/organize/config.yaml -------------------------------------------------------------------------------- /dashboard/.babelrc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rsarai/hq/HEAD/dashboard/.babelrc -------------------------------------------------------------------------------- /dashboard/.env.development: -------------------------------------------------------------------------------- 1 | API_URL=http://localhost:8090/ -------------------------------------------------------------------------------- /dashboard/.env.production: -------------------------------------------------------------------------------- 1 | API_URL=https://api.production.com/ -------------------------------------------------------------------------------- /dashboard/.env.staging: -------------------------------------------------------------------------------- 1 | API_URL=https://api.staging.com/ 2 | -------------------------------------------------------------------------------- /dashboard/.eslintrc.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rsarai/hq/HEAD/dashboard/.eslintrc.js -------------------------------------------------------------------------------- /dashboard/.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rsarai/hq/HEAD/dashboard/.gitignore -------------------------------------------------------------------------------- /dashboard/.prettierignore: -------------------------------------------------------------------------------- 1 | node_modules 2 | build 3 | dist 4 | coverage 5 | .eslintrc.js 6 | -------------------------------------------------------------------------------- /dashboard/.prettierrc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rsarai/hq/HEAD/dashboard/.prettierrc -------------------------------------------------------------------------------- /dashboard/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rsarai/hq/HEAD/dashboard/README.md -------------------------------------------------------------------------------- /dashboard/__mocks__/fileMock.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rsarai/hq/HEAD/dashboard/__mocks__/fileMock.js -------------------------------------------------------------------------------- /dashboard/__mocks__/styleMock.js: -------------------------------------------------------------------------------- 1 | // __mocks__/styleMock.js 2 | module.exports = {}; -------------------------------------------------------------------------------- /dashboard/config/paths.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rsarai/hq/HEAD/dashboard/config/paths.js -------------------------------------------------------------------------------- /dashboard/config/webpack.common.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rsarai/hq/HEAD/dashboard/config/webpack.common.js -------------------------------------------------------------------------------- /dashboard/config/webpack.dev.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rsarai/hq/HEAD/dashboard/config/webpack.dev.js -------------------------------------------------------------------------------- /dashboard/config/webpack.prod.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rsarai/hq/HEAD/dashboard/config/webpack.prod.js -------------------------------------------------------------------------------- /dashboard/config/webpack.stag.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rsarai/hq/HEAD/dashboard/config/webpack.stag.js -------------------------------------------------------------------------------- /dashboard/package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rsarai/hq/HEAD/dashboard/package.json -------------------------------------------------------------------------------- /dashboard/postcss.config.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rsarai/hq/HEAD/dashboard/postcss.config.js -------------------------------------------------------------------------------- /dashboard/public/index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rsarai/hq/HEAD/dashboard/public/index.html -------------------------------------------------------------------------------- /dashboard/src/App.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rsarai/hq/HEAD/dashboard/src/App.js -------------------------------------------------------------------------------- /dashboard/src/assets/altafino.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rsarai/hq/HEAD/dashboard/src/assets/altafino.svg -------------------------------------------------------------------------------- /dashboard/src/assets/icons/favicon.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rsarai/hq/HEAD/dashboard/src/assets/icons/favicon.png -------------------------------------------------------------------------------- /dashboard/src/hooks/useMemex.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rsarai/hq/HEAD/dashboard/src/hooks/useMemex.js -------------------------------------------------------------------------------- /dashboard/src/index.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rsarai/hq/HEAD/dashboard/src/index.js -------------------------------------------------------------------------------- /dashboard/src/index.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rsarai/hq/HEAD/dashboard/src/index.scss -------------------------------------------------------------------------------- /dashboard/src/pages/Memex.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rsarai/hq/HEAD/dashboard/src/pages/Memex.js -------------------------------------------------------------------------------- /dashboard/src/utils/axios.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rsarai/hq/HEAD/dashboard/src/utils/axios.js -------------------------------------------------------------------------------- /dashboard/src/utils/dates.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rsarai/hq/HEAD/dashboard/src/utils/dates.js -------------------------------------------------------------------------------- /dashboard/tailwind.config.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rsarai/hq/HEAD/dashboard/tailwind.config.js -------------------------------------------------------------------------------- /dashboard/yarn.lock: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rsarai/hq/HEAD/dashboard/yarn.lock -------------------------------------------------------------------------------- /docs/interface.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rsarai/hq/HEAD/docs/interface.png -------------------------------------------------------------------------------- /docs/this_project.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rsarai/hq/HEAD/docs/this_project.png -------------------------------------------------------------------------------- /hq/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rsarai/hq/HEAD/hq/__init__.py -------------------------------------------------------------------------------- /hq/analysis/Dashboard.ipynb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rsarai/hq/HEAD/hq/analysis/Dashboard.ipynb -------------------------------------------------------------------------------- /hq/api/README.md: -------------------------------------------------------------------------------- 1 | export FLASK_APP=server 2 | flask run 3 | -------------------------------------------------------------------------------- /hq/api/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /hq/api/eventlog.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rsarai/hq/HEAD/hq/api/eventlog.py -------------------------------------------------------------------------------- /hq/api/handler.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rsarai/hq/HEAD/hq/api/handler.py -------------------------------------------------------------------------------- /hq/api/server.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rsarai/hq/HEAD/hq/api/server.py -------------------------------------------------------------------------------- /hq/common.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rsarai/hq/HEAD/hq/common.py -------------------------------------------------------------------------------- /hq/exporters/README.md: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /hq/exporters/github_events.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rsarai/hq/HEAD/hq/exporters/github_events.py -------------------------------------------------------------------------------- /hq/exporters/github_notifications.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rsarai/hq/HEAD/hq/exporters/github_notifications.py -------------------------------------------------------------------------------- /hq/exporters/nubank.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rsarai/hq/HEAD/hq/exporters/nubank.py -------------------------------------------------------------------------------- /hq/exporters/readings.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rsarai/hq/HEAD/hq/exporters/readings.py -------------------------------------------------------------------------------- /hq/exporters/rescuetime_analytics.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rsarai/hq/HEAD/hq/exporters/rescuetime_analytics.py -------------------------------------------------------------------------------- /hq/exporters/rescuetime_daily_summary.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rsarai/hq/HEAD/hq/exporters/rescuetime_daily_summary.py -------------------------------------------------------------------------------- /hq/exporters/toggl.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rsarai/hq/HEAD/hq/exporters/toggl.py -------------------------------------------------------------------------------- /hq/exporters/utils.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rsarai/hq/HEAD/hq/exporters/utils.py -------------------------------------------------------------------------------- /hq/exporters/wakatime.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rsarai/hq/HEAD/hq/exporters/wakatime.py -------------------------------------------------------------------------------- /hq/main.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rsarai/hq/HEAD/hq/main.py -------------------------------------------------------------------------------- /hq/modules/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rsarai/hq/HEAD/hq/modules/README.md -------------------------------------------------------------------------------- /hq/modules/__existio/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rsarai/hq/HEAD/hq/modules/__existio/README.md -------------------------------------------------------------------------------- /hq/modules/__existio/create_attribute.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rsarai/hq/HEAD/hq/modules/__existio/create_attribute.py -------------------------------------------------------------------------------- /hq/modules/__existio/receive_authorization.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rsarai/hq/HEAD/hq/modules/__existio/receive_authorization.py -------------------------------------------------------------------------------- /hq/modules/__existio/request_authorization.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rsarai/hq/HEAD/hq/modules/__existio/request_authorization.py -------------------------------------------------------------------------------- /hq/modules/__existio/update_attribute.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rsarai/hq/HEAD/hq/modules/__existio/update_attribute.py -------------------------------------------------------------------------------- /hq/modules/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /hq/modules/bash.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rsarai/hq/HEAD/hq/modules/bash.py -------------------------------------------------------------------------------- /hq/modules/chrome.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rsarai/hq/HEAD/hq/modules/chrome.py -------------------------------------------------------------------------------- /hq/modules/daylio.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rsarai/hq/HEAD/hq/modules/daylio.py -------------------------------------------------------------------------------- /hq/modules/github.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rsarai/hq/HEAD/hq/modules/github.py -------------------------------------------------------------------------------- /hq/modules/google_takeout/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rsarai/hq/HEAD/hq/modules/google_takeout/README.md -------------------------------------------------------------------------------- /hq/modules/google_takeout/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /hq/modules/google_takeout/calendar.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rsarai/hq/HEAD/hq/modules/google_takeout/calendar.py -------------------------------------------------------------------------------- /hq/modules/google_takeout/maps.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rsarai/hq/HEAD/hq/modules/google_takeout/maps.py -------------------------------------------------------------------------------- /hq/modules/google_takeout/my_activity.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rsarai/hq/HEAD/hq/modules/google_takeout/my_activity.py -------------------------------------------------------------------------------- /hq/modules/google_takeout/play_store.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rsarai/hq/HEAD/hq/modules/google_takeout/play_store.py -------------------------------------------------------------------------------- /hq/modules/google_takeout/utils.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rsarai/hq/HEAD/hq/modules/google_takeout/utils.py -------------------------------------------------------------------------------- /hq/modules/google_takeout/youtube.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rsarai/hq/HEAD/hq/modules/google_takeout/youtube.py -------------------------------------------------------------------------------- /hq/modules/habits.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rsarai/hq/HEAD/hq/modules/habits.py -------------------------------------------------------------------------------- /hq/modules/kindle.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rsarai/hq/HEAD/hq/modules/kindle.py -------------------------------------------------------------------------------- /hq/modules/notion_articles.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rsarai/hq/HEAD/hq/modules/notion_articles.py -------------------------------------------------------------------------------- /hq/modules/nubank.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rsarai/hq/HEAD/hq/modules/nubank.py -------------------------------------------------------------------------------- /hq/modules/rescuetime.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rsarai/hq/HEAD/hq/modules/rescuetime.py -------------------------------------------------------------------------------- /hq/modules/toggl.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rsarai/hq/HEAD/hq/modules/toggl.py -------------------------------------------------------------------------------- /hq/modules/voice.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rsarai/hq/HEAD/hq/modules/voice.py -------------------------------------------------------------------------------- /hq/modules/wakatime.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rsarai/hq/HEAD/hq/modules/wakatime.py -------------------------------------------------------------------------------- /hq/pyproject.toml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rsarai/hq/HEAD/hq/pyproject.toml -------------------------------------------------------------------------------- /hq/routines/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /hq/routines/articles.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rsarai/hq/HEAD/hq/routines/articles.py -------------------------------------------------------------------------------- /hq/routines/importer.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rsarai/hq/HEAD/hq/routines/importer.py -------------------------------------------------------------------------------- /hq/routines/incremental_notes.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rsarai/hq/HEAD/hq/routines/incremental_notes.py -------------------------------------------------------------------------------- /hq/routines/manager.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rsarai/hq/HEAD/hq/routines/manager.py -------------------------------------------------------------------------------- /hq/routines/scan_repos.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rsarai/hq/HEAD/hq/routines/scan_repos.py -------------------------------------------------------------------------------- /hq/runs.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rsarai/hq/HEAD/hq/runs.py -------------------------------------------------------------------------------- /hq/scripts/nubank.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rsarai/hq/HEAD/hq/scripts/nubank.py -------------------------------------------------------------------------------- /hq/settings.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rsarai/hq/HEAD/hq/settings.py -------------------------------------------------------------------------------- /hq/sqlite_db.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rsarai/hq/HEAD/hq/sqlite_db.py -------------------------------------------------------------------------------- /hq/tests/test_modules.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rsarai/hq/HEAD/hq/tests/test_modules.py -------------------------------------------------------------------------------- /hq/views/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /hq/views/articles.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rsarai/hq/HEAD/hq/views/articles.py -------------------------------------------------------------------------------- /hq/views/kindle.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rsarai/hq/HEAD/hq/views/kindle.py -------------------------------------------------------------------------------- /requirements.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rsarai/hq/HEAD/requirements.txt -------------------------------------------------------------------------------- /setup.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rsarai/hq/HEAD/setup.py --------------------------------------------------------------------------------