I hereby claim:
- I am vraravam on github.
- I am avijayr (https://keybase.io/avijayr) on keybase.
- I have a public key ASDVxohOsQDJzlP6IefK0ywr2A209DReuTPISjz7vYBmOAo
To claim this, I am signing this object:
| # 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" |
| # 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 ${HOME}/.ssh/id_ed25519-tw -q -N '' -C "[email protected]" | |
| # ssh-keygen -t rsa -a 100 -b 4096 -f ${HOME}/.ssh/id_rsa-YYYY -q -N '' -C "[email protected]" | |
| # TODO: This can be removed if the 'pushInsteadOf' setting is removed from the dotfiles repo | |
| Host github.com | |
| IdentityFile ${HOME}/.ssh/YYYYYY |
| {"lastUpload":"2025-10-27T01:42:49.433Z","extensionVersion":"v3.4.3"} |
| This script has been moved here: https://github.com/vraravam/dotfiles |
| # 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 = [email protected]: | |
| # insteadOf = https://github.com/ |
I hereby claim:
To claim this, I am signing this object:
| This script has been moved here: https://github.com/vraravam/dotfiles |
| # frozen_string_literal: true | |
| module ParanoiaHelper | |
| extend ActiveSupport::Concern | |
| module ClassMethods | |
| private | |
| # This method generates an instance method with the name: associated_sym.to_s.pluralize. | |
| # | |
| # Example: |
| # config/application.rb | |
| class Application < Rails::Application | |
| config.generators do |g| | |
| g.orm :active_record | |
| g.template_engine :erb | |
| g.stylesheets false | |
| g.javascripts false | |
| g.test_framework :rspec, | |
| fixtures: true, | |
| view_specs: false, |
| To find the blobs taking up the max space: | |
| git rev-list --objects --all | grep "$(git verify-pack -v .git/objects/pack/*.idx | sort -k 3 -n | tail -100 | awk '{print$1}')" | |
| To delete blobs from history: | |
| git filter-branch -f --prune-empty --index-filter 'git rm -rf --cached --ignore-unmatch node_modules/* plugins/* platforms/* resources/ios/* resources/android/*' --tag-name-filter cat -- --all | |
| git filter-branch -f --prune-empty --index-filter 'git rm -rf --cached --ignore-unmatch public/assets/*' --tag-name-filter cat -- --all |