git log --graph --oneline --decorate ( git fsck --no-reflog | awk '/dangling commit/ {print $3}' )
This will show you all the commits at the tips of your commit graph which are no longer referenced from any branch or tag – every lost commit, including every stash commit you’ve ever created, will be somewhere in that graph.
These 'notes' were primarily intended for my own consumption but since there have been surprisingly many comments to it over the years I wanted to do some updates and clarifications. Thanks for all comments.
These instructions will require you to have connection to internet from your pi, WiFi, Ethernet or by some other means like a 3G USB dongle or something.
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
# Chrono Trigger Soundtrack - Corridors of Time | |
# plug this into http://sonic-pi.net/ | |
# still needs synth pads | |
# global config | |
use_bpm 112 | |
def play_legato_note(note_value, duration) | |
release_duration = duration |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
# Standard 12 bar blues | |
# I7 | IV7 | I7 | I7 | |
# IV7 | IV7 | I7 | I7 | |
# V7 | IV7 | I7 | I7 | |
# Choose a root note (one) and everything else will fall into place. | |
one = :G2 | |
four = one + 5 | |
five = one + 7 |