Categories

Archives

Recent Posts

  • NetNewsWire 2.0

    After not being able to talk about this for ages I can finally say NetNewsWire 2.0 rocks. Tonight Brent released the beta of NetNewsWire 2.0. I’ve been using betas for the past few months and he’s been doing a pretty kickass job. You can check out the What’s New page, read the Change Notes, or just go and Download it.

  • Wikipedia Hits One Million

    From Joi Ito’s Web:

    Wikipedia reaches one million articles

    Wikipedia has just announced that it has reached one million articles. Congratulations Wikipedians! Wikipedia is in more than 100 languages with 14 currently having over 10,000 articles. It is ranked one of the ten most popular reference sites on the Internet according to Alexa.com (trumping Reuters, the Wall Street Journal and the LA Times). At the current rate of growth, Wikipedia will double in size again by next spring. [Joi Ito’s Web]

    Pretty cool. I keep thinking I should work on contributing more, especially in the anime section.

  • Medbloggers

    Jon Udell has a great post on Medbloggers, something that I didn’t really realize existed until he wrote about it. Though we’ve got political bloggers, library bloggers, law bloggers, so it makes sense there would be medical bloggers.

    Medbloggers

    The numbers are small. Starting with Pho’s blogroll, I began assembling a list of the medical bloggers who cross-reference one another. What I found confirmed Pho’s estimate that there are no more than 100 of these medbloggers, many of whom are aggregated at medlogs.com. Nor are these medblogs yet widely subscribed. Pho today has 14 Bloglines subscribers. One of the founders of the movement, medpundit, today has 58. Those numbers are one or two orders of magnitude shy of the readerships of many of the tech blogs I follow. But unless fear of malpractice strangles this baby in the cradle, that will be a temporary phenomenon. In the long run there will be many more people hungry for informed analysis of medical issues than for informed analysis of tech issues.

    This looks like a great opportunity to watch the blogging meme replicate throughout another community of practice. I’ll be fascinated to see how it changes, but also is changed by, that community. Corporate techbloggers, for example, are learning to walk a fine line between acceptable sharing of information and punishable transgression. Medbloggers face a different set of issues: libel, privacy, and of course malpractice. See this American Medical News article for a useful overview. [Jon Udell’s Weblog]

    As you can tell from some recent posts I’ve started following medical information on Pulmonary Fibrosis online, mostly inspired by this article. I even found a blog called Bronch Blog to subscribe to.

  • How to Crash IE

    Eric Meyer posted a test file that tends to freeze IE6 and in some cases even cause a reboot of the computer. So if you’re running that, don’t click the link below.

    Freezer Case

    Since a few people asked for it, I’ve created a test file that reproduces the Internet Explorer freeze reported yesterday. You can find it with the title “Internet Explorer Freezes — BEWARE!“. …(254 words | CSS Browsers | comments and pings allowed) [via Thoughts From Eric]

    Behold, the power of CSS.

  • A9 Bonus

    I’ve been playing with A9 a little bit lately, it is kind of nifty, but nothing that really made me go WOW. Though, someone did find out something interesting about it.

    Discount at Amazon for using A9.com

    A9 is the new search engine from Amazon and so far it seems good enough to use. It’s supposed to have all kinds of wizbang features, which it seems to. One important thing is that it’s hooked into amazon’s cookie system so it does know who you are and keep track of your searches. (blah blah big brother yadda evil corporate, DOWN liberal DOWN *smack* back in your cage.)

    If you can get over that for 5 minutes and use it, then go to amazon, you’ll notice this little “pi/2 discount” thingie. I clicked on it and, being a good little advertising target monkey, I’ll pass the resulting blurb on…

    since you’ve been using A9.com recently, virtually everything at Amazon.com is automatically an additional π/2% (1.57%) off for you. Collecting this discount is zero effort on your part. It will be applied automatically at checkout (it will happen whether you use the shopping cart or our 1-Click Shopping®). You don’t need to do anything to get this discount except keep using A9.com as your regular search engine.

    So there ya have it. [via The Universal Church of Cosmic Uncertainty]

    I just checked on Amazon and found that I had the same link there now. Pretty keen.

  • My New Fangled Blogroll

    One of the first things I’ve posted to my wiki is a short article on how I did my new blogroll (down on the left). It’s a bit of PHP/CSS/Javascript code that all works to make the expandable folders. Comments are welcome and appreciated.

  • life – wikified

    After a few false starts I’ve started up my own personal wiki. In the end I decided that MoinMoin would be the best choice for me, since it is fairly small and simple. TikiWiki was interesting, but just way too much for a small personal wiki. Now I just need to make some themes. to make it fit in with the rest of my site. Anyways, you can get there via the link on the left, or by clicking here.

    There really isn’t that much in there yet. But I’m planning to use it for random information I want to keep track of. And if you want to contribute at all just let me know (everyone has read permission unless I grant them more).

  • MT 3.1 Subcategories

    Movable Type 3.1 lets you now have subcategories, something that I’d kind of been wanting for a while. I’m currently using them and you can see some of the groupings of categories I have to the right. The code is after the ‘more’ link.

  • Movable Type 3.1 Released

    The fine folks at Six Apart have officially released Movable Type 3.1. I’ve been beta testing this for a bit over a week and it’s pretty nice. They also released a pack of plugins for it that includes MT-Blacklist.

  • Movable Type 3.1: Dynamic Templates

    One of the cool new things in Movable Type 3.1 (which should be out pretty damn soon now) is the dynamic PHP publishing. Why is this a big thing? Because up till now if you’d changed a something like your individual archive page template you’d have to go back and rebuild your whole site. If you’ve got a large number of posts this tends to take a while. Now, it can just render the page when requested, which means doing a pushlish all will go much faster.

    After a few rough starts, I got the whole thing running on this blog. The index page and the feeds are all static, but any archive page is built up on the fly. And you can even turn on a caching if you so desire. When you do this, a copy of the dynamic page is kept around for an hour so that if someone else visits that page again within the hour it doesn’t have to rebuild it again from the database.

    Setup for this feature was actually much easier than I thought, once you know a few things. One, it doesn’t work if you are using Berkeley DB as your database. Which required me to convert to using mySQL. Which worked out okay overall, but I had to do a bit of tweaking since I seemed to have some odd corruption in my database. Once that was done I just had to turn on the dynamic publishing for the templates I wanted and create a templates_c directory in my blog’s home directory. One republish later and everything was working just fine. It’s pretty much transparent to the person browsing the site (which means your existing permalinks won’t change at all.

    It also lets you do caching of the dynamicly generated pages via the Smarty template engine. If you turn it on, dynamicly generated pages are cached for an hour by default (though you can tweak that if you need to). Pretty slick. While my site doesn’t generate a ton of traffic, this is the kind of thing that could really be useful for a site that gets tons of hits a day.

    One or two other gotchas. If you are using PHP you can’t use opening tags in the format <?, you need to have them in the format <?php. As long as you do that you shouldn’t have any issues. Also, this is supposedly not compatible with any other plugins (not an issue for me as I don’t use any other plugins).

    Another issue is how dynamic pages are built. I tend to do my template editing locally using cyberduck+subethaedit and I have my templates linked to a local file on my web server. I find it is much easier to edit them that way. The problem with this is that if you make a change to the local file, you need to go back into MT and save it there also for it to take affect. I personally think it should make a check to see if the file version has changed and load that one in if so.

    Next thing to try: doing more with categories and sub-categories (You can see a bit of a preview to the right).