Google Chrome for Mac OS X 1/2
Windows 7 trick.. burning ISO images
w00t! Got me some gwave
Fuel costs for 2008 in MN
test: ruby -v
sudo apt-get install rubygems
test: gem -v
sudo gem install rails -y
*note: very slow
sudo gem install mongrel -y
*note: doesnt work with the latest, no worries, webrick will hold you over
sudo apt-get install rails
*note: the gem one didnt seem to work
rails ajaxonrails
*note: will create a /ajaxonrails from your $CWD
cd ajaxonrails
sudo ./script/server -b 192.168.117.140
now you should be seeing the “Welcome Aboard” when you go to http://192.168.117.140:3000/
Messing with yahoo spammers
LG HS-250 Review
on the positive; they have good battery life and I’ve had no issues dropping calls/connection. They have a built in mic and tapping the side starts/ends a call. The volume up/down/eq button is really tiny but I’m getting used to it. The volume is pretty good. And it’s nice to be able to skip tracks, pause video, or call my last contact all from the earpiece.
on the negative; the sound quality is rubbish. They deliver like 5 dollar radio shacks or the walmart Coby special. The process of power off/on is a damn hassle: hold for a while to power off then hold that tiny eq button a whole to engage hold (since it’s too easy to turn them on). No battery indicator (beeps when low but by then you are half way on your workout or bike). They stick out kind of far. Or I have big ears.
verdict; for 20 or 30 they serve a purpose; great for outdoors or driving. But the quality isn’t there to make me switch from my Sony studio phones at work/home. If you need a solution for listening while in motion; get em, otherwise skip it. And note; afaik they only work on the 3gs, not the original iPhone or first iPhone 3g.
Setting up SVN in Ubuntu
As corporate hasn’t exposed an LDAP (well, i think they have, but they wont tell a contractor where it is) so I need to use basic authentication for now.
I created a repository…
| Bash | | copy code | | ? |
| 1 | |
| 2 | svn create \svnroot\reporting |
| 3 | sudo chown -R www-data:www-data \svnroot\reporting |
| 4 |
Then I created a place for my workspaces and checked it out:
| Bash | | copy code | | ? |
| 1 | |
| 2 | sudo htpasswd -cm /etc/apache2/dav_svn.passwd test |
| 3 | # Password: |
| 4 | test1234 |
| 5 | sudo /etc/init.d/apache2 restart |
| 6 | mkdir ~/workspaces |
| 7 | cd ~/workspaces |
| 8 | svn co --username test --password test1234 http://localhost/svn/reporting |
| 9 |
| Bash | | copy code | | ? |
| 01 | |
| 02 | johnsoi1@johnsoi1-ubuntu:~/workspaces$ svn log -v http://johnsoi1-ubuntu.na.ab.applera.net/svn/reporting |
| 03 | ------------------------------------------------------------------------ |
| 04 | r1 | (no author) | 2009-08-20 13:13:19 -0700 (Thu, 20 Aug 2009) | 1 line |
| 05 | Changed paths: |
| 06 | A /test.txt |
| 07 | |
| 08 | test |
| 09 | ------------------------------------------------------------------------ |
| 10 |
| Bash | | copy code | | ? |
| 01 | |
| 02 | johnsoi1@johnsoi1-ubuntu:/etc/apache2/mods-enabled$ ls dav_svn.* |
| 03 | dav_svn.conf dav_svn.load |
| 04 | johnsoi1@johnsoi1-ubuntu:/etc/apache2/mods-enabled$ sudo vi dav_svn.conf |
| 05 | ........at end of file.... |
| 06 | #<LimitExcept GET PROPFIND OPTIONS REPORT> |
| 07 | #Require valid-user |
| 08 | #</LimitExcept> |
| 09 | |
| 10 | </Location> |
| 11 |


















