Posts from 2006

Spoken Words

Published 17 years, 11 months past

A couple of interviews that involved me were recently released, and I’ve been very tardy in linking to them.  Life has been like that of late: I passed a major career anniversary last week and completely failed to note it.  I was lucky not to overlook Mother’s Day, which is not really something you want to do when there are children in the house.

So anyway, the interviews:

I’ll be showing up again on the Web 2.0 show as part of an ensemble cast in their discussion of ma.gnolia, but I don’t know when.  I’ll probably linkblog it when it comes out.

Ya know, I remember when interviews were printed, not audible, which was preferable because I tend to sound more intelligent in print than I do in person.  Of course, I also remember acoustic-couple modems, so maybe it’s not that I’m less intelligent so much as more senile.


Framework Fix

Published 17 years, 11 months past

“You know,” I said to the guys at the car lot, “I just don’t understand the deal with this car here.”

“Oh, it’s absolutely worth it!” they exclaimed.  For the next half-hour, they extolled the power of the engine, the smooth handling, the tight cornering, the rakish styling, and all manner of other wonderful features of the car.

“Wow,” I said.  “Thanks!  But it turns out that what I didn’t understand was how that steering wheel thingy and the foot pedals worked.”

That, in a nutshell, is what happened with the frameworks post.  Predictably, it drew a large number of detractors and supporters of various frameworks, and of the whole concept of frameworks.  Since I focused a good deal on how the tutorials and other materials (yes, including the effin’ manuals) confused me, it should have been no surprise that there’d be a whole lot of debate about the “hype” surrounding frameworks.

But here’s the thing: I didn’t get what frameworks really were.  I wasn’t complaining about the hype.  I was complaining about my lack of understanding, and to a large degree how little help I’d found in correcting that problem.  This is, as it turns out, because my problem was such an elementary misconception that no framework documentarian would think to address it.

How elementary?  My perception was that frameworks were ways of putting a simpler (or perhaps just different) syntactical front end on a language.  My belief about Ruby on Rails, for example, was that the Rails part was almost like a new interpreter that hid Ruby from the programmer.  I didn’t grasp that it was Ruby.  I thought it was a simplified or more elegant or somehow different language that generated actual Ruby on the back end, the same way Ruby or any other language interpreter eventually generates assembly language (or, if you like, a lot of ones and zeroes).

So that was the “very basic, fundamental, obvious thing” I was missing.  Hard to get much more basic than that, really.  I’m entirely not sure how I formed that perception, but there you have it.

My perception now, as I explained in a comment to my own post, is that frameworks are:

A framework… can be thought of as a collection of libraries, though in actuality a good framework is both that and a formalization of best practices, condensed into an efficient syntax and approach.

That may not be 100% accurate, but it’s a hell of a lot closer than before.  As a result, I feel like I have a much better grasp on the situation and no real reason to worry, so thanks to everyone who commented.

Oh, and I swear that Mr. Snook and I had no idea we’d be publishing on the same topic at nearly the same time.  At least, I had no idea.  If he did, then I’d like to talk to either his fortune teller or his server access logs.


Flummoxed By Frameworks

Published 17 years, 11 months past

I used to be a programmer.  Way back in the day, I wrote great big heaps of BASIC and Turbo PASCAL 4.5 and worked in a few other languages of that era (I may be one of the few people left who remembers Clipper).  At one point, a high school friend and I worked on creating our own command-line environment for the C64, for no other reason than it seemed like a fun challenge.  I’ve written quite a bit of JavaScript—not like a wizard, but well enough to get some things done—and a fair amount of PHP.  These are languages that I understand, that make sense to me.  I can make them do what I want to do.

But I just don’t get all these new-fangled programming frameworks.  Is something wrong with me?  Seriously.  I have this grumpy, churlish feeling that I suspect is rather similar to the way SGML experts felt when they saw HTML becoming so popular, and that scares me.

People who’ve drunk the various kinds of framework kool-aid don’t make it any easier, though.  “Oh”, they gush, “you should absolutely try Ruby on Rails!  It’s so easy!  It’s almost like writing regular English!”  Which means they’re clearly on crack, because Ruby on Rails is so very different from a human-written language that the few ways in which it sort of resembles prose, assuming you look at it under a dim light through a heavily fractured fresnel lens, serve only to confuse me further.  I have many of the same problems with MySQL, actually:  by dint of its being sort of human-like in its syntax, I’m led into all kinds of incorrect assumptions about what I can do.  Thus I spend a lot more time screaming at opaque error messages than seems necessary, just because I thought a comma made sense when the language didn’t.

I’ve looked at all kinds of different intros and tutorials and “for regular folks” resources, most of which I get from Simon‘s linkblog, for a number of different frameworks.  They serve only to confuse me.  The CakePHP 15-minute blog tutorial?  Didn’t get it, and remember, I can write PHP relatively well (I wrote all of An Event Apart‘s registration stuff using PHP and MySQL, for example).  The oft-recommended Tutorial in Ruby on Rails?  Lost me, Coach.  Even Jeff Croft’s Django for Non-Programmers left me in the dust.

