Tag Archives: codev

Why doesn’t my #!@$#$%@ console show my variables?

Given: Google Chrome, Dev Tools open, Console open. Paused at breakpoint. $scope.currentDb $scope.currentDb $scope.currentDbb $scope.currentDb Date.now() Nothing prints. Why? Give me a few hours. Finally, consider the log level selector bottom right of the console panel. Note the current selection … Continue reading

Posted in Computers, howto, Software | Tagged , , , , , , , | Leave a comment

Building Git 1.8 on Centos 6

We use Centos as a VM for development. Intellij IDEA was complaining about the 1.7.1 version from the Centos distro, requiring 1.7.1.1. Picky. So I grabbed the git source: $ git clone https://github.com/git/git $ cd git $ make … http-push.c:920: … Continue reading

Posted in Computers, howto | Tagged , , , , , | Leave a comment

Building KDiff3 on Centos 6

My goto diff tool on Windows is the open-source WinMerge. On Linux, Ubuntu has an installable KDiff3, a member of the Qt-based KDE family of tools. At work we are using Centos 6 as our dev VM, and no installable … Continue reading

Posted in Computers, howto, Software | Tagged , , , , , | Leave a comment

Yeoman

Seems yeoman is the best for Angular dev, like rails. Create, modify controller, views on the fly. Except it doesnt work. On Windows 8. Tried in my Centos 6 VM from work. gen a project: Error angular You don’t seem … Continue reading

Posted in Computers, howto, Software | Tagged , , , , , | 1 Comment

Boolean Params in Jenkins

I modified an existing job in Jenkins to use a boolean flag, so I could check it if I wanted to disable the Maven tests. To do so, you define a property: mvn -Dmaven.skip.tests=true goal goal… So for the boolean … Continue reading

Posted in Computers, howto | Tagged , , , , , | Leave a comment

Jenkins and Android

We use Jenkins to build our Android app. I am converting the build from r12 to r18 (now r20, since Google I/O 2012) which is forcing some config changes, but trying to preserve the old build in case we need … Continue reading

Posted in Computers, Software | Tagged , , , , , , , , | Leave a comment

Building svn2git from Qt

Trying to convert a SVN repo to Git. The Ruby version works, but does not commit all the files with the correct CRLF chars – seems to ignore the global settings. svn2git http://svnhost.xx.com/svn/repo/mobile/circdesk-android/trunk –rootistrunk –verbose > x I can reconvert … Continue reading

Posted in Computers, howto, Software | Tagged , , | 3 Comments