All right, let’s play a little, shall we?
One of the things that came out of our little scenius on Thanksgiving (which continues through today) was a better way of handling the job I used to do with The Long List of Odysseus Medal nominees. I’ve been ignoring that chore since last Spring, a plausible clue that I just might end up ignoring it forevermore. Even so, it was a good idea, and I learned a lot of cool stuff from the code I wrote to manage The Long List scroller that used to live in our sidebar.
What I want to do for now is to implement another kind of sidebar scroller, this one more like a micro-blog of useful and informative posts — mostly marketing, but other matters of importance as well. There were people who used The Long List as their feed reader, and this should work even better in that regard.
You can see it in our sidebar right now. It’s the scroller box headed “SCENIUS: SWITCHED-ON MARKETING” — with links to 50 highly-relevant weblog posts.
If you want to play along with the development process, you can be a big help.
How?
Break this software:
<!-- BEGIN Scenius --> <p><div style="display:block; width:95%; height:320px; overflow:auto; padding-left:6px; padding-right:6px; padding-top:3px; border:1px solid #a9a9a9; "> <?PHP $ch = curl_init(); curl_setopt($ch, CURLOPT_URL, "http://scenius.bloodhoundblog.net/"); curl_setopt($ch, CURLOPT_HEADER, 0); curl_exec($ch); curl_close($ch); ?></div></p> <!-- END Scenius -->
I’m serious. I want you to install that code in your sidebar and see if you can break it.
There are two ways we know of that you might be able to break it.
First, the PHP may not want to work for you. If that happens, I would love to see a screen shot in your email to me about what happened. So you know: I do not believe this will happen. We broke it every which way yesterday, and I think I have code that should work on any true Apache web server.
The second way that this code could fail is that it might not look right. It should come into your sidebar as a well-behaved citizen. It should inherit your sidebar’s style sheets, and it should scroll top to bottom but not left to Read more
