Running Railo on Tomcat 7

Just wanted to rehash here what I already stated on Twitter. Railo runs fine on Tomcat 7, especially if you followed my previous blog post on installing it. I was able to download Tomcat 7 for Windows, install it (I disabled the Tomcat 6 service briefly) - edit 3 files. Start it up and go to the Railo admin. Once I confirmed everything was working properly, I uninstalled Tomcat 6.

Someone asked on Twitter if it was worth upgrading. I'm of the opinion that anytime you see mentions of clean-up, security fixes, etc. It's always worth upgrading.

Amazon Mp3 on the HTC Incredible

So, the HTC / Verizon DROID Incredible does not come with Amazon MP3 and the Amazon application from the Android Market doesn't allow MP3 purchases. Not sure why the Incredible didn't automatically come with it, but I kept hearing rumors of other people being able to install it except the phone had to be rooted. Well, today I was able to install it without needing it rooted.

Well, I finally figured it out. Not sure how legal / illegal or whatever it is to install, so I won't link directly to anything. I don't have my USB cable handy with me at work, so... I used dropbox to install this.

  1. Do a search on google for "amazon mp3 .apk"
  2. I dropped the .apk file in my dropbox on the desktop.
  3. Opened up my dropbox on the HTC incredible (yes, it's available for free in the market)
  4. Downloaded the .apk to my phone and it prompted to install.
  5. Amazon Mp3 is now available on the HTC Incredible.

Voila. Done. Why this app is not freely available in the Android Market makes no sense to me.

Learning git on windows

So, I've decided to be a sheep and invest my time in learning git. I'm using Windows 7 as my development platform. I have an account on github. There's a lot of tutorials around on the net, all of them point towards a windows client called msysgit. I've been poking at this thing for awhile now, but recently I refreshed my machine with a reformat. So, in setting everything back up again, I noticed there's a new msysgit build out.

So, I pulled up my usual websites that I follow along to install msysgit, and there's a change in the new installer. It no longer prompts for plink.exe and I can't find anything on google about the removal of it. After bumping along tutorials and such, I've come to realize you no longer need it.

So, my suggestions are to follow this instruction first:

Once that's done, everything worked - except, now I have to type in my passphrase every time I commit. Annoying. I came across this:

Doesn't look like it is for windows, but it is. Just follow the directions. So, make sure the bash window is open and then just type: 'vi ~/.profile' - hit 'i' to insert, paste in that entire block, then hit 'escape' then ':wq' to save the file. Once that's done, it'll look like nothing happened, but the next time you open up bash, you'll be prompted for your passphrase and as long as you keep that bash window open, you won't ever be prompted again.

Which is good. This means I no longer have to keep PuTTY's pageant.exe running in the background. One other piece of advice, you'll be tempted to download / use tortoisegit. Don't. Learn the bash / gui first. tortoisegit has issues and in my findings it runs slower.