This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| # Reference: https://crontab.guru/ | |
| # Note: 'chronic' is a utility installed using 'moreutils' from homebrew and is needed so that a successful run of any cron job does not cause a mail to get generated | |
| # Env | |
| SHELL=/opt/homebrew/bin/zsh | |
| USERNAME=vijay | |
| HOME="/Users/${USERNAME}" | |
| DOTFILES_DIR="${HOME}/.dotfiles" | |
| PERSONAL_PROFILES_DIR="${HOME}/personal/${USERNAME}/profiles" |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| # file location: ${HOME}/.ssh/config | |
| # Note: To generate new ssh key (replace placeholders with your values): | |
| # ssh-keygen -t ed25519 -a 100 -b 4096 -f ${SSH_CONFIGS_DIR}/id_ed25519-work -q -N '' -C "XXXX@work.com" | |
| # ssh-keygen -t rsa -a 100 -b 4096 -f ${SSH_CONFIGS_DIR}/id_rsa-personal -q -N '' -C "YYYYY@gmail.com" | |
| # To add the generated keys to the ssh agent | |
| # ssh-add "${SSH_CONFIGS_DIR}/id_ed25519-work" | |
| # ssh-add "${SSH_CONFIGS_DIR}/id_rsa-personal" |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| {"version":1,"resource":"file:///Users/vijay/Desktop/to-watch.txt","entries":[{"id":"Hh9A.txt","timestamp":1766989725186},{"id":"ptFk.txt","timestamp":1766989735986}]} |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| # file location: ${HOME}/.gitconfig-template.inc | |
| [user] | |
| name = <your-name> | |
| email = <your-email> | |
| # For more advanced usage using seamless url-rewriting (which mandates configuring ~/.ssh/config correctly), please see https://medium.com/@biradarav.100/manage-multiple-git-github-gitlab-accounts-efficiently-on-a-single-machine-2ecde70f522f | |
| # [url "git@github-personal:"] | |
| # insteadOf = git@github.com: | |
| # insteadOf = https://github.com/ |