Wednesday, January 30, 2013
Magnificient
I just wonder how many folks will be, like me, googling "magnificient" today after reading xkcd. I certainly did. I'm still undecided if it is a word or just artistic license.
Friday, November 30, 2012
Juju environment in the HPCloud
I've been an HPCloud user a long time. They rocked the cloud world as one of the first OpenStack deployments open to the public.
And I work at Canonical, so Juju is key to my cloud usage. There are some "howtos" for getting the hpcloud to work with Juju but I was just missing a few things... not sure if it was out of date or what, but the following worked fine.
Create an "environment" within your ~/.juju/environments.yaml that looks like this:
By default, your ~/.ssh/id_rsa.pub will be injected into the instances. You can pass an alternative in by adding an:
in the hpcloud environment stanza.
And I work at Canonical, so Juju is key to my cloud usage. There are some "howtos" for getting the hpcloud to work with Juju but I was just missing a few things... not sure if it was out of date or what, but the following worked fine.
Create an "environment" within your ~/.juju/environments.yaml that looks like this:
default: hpcloud environments: hpcloud: # Get api-keys here:
# https://console.hpcloud.com/account/api_keys
# after you have a valid hpcloud account and login
access-key: **************:****************
# from the api-key page use the access key
# with a central colon (:)
secret-key: *************************************
# secret-key is just below the access-key you used above,
# typically hidden/obscured by default
juju-origin: ppa
# This was the most important line.
# juju-origin defaults to "distro" and the ubuntu in hp cloud
# currently is precise without an upgraded juju, so without
# setting this to ppa, you have a catch-22
control-bucket: make-your-own-bucketname-cb
#make this up
admin-secret: make-up-your-own-admin-secret
#make this up
region: az-1.region-a.geo-1
default-image-id: 8419
# use an appropriate image number from the selected region
# you are using in the next line
# 8419 is valid for az-1
project-name: hpcloud@medberry.net
# This is shown as the tenant name.
# yours may look more like email@example.net-tenant-name
default-instance-type: standard.medium
# This value while required, is ignored since Juju added constraints
# you can set it to any arbitrary string
# use "juju set-constraint instance-type=standard.medium"
# to actually set a default instance type after you bootstrap
# and you can set the default at bootstrap time
# with "juju bootstrap --contraint "instance-type=standard.medium"
auth-url: https://region-a.geo-1.identity.hpcloudsvc.com:35357/v2.0/
auth-mode: keypair
type: openstack
default-series: precise
By default, your ~/.ssh/id_rsa.pub will be injected into the instances. You can pass an alternative in by adding an:
authorized-keys: ssh-rsa AAAAPUBLIC_KEY_TEXT_HERE
in the hpcloud environment stanza.
Monday, September 24, 2012
A little issue with nova keystone and cacert.pem
I was having a bit of trouble with OpenStack as I was setting up a demo. The demo included the normal essex bits and pieces: nova, keystone, horizon, glance, rabbitmq, mysql, and swift.
Most of the way through the setup, I came to this step:
and got a curious error:
ERROR: string indices must be integers, not str
which is correct, but not all that meaningful. I'll jump to the solution now. Somehow I had glossed over the step to create the nova user in keystone. Once I did that the get-root-cert worked.
Various error messages about this (and askubuntu answers) abound and include helpful suggestions like check your endpoints. (My endpoints were all fine.) And other suggestions (though I've only seen it once--as I was writing this blog post after I had a solution) to "Check that your service users can authenticate against keystone."
That was the actual issue--my "nova" user was never created (as I've said). And although the openrc file I had created doesn't reference this user, it is used by keystone to get the information.
I was able to troubleshoot this (on a multihost system with nova controller on node B and keystone on node A) by simultaneously tail -f /var/log/**ALLTHENOVALOGS** and tail -f /var/log/keystone/keystone.log where I plainly found:
Sadly, this user/password is created many many steps earlier (and typically on another node) during the keystone config and only tested near the end of an install.
cd /home/ubuntu/creds
. ./openrc
nova x509-get-root-certand got a curious error:
ERROR: string indices must be integers, not str
which is correct, but not all that meaningful. I'll jump to the solution now. Somehow I had glossed over the step to create the nova user in keystone. Once I did that the get-root-cert worked.
Various error messages about this (and askubuntu answers) abound and include helpful suggestions like check your endpoints. (My endpoints were all fine.) And other suggestions (though I've only seen it once--as I was writing this blog post after I had a solution) to "Check that your service users can authenticate against keystone."
That was the actual issue--my "nova" user was never created (as I've said). And although the openrc file I had created doesn't reference this user, it is used by keystone to get the information.
I was able to troubleshoot this (on a multihost system with nova controller on node B and keystone on node A) by simultaneously tail -f /var/log/**ALLTHENOVALOGS** and tail -f /var/log/keystone/keystone.log where I plainly found:
> 2012-09-24 19:26:47 DEBUG [keystone.common.wsgi] ******************** REQUEST BODY ********************
> 2012-09-24 19:26:47 DEBUG [keystone.common.wsgi] {"auth": {"tenantName": "service", "passwordCredentials": {"username": "nova", "password": "novapassword"}}}
> 2012-09-24 19:26:47 DEBUG [keystone.common.wsgi]
> 2012-09-24 19:26:47 DEBUG [routes.middleware] Matched POST /tokens
> 2012-09-24 19:26:47 DEBUG [routes.middleware] Route path: '{path_info:.*}', defaults: {'controller': }
> 2012-09-24 19:26:47 DEBUG [routes.middleware] Match dict: {'controller': , 'path_info': '/tokens'}
> 2012-09-24 19:26:47 DEBUG [routes.middleware] Matched POST /tokens
> 2012-09-24 19:26:47 DEBUG [routes.middleware] Route path: '{path_info:.*}', defaults: {'controller': }
> 2012-09-24 19:26:47 DEBUG [routes.middleware] Match dict: {'controller': , 'path_info': '/tokens'}
> 2012-09-24 19:26:47 DEBUG [routes.middleware] Matched POST /tokens
> 2012-09-24 19:26:47 DEBUG [routes.middleware] Route path: '/tokens', defaults: {'action': u'authenticate', 'controller': }
> 2012-09-24 19:26:47 DEBUG [routes.middleware] Match dict: {'action': u'authenticate', 'controller': }
> 2012-09-24 19:26:47 DEBUG [keystone.common.wsgi] arg_dict: {}
> 2012-09-24 19:26:47 WARNING [keystone.common.wsgi] Invalid user / password
> 2012-09-24 19:26:47 DEBUG [keystone.common.wsgi] ******************** RESPONSE HEADERS ********************
> 2012-09-24 19:26:47 DEBUG [keystone.common.wsgi] Content-Type = application/json
> 2012-09-24 19:26:47 DEBUG [keystone.common.wsgi] Vary = X-Auth-Token
> 2012-09-24 19:26:47 DEBUG [keystone.common.wsgi] Content-Length = 89
> 2012-09-24 19:26:47 DEBUG [keystone.common.wsgi]
> 2012-09-24 19:26:47 DEBUG [keystone.common.wsgi] ******************** RESPONSE BODY ********************
> 2012-09-24 19:26:47 DEBUG [keystone.common.wsgi] {"error": {"message": "Invalid user / password", "code": 401, "title": "Not Authorized"}}
> 2012-09-24 19:26:47 DEBUG [eventlet.wsgi.server] 172.25.100.32 - - [24/Sep/2012 19:26:47] "POST /v2.0/tokens HTTP/1.1" 401 248 0.030605
Once the nova user was created properly, the cacert.pem is created.Sadly, this user/password is created many many steps earlier (and typically on another node) during the keystone config and only tested near the end of an install.
Monday, August 6, 2012
Hangout How To
I found myself googling how to make Google Hangouts follow speaker. Sometimes I click on a specific speaker to put their webcam centermost in my display. However, switching back to "focus follows speaker" mode was not obvious.
Simply click on the speaker (at the bottom) that you already have selected and a green outline around the speaker will turn off. This "toggles" the focus follows speaker mode (off or on). Clicking on a different speaker will just move "permanent" focus to the other speaker, so you must select the current speaker (which is more like a "de-select".)
Tuesday, May 29, 2012
YAHTNG
Yet Another Helping The Next Guy
I bought my son a shiny new Ivy Bridge based Asus laptop from dealnews for high school graduation. Of course, he only runs Ubuntu, but I wanted to keep the Win 7 64 around for flashing BIOS and related reasons (and someday he may need to run some Windows program....)
It's pretty straight-forward to install Ubuntu alongside windows in a dual-boot fashion as the Live installer knows how to do this. But apparently not on some UEFI based systems--or that's what I thought. It turns out, the installer knows how to work with UEFI systems as well. It just doesn't know how to do it on a system with a broken/corrupt/obscured GUID Partition Table (gpt).
I've used gpt for years as I used to work in HP's Itanium Linux lab. And I've seen some GPT tables corrupted before. The ASUS (at least this one) ships with the secondary GPT corrupted. The last partition (I think 5th) somehow extends INTO the secondary GPT. (Think of the secondary as a backup table in case the primary gets corrupted--a failsafe.) This corrupt secondary table makes the partition table unreadable or possibly unusable to Ubuntu (and moreover, to the underlying libparted and the parted utility.) The installer just "determined" that the disk was unformatted so it kindly offered to just install Ubuntu to this blank disk (destroying all the existing partitions in the process.) Not so good.
I downloaded gdisk (from Universe) as it seems to be designed from the ground up for GPT tables and it was able to read the partition table and show me the partitions. These matched up with what /proc/partitions was showing me (which seemed to be right all along.) It also matched up with what I was seeing in Windows 7. ASUS ships with a C drive, a D drive, and a recovery drive along with the normal EFI system partition (ESP) and a Microsoft Reserved Partition (MSR). So the layout looked something like this:
Where 3 is C (OS) drive, 4 is D (DATA) drive, and 5 is the ASUS Recovery partition. It is partition 5 that seemed to be the source of the error:
I bought my son a shiny new Ivy Bridge based Asus laptop from dealnews for high school graduation. Of course, he only runs Ubuntu, but I wanted to keep the Win 7 64 around for flashing BIOS and related reasons (and someday he may need to run some Windows program....)
It's pretty straight-forward to install Ubuntu alongside windows in a dual-boot fashion as the Live installer knows how to do this. But apparently not on some UEFI based systems--or that's what I thought. It turns out, the installer knows how to work with UEFI systems as well. It just doesn't know how to do it on a system with a broken/corrupt/obscured GUID Partition Table (gpt).
I've used gpt for years as I used to work in HP's Itanium Linux lab. And I've seen some GPT tables corrupted before. The ASUS (at least this one) ships with the secondary GPT corrupted. The last partition (I think 5th) somehow extends INTO the secondary GPT. (Think of the secondary as a backup table in case the primary gets corrupted--a failsafe.) This corrupt secondary table makes the partition table unreadable or possibly unusable to Ubuntu (and moreover, to the underlying libparted and the parted utility.) The installer just "determined" that the disk was unformatted so it kindly offered to just install Ubuntu to this blank disk (destroying all the existing partitions in the process.) Not so good.
I downloaded gdisk (from Universe) as it seems to be designed from the ground up for GPT tables and it was able to read the partition table and show me the partitions. These matched up with what /proc/partitions was showing me (which seemed to be right all along.) It also matched up with what I was seeing in Windows 7. ASUS ships with a C drive, a D drive, and a recovery drive along with the normal EFI system partition (ESP) and a Microsoft Reserved Partition (MSR). So the layout looked something like this:
Number Start (sector) End (sector) Size Code Name
1 2048 411647 200.0 MiB EF00 EFI system partition
2 411648 673791 128.0 MiB 0C01 Microsoft reserved part
3 673792 339511295 161.6 GiB 0700 Basic data partition
4 339511296 925575167 279.5 GiB 0700 Basic data partition
5 925575168 976773167 24.4 GiB 2700 Basic data partition
Where 3 is C (OS) drive, 4 is D (DATA) drive, and 5 is the ASUS Recovery partition. It is partition 5 that seemed to be the source of the error:
Warning! Secondary partition table overlaps the last partition by
33 blocks!
You will need to delete this partition or resize it in another utility.
To resolve this issue, I simply deleted partition 4 and recreated it from the same start point but smaller and ending sooner. Then I dd'd partition 5 to another disk, deleted it and recreated it (same size) but now it ended before the end of the disk. I then restored it via dd. (The partition Warning! went away as soon as 5 was deleted and did not reappear when it was recreated at a new start sector.)
I failed to grab a snapshot of the final partition table entries but I basically shortened 4 by a couple GiB (and didn't try to "nail" it to exactly 33 blocks shorter.)
Once the GPT table had a functioning secondary GPT, the Ubuntu installer was able to find it without problems. I just used gdisk to make the D partition into a Linux format partition (8300). (There was nothing on the D drive.) The installer did create a GRUB entry for the Win 7 but that doesn't really work. However, using ESC, I can select the Windows partition from the UEFI boot menu and it dual boots just fine. After the installation was done, I upgraded from the Precise install release bits to the latest bits (including newer kernel) and the grub update worked fine as well--so it seems to be a rock solid dual boot machine now.
Holler if this helps you or if you know more about why ASUS formats the disk this way--there could be an underlying reasons. Oh, and one more thing, I actually did make the Win 7 recovery disks PRIOR to doing any Ubuntu at all and I've not tried to do anything since with the recovery partition.
You can reach me via the comments below or email me at asus DOT dowdberry AT medberry DOT net.
And some final words: Ubuntu Live Installer makes an awesome detective kit and this Ivy Bridge notebook truly rocks.
Monday, January 2, 2012
Helping the next guy
Just a bit of IRC discussion I thought I'd share. A friend was looking for a way to disable X on an Ubuntu install converted to be a mythtv backend. After a web discussion, another friend suggested passing "text" in on the cmdline. That's a darn good suggestion.
This works in both gdm and lightdm as they both search for this in their startup script (/etc/init.d/gdm and /etc/init/lightdm). Lightdm is the default display manager in Ubuntu 11.10 Oneiric and gdm was the default display manager in prior versions.
This works in both gdm and lightdm as they both search for this in their startup script (/etc/init.d/gdm and /etc/init/lightdm). Lightdm is the default display manager in Ubuntu 11.10 Oneiric and gdm was the default display manager in prior versions.
Friday, July 15, 2011
Read Later Fast aka Diigo
Just checking to see if RLF is really all it is cracked up to be (by forcibly changing the content of my blog.)
Thursday, May 19, 2011
Flickr Uploading from Ubuntu
As a linux user, I've long been frustrated with the tools available for uploading pix or vids to Flickr. I thought I'd give using Wine a shot with the Windows uploadr today. No luck. It gives an error "No XPCOM".
I was stumped and frustrated at this point. Sadly, if I had really been paying attention at UDS-O in Budapest, I would have immediately tried the winetricks hacks. (Winetricks were shown as a way to get performance measures during Wednesday's plenary session.) But no, I wasn't that swift.
Fortunately, someone else was... even swifter: Thank you Sandip Bhattacharya. Your blog post Using the official Flickr uploadr on Ubuntu made my day. Kudos Sandip!
I was stumped and frustrated at this point. Sadly, if I had really been paying attention at UDS-O in Budapest, I would have immediately tried the winetricks hacks. (Winetricks were shown as a way to get performance measures during Wednesday's plenary session.) But no, I wasn't that swift.
Fortunately, someone else was... even swifter: Thank you Sandip Bhattacharya. Your blog post Using the official Flickr uploadr on Ubuntu made my day. Kudos Sandip!
Saturday, March 12, 2011
Chroot Setup
Another in a series of notes to help me find and remember things. When setting up a chroot, immediately after, examine and if necessary rectify the /etc/resolv.conf settings. A Debian debootstrap chroot will use a default of 192.168.1.1 but you might want something other than that. The first clue will be when you can't ping or apt-get something.
Sunday, November 28, 2010
Another rant -- Colorado Public ... Radio?
www.cpr.org is not a site dedicated to cardio-pulmonary resuscitation. No, the letters stand for Colorado Public Radio. RADIO, yes, RADIO. However, I challenge you to find their radio broadcast frequencies on the home page. Or even an obvious link. FAIL.
A search for frequency will bring you to the Station Map where you will find that in and around Denver, the classical music station is 88.1 and the news (and news talk) is on 90.1.
Now you may be asking why in the world I'd be looking up an FM transmitter in this day and age. I still have analog radios. Really. And my ogg music player has one built-in and I regularly have it with me when exercising. And it's the holiday season here in the states... and I need to exercise. And yes, I can exercise to classical music.
A search for frequency will bring you to the Station Map where you will find that in and around Denver, the classical music station is 88.1 and the news (and news talk) is on 90.1.
Now you may be asking why in the world I'd be looking up an FM transmitter in this day and age. I still have analog radios. Really. And my ogg music player has one built-in and I regularly have it with me when exercising. And it's the holiday season here in the states... and I need to exercise. And yes, I can exercise to classical music.
Friday, November 5, 2010
FBReader full-screen feature
Let's get this out of the way first: This is a totally self-serving post.
FBReader, an e-book reader that can handle EPUB, has a feature to go full-screen. This is very useful--but also quite confusing. None of the menubar buttons seem to enable/disable this feature. Yet, it's fairly easy to accidentally turn on or off--and completely baffling when it happens. A quick google turned up nothing really obvious about how to enable/disable/toggle fullscreen mode. Thus, this blog entry.
Without further ado, here's the shortcut key: <RET>. Yes, the return key or enter key is the way you toggle fullscreen, full screen, full-screen off and on. And this does make some sense. The return key is pervasive on most PDAs, handhelds, and certainly on the author's laptops. So, it is nearly universally available (and moreover the enter key makes little sense in the body of a more-or-less read-only document format like EPUB.)
I've intentionally loaded this blog entry with searchable terms so that others trying to figure this out can easily find the information. That's why keyboard shortcuts and the word fullscreen appears several times with various spellings. Likewise, FBReader appears repeatedly. FBReader, which has nothing to do with FaceBook and does not predate FB, was certainly something I was aware of prior to my knowledge of facebook.
I don't yet own a Kindle, Nook, Sony Reader or any other dedicated ebook reader. Moreover, I don't have an iPhone, Android phone, Palm or other smartphone. I do have a Nokia that can apparently also run FBReader and I may try that out at some point but I have not yet done so. And no, I've never owned the original FBReader device, Sharp Zaurus.
FBReader, an e-book reader that can handle EPUB, has a feature to go full-screen. This is very useful--but also quite confusing. None of the menubar buttons seem to enable/disable this feature. Yet, it's fairly easy to accidentally turn on or off--and completely baffling when it happens. A quick google turned up nothing really obvious about how to enable/disable/toggle fullscreen mode. Thus, this blog entry.
Without further ado, here's the shortcut key: <RET>. Yes, the return key or enter key is the way you toggle fullscreen, full screen, full-screen off and on. And this does make some sense. The return key is pervasive on most PDAs, handhelds, and certainly on the author's laptops. So, it is nearly universally available (and moreover the enter key makes little sense in the body of a more-or-less read-only document format like EPUB.)
I've intentionally loaded this blog entry with searchable terms so that others trying to figure this out can easily find the information. That's why keyboard shortcuts and the word fullscreen appears several times with various spellings. Likewise, FBReader appears repeatedly. FBReader, which has nothing to do with FaceBook and does not predate FB, was certainly something I was aware of prior to my knowledge of facebook.
I don't yet own a Kindle, Nook, Sony Reader or any other dedicated ebook reader. Moreover, I don't have an iPhone, Android phone, Palm or other smartphone. I do have a Nokia that can apparently also run FBReader and I may try that out at some point but I have not yet done so. And no, I've never owned the original FBReader device, Sharp Zaurus.
Friday, June 25, 2010
Undocumented ILO2 Settings
There appear to be some undocumented ILO2 settings, as a google search for:
turns up zero hits as of this date.
However, by logging into a DL380 G62 ILO-2 CLI console, you can see this setting:
And as you can plainly see,
oemhp_rawvspport appears therein.
oemhp_rawvspportturns up zero hits as of this date.
However, by logging into a DL380 G62 ILO-2 CLI console, you can see this setting:
>hpiLO-> show /map1/config1
status=0
status_tag=COMMAND COMPLETED
/map1/config1
Targets
Properties
oemhp_mapenable=yes
oemhp_timeout=30 minutes
oemhp_passthrough=disabled
oemhp_rbsuenable=yes
oemhp_rbsulogin=no
oemhp_rbsushowip=yes
oemhp_telnetenable=yes
oemhp_httpport=80
oemhp_sslport=443
oemhp_rcport=23
oemhp_vmport=17988
oemhp_tsport=3389
oemhp_sshport=22
oemhp_sshstatus=yes
oemhp_serialclistatus=yes
oemhp_serialcliauth=yes
oemhp_serialclispeed=115200 bits/sec
oemhp_minpwdlen=7
oemhp_hotkey_t=NONE
oemhp_hotkey_u=NONE
oemhp_hotkey_v=NONE
oemhp_hotkey_w=NONE
oemhp_hotkey_x=NONE
oemhp_hotkey_y=NONE
oemhp_high_perf_mouse=automatic
oemhp_enforce_aes=no
oemhp_authfailurelogging=3
oemhp_computer_lock=disabled
oemhp_rawvspport=3002
oemhp_console_capture_port=17990
oemhp_console_capture_enable=no
oemhp_interactive_console_replay_enable=no
oemhp_capture_auto_export_enable=no
oemhp_capture_auto_export_location=http://192.168.1.1/REDLOF/capturePCThPCTt.ilo
oemhp_capture_auto_export_username=0
oemhp_capture_auto_export_password=0
oemhp_console_capture_boot_buffer_enable=no
oemhp_console_capture_fault_buffer_enable=no
oemhp_shared_console_enable=no
oemhp_shared_console_port=0
oemhp_key_up_key_down_enable=yes
Verbs
cd version exit show set oemhp_loadSSHkey
And as you can plainly see,
oemhp_rawvspport appears therein.
Mentioned Elsewhere
Okay, I was reading scrollback from a chatroom at work and saw this phenomenally cool video (that kind of makes me wish I was still 20 y.o.) Probably best viewed with volume off, there's just the camera operator's commentary and a few honks from passers-by.
Props to Vinsh for sharing.
Props to Vinsh for sharing.
Sunday, June 20, 2010
Uncle's Day -aka- Cub Lake Trail
My neice Jessica invited our family along with part of hers for a pre-Father's Day hike in RMNP. We hiked along the Cub Lake Trail which starts in the meadow and works its way up to Cub Lake. I'm now calling the day before Father's Day Uncle's Day in commemoration (though there probably already is an Uncle's Day according to Hallmark.)
Saturday, May 29, 2010
Summertime
Today was glorious, warm, sunny, and summery. It was so nice out when I got up, I went out to "flush" the backyard of canine detritus. That was quick as it had been done recently. This was prep for mowing. However, it looked like string line trimming needed to happen, so I grabbed my trusty B&D whacker and went to work... After cutting for a couple minutes, it dawned on me that 6am* might be a bit early for the fam and the neighbors... :^) So I set down the whacker and had some breakfast. But it does illustrate how glorious today was.
As I was eating breakfast, I noticed birds retrieving dog hair from the back deck welcome mat. I grabbed some video equipment to record this (as last summer there was quite a pecking order established between a few birds competing for materials that was hilarious.) Unfortunately, by the time the gear was gathered and aimed, the birds had given up.... Maybe tomorrow.
I did ultimately get five hours of yard work completed before lunch. And followed that up with a high school graduation (air conditioned!) And then a bit of tool shopping to replace the worn out string trimmer. I picked up another B&D trimmer. I went for battery operated this time so that we don't have to string power cords all over the yard. (I don't think gas-powered are all that good for the air.)
And now, blogging from the coffee shop during a thunderstorm. Northern Colorado, late May, delightful.....
*I regularly wake up before 5:30 a.m. to feed the spoiled rotten Shih Tzu.
Friday, May 28, 2010
Presidential Memorial Day Observance
I found this nugget:
[President] Obama is not retreating on Memorial Day. Instead of visiting Arlington cemetery, Obama and the first lady will participate in a Memorial Day ceremony at Abraham Lincoln National Cemetery in Elwood, Ill., about 50 miles south of Chicago. Moreover, not every president has spent Memorial Day at Arlington. In 1983, President Reagan was at a summit meeting, and the deputy secretary of defense -- not even the veep! -- placed the wreath. Nine years later, President George H.W. Bush passed off the wreath to Vice President Dan Quayle. And in 2007, Vice President Dick Cheney took on the wreath mission, while President George W. Bush was in Texas.
References:
http://www.cem.va.gov/cems/listcem.asp list of National Cemeteries (why not visit one near you?)
http://www.cem.va.gov/ includes the info on President Obama's visit to Lincoln National Cemetery
Fort Logan National Cemetery
4400 W. Kenyon Avenue
Denver, CO 80236
4400 W. Kenyon Avenue
Denver, CO 80236
Monday, May 24, 2010
Blog Post-A-Day, NaNoWriMo Redux
As anyone (anyone, please, throw me a bone, anyone?) who reads this blog knows, I epically failed at the "blog-a-day" for 30 consecutive days plan last November. However, the long days (sunshine from 5am to 9:30pm) are motivating me to blog again. No promises (or even plans at this point) on frequency, but hopefully MORE than once every half-year.
Middle of Nowhere Update
I went back to Albin over the weekend. Prior to that, I sent my son up there with a Cradlepoint router and a Verizon Wireless USB EVDO cell phone modem. This particular Cradlepoint has an external antenna. Once again it worked fine. And by worked fine, I mean if you were in the garage with it, you got a great WiFi signal from the Cradlepoint (and its MIMO rigging.) However, the garage is detached and 40+ yards away from the house. Within the house, the signal only penetrated 1/2 a room--so you had to be almost staring out the garage-facing window to use the WiFi-Cell router.
I had brought a Netgear wireless router and about 50' of Cat5E. However, the reason the Netgear was scrapped became obvious. Although the WiFi on it was working fine, the WAN port apparently was not. So, I got a nice signal from the Netgear but a signal to nowhere.
And on that note, I'm full circle--back to the middle of nowhere. I don't plan to return to the hinterlands for a while, so I've terminated the Verizon Wireless account. (As always, Verizon Customer service was quick, knowledgeable, and efficient--no joke.) There was at least one other bit of good news. There were many other folks at the family reunion, many sporting AT&T phones, mostly iPhones, and they were able to get a cell signal much of the time at the north end of the house.
Saturday, April 24, 2010
Toy or Tool
I've been looking at getting a new toy/tool and am leaning towards this one:
This machine comes from the long line of eee pcs from Asus. This one is a Tablet computer--so it's not just a "pad", it's also a computer. It does have a few shortcomings, primarily that it is limited to 2G of RAM. It's also a bit tricky to convert it from 160GB HD to an SSD (rumors of 16 screws to do so.)
However, it does run Ubuntu Lucid Lynx and that (with a few tweaks/fixes) enables about everything except a fully functional multi-touch and pressure sensitivity. I'll likely keep this multiboot. If you are one of 'doze kind of people, bear in mind that the Starter edition is pretty much a non-starter on this box and you'll need to pay the Ballmer for something more (or re-read that first line: IT RUNS LINUX.)
There is a promotional video here and a "hands on" video here (but a bit long.) I think if I purchase this, I'll do a "hands on Lucid" video for teh Intartube.
Thursday, November 19, 2009
Nanu Nanoo Nanowrimo
NaNoWriMo (National Nobody Writes Month?) is on and although I'm not entered into that fine group of folks and have no intent to crank out a 50000 word novella this month, I thought I'd use their inspiration as my own (albeit 19 days late) and try and crank out a blog-a-day for 30 days.
This idea came to me yesterday so I'm counting my start date as 2009-11-19. (And unsuprisingly, I already have another thought to blog so want to get "mental" credit for two consecutive days.)
Oh and for those of you dereferencing the title, here's the obligatory Mork &Mindy links:
... and, jftr, it's National Novel Writing Month--not really Nobody Writes Month.
This idea came to me yesterday so I'm counting my start date as 2009-11-19. (And unsuprisingly, I already have another thought to blog so want to get "mental" credit for two consecutive days.)
Oh and for those of you dereferencing the title, here's the obligatory Mork &Mindy links:
... and, jftr, it's National Novel Writing Month--not really Nobody Writes Month.
Saturday, October 10, 2009
Laptop Display Attracts Flies
Okay, I've not heard of anyone else complaining of this--but my laptop screen REALLY attracts flies. I've never had a machine do that before. (This is probably my 15-20th different laptop.)
This particular unit is an HP Mobile Workstation, the HP EliteBook 8530w. It's a very nice machine--it just has this one peculiarity.
I'm blogging this primarily for folks to weigh in if they have seen something similar. Please email me or post against this blog entry if you are having a similar problem (with any notebook or laptop or netbook.) Thanks.
laptop.flies@dowdberry.net
Now, where did I leave that swatter.
This particular unit is an HP Mobile Workstation, the HP EliteBook 8530w. It's a very nice machine--it just has this one peculiarity.
I'm blogging this primarily for folks to weigh in if they have seen something similar. Please email me or post against this blog entry if you are having a similar problem (with any notebook or laptop or netbook.) Thanks.
laptop.flies@dowdberry.net
Now, where did I leave that swatter.
Sunday, June 7, 2009
The Middle of Nowhere
I took the MiFi to PhilBurn Pharms, northwest of Albin, WY. Yes, this is one of those middle of nowhere places.
I set up the MiFi in the detached garage and got a very nice EV-DO signal--1Mb down, 400 Kb up. More than sufficient for this type of remote access. However, I noticed the signal / connection varied a lot depending on unknown factors (though potentially my location with respect to the MiFi.)
After the successful garage test, I tried to connect to the MiFi's wifi router from the house. There are 50 yards are so from the house to the garage. No joy. My laptop couldn't make a solid connection to the Verizon SSD over that distance. I then repositioned the MiFi within the garage trying to get a connection to the house. No location provided a connection.
The next step was to try the MiFi itself in the house. The MiFi never saw an EVDO signal. I could generally get a low grade 1xRTT signal (19-90k at times), but that is no better than dial up (which is already available in the house.)
The garage is situated south of the house on slightly higher ground. Anecdotally, some folks were able to get cell phone coverage on the south end of the house or on the porch steps at the south end of the house. So I next positioned the MiFi on the Southeast corner of the roof of the house. Bingo. This provided an EV-DO connection (albeit somewhat slower than the garage's connection.) It also was a bit flakier than the garage connection. I might get an EV-DO signal long enough to run a dslreports.com test but then have it decay to 1xRTT immediately thereafter. (The signal type is reported by the MiFi web gui.)
I then proceeded to try the other three corners of the house and the ridgeline on the north and south sides of the house--no joy. Only the southeast corner of the roof would pickup a signal. Also, it seemed vary dependent on how the MiFi was oriented. No signal at all at times and a flakey signal at best. At this point, I tried to regain a strong signal in the garage. No luck. It appears to be very, very transient and spotty. Here is the Verizon wireless coverage map. Select Broadband and V-CAST and see what coverage is near Albin, WY. Lot's of pockets where there is no connection and nothing much north of Albin more than a mile or so.
It's also difficult to assess where there cell towers might be located as there is no clearly defined direction from the map.
I set up the MiFi in the detached garage and got a very nice EV-DO signal--1Mb down, 400 Kb up. More than sufficient for this type of remote access. However, I noticed the signal / connection varied a lot depending on unknown factors (though potentially my location with respect to the MiFi.)
After the successful garage test, I tried to connect to the MiFi's wifi router from the house. There are 50 yards are so from the house to the garage. No joy. My laptop couldn't make a solid connection to the Verizon SSD over that distance. I then repositioned the MiFi within the garage trying to get a connection to the house. No location provided a connection.
The next step was to try the MiFi itself in the house. The MiFi never saw an EVDO signal. I could generally get a low grade 1xRTT signal (19-90k at times), but that is no better than dial up (which is already available in the house.)
The garage is situated south of the house on slightly higher ground. Anecdotally, some folks were able to get cell phone coverage on the south end of the house or on the porch steps at the south end of the house. So I next positioned the MiFi on the Southeast corner of the roof of the house. Bingo. This provided an EV-DO connection (albeit somewhat slower than the garage's connection.) It also was a bit flakier than the garage connection. I might get an EV-DO signal long enough to run a dslreports.com test but then have it decay to 1xRTT immediately thereafter. (The signal type is reported by the MiFi web gui.)
I then proceeded to try the other three corners of the house and the ridgeline on the north and south sides of the house--no joy. Only the southeast corner of the roof would pickup a signal. Also, it seemed vary dependent on how the MiFi was oriented. No signal at all at times and a flakey signal at best. At this point, I tried to regain a strong signal in the garage. No luck. It appears to be very, very transient and spotty. Here is the Verizon wireless coverage map. Select Broadband and V-CAST and see what coverage is near Albin, WY. Lot's of pockets where there is no connection and nothing much north of Albin more than a mile or so.
It's also difficult to assess where there cell towers might be located as there is no clearly defined direction from the map.
Wednesday, June 3, 2009
MiFi -- Wifi via EVDO
Well, nothing but kudos for the folks at Novatel and Verizon Wireless for coming out with the MIFI 3G Hotspot. Works like a champ here at my office and at my home. The real test will be the middle of nowhere. I'll give an update then.
The short story is: works as advertised. It does seem to require Windows or Mac to perform the initial activation via USB but works fine providing WiFi and DHCP afterwards. (It will connect wifi prior to being activated, but you have no uplink.) Also, you can view some statistics/configuration information via the MiFi's web interface with any device after it gets a dhcp lease.
More about this new toy later.
The short story is: works as advertised. It does seem to require Windows or Mac to perform the initial activation via USB but works fine providing WiFi and DHCP afterwards. (It will connect wifi prior to being activated, but you have no uplink.) Also, you can view some statistics/configuration information via the MiFi's web interface with any device after it gets a dhcp lease.
More about this new toy later.
Saturday, April 25, 2009
Thursday, April 2, 2009
HP delivers!
I don't often (ever?) blog about HP, but just today they did something blog-worthy. My son has a 2510p laptop. It started making a really weird noise a week or so ago. I found out about it a week ago. It was clearly a hardware problem related to the fan. (It sounded like a cross between a dying cow mooing and a sheep bleating.)
We called HP support. We bought the laptop with a 3 year extended warranty. Their voice menu sent us to hold but after about 6 minutes a human answered. I described the problem and offered to boot up the laptop so she could hear it. Upon hearing the fan noise, she immediately said "Yep, that's a hardware problem. I'm overnighting you a shipping container. We'll have it back to you in a week."
HP had it back in less than a week. Nice. That this came on the heals of a fiasco with my neice's Acer Aspire laptop (which is essentially a brick now) made it even sweeter. Thanks HP.
We called HP support. We bought the laptop with a 3 year extended warranty. Their voice menu sent us to hold but after about 6 minutes a human answered. I described the problem and offered to boot up the laptop so she could hear it. Upon hearing the fan noise, she immediately said "Yep, that's a hardware problem. I'm overnighting you a shipping container. We'll have it back to you in a week."
HP had it back in less than a week. Nice. That this came on the heals of a fiasco with my neice's Acer Aspire laptop (which is essentially a brick now) made it even sweeter. Thanks HP.
Sunday, March 8, 2009
Mouse Traps Man
We live on the outskirts of town, not far from the mountains in Colorado. We've seen deer, fox, elk, etc in the neighborhood and in our own backyard. Once, I even saw a bear cub. Of course, we're somewhat urban as well, so we also have our share of squirrels. Moreover, there are lots and lots of bunnies in our neighborhood and as a result there are also reports occasionally of mountain lions.
However, I've never heard of any of these critters ever attacking people. Perhaps they might attack the occasional dog or cat. And, I certainly wouldn't have my toddler playing outside after dark upon reports of a cougar sighting.
Now however, there has been one report of dangerous animals: mice. Mice, a general nuisance and sometimes a public health hazard, are not known to take down humans. Sure, I've had my finger nibbled on in the middle of the night--a most disturbing phenomenon. But hardly life threatening. Today however, I went to check the traps distributed throughout our house as we've been seeing/hearing mice again for a few days. (They are driven indoors during the winter.) At last, we've killed one with the classic claptrap, spring-loaded mousetrap. I finish my cup of coffee and prepare to haul the critter to the trash. I grab an empty plastic grocery sack (classic re-use) and pick up the mouse, trap and all and head for the dumpster in the garage...
and it starts moving...
I nearly have a heart attack. Anyone who knows me, knows I'm prone to being easily startled. Seriously, I thought I was going to die from the fright. I could see it now, in the Rodent Reporter:
However, I've never heard of any of these critters ever attacking people. Perhaps they might attack the occasional dog or cat. And, I certainly wouldn't have my toddler playing outside after dark upon reports of a cougar sighting.
Now however, there has been one report of dangerous animals: mice. Mice, a general nuisance and sometimes a public health hazard, are not known to take down humans. Sure, I've had my finger nibbled on in the middle of the night--a most disturbing phenomenon. But hardly life threatening. Today however, I went to check the traps distributed throughout our house as we've been seeing/hearing mice again for a few days. (They are driven indoors during the winter.) At last, we've killed one with the classic claptrap, spring-loaded mousetrap. I finish my cup of coffee and prepare to haul the critter to the trash. I grab an empty plastic grocery sack (classic re-use) and pick up the mouse, trap and all and head for the dumpster in the garage...
and it starts moving...
I nearly have a heart attack. Anyone who knows me, knows I'm prone to being easily startled. Seriously, I thought I was going to die from the fright. I could see it now, in the Rodent Reporter:
Mouse Traps Man
In local news, a mouse named Lazarus gave his all for the cause today. He, a longtime resident in Loveland, CO, trapped and killed a man today. He feigned his own death by deliberately catching himself in a mousetrap. However, he did so in such a way that he was not mortally wounded. Then, he waited for the unsuspecting homeowner to return home. He lay very, very still, in classic dead mouse fashion--akin to an opossum. As the homeowner proceeded to dispose of this "dead" mouse, Lazarus begin wriggling and moving... triggering a fatal heart attack in the startled homeowner.
Sadly, Lazarus did not survive the incident. The homeowner crushed Lazarus as he fell to the floor. And from this, the second "death" of Lazarus, he would not arise.
Lazarus is survived by an unknown number of kin. Funeral arrangements are being made by Waste Management of Northern Colorado. There will be no viewing. In lieu of flowers, please send cheese to your favorite charity in Lazurus' name.
Saturday, November 29, 2008
Kino is keen! dvgrab is <bang head> keen too!
Kino, the digital video (dv) non-linear editor on open source platforms (but notably Linux) is really keen. It will find your camcorder if it's plugged into firewire and start using it for capture.
This pretty much "just works". Life is good.
Perhaps you decide you need to be using dvgrab--after all, you're just recording the video--not really trying to edit or view it (after all the image is already displayed on the back of the camcorder....)
so:
Finally, closely reading the kino strace shows this CLUEFUL snippet:
Hmmm, I saw something about "avc" in the dvgrab man page....
Now... what was I going to do with that video? Oh yeah, dvsource to dvswitch to dvsink
This pretty much "just works". Life is good.
Perhaps you decide you need to be using dvgrab--after all, you're just recording the video--not really trying to edit or view it (after all the image is already displayed on the back of the camcorder....)
so:
Okay, specify the camera....
dowdberry@longplay:~$ dvgrab grabname
Error: no camera exists
(Do that about a dozen different ways. Try it as root. Pass in /dev/raw1394 try to stdin /dev/raw1394... still nothing. Read the manpage for dvgrab. Re-read the manpage for dvgrab. Re-re-read the manpage for dvgrab. Google for about an hour. Look at the strace of kino and dvgrab... nothing. Learn about testlibraw. Re-read the dvgrab strace. Re-read the kino strace.)
dowdberry@longplay:~$ dvgrab -card 0 grabname
Error: no camera exists
Finally, closely reading the kino strace shows this CLUEFUL snippet:
<Cluebulb illuminates!>
write(2, ">> Starting Capture", 19) = 19
write(2, "\n", 1) = 1
write(2, ">> AV/C ", 8) = 8
write(2, "Enabled", 7) = 7
write(2, "\n", 1) = 1
write(2, ">>> Using iec61883 capture", 26) = 26
write(2, "\n", 1) = 1
open("/dev/raw1394", O_RDWR) = 6
write(6, "\1\0\0\0\0\0\0\0\4\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0"..., 52) = 52
Hmmm, I saw something about "avc" in the dvgrab man page....
Woot!
dowdberry@longplay:~$ dvgrab -noavc -card 0 junk
Warning: Cannot set RR-scheduler
Warning: Cannot disable swapping
Capture Started
^C"junk002.dv": 8.81 MiB 77 frames timecode -1076813608:-1076813816:-1209659343.195702400 date 2008.11.29 12:15:43
Capture Stopped
medberry@longplay:~$ file junk002.dv
junk002.dv: DIF (DV) movie file (NTSC)
Now... what was I going to do with that video? Oh yeah, dvsource to dvswitch to dvsink
Sunday, October 26, 2008
Trick or Treat Early
I live in a contested state--Colorado. This year, for the first time ever, I begin to understand what New Hampshire or Iowa must be like during the primaries. We've had pollers call. We've had push-polls call. We've had city party offices call. We've had county offices call. We've had state party offices call. And of course, we've had national parties call. None of this is really that out of the ordinary, just an increase in call volume over years past.
However, this year has seen something new. Door-to-door canvassing by the presidential, senatorial, and congressional candidate parties. No--Barack, McCain, Palin, and Biden haven't made the rounds themselves, merely their faithful. So, this isn't really the same as New Hampshire or Iowa. The presidential tickets have all been in the neighborhood though (and Barack is in town today.) However, we've had our doorbell rung sooooo many times this year we had to put up a notice on the front porch to cease and desist. It was just like Halloween--almost as soon as I had re-focused after one doorbell ring, another would occur.
Perhaps we should just have made two buckets of campaign pins and held them out for the trick-or-treaters to take one of their choice. They do all come in costume of course (well, with lapel pins, hats, etc.)
Kids, don't dress up as any politician this halloween and expect to get the prized chocolate candy bar--we're tired of that already. Do something far less scary--come as a chainsaw toting villain, blood-dripping vampire, or blood-curdling, screaming banshee. I can't take another politician.
However, this year has seen something new. Door-to-door canvassing by the presidential, senatorial, and congressional candidate parties. No--Barack, McCain, Palin, and Biden haven't made the rounds themselves, merely their faithful. So, this isn't really the same as New Hampshire or Iowa. The presidential tickets have all been in the neighborhood though (and Barack is in town today.) However, we've had our doorbell rung sooooo many times this year we had to put up a notice on the front porch to cease and desist. It was just like Halloween--almost as soon as I had re-focused after one doorbell ring, another would occur.
Perhaps we should just have made two buckets of campaign pins and held them out for the trick-or-treaters to take one of their choice. They do all come in costume of course (well, with lapel pins, hats, etc.)
Kids, don't dress up as any politician this halloween and expect to get the prized chocolate candy bar--we're tired of that already. Do something far less scary--come as a chainsaw toting villain, blood-dripping vampire, or blood-curdling, screaming banshee. I can't take another politician.
Friday, July 11, 2008
Infalmible
in·fal·mi·ble (ĭn-făl'mə-bəl)
adj.
adj.
- appearing to be infallible but only in appearance as there are corner cases where failure is inevitable
- a mumbling of the word infallible, see: infallible
- a misread of the word infomumble a portmanteau of information and mumble, where mumble is frequently used as regular expression meaning "match whatever makes sense beyond this point."
Friday, June 13, 2008
Twofer
A second post today--woot, it's a twofer.
I was asked to play a game this morning, a very simple word ladder. Go from FOUR to FIVE in 7 steps (6 in-between words). It's a pretty straight forward puzzle.
And that got me to thinking--I love solving puzzles like that and lots of other related mind games. And everyone at work knows it. They can get me distracted sooooo easily. Good thing I'm not a teacher or I'd never make it through a lesson on time.
Recently, I was asked (not really as a puzzle but....) "How would you test this software? It's a command line oriented program call randy that is supposed to take as input the size of random data to produce on stdout." I thought about it for a few minutes and at last a light bulb went off: Compress the results. If they are incompressible, it's evidence leaning toward the randomness. (Now that's not exactly true--even all zeroes could be random.)
The person who asked the question hollered and nearly fell out of her chair. You know why? That's not what she was worried about. She didn't think anyone could determine in white box format whether or not something was generating random data--she never even considered the possibility. (She merely wanted someone to send gibberish input to see what happened and to ensure when you asked for x bits, you got x bits.) But I saw it not as an interview question or quality assurance question--I saw it as a brain teaser. And brain teasers have brain teaser answers.... and if you want to measure for random, the brain teaser answer is to measure the results for compressibility. (At least in my mind.)
This is perhaps the geekiest posting I've ever blogged. I suspect I've been inspired by my cohorts and reading literature. Just for Fun by Linus Torvalds and David Diamond is the book I've just finished. I'm trying to teach my son how to do fractions (including complete factorization) and I work with people who send me puzzles--at least one a week and oft times more. Thanks HP.
I was asked to play a game this morning, a very simple word ladder. Go from FOUR to FIVE in 7 steps (6 in-between words). It's a pretty straight forward puzzle.
And that got me to thinking--I love solving puzzles like that and lots of other related mind games. And everyone at work knows it. They can get me distracted sooooo easily. Good thing I'm not a teacher or I'd never make it through a lesson on time.
Recently, I was asked (not really as a puzzle but....) "How would you test this software? It's a command line oriented program call randy that is supposed to take as input the size of random data to produce on stdout." I thought about it for a few minutes and at last a light bulb went off: Compress the results. If they are incompressible, it's evidence leaning toward the randomness. (Now that's not exactly true--even all zeroes could be random.)
The person who asked the question hollered and nearly fell out of her chair. You know why? That's not what she was worried about. She didn't think anyone could determine in white box format whether or not something was generating random data--she never even considered the possibility. (She merely wanted someone to send gibberish input to see what happened and to ensure when you asked for x bits, you got x bits.) But I saw it not as an interview question or quality assurance question--I saw it as a brain teaser. And brain teasers have brain teaser answers.... and if you want to measure for random, the brain teaser answer is to measure the results for compressibility. (At least in my mind.)
This is perhaps the geekiest posting I've ever blogged. I suspect I've been inspired by my cohorts and reading literature. Just for Fun by Linus Torvalds and David Diamond is the book I've just finished. I'm trying to teach my son how to do fractions (including complete factorization) and I work with people who send me puzzles--at least one a week and oft times more. Thanks HP.
Get Firefox 3

Anyone who has ever asked me to work on their computer in whatever way has heard me eschew Internet Explorer and recommend Firefox. Now, Firefox has been updated to version 3. Well, that will occur on Tuesday June 17.
On that day, Mozilla Foundation (the makers of Firefox) would like to set a Guinness World Record for the most downloads in one day. This could be a really self-defeating goal as it may saturate the Internet. I've agreed to participate though and will be grabbing 3 or 4 different varieties of Firefox that day: Windows XP version, Linux 32 bit, and Linux 64 bit for certain. Additionally, I'll have a raft of Ubuntu machines that will be doing "automatic" updates to the final release version of Firefox 3 that day. (I've been running the beta and release candidates of Firefox 3 for some time.)
FF3 has a variety of enhancements and improvements over FF2. And it is vastly superior to Internet Explorer. If you are running Opera 9.5, I've got no comment--you know what you're doing.

And holler if you ever want to try Ubuntu -- or grab it here:
Sunday, May 25, 2008
Dorothy, Dorothy
I've been dwelling on the recent tornadoes that hit our area last Thursday and the tornadoes of my youth.
I grew up in southwest Kansas. As you can see from Tornado Alley, I was smack dab in the lane. Southwest Kansas is a flat, somewhat barren place. You can see forever as a result. One summer, I forget which, a girl came to town for the summer to stay with relatives. I don't recall her name or the particular summer at all. I do recall having a crush on her. As we were walking to the ballpark that summer, I commented that there would be a storm and the rain would hit in about 45 minutes. She scoffed. "How can you possibly know it's going to rain in 45 minutes?" she asked. I pointed to the southwest sky and said, "You see that storm front? That's 45 minutes away from here. The prevailing winds are always from that direction and when you can see it in that direction, you know you've got 45 minutes." You can use that time to a) walk home from the ball field, b) bring in your laundry from the line, c) dry off and walk home from the pool, or d) get to the edge of town for a better view of the storm. Actually, none of those things really take 45 minutes as the town was about the size of Berthoud, CO. And, I let my mom take the clothes off the line. Typically, these storms--especially those based off of supercells--bring a storm of dirt just ahead of the rain. This makes for very mud splattered clothes.
But back to those tornadoes. I saw tornadoes, and supercells as a kid--mostly in the distance or sometimes only second hand--my vision wasn't very good in those days. My folks would talk of the storms and their destructive power. After one such tornado (in the late spring, early summer, but it seems school was still in session), we drove over to see a trailer house that had not moved an inch--well, the base of it hadn't. This particular trailer house had been sealed up--likely no one was at home. Consequently, it over pressured and exploded. The air speed of a tornado causes a significant vacuum to form. The contents of that trailer were strewn around locally and the tires that were in place on the roof of it (and the roof itself) fell neatly onto the floor of ths structure. The walls--exterior and interior--were unidentifiable from the rest of the debris.
During our recent storm, the Thompson school district (along with the Poudre and Weld county districts) held "tornado lockdowns". I'm not entirely sure why they call this a lockdown--though it probably refers to not switching classrooms or leaving the building. The children were kept inside and moved to interior rooms (without windows) in the school. When I was very young, K-2, we frequently had tornado drills and when we actually had tornado warnings (usually after a sighting) we'd resume the tornado drill position--lined up in the hall facing the west wall and crouching/bowing to some imaginary goddess of destruction. Our hands over our head in the "kiss your crotch goodbye" position. I'm not sure if the school districts here in Colorado still use that position or not.
Another thing I remember from my youth was in a particularly bad storm, moving from our house (which had no storm shelter nor basement) to the church. We didn't go to the closest church, but rather a couple blocks to OUR church. However, our neighbor who to my knowledge never attended church went with us. As a child, I struggled to understand why we could invite a "stranger" to our church for protection from a storm but that we weren't fit to go to the closest church ourselves to seek shelter. I suspect it was a parental pride issue though I've never discusssed this with my folks.
Today we do have a basement--however, it's not clear how we'd ever know to descend therein. I've heard there was some reverse 911 last week--but not with enough warning prior to the descent of the storm to be effective. Back-in-the-day, we watched a lot of TV. The thing was almost always on, sucking our will to live. So, when the stormcasters noted that there was a tornado watch in effect or more pressingly, a tornado warning, we'd almost always know about it. The Emergency Broadcast System would kick in and make the pronouncement and the news would typically scroll along the bottom of the screen the areas effected and any sightings. Today, we don't watch TV. Moreover, we seldom listen to the radio. The radio stations at any rate are rarely locally operated so its not entirely clear what effect they would have even if we had them on. I have heard an EBS on NPR/KUNC, so perhaps that would be of some value. Our time is spent watching canned (DVD, VHS, Youtube) video and surfing the net. Perhaps I should add that at least one child spends every waking moment playing MMORPGs. None of these are conducive to early warning. My in-laws, bless their souls, have a NOAA radio. And, if I were truly concerned, I'd be sporting a NOAA in my kitchen as well. Surely, it would have been non-stop emergency radio excitement on that device last week.
Last week, I was able to contact my eldest son via cell phone and tell him to "duck and cover." He thought I'd blown a head gasket but apparently enough other folks got similar phone calls the kids (who had only had a half-day of school and were goofing off) finally took it seriously and went to the basement.
I seem to be done rambling--I've made no links to tornadoes, tornado alley, home towns, EBS, nor stations. I mostly just wanted to stream of consciousness this thought out. I guess I'll tag this melancholy nostalgia. A quick check shows that wikipedia is familiar with tornadoes and their ilk--for more info, head there.
I grew up in southwest Kansas. As you can see from Tornado Alley, I was smack dab in the lane. Southwest Kansas is a flat, somewhat barren place. You can see forever as a result. One summer, I forget which, a girl came to town for the summer to stay with relatives. I don't recall her name or the particular summer at all. I do recall having a crush on her. As we were walking to the ballpark that summer, I commented that there would be a storm and the rain would hit in about 45 minutes. She scoffed. "How can you possibly know it's going to rain in 45 minutes?" she asked. I pointed to the southwest sky and said, "You see that storm front? That's 45 minutes away from here. The prevailing winds are always from that direction and when you can see it in that direction, you know you've got 45 minutes." You can use that time to a) walk home from the ball field, b) bring in your laundry from the line, c) dry off and walk home from the pool, or d) get to the edge of town for a better view of the storm. Actually, none of those things really take 45 minutes as the town was about the size of Berthoud, CO. And, I let my mom take the clothes off the line. Typically, these storms--especially those based off of supercells--bring a storm of dirt just ahead of the rain. This makes for very mud splattered clothes.
But back to those tornadoes. I saw tornadoes, and supercells as a kid--mostly in the distance or sometimes only second hand--my vision wasn't very good in those days. My folks would talk of the storms and their destructive power. After one such tornado (in the late spring, early summer, but it seems school was still in session), we drove over to see a trailer house that had not moved an inch--well, the base of it hadn't. This particular trailer house had been sealed up--likely no one was at home. Consequently, it over pressured and exploded. The air speed of a tornado causes a significant vacuum to form. The contents of that trailer were strewn around locally and the tires that were in place on the roof of it (and the roof itself) fell neatly onto the floor of ths structure. The walls--exterior and interior--were unidentifiable from the rest of the debris.
During our recent storm, the Thompson school district (along with the Poudre and Weld county districts) held "tornado lockdowns". I'm not entirely sure why they call this a lockdown--though it probably refers to not switching classrooms or leaving the building. The children were kept inside and moved to interior rooms (without windows) in the school. When I was very young, K-2, we frequently had tornado drills and when we actually had tornado warnings (usually after a sighting) we'd resume the tornado drill position--lined up in the hall facing the west wall and crouching/bowing to some imaginary goddess of destruction. Our hands over our head in the "kiss your crotch goodbye" position. I'm not sure if the school districts here in Colorado still use that position or not.
Another thing I remember from my youth was in a particularly bad storm, moving from our house (which had no storm shelter nor basement) to the church. We didn't go to the closest church, but rather a couple blocks to OUR church. However, our neighbor who to my knowledge never attended church went with us. As a child, I struggled to understand why we could invite a "stranger" to our church for protection from a storm but that we weren't fit to go to the closest church ourselves to seek shelter. I suspect it was a parental pride issue though I've never discusssed this with my folks.
Today we do have a basement--however, it's not clear how we'd ever know to descend therein. I've heard there was some reverse 911 last week--but not with enough warning prior to the descent of the storm to be effective. Back-in-the-day, we watched a lot of TV. The thing was almost always on, sucking our will to live. So, when the stormcasters noted that there was a tornado watch in effect or more pressingly, a tornado warning, we'd almost always know about it. The Emergency Broadcast System would kick in and make the pronouncement and the news would typically scroll along the bottom of the screen the areas effected and any sightings. Today, we don't watch TV. Moreover, we seldom listen to the radio. The radio stations at any rate are rarely locally operated so its not entirely clear what effect they would have even if we had them on. I have heard an EBS on NPR/KUNC, so perhaps that would be of some value. Our time is spent watching canned (DVD, VHS, Youtube) video and surfing the net. Perhaps I should add that at least one child spends every waking moment playing MMORPGs. None of these are conducive to early warning. My in-laws, bless their souls, have a NOAA radio. And, if I were truly concerned, I'd be sporting a NOAA in my kitchen as well. Surely, it would have been non-stop emergency radio excitement on that device last week.
Last week, I was able to contact my eldest son via cell phone and tell him to "duck and cover." He thought I'd blown a head gasket but apparently enough other folks got similar phone calls the kids (who had only had a half-day of school and were goofing off) finally took it seriously and went to the basement.
I seem to be done rambling--I've made no links to tornadoes, tornado alley, home towns, EBS, nor stations. I mostly just wanted to stream of consciousness this thought out. I guess I'll tag this melancholy nostalgia. A quick check shows that wikipedia is familiar with tornadoes and their ilk--for more info, head there.
Labels:
melancholy,
memory lane,
nostalgia,
tornado
Tuesday, March 11, 2008
Summertime
I wear a code.google.com T-shirt on a regular basis--I have two and rotate through them. I was asked in the lunch line at my cafeteria if Google is open-sourcing their entire codebase. Erm, no, or at any rate, I seriously doubt it. They do contribute a great deal to the open source community though.
However, I did explain that google is indexing all open source code bases and making them searchable at www.google.com/codesearch.
code.google.com on the other hand is a portal about using Google's APIs and related activities. However, one of the coolest things (on the planet) is Google's Summer of Code. The Summer of Code is an opportunity for students to write code for open source projects. Google will fund more than 900 students this summer in the 2008 SoC. You should definitely check it out if you are a student looking for something useful to do with your coding skills this summer--the open source community always needs new blood.
One of the hottest API's of course is Android. Check it out.
However, I did explain that google is indexing all open source code bases and making them searchable at www.google.com/codesearch.
code.google.com on the other hand is a portal about using Google's APIs and related activities. However, one of the coolest things (on the planet) is Google's Summer of Code. The Summer of Code is an opportunity for students to write code for open source projects. Google will fund more than 900 students this summer in the 2008 SoC. You should definitely check it out if you are a student looking for something useful to do with your coding skills this summer--the open source community always needs new blood.
One of the hottest API's of course is Android. Check it out.
Monday, February 4, 2008
Being an Article
I experienced a little notoriety today as I was the subject in an article on ewaste in the local paper. Anyone that's been to my basement knows I'm a bit of a packrat. But, I'll let you read the article and be assured that I will only dispose of my ewaste via a recycler--not the county dump--though this by no means assures good things will happen as this cautionary tale relays.
But I did want to talk to you a bit about being the subject of a news article. I volunteered for this, so there was no big surprise in the article. The newspaper solicited people willing to talk about their collection of obsolete electronics and I was happy to take part. Shortly after volunteering on line, I was contacted by Hallie Woods via email and she arranged to call and interview me. I assumed she'd be talking to a number of people and take a variety of pics for the article--bad assumption. She sent Rich Abrahamson over to shoot my electronics last Saturday. He showed up and re-interviewed me, filling in some background about ewaste, why I had so much equipment, etc and then we descended to our basement (which I jokingly call "The Pit of Despair".) I didn't stage anything--there are "spare parts", obsolete computers, keyboards, CD drives, etc scattered throughout my basement, but Rich settled on the "monitor table" as being the best photo-op. This is a table full of old CRTs that either aren't working or are so archaic that they have no value--and in fact are pretty expensive to operate. He then had the idea of working me into the picture....
This morning, I check the newspaper, and voila..... I'm an article. It's kind of a surreal feeling--and I'm quite happy that I didn't get into the newspaper some other way.
But I did want to talk to you a bit about being the subject of a news article. I volunteered for this, so there was no big surprise in the article. The newspaper solicited people willing to talk about their collection of obsolete electronics and I was happy to take part. Shortly after volunteering on line, I was contacted by Hallie Woods via email and she arranged to call and interview me. I assumed she'd be talking to a number of people and take a variety of pics for the article--bad assumption. She sent Rich Abrahamson over to shoot my electronics last Saturday. He showed up and re-interviewed me, filling in some background about ewaste, why I had so much equipment, etc and then we descended to our basement (which I jokingly call "The Pit of Despair".) I didn't stage anything--there are "spare parts", obsolete computers, keyboards, CD drives, etc scattered throughout my basement, but Rich settled on the "monitor table" as being the best photo-op. This is a table full of old CRTs that either aren't working or are so archaic that they have no value--and in fact are pretty expensive to operate. He then had the idea of working me into the picture....
This morning, I check the newspaper, and voila..... I'm an article. It's kind of a surreal feeling--and I'm quite happy that I didn't get into the newspaper some other way.
Subscribe to:
Posts (Atom)
