Git

2026-02-11

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;

A Visual Git Reference

This page gives a brief, visual reference for the most common commands in git. Based on Mark Lodato’s Visual Git Reference.

Basic Usage

The four commands below copy files between the working directory, the stage (also called the index), and the history (in the form of commits).

Read more >

Version Control

notes

it is good to keep notes about version controlling things.

I mostly use git.

git

prefixuse-case
BUGbug fix
DEVdevelopment tool or utility
DOCdocumentation
ENHenhancement, a new feature
MAINTmaintainence task
RELrelease
STYstylistic change
TSTaddition or modification of tests

Github

My GitHub repositories.

Public

  1. 100 Days Go
  2. 100 Days JS
  3. 100 Days Python
  4. 10K Hours AI/ML/DL
  5. 64 Days Lua
  6. Advanced Algorithms
  7. Anki TikZ
  8. Arcade
  9. Bananagrams
  10. Bookshelf
  11. Bots
  12. Bytelocker.el
  13. Bytelocker.nvim
  14. Chess YOLO
  15. Classical CS
  16. Clip
  17. CS Projects
  18. Dotfiles
  19. Draw
  20. Dynamic Programming
  21. Font2Splines
  22. Full Stack Chatbot
  23. Game of Life
  24. GitHub Pages Site
  25. GitHub Profile README
  26. Globe
  27. Hashi
  28. Icons
  29. Jobs
  30. JobSync Chrome
  31. Keychron
  32. Knight’s Tour
  33. LaTeX
  34. Ledger
  35. LeetCode
  36. Math
  37. Math Map
  38. Microburbs
  39. Ollama Voice Chess
  40. Orgro
  41. RATS STATS
  42. Sedgewick Algorithms in C
  43. Sydney Train Game
  44. TikZJax
  45. Timeline
  46. Tools
  47. Trades
  48. Typing Telemetry
  49. Ultimate Tic-Tac-Toe
  50. TODO Portfolio

Private

Archived

Pro Git

A revisitation of a good book.

Read more >