Skip to content

Instantly share code, notes, and snippets.

@jdanyow
jdanyow / app.html
Last active November 1, 2016 21:59
Aurelia - JQuery UI Autocomplete
<template>
<require from="./autocomplete"></require>
<input autocomplete="source.bind: colors; value.two-way: color">
${color}
</template>
@trey
trey / happy_git_on_osx.md
Last active February 18, 2024 10:46
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 "you@example.com"