links for 2008-09-13

The PutPlace Blog » Blog Archive » When Bad Things Happen to Good Computers A variety of “photos of melted, damaged and destroyed hardware”; unsurprisingly the punchlines in the last one… …..

Links for this article:

links for 2008-09-14

Welcome – ::Sal’s Realm of RuneScape:: My current favorite RuneScape resource and info. …..

Links for this article:

Is Alex Serpo the worst journalist at ZDNet? Possibly so…

I’ve just read the most poorly researched article, and possibly worst ever published online, at the ZDNet Australia website. It’s a piece by their Australian Editor, Munir Kotadia, and their Australian Reviews Editor, Alex Serpo, titled “Do you love or hate Microsoft’s Seinfeld ads?“. The lead part by Munir isn’t too bad, it’s Alex’s part that has got me incised.

Alex ‘not too bright’ Serpo writes:

Let’s not pretend. Bill Gates isn’t like everyone else. This is a man who wrote his own operating system in his early twenties. Bill Gates makes Stephen Hawking look like a man with hobbies.

Frankly I wouldn’t let Alex near to a keyboard again if I were ZDNet after demonstrating such a phenomenal level of ignorance of his alleged IT industry speciality, but perhaps this is the level of journalistic quality coming out of ZDNet Australia (unless this is a super-ironic, post post-modern piece, of course, but I doubt that very much).

I tried to add a comment about the poor quality and paucity of journalistic rigour demonstrated, specifically of Alex Serpo’s research, however the ZDNet site wouldn’t let me, so I created this blog entry and here it is in full for your amusement.

Alex – try checking your facts before contributing to articles

Your piece is full of holes, and frankly reflects a very poor level of journalism, especially as your subject matter is the IT industry, and IT industry history.

Bill Gates never wrote an operating system in his twenties, nor in his life. He’s a significant and major figure in our industry, but you certainly don’t need to add false achievements and accolades to his legacy.

QDos, which went onto become MS-Dos was written by Tim Paterson, after being purchased by Paul Allen, Bill Gates partner, and joint founder of Microsoft.

Bill wrote a BASIC compiler and interpreter along with Paul, and as I recall one of his major achievement’s was writing InterSvr / InterLnk, although this may too be apocrypha.

As to the Seinfeld adverts, I don’t like Seinfeld, so no big shakes to me. They can waste their money in a vain attempt to stop the coming dominance of Open Source operating systems and I’m sure it’ll help sell a few copies of Windows and Office for the short term at least.

Frankly the best advert for PCs was the Apple sponsored Mitchell and Web adverts, because although Mitchell was plainly representing the PC, his character in Peep Show, upon which the advert appeared to be based, was the more likeable. Talk about Apple shooting themselves in the foot.

Wayne

https://blogs.sun.com/eclectic/

P.S.

If you need any help with IT industry history in the future give me a shout, but for God’s sake please don’t produce drivel like this again.
¨C11C¨C12C

¨C13C

If we ignore the sadly unfunny swipe at Hawkins, what upsets me about the quality of the ZDNet article is that it denigrates the achievement that great technologists such as Ken Thompson (father of UNIX, Plan 9, and Inferno, along with Dennis Ritchie), Bill Joy (the genius behind BSD and SunOS / Solaris), Linus Torvalds (writer of the Linux kernel), and a relatively small number of others, have made in having actually written an Operating System.

Oh and by the way Alex, the offer still holds, if you need any help with IT industry history or research in the future then give me a shout.

¨C14C ¨C15C¨C16C

Links for this article:

links for 2008-09-12

Links for this article:

]]>

Integrating Disqus and Roller Weblogger on blogs.sun.com

I’ve recently updated my site to use Disqus the blog comment hosting and conversation site.

Done this for two reasons:

  1. Firstly my usually frustration with any status quo means I want more functionality delivered yesterday, and although I’d started to have a look at the functionality I wanted and how I might add it as a Roller macro / velocity code I didn’t want to spend a huge amount of time coding it out (the functionality I specifically wanted was the separation of comments and trackbacks, as well as comment ‘threads’).
  2. Secondly to gain readership and comments from the sizeable blog comment audience that Disqus have built up (Disqus is estimated to be running on over 30,000+ servers).

I’ve already had a couple of comments from Disqus members, and I’ll have to see how it goes before I start heralding it as an unprecedented success, but I’m very pleased with the results (both aesthetic and functional).

Sadly the Disqus comment import function was initially provided for WordPress and Blogger, but apparently wasn’t fully functional; subsequently an update is due out soon that will hopefully include Roller Weblogger. See this Disqus forum entry, and it’s threads for more info: How do I import comments?

Given this was the case I wanted to make sure my blog supported my new Disqus commenting system, but would still show my old comments if there where any for an entry. Here are a few examples:

The code I developed, which has to be separated into two components (number of comments associated with a blog entry, and comment entry form and comment display), is below, but if you use or copy it please note that you need to replace the Disqus supplied JavaScript for my site with your Disqus comments hosted sites JavaScript code. ¨C18C

