jobsync

A fork of this repo: https://github.com/Gsync/jobsync.git

Updated to include automatic Job Application insertion from Notmuch Emacs email client.

EXPORT html <a href="https://github.com/abaj8494/jobsync"> <img src=" =" alt=“jobsync” /> </a> #+END_EXPORT

Original Functionality

db is stored at `./prisma/dev.db`

it can be queried with sqlite3:

  • sqlite3 prisma/dev.db
  • .tables # List tables

SELECT id, subject, classification, status, confidence FROM EmailImport LIMIT 10;

.mode column
.headers on
SELECT subject, classification, confidence FROM EmailImport WHERE status='pending' LIMIT 5;