- 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
View TechnicalPodcasts.md
View git-m
#!/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 |
View My Git lg alias
[alias] | |
lg = log --max-count=100 --branches --color --graph --pretty=format:'%Cred%h%Creset - %C(bold blue)<%an>%Creset -%C(yellow)%d%Creset %s %Cgreen(%cr)' --abbrev-commit |