-
item
-
item
item
-
item
-
item
This is some typescript code:
This file contains 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
#! /usr/bin/bash | |
set -e | |
TREE_IGNORE_PATTERN='node_modules|tscbuild|package-lock.json|.gitignore|.git' | |
echo '### Project Structure' | |
echo '```' | |
tree --noreport -F -a -I $TREE_IGNORE_PATTERN | tr -d '*' | |
echo '```' |
This file contains 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
"contraction <text> will": | |
R(Text("%(text)s'll ")), | |
"cap contraction <text> will": | |
R(Function(lambda text:Text(text.capitalize() + "'ll ").execute())), | |
"contraction <text> have": | |
R(Text("%(text)s've ")), | |
"cap contraction <text> have": | |
R(Function(lambda text:Text(text.capitalize() + "'ve ").execute())), | |
"contraction <text> are": | |
R(Text("%(text)s're ")), |
- SE Radio http://feeds.feedburner.com/se-radio - Many technical concepts like Microservices, etc. Language agnostic.
- Hansel Minutes http://feeds.feedburner.com/HanselminutesCompleteMP3 - Similar to SE Radio but a different host. Not as in depth.
- The ChangeLog http://feeds.5by5.tv/changelog - A podcast about a different open source library each episode
- Ruby Rogues http://feeds.feedburner.com/RubyRogues - A Ruby podcast that often has language agnostic discussions. e.g., They will have Dave Thomas come on to discuss the state of Agile.
- Giant Robots Smashing into Other Giant Robots http://giantrobots.fm/ - Each episode is an interview of someone influential in the programming community.
- Think Relevance http://feeds.feedburner.com/thinkrelevance/podcast - A podcast for the Clojure programming language
- Programming Throwdown http://feeds.feedburner.com/programmingthrowdown - A different programming language is talked about each episode. Most times the hosts are not exper
This file contains 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
#!/bin/bash -x | |
set -e | |
#by naming this git-m and putting it in your PATH, git will be able to run it when you type "git m ..." | |
if [ "$#" -ne 2 ] | |
then | |
echo "Wrong number of arguments. Should be 2, was $#"; | |
exit 1; | |
fi |
This file contains 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
[alias] | |
lg = log --max-count=100 --branches --color --graph --pretty=format:'%Cred%h%Creset - %C(bold blue)<%an>%Creset -%C(auto)%d%Creset %s %Cgreen(%cr)' --abbrev-commit |