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
From: http://lifehacker.com/5904390/add-these-five-commands-to-the-top-of-your-to+do-list-avoid-the-most-common-deathbed-regrets | |
Format: Bronnie Ware / Paul Graham | |
I wish I'd had the courage to live a life true to myself, not the life others expected of me. / Don't ignore your dreams. | |
I wish I hadn't worked so hard. / Don't work too much. | |
I wish I'd had the courage to express my feelings. / Say what you think. | |
I wish I had stayed in touch with my friends. / Cultivate friendships. | |
I wish that I had let myself be happier. / Be happy. |
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
function gitbranch { | |
git checkout -b "$1"; | |
git push -u origin "$1"; | |
} | |
####################### | |
# create local branch | |
git branch foo |
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
class Foo | |
def bar | |
puts "baz" | |
end | |
end |
NewerOlder