Archive for December, 2007
Trinity River National Wildlife Preserve
Today we wandered down to the Trinity River National Wildlife Preserve. It’s down by highways 90 and 146 in Liberty Texas. I finally purchased some industrial strength mosquito spray but it was so windy we didn’t need it. The industrial strength Deet is impressive. Six hours after applying it, we still stank bad enough to be embarrassed to go into a restaurant. I have no idea if it works on the mosquitoes or not?

This is the second time we’ve run across these carp. They are about 18″ long, silver backed and white bellied. They jump out of the water 2′ to 6′ high. Often they jump out several times in sequence like a skipping stone. They are actually a problem to fishermen down here. They jump into boats, jump on fishermen and they can get quite large weighing up to 60 pounds. In some lakes I’m told the locals take metal trashcan lids to use as shields against the fish.

The carp come out of the water face first, fly sideways about 2′-4′ then dive back in.

There was not much to see in the way of critters. It turns out alligators hibernate when the temperature drops to between 80′-75′. It’ll be late March before we see more of them. The only birds we saw were egrets and ibis and those only from a distance.

One of the things that jumps out at you at these refuges is how quiet it is. Do you know how quiet your house is when the power goes out? This is quieter than that. Except when the wind blows. Then the old leaves on the fan palms rattle so loud it sounds like a gorilla is crashing through the woods.
It wasn’t as impressive as the other refuges we’ve seen lately, but I think it is one of the larger ones. We’d probably have liked it better if we waited until spring to visit.
How to copy or tar files without ._ (dot underscore) files in OSX
This will not remove the damn things forever, what it will do is give you a clean copy of directory without any ._ files so you can tar or copy or do what ever with it. I’m sure OSX will put them back in just as soon as it can.
Open up a Terminal window [ Finder->Applications->Utilities->Terminal ]
If you have 10.5 type then hit enter:
export COPYFILE_DISABLE=true
If you have an earlier version of OSX type then hit enter:
export COPY_EXTENDED_ATTRIBUTES_DISABLED=true
Now create a clean directory type:
mkdir directory_name
Go into your new directory:
cd directory_name
Copy the files:
cp old_directory_path/* .
Now quick tar that baby or copy it before OSX stuffs those files back into it.
I have found that when you copy *.gif files this way it creates duplicate files so you will have flower.gif and flower_1.gif. Just delete the *_1.gif files. ( unless of course you have a legit file with that name. )
Now those clever folks reading this will know that you can add the line
export COPYFILE_DISABLE=true or export COPY_EXTENDED_ATTRIBUTES_DISABLED=true to your .bash_profile file in your home directory so you won’t have to retype it every time you open a terminal window.
Many thanks to OSX Considered harmful where I found this solution after hours of hunting and trying things that didn’t work. ( With out which I would be putting Linux back on my computer. )