Skip to content

Instantly share code, notes, and snippets.

View keolo's full-sized avatar
🎵

keolo

🎵
View GitHub Profile
@keolo
keolo / gist:2287026
Created April 2, 2012 20:31
Git cheat sheet

Show commits and diffs where foo_bar was introduced or removed from the code

git log --oneline -S'foo_bar' -p

Get list of modified files between two changesets

git diff --name-status <SHA1> <SHA2>

git show --name-only

@plamere
plamere / index.html
Created December 6, 2011 13:45
Demonstration of how to call the Echo Nest API from a Spotify App
<!DOCTYPE html>
<html>
<head>
<meta charset="utf-8">
<title>Playlister</title>
<link rel="stylesheet" href="sp://import/css/adam.css">
<link rel="stylesheet" href="styles.css">
<script type="text/javascript" src="js/jquery.min.js"></script>
</head>