Skip to content

Instantly share code, notes, and snippets.

View kaylasommer's full-sized avatar

Kayla Sommer kaylasommer

View GitHub Profile
@kaylasommer
kaylasommer / JS Bin Nonsense
Last active April 29, 2016 21:55
JSBin nonsense
https://gist.github.com/anonymous/03be8305246111979a62df22b32bd36f
https://gist.github.com/anonymous/ed6ea15d1d1be8f61c473a3af5f55378
http://jsbin.com/qexaba/edit?js,console
http://jsbin.com/peseyi/edit?js,console
@kaylasommer
kaylasommer / .gitaliases
Created February 11, 2016 20:42
Git Aliases
[alias]
##
# Branches
##
# current branch
current-branch = !git rev-parse --abbrev-ref HEAD
cb = !git current-branch
##
@kaylasommer
kaylasommer / inline-editing.html
Created February 12, 2015 16:50
Inline Field Editing
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<title>Document</title>
<style>
h2,
input[type='text'] {
font-size: 26px;
margin: 0;
@kaylasommer
kaylasommer / feed-parser.jade
Last active August 29, 2015 14:07
feed-parser
.RSSfeed
div(ng-repeat='article in articles')
p(ng-bind-html='article.content')
a(href='{{article.link}}') More
hr