All these frameworks’ proponents say “Just write in this totally simple and obvious way and the messy details will be magically handled for you!” but that’s just not how it works.  You have to write in a very specific and unintuitive way, and unless you know specific magic words and what roles they can take then nothing will happen except the return of an error message.  This is no different than any computer language, of course.  What I think bothers me is that the cheerleaders always seem to believe, or at least pretend, otherwise.

Maybe it’s just that the tutorials never seem to clearly state what’s a piece of built-in magic that I’ll learn about later, what’s something that I’m building myself, or whatever.  I mean, look partway through Jeff’s Django piece.  I don’t mean to pick on Jeff, because he’s not doing anything worse or even different from the other stuff I’ve read; it’s just the one I happened to read most recently.  Anyway, he says, and I quote:

These four lines create a very pretty admin area…. with appropriate entry fields for all of your fields.  The “pub_date” field will automatically get a pop-up calendar for choosing a date. The “enable_comments” field automatically knows to use radio buttons for its interface. The “lead_image” field will be a browser-based upload tool. Et-cetera. Without doing a thing, you’ll get an admin interface the likes of this…

That whole interface just magically happens?  How and why?  Is it part of the Django core?  Why?  Is it useful for other stuff besides what we’re doing here?  How?  Did all this happen based on the class I created, or the variables I defined, or the values I gave them?  How can I tell?  Where can I find a list of the magic things?  How can I re-use them; or, put another way, how far will the magic things stretch?

I feel like there’s some very basic, fundamental, obvious thing that I’m missing, but I don’t even have the necessary level of knowledge to frame the right question.  Or questions.  See?  I don’t even know how little I know.  Is it that I spent too much time doing old-style programming, and so I’m too suspicious of anything I didn’t write myself?  (In which case you’d think I’d be an assembly-language kind of guy, but I’m not.  At all.)  Is it that for years I taught myself programming languages using reference manuals, so I need that kind of function listing before my mind will start to absorb a new language?  Is it just that I’m too old now and my mind isn’t sufficiently elastic to take in radically new concepts?

Basically, my nose is telling me that I’m up a putrescent watercourse and I lack a means of locomotion.  Maybe I’m not alone there, but sometimes it sure seems like it.


Presentation Remotes

Published 17 years, 11 months past

This one will be of interest to the dozen or so of you who regularly give presentations that involve some sort of (Powerpoint, Keynote, S5, whatever) slide show.

Just before An Event Apart Philadelphia, I went out and bought a Keyspan Presentation Remote.  I picked this particular make and model because I’d used one at Web Essentials 05 and it’s programmable, which always hooks me.  It also has the ability to control the mouse pointer, change the audio volume, and more.  So I bought one.

Bad move.  As attendees of An Event Apart can tell you, we had problem after problem with the damn thing, both with the default settings and with the customized configuration I’d set up.  It turns out the remote has two “modes”, and the default mode can be only partly reprogrammed.  Sadly, it won’t stay in the alternate mode.  If you don’t interact with the remote for a minute or so, it goes back to default mode, which means it stops doing what it’s supposed to do (advance slides).  We ended up just not using it.

While I was at IceWeb, I borrowed Molly‘s (or maybe it was Andy‘s) Kensington Pocket Presenter to deliver my talk.  This little baby is simple as anything: largish back and forth keys that map to Page Up and Page Down, a red button for the laser pointer, and a “stop” button that blanks the screen in supporting applications.  That’s it.  And that’s what makes it great.  Even better, the USB receiver slides into a storage slot in the remote itself, and doing so turns the whole thing off, is pure genius.  It fits easily in the hand, both in terms of size and shape.  It’s the iPod of presentation controllers, designed to do one thing and do it very well.  It’s enough to make me reconsider my whole “one device to rule them all” stance.

I picked one up at the Apple Store the other night for not much more than it costs at your favorite online discount e-store, and I couldn’t be happier.  The one little quirk I noticed was that the first time I plugged one of these into my PowerBook (running Tiger), the system said I was plugging in a new keyboard.  I dismissed the dialog box, and it’s worked without a hiccup ever since.

So: Keyspan remote bad, Kensington remote good.  Of course, if you really need a presentation remote that can do a convincing impression of a slow-moving mouse driven by an Etch-A-Sketch interface, then you may disagree with me on this one.  Me, I’d rather just have a slide controller, and if I need to do something with the mouse, I’ll walk over to the computer and use the mouse.  Shocking!


IceWeb on Ice

Published 17 years, 11 months past
IceWeb 2006 wrapped up today (that is, Friday), and I’m deeply honored to have been a part of it.  The attendees were just wonderful, there were great speakers all around, and I was as impressed as everyone else by Joe Clark‘s Icelandic benediction at the beginning of his talk.

