Archive for the ‘Work’ Category.
April 27, 2012, 10:20 AM
I was thinking back to an earlier post, about AT&T’s 3G coverage. This time around, I finally had a choice to go with Verizon. It’s LTE, which is a better technology (and AT&T’s LTE is probably similar, but there isn’t LTE in Seattle for AT&T.) Here’s the results for my new Verizon LTE iPad (ignore where it says iPhone. I’m using the same app on both the iPhone and iPad, but it’s not a universal app.)

Verizon LTE
For comparison, I went back and tested my iPhone again, now with a new 4G icon. The last time I did this, just about two years ago, I was about half a mile away from where I’m at now. Two years, and half a mile closer to Seattle, and I get this.
Continue reading ‘Why my iPad 3 has Verizon LTE’ »
August 2, 2011, 11:27 AM
I’m starting a new job where I need to have my SSH keys pushed to hundreds of Red Hat servers. The special sauce is a command called ssh-copy-id. However, using this command requires you answering a (yes/no) question, then shortly thereafter enter your password. Painful. Here’s how push your keys without the pain.
Continue reading ‘Push SSH public keys to multiple host’ »
April 28, 2009, 10:18 PM
While trying to make sure a GPO got applied on a Windows 2003 Server, I tried to run gpresult. I got “Access Denied.”
Continue reading ‘gpresult – Access Denied’ »
February 4, 2009, 10:39 PM
I didn’t find one clear and concise place explaining how to setup private keys on OS-X. This is my attempt to remedy that.
Continue reading ‘SSH Public and Private Key setup on OS-X’ »
April 23, 2008, 10:49 AM
When I need to find an open IP, this is a decent way to do it. I wish there were a way to find IPs that don’t respond, but this works for now. This won’t work if your network bans ICMP traffic, or your host doesn’t respond, but is alive.
If you want to extract the IPs from your output, you can use this SED statement
sed -n 's/^.*[^0-9]\([0-9]*\.[0-9]*\.[0-9]*\.[0-9]*\).*$/\1/p'