Archive for March, 2009
SVN command line
31 March 2009Have been wondering for a while now how to force the svn command line to resolve conflicts, didn’t really see anything on google until I came across this: http://svnbook.red-bean.com/en/1.5/svn.ref.svn.html
Turns out there is a standard switch which I hadn’t found! The accept switch “specifies an action for automatic conflict resolution. Possible actions are postpone, base, mine-full, […]
Ruby operator precedence of ‘&&’ and ‘and’
6 March 2009Wow that a heck of a post title isn’t it… well the up shoot of this post is to point out the non-intuitive (to me anyway) difference in the precedence of the two AND operators in ruby. The operator ‘&&’ has a much higher precedence than ‘and’, more importantly ‘and’ has a lower precedence than […]