Combined Roller Weblogger and Disqus Number of Comments code

For comment numbers I’ve broken it down into displaying “n Comments” for Disqus on it’s own, whilst “x Comments (new, via Disqus) and y Comments (legacy, via Roller)” for comments hosted on both systems.

This replaces the code in the Roller Weblogger “_day” template which displays the number of comments per blog entry.

Don’t forget to replace occurrences of ‘eclectic’, my blog handle, with yours (just one, about the fifth line from the end).

## Number of Comments

<a href="$url.entry($entry.anchor)#disqus_thread">View Comments</a>

#set($commentCount = $entry.commentCount)
#if ($commentCount &gt; 0)
    (new, via <a href="https://web.archive.org/web/20090830081824/https://www.disqus.com/" target="_blank">Disqus</a>) and 
    #if ($commentCount == 1)
        <a href="$url.comments($entry.anchor)">$commentCount Comment</a> (old, via <a href="https://web.archive.org/web/20090830081824/https://rollerweblogger.org/" target="_blank">Roller</a>) 
    #else
        <a href="$url.comments($entry.anchor)">$commentCount Comments</a> (old, via <a href="https://web.archive.org/web/20090830081824/https://rollerweblogger.org/" target="_blank">Roller</a>) 
    #end
#end

<script type="text/javascript">
//<[CDATA[
(function() {
		var links = document.getElementsByTagName('a');
		var query = '?';
		for(var i = 0; i < links.length; i++) {
			if(links[i].href.indexOf('#disqus_thread') >= 0) {
				query += 'url' + i + '=' + encodeURIComponent(links[i].href) + '&';
			}
		}
		document.write('<script type="text/javascript" src="https://web.archive.org/web/20090830081824/https://disqus.com/forums/eclectic/get_num_replies.js' + query + '"></' + 'script>');
	})();
//]]>
</script>

Combined Roller Weblogger and Disqus Comment entry and Comments display code

This basically displays the Disqus commenting system, along with any Disqus hosted comments, however if any ‘legacy’ Roller Weblogger hosted comments are found it displays those too.

It replaces the code in the Roller Weblogger “permalink” template which displays comments themselves (the same changes may need to be made to the “weblog” and “searchresults” templates too).

## Comments

<h2>Comments (new, via <a href="https://web.archive.org/web/20090830081824/https://www.disqus.com/" target="_blank">Disqus</a>)</h2>

<div id="disqus_thread"></div><script type="text/javascript" src="https://web.archive.org/web/20090830081824js_/https://disqus.com/forums/eclectic/embed.js"></script><noscript><a href="https://web.archive.org/web/20090830081824/https://eclectic.disqus.com/?url=ref">View the forum thread.</a></noscript><a href="https://web.archive.org/web/20090830081824/https://disqus.com/" class="dsq-brlink">blog comments powered by <span class="logo-disqus">Disqus</span></a>

##showWeblogEntryComments($model.weblogEntry)
##showWeblogEntryCommentForm($model.weblogEntry)

<br></br>

#set($commentCount = $entry.commentCount)
#if ($commentCount &gt; 0)
    <h2>Comments (old, via <a href="https://web.archive.org/web/20090830081824/https://rollerweblogger.org/" target="_blank">Roller</a>)</h2>
    #showWeblogEntryComments($model.weblogEntry)
    <br></br>
#end

Additional benefits that I’ve picked up by implementing Disqus include:

  • Following commentators.
  • Having my, and my sites, comments followed.
  • Being able to easily ‘reblog’ my comments and make blog entries out of them (looking forward to trying this, although I haven’t yet).

Finally here’s my Disqus profile for you to have a look at: https://www.disqus.com/people/wayne_horkan/

Links for this article:

Setting up del.icio.us blog posting on blogs.sun.com

Recently I have received a number of emails about del.icio.us blog posting “links for” working with blogs.sun.com (BSC) or rather not as the case may be, as they have all vented frustration about it not working (either well or at all).

Dave Johnson, the man behind Roller Weblogger itself (the platform BSC runs over), suggests alternative approaches to achieving the same result, most notably using a standalone tool described in “delicious.com Blog Posting tool“.

I was similarly frustrated having just configured the delicious blog posting tool (and getting it to work), however I have since found that the issues I faced were due to not reconfiguring my XML-RPC password after the recent upgrade to the external Identity authentication and authorisation security mechanism used to access BSC.

To get it to work again I had to reconfigure both my BSC and del.icio.us accounts.

Setting up your BSC account for del.icio.us blog posting

First off I had to go into the “Your Profile” page in my BSC account.

Then I had to configure a “Web Client API Password”, as in the screen grab below.

Setting up your del.icio.us account for del.icio.us blog posting

After reconfiguring my BSC account I had to change the user name and password combination in the del.icio.us blog posting settings page.

The user name now needs to be set-up as your email address (and not the old style BSC user name, which matched your blog ‘handle’), whilst the password needs to be configured as the same as the “Web Client API Password” above, see the following graphic for more detail.

