Thursday, April 24, 2008

ABC Family HD comes to Comcast in Atlanta

Its nice that all these channels are going HD...but this channel is SO weird! It starts in the mornings with 700 club, then goes into episodes of Full House, Sister Sister, Sabrina the Teenage Witch...then ends the day with Greek or Kyle XY or some movie before going back to the 700 club...wtf! Family indeed...Greek isn't a family show at all. Not that I care, its just a weird ass mix.

The other thing that sucks is that the only truly HD content I've seen so far is 700 club. Everything else looks like crap (because he recorded before HD was around). Crap is a bit harsh, at least it looks like a lot of the older sitcoms they show come in at about a DVD quality instead of shitty 480i. Wikipedia claims that Kyle XY and Greek are HD too, but I wouldn't be caught dead watching those.

Tuesday, April 15, 2008

Using a WTR54Gv5 as a Wireless Bridge to Connect non WiFi devices to the net

I plugged the NMT up to the internet for the first time in a while to get the latest firmware. This is always an annoying process because while all the other internet capable devices in my entertainment center (PS3, Wii) have WiFi built in, the NMT does NOT, it only supports wired Ethernet. This means I have to run a 15 feet cable across my living room any time I want to use the networked functionality. I got to thinking that it would be nice to get my wireless signal to be picked up by some kind of small dongle with an antenna to pick up WiFi, and an Ethernet cable to go to the NMT.

This kind of thing is called a wireless bridge. It is kind of like an access point, except that it blindly forwards traffic both ways (wireless->wired and vice versa), whereas an access point does NAT and DHCP, and expects the WAN to be on a wired link and the LAN to be on the wireless. As far as hardware goes though, an AP has all of the right parts to act as a layer 2 bridge.

Because of the similarity to an access point, my idea of a small dongle was beginning to fall through, but a different idea was forming in my head: try to use an access point in this kind of bridge mode to make my NMT effectively wireless! It should be possible to do in software on an AP. I immediately started playing with two Airport "Snow" routers I had recently bought to see if they supported this mode out of the box, but they didn't (the newer Airport Extreme series CAN do this out of the box).

So I started looking at my other router, the Linksys WRT54G. I had read that this device was highly moddable with non-Linksys firmware available due to the fact that the device used Linux code, and Linksys released the source code to the firmware to satisfy the terms of the GPL. Clever hackers used this source as a starting point to create custom firmwares that can do lots of fancy things that the stock firmware cannot. One of these fancy things is bridge mode. This was the ticket...by reflashing the device to use the open source free DD-WRT firmware, I was able to use the WRT54G in bridge mode. Here's a quick guide on how to do this if you have a WRT54G, version 5 or 6. This is written from a Windows perspective, but the only difference with Linux or Mac is how you do the static IP assignment, and TFTP step. The static IP assignment, you probably know how to do on your OS. On Mac OS X it is System Preferences->Network->Show:Built In Ethernet->Configure Ipv4 using:Manually. And you can skip the steps that are setting the MAC address of the new firmware correctly. On Mac or Linux, first cd to the directory where you downloaded the dd-wrt firmware, then:

tftp -e 192.168.1.1

Then at the tftp prompt, you want to do this:

put dd-wrt-blah-blah-micro.bin

When it report success, you are done! Ctrl+d out of tftp, and the router should reboot and voila, you have a magically better router. Log in, and remember the username is root and the password is admin. To get the wireless bridging you desire, you can use either client mode wireless (in which the router DHCPs and NATs the wireless signal to its wired ports) or client mode bridge (in which the router simply does a layer 2 forwarding). I prefer the bridging, this way all the devices are on the same subnet.

Thursday, April 10, 2008

Using older Airport base stations with Leopard



I wrote a while back that I can't get excited about Leopard on the Mac...and that's still true, I'm still holding out and using Tiger. But I did come across this tidbit for Leopard users with older Apple Airport basestation hardware. It turns out for a while there, there was no way to configure your older Airport (graphite and snow) on Leopard; the new Airport Utility was only compatible with the newer Airport Extreme and Express lines, and with Time Capsule.

Needless to say, people were pissed that their hardware stopped working with the update. The situation was bad enough that some poeople started selling old Airports: I even picked up two older basestations for a good price from a friend of a friend who had given up and bought the newer products (exactly what Apple wanted).

Well, it seems Apple has finally rectified this situation. Last week, they released a tool called the Airport Admin Utility for Graphite and Snow. This is a legacy compatible utility that lets you configure your older basestaions. Prior to this, a workaround was discovered whereby a version of the admin utility for OS 10.3.3 could be extracted from an old installer package, and copied onto a Leopard machine. It looks like Apple probably just repackaged and renamed this older tool to be officially Leopard compatible.

Friday, April 4, 2008

Using Ghostscript to Concatenate Multiple PDF Files into one

I haven't written here for a while, but I decided to post helpful tips I've come across. Have you ever wanted to take a bunch of PDF files and concatenate them all together, but don't have Acrobat Pro, or any other editor capable of doing this? Well have no fear. If you are a Linux/Mac user, the following command will do the trick, assuming you have Ghostscript installed:

gs -dNOPAUSE -sDEVICE=pdfwrite -sOUTPUTFILE=merged.pdf -dBATCH [list of files here]

I guess this will work on Windows too (if GS has a command line interface), but YMMV.