Take note that I didn't visit every single one out there.
If branch is not stated, it's because of my assumption that all branches will have similar quality in that aspect.
| // Google app script for google sheets! | |
| /** | |
| * Calculate Malaysia income tax for YA2020. | |
| * | |
| * @param {number} chargeable_income Income after all eligible tax deductions. | |
| * @return The tax you have to pay | |
| * @customfunction | |
| */ | |
| function MALAYSIA_TAX(amount) { |
You know what... just start with Seedly blog post.
| #!/bin/bash | |
| # Git post-checkout hook to automatically copy environment files to new worktrees | |
| # This hook runs after git checkout, git switch, and git worktree add | |
| # CONFIGURATION: Modify these lists for your project | |
| # Files to symlink (relative to repo root) | |
| SYMLINK_FILES=( | |
| ".env" | |
| ".env.test" |