Full Speed

[ January 30, 2004 ]

Music Quiz

This was my result:

music

“Good. You know your music. You should be able to work at Championship Vinyl with Rob, Dick and Barry”

Do You Know Your Music (Sorry MTV Generation I Doubt You Can Handle This One)
[ Via Going Canuck ]

[ January 29, 2004 ]

CSS Filters and Hacks

Dithered.com has an excellent chart of CSS filters. Any designer working on CSS-based designs for multiple browsers will find this useful. Check out the CSS Filters page for a bit more commentary.

[ January 28, 2004 ]

Hutton Inquiry Experiment

Supposedly, the BBC is buying up all of the ads the the Google AdWords keywords “Hutton inquiry” and “Hutton report”. According to The Guardian, “No other news broadcaster or any newspaper has paid Google for this facility.” This is the type of AdWords/AdSense experiment I’ve been waiting for.

Lord Hutton is scheduled to deliver his verdict on the death of Dr. David Kelly today.

Update: The Hutton Inquiry is out (accessible version). [Via MeFi]

[ January 27, 2004 ]

Free Image Storage

Photobucket claims to provide 100MB of free image hosting to anyone. Use it for your photo albums, images for eBay auctions, images for your blog, or whatever. If you have strict bandwidth limits on your hosting account, this will certainly help cut your costs. But this just can’t last very long. [Via MeFi]

Easy TiVo Upgrades

PVRblog just linked to a story about TiVo upgrades for dummies. The summary: It seems that the folks at WeaKnees have got the TiVo market figured out.

Whether you want to upgrade your existing TiVo to as much as 344 hours of capacity or you want to buy a new TiVo that’s already upgraded, they have the solution for you. They have an excellent warranty and are a very customer-oriented company.

And for all of you High Definition freaks out there, be sure to check out their HD TiVo page. The HD hardware isn’t expected until April, but you’ll want to be sure to get on the list.

The only thing missing from these guys is the cache card, but WeaKnees seems to be the most complete TiVo upgrade source out there.

Redirects Are Not An Option

I have just installed David Raynes’ Optional-Redirect Plugin for Movable Type. Comment author links no longer behave in the 2.661 way. They work as they should—that is, they link directly. While I understand the nature of this change that Six Apart made to MT, I don’t agree with it. Redirects are slow and destroy Google juice. There are better ways to fight spam.

[ January 25, 2004 ]

Feedster Interesting Blogs

Wow, I just discovered that my site was selected as Feedster Interesting Blog of the Day for December 17, 2003. And all along I thought that nobody read this thing.

Feed of the Day

Seeing John Battelle just 15 days earlier and Nelson just three months earlier made me feel good.

Thanks to Scott, Betsy, and everybody else at Feedster.

[ January 22, 2004 ]

iTunes Music Store RSS

Apple now has an RSS generator for the iTunes Music Store. You can get a feed for just about anything you want. Latest 10 Hip Hop/Rap Releases. Top 50 Pop & Alternative Songs. The possibilities are limitless.

Update: It seems that several other sites have picked up on this one now, too. This service is sure to be a hit.

[ January 13, 2004 ]

Automatically Closing Old MT Entries

There has been quite a bit of talk about preventing weblog comment spam lately. Jeremy Zawodny and David Sifry have each come up with similar solutions for automatically turning off comments on older posts. While both of these solutions work perfectly well, I wanted something that was a bit more integrated with MT. I wanted MT to handle the updates to the older entries.

So today it dawned on me that Brad Choate’s MTSQL plugin was exactly what I needed to make this happen. Since the plugin allows the execution of arbitrary SQL statements, I can now make a template that will shut down comments and pings on my older posts.

Once you have MTSQL installed, create an index template with contents similar to the following:

<MTSQL query="
update mt_entry
set entry_allow_comments = 2,
entry_allow_pings = 0
where entry_created_on <= date_sub(CURDATE(), interval 7 day)
and entry_blog_id = 2
">
<MTSQLColumn column="1">
</MTSQL>

Substitute any number of days in the “interval 7 day” part. Also, you’ll need to be sure that the entry_blog_id matches that of your blog. Alternatively, if you either have only one blog or want the post on all of your blogs to be closed, you can simply remove the last line of the query.

Be sure to check the box next to “Rebuild this template automatically when rebuilding index templates”. With this option enabled, this query will be executed each time you save an entry.

I prefer this method to the previously mentioned methods because I feel it is more inline with the way MT works. Nothing happens unless it is in response to my actions. The other solutions require a cron job to work automatically. I have no problems with cron—I just prefer this integrated approach.

One problem that remains unsolved by Jeremy’s, David’s, or my solution is that closed entries will still show their comment forms. The presence of the comment form does not allow comments, but it is misleading. A user might type in a long rant only to be disappointed by a mesage stating that comments for the entry are closed once he clicks the Post button.