In general, it’s been an amazing trip.  In some ways, though, the highlight came before I even set foot on Icelandic soil.  On the way over, the Aurora Borealis was visible out my plane window.  With a touch of desperate improvisation, I managed to coax some half-decent shots of the lights (and the wing of our plane) from my battered PowerShot S45.  You can see them up on Flickr, along with a few of the better shots from our Wednesday trip through the Icelandic countryside (in the general photostream).  The actual aurorae were nowhere near as green to the eye as what’s seen in the photos, but more of a silver-blue phosphorescence with maybe a little tiny hint of green.  It was hard to judge, looking through a plastic airplane window while trying to block out cabin light enough to see them.

That’s not to minimize the beauty of this country, however.  There is a bleak and wild character that’s hard for me to resist, even as I know I’d never survive the dark of deepest winter here.  Much as I love landscapes, and Iceland has those in spades, the people are the best part: friendly and accepting in a way that’s still proud and reserved.  It’s hard to explain.  Moreover, they do know how to party.

My deepest thanks to all our hosts for letting me be a part of IceWeb, and I hope I get to return some time in the future.  Takk!


Flickrbomb

Published 17 years, 11 months past

I’ve just done something that seems so common it must have had the term coined and in widespread use, but no: I just Flickrbombed.  Having put up exactly zero photos for months, I got my account turned Pro and dumped a whole bunch of pictures in.  According to Google, only one person has ever used that term online before, so I can’t claim sole credit for it.  I’ll just count it as yet another parallel invention, and see if it catches on more widely.

Anyway, you can check out the general photostream if you’re so inclined, or dig through my two sets: Artistic and Teh Funny.  That’s all I have up there right now, though collectively that’s over 100 photos added all at once (thus the term “Flickrbomb”), and that’s just the ones I made public.

I may toss in more pictures over time, most likely from various and sundry conferences, but that’s an iffy prospect at best.  And while you can feel free to add me as a contact even though the stream may be more of a dry bed, don’t expect a reciprocal link.  I’m already thinking about pruning some of the contacts I’ve already collected, as I just can’t keep up.  Too much content!

Flickr really needs a way to filter your “contacts’ photos” feed to include only those pictures that have comments, or above a certain number of views, or something.  Then again, I wish it showed me photos from friends and family that I can see, not just those that are fully public.  I’m just a walking contradiction.  (Man, I loved that video.)


Taste the Vitamin

Published 18 years past

The new weekly web-design ‘zine Vitamin (a.k.a. Yet Another Major New Project From The Carsons) launched earlier this week to generally positive notice from the design community.  I was glad to see this for three reasons.

  1. I wrote one of the launch articles, “Making Popular Layout Decisions“.  Although now that I think about it more, maybe that should have been “Making Unpopular Layout Decisions”.  Anyway, it’s a commentary piece that will probably annoy a few hard-core purists.  That always makes for a success in my book.
  2. I’m a member of the Advisory Board, so I have some stake in seeing it do well.  I’d hate to have things go badly due to my being a bad advisor!  Especially since I’m kind of new to the advisory game.
  3. It demonstrates that there’s plenty of room in the web design community for such resources.  Not that there’s anything wrong with what we have—after all, I love A List Apart so much, I wrote the markup!—but it’s a sign of renewed health and interest in the field.

Oh, and speaking of Carson projects, I hear this May’s Professional CSS XHTML Techniques workshop is almost sold out—so if you’re interested, better get cracking.  (The same is true for AEA Chicago, as it happens.)


Looking for Headset Help

Published 18 years past

I could use a little advice from the crowd, if you have a minute.  Basically, I need a new phone headset for my office landline, and maybe a new phone as well.  My current headset, an aging Plantronics Vista model, is generating this really loud buzz that I can only fix by forcibly contorting the boom mike, and even then the fix isn’t always permanent.  I’ve tried fiddling with the ‘channel’ and gain settings, and then only way to avoid the buzz is to make myself completely inaudible.

All I really want is a nice comfortable headset that has good sound quality.  I’ve looked at headsets that are just 2.5mm plugins, and at ones that have the little amplifier box.  I probably will want an over-the-head set, since the over-the-ear Vista I have makes my ear ache on event moderately long calls.  And a corded set is fine; I don’t really need a cordless headset.  In my specific case, any disincentive to stand up and pace while talking is probably a good thing.

Also, I’m not at all adverse to replacing my phone, which is also old and clunky.  It still works okay (and is not the source of the buzz—I checked) but it’s nothing spectacular.  If there’s a really good headset-and-phone combo out there, I’m completely open to that.

So anyway, if anyone has recommendations they’d like to make, either pro or con, please fire away.  Thanks!


Browse the Archive

Earlier Entries

Later Entries