What's That Noise?! [Ian Kallen's Weblog]

Main | Next day (Mar 25, 2004) »

20040324 Wednesday March 24, 2004

I want free WiFi without 128 bit WEP (or maybe "I need to get a new WiFi card") This is my last rant of the day. I think. Sometimes when I'm downtown, I sure would like to be able to sit down, plug my laptop in (for power, I have a sucky battery) and just get a little bit done.

I went to Golden Gate Perk where they have free WiFi for paying customers. Great! I ordered a chicken pie but sat down to realize that my wireless card (I have an old Orinoco "Silver" card which only supports 64 bit WEP) wouldn't work, they only support 128 bit WEP. Well, the chicken pie was good.

If you go to Google's search results for WiFi downtown, there's no way to refine the search to show

  1. which ones are free
  2. which ones support 64 bit WEP (or are open, I'm using SSH and SSL for important stuff anyway...)
In the meantime, I guess I'll keep an eye on the Cheese Bikini page for this stuff. And if anybody has an Orinoco "Gold" card (are these credit cards or NIC's?) that they feel like sending me, donations are gladly accepted! ( Mar 24 2004, 11:17:25 PM PST ) Permalink


I, Robot I took a look at all of the robots that hit my site. It's really astounding how many of these beasties are running around, crawling up and down links old and new.

Some of these robots are very persistent (or just plain dumb). They try to access pages that haven't been around for a long time getting 404's or redirects elsewhere. I'm presuming that after some number N occurences of non-success responses, that these robots will get a clue and just crawl the links that are there... for some reason, new links that've shown up aren't crawled. Here's a list of crawler URL's:

And while I'm ranting about noise in the logs, what's with all of the Nimda type virus attacks? I would've thougt that that is stuff is done and played out already. But no, everyday the onslaught of IIS vulnerability probe requests come hammering my Apache web server instance. What a buncha BS.

Between the robots and viruses, I probably have as many software entities hitting my site as I do human readers. ( Mar 24 2004, 11:01:06 PM PST ) Permalink


Refactoring: making things better in little increments I had a nice conversation with some folks who weren't looking to for help building The Next Great Thing (that was yesterday's nice conversation). They just had a mish mash of code, all Perl, old and new (but mostly old), that needed to be revamped. They didn't say that they needed a refactorer but that's about what it boils down to: their code needs some serious refactoring.

The funny thing was, the code in question sound like the kind of stuff that you'd typically think of as refactoring candidates. A lot of it is apparently old CGI's (run as Plain Old CGI's or Apache::Registry scripts) that atrophied into speghetti of gobbledy gook. So the problem there isn't one of taking software objects and restructuring them for better design, the first refactoring, if you will, is to take a bunch of procedural code and re-compose it as an object system.

Frankly, this could sound really boring. But on the other hand, there can be something very satisfying in something like this. Have you ever set aside an afternoon or a day to clean out the garage? You sort through a bunch of junk, shelve things that were set down on the floor, throw out a bunch of garbage, fire up the shop-vac and vacuum out all of the cob webs and organize the toolchest. In the end, you haven't produced anything tangible with any value. But you've created something that allows for creating value. I would never go into the garage and build a planter box if it's all cluttered and dusty. It's just too grotty.

Code gets the same way. It gets cluttered and dusty. Refactoring is explicitly not about creating tangible value (i.e. you don't add new features in a refactoring), it's about creating an environment within which tangible value can be created. Fowler sez that refactoring is more than just "cleaning up code" - it's a more methodical, tested and controlled fashion of cleaning up. That's all good. Unfortunately, it seemed as though I drew a blank stare from these folks when I talked about testing. I mean, I understand that test harnesses in Perl such as plain old Test, Test::Unit and Test::Harness are hardly standardized or well entrenched in Perl culture but it was kinda disheartening to see only vague recognition of the value of writing tests. When you're done cleaning the garage, there's that satisfying feeling knowing that you've brought a little order to a chaotic corner of the world. I get that same feeling when I'm working on code, breaking it and fixing it and when it's all said and done, running the test harness; see "100% passed" is another way of bringing order to the chaos.

Anyway, so the basic starting points for refactoring were absent: a system of objects and a test harness but if the goal of refactoring is to "make the software easier to understand and modify" (quoting Fowler, again) then perhaps just getting things to that starting point is the first important refactoring to undertake. Somehow, I don't think the connection between the "fire fighting" mode that these folks were perpetually in and absence of tests was immediately clear to them. They know that "things" need to be fixed (which is a good start) but IMO those fixes need to come in little increments of refactoring.

Now, I've never unit tested a garage cleaning effort but today's conversation made me consider how that'd be done. ( Mar 24 2004, 10:43:06 PM PST ) Permalink