Skip to content

Instantly share code, notes, and snippets.

View ben-p-commits's full-sized avatar
:bowtie:

Ben P. ben-p-commits

:bowtie:
View GitHub Profile
@ben-p-commits
ben-p-commits / cc_raycast_snippets.json
Created July 11, 2023 14:34
Raycast Conventional Comments Snippets
[
{
"name": "praise",
"text": "**[praise:](https://conventionalcomments.org/#labels)**",
"keyword": "cc:praise"
},
{
"name": "nitpick",
"text": "**[nitpick:](https://conventionalcomments.org/#labels)**",
"keyword": "cc:nitpick"
@ben-p-commits
ben-p-commits / desktop-cleanup.zsh
Created December 9, 2016 15:58
Clean up typical desktop cruft
#clean up cruft on the desktop.
Y="\033[1;33m"
R="\033[0;31m"
G="\033[0;32m"
B="\033[0;34m"
NC="\033[0m"
echo "${G}Cleaning up image cruft:${R}"
@ben-p-commits
ben-p-commits / ci_tag.zsh
Last active May 5, 2021 15:29
CI tagging script
#color utilities
Y="\033[1;33m"
R="\033[0;31m"
G="\033[0;32m"
B="\033[0;34m"
NC="\033[0m"
# handy functions
usage() { echo "Usage: ci_tag [-t <tf1|tf2|release>] [-m <release note>]" 1>&2;}