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
| # Append these to your ~/.gitconfig file under the [alias] section to save hours of typing. | |
| [alias] | |
| # Status & Commits | |
| s = status -s | |
| c = commit -m | |
| ca = commit --amend --no-edit | |
| # The ultimate git log: visual, colorful, and concise | |
| lg = log --color --graph --pretty=format:'%Cred%h%Creset -%C(yellow)%d%Creset %s %Cgreen(%cr) %C(bold blue)<%an>%Creset' --abbrev-commit |
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
| # A robust, reusable CI workflow for modern Node.js/TypeScript projects. | |
| # Drop this into: .github/workflows/ci.yml | |
| name: CI Pipeline | |
| on: | |
| push: | |
| branches: [ "main", "master" ] | |
| pull_request: | |
| branches: [ "main", "master" ] |
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
| <# | |
| .SYNOPSIS | |
| Quick Windows health check for admins. | |
| .DESCRIPTION | |
| Displays: | |
| - Computer name and current user | |
| - OS version and uptime | |
| - Logical disks with free space | |
| - Status of selected services |