This file contains 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
<svg viewBox="0 0 500 250" preserveAspectRatio="xMidYMid meet"> | |
<path id="concave" d="M0,100 C200,140 300,140 500,100" fill="none" stroke="blue" transform="rotate(180, 250, 135)" /> | |
<text x="0" y="0" fill="green" font-size="30" text-anchor="middle"> | |
<textPath xlink:href="#concave"> | |
<tspan x="50%" dy="0">Health &</tspan> | |
</textPath> | |
<textPath xlink:href="#concave"> | |
<tspan x="50%" dy="1em">Safety</tspan> | |
</textPath> | |
</text> |
This file contains 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
{ | |
"bold_folder_labels": true, | |
"color_scheme": "Packages/Theme - Afterglow/Afterglow.tmTheme", | |
"highlight_line": true, | |
"highlight_modified_tabs": true, | |
"ignored_packages": | |
[ | |
"Vintage" | |
], | |
"line_padding_bottom": 2, |
This file contains 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
# Git aliases | |
alias gs="git status" | |
alias gpu="git pull origin" | |
alias gp="git push origin" | |
alias gc="git commit -m" | |
alias ga="git add" | |
alias gca="git commit -am" | |
alias gch="git checkout" | |
# Clear terminal (+ scrollback) |