Get in the zone with me for a good 15 minutes, maybe you’ll catch a few eclipse tricks and you’ll learn a little bit about how I think (and make mistakes along the way of fixing something on FrostWire)
Related Posts
How many lines of code does it take to create the Android OS?
This is a report done on all the projects that make up for the android project, my copy of it is synced as of May 23rd 2010, 6pm
Bash Alias – “svn_diff_counter”: Count lines added and removed
I love to know how many lines I’ve added and deleted before making a commit. This is why I created this alias: alias svn_diff_counter=’svn diff | egrep “^[+|-].*” | egrep -v “(+++)|(—)” > .tmp_diff_counter ; added=`egrep “(^+)” .tmp_diff_counter | wc -l`; removed=`egrep “(^-)” .tmp_diff_counter | wc -l`; rm .tmp_diff_counter; echo “Lines Added vs. Line Removed […]
Setting up Eclipse as your IDE for Bitcoin C++ development on MacOSX.
If you are a Java developer used to the productivity levels achieved by working with eclipse’s code navigation, code completion and refactoring tools, it’s worth your time staying in eclipse for any sort of C++ development. This post refers specifically to getting your eclipse environment to work with a particular C++ Open Source project, The […]