Skip to content

Instantly share code, notes, and snippets.

View freyamade's full-sized avatar
🏳️‍🌈
hi c:

freya freyamade

🏳️‍🌈
hi c:
View GitHub Profile

Keybase proof

I hereby claim:

  • I am freyamade on github.
  • I am freyamade (https://keybase.io/freyamade) on keybase.
  • I have a public key whose fingerprint is 0A7C 4B91 CDB3 6560 E909 ED12 1471 1B86 0C07 C60D

To claim this, I am signing this object:

@freyamade
freyamade / crystal-bump.sh
Created July 29, 2019 16:24
Little bash script used to bump versions of a default Crystal projects
# Function to handle getting the bump data
get_bump() {
read -n 1 -p "Version to bump; [m]ajor | m[i]nor | [p]atch: " TO_BUMP
if [ "$TO_BUMP" = "p" ] || [ "$TO_BUMP" = "P" ]; then
PATCH=$((PATCH + 1))
elif [ "$TO_BUMP" = "i" ] || [ "$TO_BUMP" = "I" ]; then
MINOR=$(($MINOR + 1))
PATCH=0
elif [ "$TO_BUMP" = "m" ] || [ "$TO_BUMP" = "M" ]; then
MAJOR=$(($MAJOR + 1))
@freyamade
freyamade / fresh.tmTheme
Created August 2, 2019 10:47
.tmTheme version of the colour scheme for my website, because I like it that much
<?xml version="1.0" encoding="UTF-8"?>
<!DOCTYPE plist PUBLIC "-//Apple Computer//DTD PLIST 1.0//EN" "http://www.apple.com/DTDs/PropertyList-1.0.dtd">
<!-- Generated by: TmTheme-Editor -->
<!-- ============================================ -->
<!-- app: http://tmtheme-editor.herokuapp.com -->
<!-- code: https://github.com/aziz/tmTheme-Editor -->
<plist version="1.0">
<dict>
<key>name</key>
<string>fresh</string>