Photography Options at Fort Boise WMA

by Ron on March 26, 2009

I recently visited the Fort Boise Wildlife Management Area near Boise, Idaho. It was mostly a family outing, but I was also scouting for a new place to take bird/wildlife photos.

As it turns out, Fort Boise WMA is a great place for birds, but not so great for bird photography.

The main entrance road splits two wetland areas. You can see them clearly on this Google Map:


View Larger Map

During the spring months, there are thousands of birds joining in a cacophony of squawking and honking. And they are fairly antsy… not staying in one pool for very long.

The problem is, these areas are closed to visitors and they are both (mostly) hidden from view. There is no way to get elevated high enough to be at eye level with the birds. So you have to wait for them to flock to a different pond and catch a few belly shots as they fly overhead.

There are other areas further back towards the river that allow exploring year-round. We saw several raptors and a wide range of field birds.

It’s a fun place to explore and there are several geocaching opportunities in the area.

{ 0 comments }

Copy Files To Your iPhone

by Ron on March 11, 2009

Andy Ihnatko has a review of the Air Sharing iPhone app at the My Digital Life Podcast & Blog.

Of particular interest to me… Andy says:

“Music and video are both formats that the iPhone OS can simply view outside of the iPod app. If I just copy it into my Air Share, I can play it with just a tap. I often put whole albums on the iPhone, if I don’t yet know if I want to throw them into my big iTunes soup. That’s a particularly big plus when it’s a 700 meg movie file and I don’t know if I want to burn up that much space on my notebook’s little hard drive by actually importing it into iTunes.”

Only $4.99. Go read the review… good stuff.

{ 1 comment }

Photographer Rights In ACLU iPhone App

by Ron on March 6, 2009

I’m certainly no fan of the ACLU, but they do have a handy iPhone app that can help photographers (and others) understand their rights when approached by law enforcement.

Flying with Fish has the details.

{ 0 comments }

The original Jawbone headset by Aliph provides excellent noise reduction.

However, the unit has a design flaw; the charger fits too tight around the back of the unit. In fact, as I recently found out, it is SO tight that it can easily destroy the headset when removing it.

When I contacted Aliph customer service, they were cordial, but unwilling to help since I couldn’t find my receipt.

After some additional research, I found a video tutorial showing the best way to remove the charger. Apparently, this is known issue.

It’s really lame of Aliph to not stand behind their product. I definitely WILL NOT be buying my replacement headset from them.

{ 0 comments }

Got the winter photography blues?

by Ron on February 20, 2009

Feeling kinda blah? Got the winter photo blues?

Check out Zach Arias’ video post from Scott Kelby’s blog.

{ 0 comments }

Lens Cap for Sigma 100-300 f4

by Ron on February 15, 2009

I needed an 82mm replacement lens cap for my Sigma 100-300 f4. Preferably, the center pinch type since the one provided by Sigma can’t be removed or attached with the lens hood on. I found a really inexpensive version on eBay and decided to give it a try. It works great!

Search this seller’s store for 82mm:
http://search.ebay.com/_W0QQsassZjiakgong

I paid $3.60 with free shipping. It took 7 days to reach me in the US, although I assume transit times can vary widely.

{ 0 comments }

Foxmarks: Now for Safari Too!

by Ron on February 13, 2009

The excellent bookmark sync tool is not available for Safari. That’s great news for those (like me) who use both Firefox and Safari for different reasons.

Thanks, Foxmarks!

Download it at Foxmarks.com

{ 0 comments }

At work, I was unable to access my Ensim control panel (on RHEL4); the browser kept timing out. So I thought I’d restart it to see if that would fix it. I did the usual:

/etc/init.d/epld restart

And got this error

Stopping Ensim Pro For Linux Control Panel [ OK ]
Stopping Ensim Pro For Linux SSL Tunnel [FAILED]
Starting Ensim Pro For Linux Control Panel [ OK ]
Starting Ensim Pro For Linux SSL Tunnel [FAILED]

I checked the log file and see this:

cat /usr/lib/ensim/frontend/httpd/logs/error_log

…No space left on device: mod_rewrite: could not create rewrite_log_lock

Problem Found

A quick google search told me it was a semaphore problem. So I ran the ipcs command to check my config:

ipcs -l

—— Semaphore Limits ——–
max number of arrays = 128
max semaphores per array = 250
max semaphores system wide = 32000
max ops per semop call = 32
semaphore max value = 32767

Then ran the ipcs command to see how many were semaphores were left:

service httpd stop
ipcs -s | grep apache | wc -l

It showed 110. Not 128, but maybe enough to cause problems. PLUS, it “should” be zero with apache stopped.

Solution

With apache and epld stopped, I ran this command

ipcs -s | grep apache | gawk ‘{ print $2 }’ | xargs -n 1 ipcrm sem

Then started apache/epld again. All is fine.

service httpd start
/etc/init.d/epld start

{ 0 comments }

Exif Tool Revisited

by Ron on January 23, 2009

Lately, I’ve been seriously considering switching platforms from Canon to Nikon. Specifically, to the Nikon D300. And, I have the lens choice narrowed down to either the Nikkor 17-55 f2.8 or the Nikkor 24-70 f2.8.

So, I decided to run the numbers again to see which would be a better choice based on which focal length I shoot most.

Phil Harvey’s Exif Tool is the way to check that.

Turns out that over 76% of my shots are between 17 and 55mm. Whereas only 66% are between 24 and 70mm. Of course, I adjusted for the 1.6 to 1.5 crop difference.

For longer shots, I’m considering the Sigma 100-300 f4.

So, if you’re unsure what your next lens purchase should be… check the stats from what you’ve been shooting.

{ 0 comments }

Your Linux Boot Disk Full?

by Ron on January 14, 2009

While trying to run a YUM update on a CentOS server today, I got an error message about my /boot partition being full. I ran a df -h and sure enough, there was only 100k left. (My standard install uses 100MB for the boot partition.)

Here’s what I did to fix it.

rpm -q kernel

That returns a list of installed kernel updates. In my case I had more than 25…

kernel-2.6.9-22.EL
kernel-2.6.9-42.0.8.EL
kernel-2.6.9-42.0.8.plus.c4
kernel-2.6.9-42.0.10.plus.c4

kernel-2.6.9-67.plus.c4
kernel-2.6.9-67.0.1.EL
kernel-2.6.9-67.0.1.EL.plus.c4
kernel-2.6.9-67.0.4.plus.c4
kernel-2.6.9-67.0.7.plus.c4
kernel-2.6.9-67.0.15.plus.c4
kernel-2.6.9-67.0.20.EL

To remove some of the older ones, run:

yum remove kernel-2.6.9-42.0.10.plus.c4

or to get several at one time:

yum remove kernel-2.6.9-42.*

I recommend leaving a few of the older ones in case you need to revert one day.

{ 0 comments }