Skip to content

Instantly share code, notes, and snippets.

View minlare's full-sized avatar

Michael Windell minlare

View GitHub Profile
@minlare
minlare / svg.html
Created January 21, 2020 19:34
SVG multiline curved text
<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>
@minlare
minlare / Preferences.sublime_settings - User
Last active February 13, 2018 14:37
Sublime Settings
{
"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,
@minlare
minlare / .bash_aliases
Created May 8, 2017 11:55
Bash Aliases
# 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)