Another item to note is that “blog_out_id” needs to be set as your BSC ‘handle’, whilst I’ve found “out_cat_id” has little effect (as the posts default to whatever “Category for posts received via clients” is set to in your BSC blog preferences).

Remember to set “Enable weblog client support?” in your BSC blog preferences to get any of this this to work in the first place.

¨C11C

Since reconfiguring the two accounts above it’s been working consistantly and I feel safe enough to blog about it as a way forward.

I originally found out about setting up del.icio.us blog posting from the blog post “Posting from del.icio.us to Roller” from Lars Trieloff’s Collaboration Weblog. This worked fine until the change to access was implemented at BSC, and would presume it’s advice still holds for the majority of cases (outside of BSC).

¨C12C ¨C13C¨C14C

Links for this article:

links for 2008-09-06

Links for this article:

links for 2008-09-05

Tabs, Used Right: The 13 Usability Guidelines (Jakob Nielsen’s Alertbox) Tabbing advice from a Web Guru… …..

Links for this article:

links for 2008-09-04

Bored of Internetshire By Tim Caynes Simply the best blog I’ve ever seen, Tim Caynes rejection of the Blogosphere. …..

Links for this article:

]]>

links for 2008-08-31

welcome to vue cinemas – the ultimate cinema experience Our other local Cinema – ‘Star City’ in Nechells, although we don’t go too often as it went through a spate of being ‘stabbing central’ at night and hasn’t shaken off that image well so far. ….. 1 Trackback

links for 2008-08-30

Horkan – Hungarian for ‘snort’

I’m not winding you up on this one, check this out from Dictionary.com:

Horkan - Hungarian for 'snort' from Dictionary.com

I should think that a number of you will be more than a little amused.

My banana yellow Yamaha V-Max

And a series of posts about motorbikes wouldn’t be complete without my own current ride, this lovely banana yellow Yamaha V-Max.

www.flickr.com


That’s right, it’s just a big ol’ engine and a pair of wheels, lol…

A pint after work…

Kieron, Darren, Ian and Graham at the Fine Line.

www.flickr.com

Graham Helsby and his *BIG* sandwich

Here’s my mate Graham with a very large sarny…

www.flickr.com


Now that’s a *Big* sandwich…

Three pals bikes; a BSA low-rider, a Yamaha Genesis EXUP Streetfighter, and a mint Honda VFR

Keeping with this weeks motorbike theme, here’s some photos of three pals bikes that I helped them sell on ebay last year.

First up is Bob’s wonderful, but insane to ride (unless you were Bob), BSA ‘Low Rider’.

Second is Martin’s Yamaha Genesis EXUP ‘Streetfighter’ (mainly fairing removed).

Third is a friend of a friends bike, in that’s it’s Ricky’s brother Joe’s bike, an almost mint condition Honda VFR.

www.flickr.com


And yes, they all sold double quick…

Castle Bromwich Hall Church Fete

Our local C of E Church, St. Mary and St. Margaret’s Church, in Castle Bromwich, just before the arrival of our new Parish Priest, Gavin Douglas, and family…

www.flickr.com






What do Facebook, del.icio.us, and last.fm, all have in common this month?

Yes, that’s right; they are all suffering from functionality issues due to design flaws introduced in their last look and feel upgrades.

Looks like this is the month for it, because in rapid succession we’ve seen changes at all three of these web2.0 stalwarts.

So how have these changes effected functionality, and what’s the real problem at hand ?

  1. Facebook
    If your a Facebook user then you will have noticed the option to use ‘new’ facebook, which, although keeps the quite fixed layout (and color theme), moves applications onto a seperate ‘page’ (or tab rather, although it behaves as a page).
    The major problem with this is settings between the new and old Facebook layouts don’t appear to be compatible, which points to access control being about the UI and not about the data itself.
  2. del.icio.us
    So del.icio.us have introduced a ‘richer’ look and feel, but appear to have lost some of their elegant simplicity. A shame, because for a service like del.icio.us I’d rather have function over form.
  3. last.fm
    Similar to the issue with del.icio.us, but in this case their is a huge user community hankering for backwards compatibility with the old look and feel, who want a similar ability to the recent Facebook refresh in being able to ‘swap’ between the two UI designs.
    Perhaps this isn’t such a good idea, because like the current Facebook issues, who’s to know what settings and access controls are locked into the UI and not the user data.

Along with the recent problems at Twitter around “outbound SMS messages” it’s turning out to be quite the month…

Last years photos from Sun’s Customer Engineering Conference 2007 (CEC 2007)

Found these the other day, posted up to Flickr…

www.flickr.com

A visit to the National Motorcycle Museum

Yep, it’s Dad boring the poor kids senseless with the absolutely wonderful National Motorcycle Museum; we live that close that we’ve been so often they’ve only just let me take them there again…

If you like Bikes, no scratch that, if you *LOVE* bikes, then it’s definitely the place for you.

www.flickr.com


And that’s right, I’ve tagged this ‘Heaven’.