Asia seems to like their koi fish :)
ants actually build their nests up in trees for protection
apparently many people biking there suck at biking, the path was littered with signs tell you the curved road ahead of you indeed curves and you should slow down :)
because someone who can't bike managed to fall off this path, we were told to walk it. We kind of ignored that ;)
across the lake was a tall pagoda we went to visit that afternoon
the decorations were exquisite
lots of scenic roads, although not always very wide
lots of swallows in that tunnel
even found some bats with my flashlight
I got a tiny bit wet in the waterfall cave, but not too much :)
this is a 2 lane road of course
quick stop at the peak (3200m or so)
turns out it's actually ants that build nests in trees
picture of the bridge that started our trail
Jennifer planning our trip with a ranger
we also hiked up there, to the high temple, many steps :)
very fat koi fish, if they could walk on land to get your food, they sure would :)
blowtorch chicken, my favourite :)
the only shrimp we ever caught was by hand when it got caught into our net
people other than us then ended up with a plate load of shrimp ;)
this corral (animal) had little hair in its mouth, sensed something going in, and then closed down on it
This parrotfish had a protection bubble around it, created for protection when sleeping at night
this was a 4 meter shark, it was huge
Thanks to Arturo for taking this picture
Manta Shrimp, usually very shy and hard to find
Diving, how does it work? Which way is up?
we had a 2nd breakfast to sample local goods
we finished with a market visit
poor little kitten, it's a bit sick
thanks to Arturo for this picture
kids wanted us to take their picture :)
and I found another little chick that needed to be picked up :)
rich people had different houses
somehow another little chick ran into my hand :)
new toll expressway to the airport
that night also happend to have a full lunar eclipse
SHELL=/bin/bash
# If load average is more than MAXLA, show load average and all blocked processes
# As any time show anything blocked on wait_current_trans.isra.15 (used to be a btrfs hang bug)
# Also show swap if it drops below MINSWAP
# We pipe into bc because shell comparison doesn't do floating point.
*/5 * * * * nobody MAXLA=25; MINSWAP=10; if [ $(echo "$(awk '{print $1}' < /proc/loadavg) > $MAXLA" | bc) 1 ]]; then cat /proc/loadavg; ps -eo state,pid,etime,wchan:30,args | grep W |grep -v "^[RS]" ; fi; ps -eo pid,etime,wchan:30,args | grep -q [w]ait_current_trans.isra.15; if [ $(echo "$(free | grep 'Swap' | awk '{t = $2; f = $4; print (f/t*100)}') < $MINSWAP" | bc)
1 ]]; then free; fi