Skip to content

Instantly share code, notes, and snippets.

View austenc's full-sized avatar
:shipit:
Ship it!

Austen Cameron austenc

:shipit:
Ship it!
View GitHub Profile
@austenc
austenc / happy_git_on_osx.md
Last active August 15, 2017 16:19 — forked from trey/happy_git_on_osx.md
Creating a Happy Git Environment on OS X

Creating a Happy Git Environment on OS X

Step 1: Install Git

brew install git bash-completion

Configure things:

git config --global user.name "Your Name"

git config --global user.email "[email protected]"

@austenc
austenc / .gitignore
Last active September 27, 2017 03:31
A good starting point for a .gitignore file in Unity
/[Ll]ibrary/
/[Tt]emp/
/[Oo]bj/
/[Bb]uild/
/[Bb]uilds/
/Assets/AssetStoreTools*
.DS_Store
# Visual Studio 2015 cache directory
@austenc
austenc / code.css
Created December 31, 2019 16:26
Prism code highlighting style example for my website
& code {
@apply rounded p-1 m-0 bg-gray-300 text-orange-600;
}
& pre > code {
@apply rounded py-2 px-0 bg-transparent;
color: inherit;
}
& pre,
& pre[class*='language-'] {
@austenc
austenc / app.js
Last active February 15, 2023 10:21
Alpine JS + Floating UI Tooltip Directive
import Alpine from 'alpinejs'
import tooltip from './tooltip'
Alpine.plugin(tooltip)
Alpine.start()