Monday, July 12, 2010

I love my Grill!

Its the 4th of July weekend and so i thought its about time i got myself a Grill.

My budget was limited, and so even tho the webers looked very appealing i had to stick within my $200 limit (self imposed ofcourse).

I ended up going for the Nexgrill (http://www.homedepot.com/h_d1/N-5yc1vZ1xg1Zbwo59/R-202326969/h_d2/ProductDisplay?langId=-1&storeId=10051&catalogId=10053)
My first BBQ turned out to be pretty good. Here are few recipes that went down well with the peeps.

1. Pork Chops (http://www.foodnetwork.com/recipes/paulas-home-cooking/grilled-pork-chops-recipe/index.html)
2. Chicken Tikka Masala (http://allrecipes.com//Recipe/chicken-tikka-masala/Detail.aspx)
3. Grilled Shrimp (http://www.foodnetwork.com/recipes/ina-garten/grilled-herb-shrimp-recipe/index.html)

Installing GWT on Ubuntu 10.04

When trying to run GWT in hosted mode i got the following,

** Unable to find a usable Mozilla install **
You may specify one in mozilla-hosted-browser.conf, see comments in the file for details.

To overcome this i downloaded mozilla-1.7.13 from the following location,
http://google-web-toolkit.googlecode.com/svn/tools/redist/mozilla/mozilla-1.7.13.tar.gz

I then updated the mozilla-hosted-browser.conf to point to my newly unziped mozilla dist.

When i retried to launch the GWT hosted browser i now got the following,

** Unable to load Mozilla for hosted mode **
java.lang.UnsatisfiedLinkError: /
/mozilla-1.7.13/libxpcom.so: libstdc++.so.5:
cannot open shared object file: No such file or directory

source: http://whatwouldnickdo.com/wordpress/99/unable-to-load-mozilla-for-hosted-mode-gwt-ubuntu-810-linux/

The key to troubleshooting the problem is in the second line, libstdc++.so.5 to be exact. It can’t find this C++ library. Turns out the hosted browser needs libstdc++5, but the version currently installed on my 8.10 system is libstdc++6. So you can either:

I had trouble installing the libstdc++5 using sudo apt-get install libstdc++5


So instead i did the following,
# wget http://ftp.egr.msu.edu/debian/pool/main/g/gcc-3.3/libstdc%2b%2b5_3.3.6-20_i386.deb
# dpkg-deb -x libstdc++5_3.3.6-20_i386.deb libstdc++5
# cp -p libstdc++5/usr/lib/libstdc++.so.5.0.7 /usr/lib
# cp -p libstdc++5/usr/lib/libstdc++.so.5 /usr/lib

This solved the problem!

Search This Blog