An entry must be rebuilt before the comment form will be removed from its page. There are a couple of ways to make this happen. One option is to simply rebuild your entire blog from within MT. Another option is to use Timothy Appnel’s mt-rebuild script to rebuild the blog. This script will rebuild individual pages or the entire blog from the command line. If you’re serious about closing down comments, I’d suggest setting up a cron job to run this script. And if anyone knows of a way to avoid the cron job and just execute a rebuild from within an MT template, I’d love to hear about it.

[ January 12, 2004 ]

Share your OPML

Dave Winer has started a new site called Share Your OPML! On the site, Dave is attempting to create a community of feed subscription lists and aggregate the resulting data in various ways. He already has a Top 100 Feeds page up. Also, for each feed listed, you can see who is subscribed. A lot of people have already contributed their feeds. It’s rather interesting to see what some people read on a daily basis. If you use an RSS aggregator that exports OMPL, be sure to sign up and add your list.

[ January 10, 2004 ]

OS X for Hackers

If you’re like me, you are intrigued by Apple’s OS X because of its FreeBSD heritage. It’s got all of the power and stability of that operating system that you run on your servers with the lovely Mac GUI that we all love.

But you want more. You want to know how everything works. You want to know what happens when the system starts up. You want to know what all of Apple’s custom command line tools do. In short, you want to know the OS inside and out, just like you know your FreeBSD systems.

And now you can.

Amit Singh has put together an excellent resource called What is Mac OS X? And from what I’ve read so far, this seems to be a very thorough guide. If you want to have a true understanding of this great new operating system, be sure to check out his site. [via Simon]

[ January 7, 2004 ]

New Design

As I’m sure you have already noticed, things look a bit different around here today. I finally got tired of staring at my half complete redesign and decided to just throw it out there. There are some rough edges still, as it’s certainly a work in progress. But the front page and the articles are organized well enough that you can still view all of the content without any problems.

One thing that has been puzzling me for a while now is this. I want my container box to automatically expand when the right column is longer than the left. As you can see at the link above, this is not happening. Does anybody know how I can fix this?

Other than that one problem and a few browser hacks that need to be added in, the work is almost done. If you notice any bugs, please let me know by replying to this post.

Update: It seems that IE/Win (v6, maybe others) doesn’t want to display random parts of pages. Take this page for example. IE hides the comment form and the post metadata. Any suggestions? This all renders perfectly in Firebird. Hopefully the other non-IE browsers will fare as well. It looks like I’ve got a lot of testing to do.

Update 2: The bugs mentioned above are now gone. IE still doesn’t do everything I want it to do, but the problems are very minor. The horizontal borders around the “Sponsored Ads” text in the sidebar should intersect with the vertical borders on both sides. For some reason, though, I have not been able to convince IE that this is how it should work. Instead, IE randomly affixes the box to either the right or left border, leaving a 2 pixel gap. Very odd.

Oracle Discovers RSS

Like many other websites, Oracle has seen the light. You can now access Oracle Technology Network resources via several RSS 2.0 feeds.

Along with the new year comes a new way for you to access technical resources on OTN: via new RSS versions of the product documentation and software download indexes, as well as separate developer- and DBA-focused RSS feeds containing links to current technical articles.

[ January 6, 2004 ]

iPod Mini

Apple introduced the iPod Mini today. It looks like everybody hates this one so far.

The primary gripe is that the 4GB device is only $50 less than the smallest iPod, which has nearly four times the capacity. That just doesn’t quite add up for me. Sure, 4GB is probably plenty of space for most of my listening needs, but I just don’t see a ton of people paying this price when they can have the real iPod for just $50 more.

On the positive side, though, you do still get that same excellent iPod interface, a choice of color, and a smaller form factor. Some have mentioned that they prefer the button configuration on the new device.

For an MP3 player that was expected to fall below the $150 price mark, the iPod Mini is rather disappointing. But for the budget-minded out there who can’t afford that extra $50, there is now another option available.

[ January 4, 2004 ]

Mars Rover Lands Successfully

NASA’s first Mars rover of 2004, Spirit, has safely touched down on Mars. The rover landed at approximately 04:35 GMT. The rover’s success comes in the wake of the recent loss of Europe’s Beagle 2. Expect to see new pictures from the surface of the red planet soon.

[ January 3, 2004 ]

Tiny Helicopters

The Pixelito and Proxflyer Micron are really tiny. Each miniature radio controlled helicopter weighs 6.9g and can fit in the palm of your hand. [Via MetaFilter]

[ January 2, 2004 ]

Better BitTorrent

Tired of having too many BitTorrent windows open while downloading all of that content? Try out a better BitTorrent client for Windows: TorrentStorm. As the official screenshots show, this client has all of the advanced features of the experimental clients but combines all downloads into one window, reducing unwanted clutter on your desktop.

© 2014 Scott Johnson (info)
• •