DRM

Hating your customers

September 5, 2007 6:30:39.233

NBC continues to slap itself with the ballpeen hammer: their new deal with Amazon tells us what kind of DRM the industry would like to see:

Compare Unbox: Shows bought from Unbox can be kept on two computers max and can be stored on up to two different (approved) media players. Users cannot "mix" accounts, meaning that a PC cannot have authorized content purchased from two different accounts accessible at the same time. As you can see, Unbox is more restrictive.

Yeah, if my daughter downloads something, gosh forbid that we should be able to watch part of it in the living room, and the rest of it on the big screen in the family room. That ust makes us filthy pirates. I've been down on Amazon's Unbox ever since "Buzz Out Loud" tested it, and found it to be both lacking and obnoxious.

Oh, it's even dumber than I thought - Unbox is still Windows specific.

Technorati Tags: , ,

 Share Tweet This

jobs

Smalltalk Research

September 5, 2007 7:11:32.027

Noury Bouraqadi is looking for a Smalltalker to join his team - and they are doing some interesting sounding work:

The position is for a Smalltalker that will contribute to the long term project VerySmallTalk. The aim of VerySmallTalk is to design and build a software infrastructure that addresses requirements of mobile computing, context aware software, and resource aware software. It targets a variety of devices ranging from small ones such as mobile phones and PDAs up to servers.

Technorati Tags:

 Share Tweet This

screencast

Smalltalk Daily 9/5/07: Spotlighting

September 5, 2007 8:26:20.980

The Spotlight search on OS X has gotten a fair amount of praise over the last couple of years - I thought I'd show of some experimental work being done in engineering in that direction. Sometimes, you don't know whether you are searching for a class, a sender, or an implementor - you just have part of a name in mind. So - here's some work in that direction that may end up in the product.

Technorati Tags: ,

 Share Tweet This

humor

The Oysters that Ate Annapolis

September 5, 2007 14:12:16.439

I see a bad SciFi channel movie in this story - 100 sterile (but able to become non-sterile, apparently) Asian Oysters have gone missing in the Chesapeake. Oooo - maybe a Frankenfish/Oyster genetic mutation movie!

 Share Tweet This

gadgets

Keep me away from the Apple Store

September 5, 2007 15:00:59.287

This stuff is just too cool - my wallet may completely deflate if I'm allowed to enter an Apple Store w/o supervision.

Jobs answered it [the iPhone buzz] with the iPod Touch, which shares the same touchscreen technology that was the trademark of the iPhone. The device also features the ability to connect to Wi-Fi Internet hotspots and a full Internet browser.

The device will sell for $299 for the 8-gigabit version, and $399 for a 16- gigabit version.

To complement the new device, Apple unveiled an iTunes Wi-Fi music store. Customers can preview and purchase the song over the Web using a Wi-Fi connection to their iPod Touch.

Jobs also unveiled a new version of the Nano, which Jobs said was the most popular music player in history. The new Nano is wider to accommodate a 2-inch video screen and metal design. A four-gigabit Nano is $149, while the eight- gigabit version is $199.

Must... have... new... iPod...

 Share Tweet This

cst

Iterating to a better Website

September 5, 2007 16:42:16.287

This isn't the end of the story, but I'm working on making the main Cincom Smalltalk website easier to deal with. So - go check it out now. The next thing that will be changing is the left sidebar - I intend to migrate that up to the top of the page as a simpler CSS menu.

Technorati Tags: ,

 Share Tweet This

development

Perspectives on Multithreading

September 6, 2007 6:26:15.598

Two different perspectives on multithreading from two thoughtful people - "Is this our biggest problem?" vs. "it's a problem now".

Technorati Tags: ,

 Share Tweet This

PR

The New Lawsuit Process

September 6, 2007 8:22:38.161

This is just fascinating. A small company, Netapp, is suing Sun over alleged patent infringement. Now, I have no idea what the facts of this case are - it's not an area of technology I follow closely. What I do find interesting is this: NetApp's CE lays out their case on his blog, and Sun's Jonathan Schwartz lays out Sun's case on his. That's certainly different - and, IMHO, smart. Lawyers make for lousy PR, and these guys seem to get that.

The old rule about lawsuits was that you let your lawyers say everything. I've always thought that was pretty stupid - and I think that rule is gone now.

Technorati Tags:

 Share Tweet This

screencast

Smaltalk Daily 9/06/07: XmlRpc on the Server

September 6, 2007 9:35:09.795

On today's Smalltalk Daily, we take a look at Xml-RPC in Cincom Smalltallk. I use a servlet I've implemented for my Silt server as an example, and show a Firefox add on talking to it.

Technorati Tags: ,

 Share Tweet This

smalltalk

Inconceivable

September 6, 2007 9:59:08.897

The title is a reference to "The Princess Bride", and the phrase I wanted was "I don't think that word means what you think it means". I'm taking that from Neal Ford's rather confused post about meta-programming. His example is code generation, and he has a fairly deep misunderstanding of how Smalltalk works (and, quite probably, of how Ruby works as well) - let's have a look. He goes into an implementation of has_many in Ruby on Rails:


class Order < ActiveRecord::Base
  has_many :lineitems
end

For those not familiar with Ruby, this is a method, defined as a class-level initializer (just like an instance code block in Java, a chunk of curly-brace code in the middle of a class definition, which Java picks up and executes as the class is instantiated). So, ultimately, this is the Ruby equivalent of a static method call, which gets called as the class is created.

He then goes into Smalltalk:

Let's talk about Smalltalk, which has first-class meta-programming. You could easily build has_many in Smalltalk, implemented as a button you click in the browser which launches a dialog with properties that allow you to set all the characteristics embodied in the Ruby version. When you are done with the dialog, it would go do exactly what Ruby does in Rails: generate a bunch of methods, add them to the class (stuff like the find_* and count_* methods). When you are done, all the methods would be there, as instance methods of your class.

OK, so at this point, the behavior is the same in Smalltalk as in Rails. But there is one key difference: The Smalltalk version using code generation. It's a sophisticated version of a code wizard, generating the code using meta-programming techniques. The Ruby version uses code synthesis: it generates the code at runtime, not build time. Building stuff at runtime means more flexibility. But that is a minor point compared to this one: In the Smalltalk version, you use the dialog and properties to generate all the methods you need.

I suppose a Smalltalker could do it that way, but it's not how it would normally be done. I've seen a lot of projects that do the kind of dynamic, runtime code generation he's talking about - but let me quote Alan Knight, who was talking about this in the IRC channel this morning:

aknight notes, for jarober's edification, that the GlorpActiveRecord stuff does have a hasMany method
and does no code generation at all from it
and yet, somehow it works

In the Glorp implementation of ActiveRecord (which will be part of our Seaside support, by the way), Glorp reads the database schema, figures out what's there, and then sets up the ability to read the appropriate database records without code generation.

I think a lot of people have strange ideas about how Smalltalk works, simply because the image throws them for a loop. Just because the image allows for some nifty development tools doesn't mean that everything done there is utterly alien.

Technorati Tags: ,

 Share Tweet This

marketing

Marketing Genius

September 6, 2007 13:42:45.882

Chris Petrilli nailed the work that Apple's doing - using my post from yesterday as an example. At least I'm not alone: have a look at Rob Fahrni's take on things :)

Technorati Tags: , ,

 Share Tweet This

media

Consistency and Pundits

September 6, 2007 16:23:11.697

I was listening to "Buzz Out Loud" while I was out jogging today, and I had trouble keeping a straight face as Molly Wood laid into Apple for cutting the price of the iPhone - her argument being that all the early adopters were getting stuffed.

Funny - I can recall many, many BOL episodes where Wood carped about Sony's refusal to drop the price of the PS3. Beyond her deep dislike of all things Apple (not to mention her deep lack of awareness - she had no idea that Finder could show thumbnails of images, for instance), I'm not sure what's going on here.

 Share Tweet This

screencast

Smalltalk Daily 9/7/07: Using the XML-RPC Client

September 7, 2007 8:23:28.682

On today's Smalltalk Daily, we take a look at the XML-RPC library from the client side.

Technorati Tags: ,

 Share Tweet This

general

TGIF

September 7, 2007 16:27:45.950

I don't know why, but even though it was a short week, it feels like it lasted forever. That might have something to do with my mornings - my daughter is now in high school, so our wake up time shifted to 5:45 AM. To say that I dislike that time of day would be a gross understatement :)

Anyway - I have been chipping away at the main website this week - things are changing over there, and you should see a cleaner website starting to emerge. It's a work in progress :)

 Share Tweet This

humor

A Cynic's View of Relational Databases

September 7, 2007 16:48:22.139

I may have spent my career avoiding databases, but this guy takes it to a whole other level :)

However I've become increasingly convinced that relational databases are some kind of sinister death cult who want to lure you in and get you to wear strange stripy clothes with shiny shoes and give all your money to your superiors in the cult. And if you don't conform, or if you conform too well, you just know you'll end up in a pit of dismembered bodies back in the woods somewhere.

Heh.

 Share Tweet This

logs

Weekly Log Analysis: 9/8/07

September 8, 2007 11:12:31.876

Is it the second week of September already? BottomFeeder downloads went back to a nice clip: 230/day. The distribution:

PlatformBottomFeeder Downloads
Windows812
Update130
Mac X126
Linux x86114
Solaris102
CE ARM60
Mac 8/953
HPUX42
Windows98/ME34
AIX33
Linux Sparc30
Linux PPC28
SGI21
CE x869
ADUX7
Sources6

Windows downloads sure popped :). On to the HTML accesses:

ToolPercentage of Accesses
Mozilla56.1%
Internet Explorer29.8%
MSN Bot7.2%
Other4.2%
Opera2.7%

And the Syndication numbers:

ToolPercentage of Accesses
Mozilla23.2%
BottomFeeder16.2%
Internet Explorer11.8%
Vienna8.5%
Net News Wire6.5%
Google Feed Fetcher6%
Other4.7%
Safari RSS4.4%
FeedOnFeeds3.8%
BlogLines3.5%
NewsGator3%
JetBrains1.8%
Python1.4%
News Fire1.1%
iTunes1.1%
Java1%
MSN Bot1%
Jakarta1%

 Share Tweet This

podcasting

Podcast Later

September 8, 2007 15:41:53.773

I'm still waiting on one audio segment for the podcast - this week is episode 52, meaning we've been at this for a year. Gievn that, I decided to compile an entire episode out of snippets from the year. I like it, but ten again, I'm biased on this :) We'll be back next week with a regular episode, and I should be able to get this one out late tonight or early tomorrow.

 Share Tweet This

seaside

Browser Quirks and Seaside

September 9, 2007 12:55:17.415

Ken Treis explains an IE issue that might give you some grief with one field forms and Seaside - the vagaries of how it gets submitted to the server, depending on whether the user hit "Enter" or used the mouse.

I've learned more about browser portability issues than I would have liked to believe existed over the last couple of years :)

Technorati Tags: , ,

 Share Tweet This

history

Reading History Backwards

September 9, 2007 13:21:16.407

You have to love the elitist idiocy of Time Magazine's "50 worst cars of all time list" - check out page 2, where they list the Model T - and get a load out of the summation:

And by the way, with its blacksmithed body panels and crude instruments, the Model T was a piece of junk, the Yugo of its day.

Um, right. Maybe the author (Dan Neil) should consider the era it was built in, the materials available, and the goals Ford had at the time - which was to make the car affordable for enough people to make it mass marketable. When you look at things in history, it's often tempting to apply modern standards - but it's not fair. The people who lived then had different ideas, and had grown up with different constraints.

I rate this particular article one of the 50 worst of all time for not remembering the basics of history and journalism.

Technorati Tags:

 Share Tweet This

podcast

Industry Misinterpretations 52: One year of Misinterpretations

September 9, 2007 14:17:32.916

It's been a full year since we started doing "Industry Misinterpretations" - so with that in ind, I've put together a one year compilation - segments of all the preceding episodes, mashed together in what might be considered a humorous fashion. There's a new jobs report and a new design minute, and I have those up front in ths episode - so if that's all you want to hear, just stop at 3:55 in.

We'll be back next week with the start of year two - thanks for subscribing, and of course, if you have feedback, send it to smalltalkpodcasts@cincom.com. You can also find us on iTunes, Facebook, and Podcast Alley.

Technorati Tags:

Enclosures:
[http://www.cincomsmalltalk.com/audio/2007/industry_misinterpretations-09-09-07.mp3 ( Size: 13767390 )]

 Share Tweet This

web

Outliers

September 9, 2007 18:32:56.535

There are people who are connectors, and then there's everyone else. Scoble is a connector, and that makes him an outlier in terms of Facebook usage:

That brings me to Techquilashots. He repeats something a lot of people have said without really understanding what I’m doing with Facebook: “But the problem Robert (and others with tons of friends -- even if it’s 100) is that you don’t really care about the actions of all those people — and in FB apps, you really want to see the actions of certain top friends of yours.”
Totally untrue. I regularly just click around on my friends social graph. Not just the “big name” ones that I recognize. But especially the ones I don’t recognize. I want to know what connection we have and I want to discover new people before someone else does.

I think Robert needs to step back and recognize that the way he uses tools like Facebook is very, very different from the way most people use it. That doesn't make him weird - but it does mean that he needs to recognize his own status as something of an outlier from time to time.

Another example: he mentions from time to time that he's subscribed to over a 1000 news feeds. Heck, most people I know think I'm nuts, being subscribed to 290.

Technorati Tags: ,

 Share Tweet This

windows

Best Vista Notebook: A Mac

September 9, 2007 18:38:42.521

I find this highly amusing - from PC World:

The fastest Windows Vista notebook we've tested this year is a Mac. Try that again: The fastest Windows Vista notebook we've tested this year--or for that matter, ever--is a Mac. Not a Dell, not a Toshiba, not even an Alienware. The $2419 (plus the price of a copy of Windows Vista, of course) MacBook Pro's PC WorldBench 6 Beta 2 score of 88 beats Gateway's E-265M by a single point, but the MacBook's score is far more impressive simply because Apple couldn't care less whether you run Windows.

I'm using XP Pro on my MacBook (under parallels), but I might install Vista at some point - if only to be able to demonstrate our product on that OS.

Technorati Tags: , ,

 Share Tweet This

sports

Down to October

September 9, 2007 18:53:27.131

It looks like it's all going to come down to October: The three games between the Yankees and Red Sox next week will be meaningful: if the Yankees sweep that series, they could take the AL East:

Even if that doesn't work out, things are looking good in the wild card race:

We may well be looking at another Yankees/Sox AL battle in October :) Oh, and I think all of A-Rod's detractors can sit down now, too.

 Share Tweet This

smalltalk

Reading Smalltalk

September 10, 2007 6:21:43.467

Andres Valloud points to this paper by Wilf Lalonde (PDF), which explains Smalltalk syntax for C/C++/Java developers.

 Share Tweet This

smalltalk

It's about ease of use

September 10, 2007 6:28:27.540

This is very, very true:

What the PARC guys got that the PC guys didn’t was that the computer is much better at conforming to our mental models of how things should work than we are at learning its model. If programming a computer is just a matter of telling it what to do, then anybody can be a programmer. If, instead, it’s a matter of telling the computer how to do it, then programming is going to be a lot harder. Computers are fast enough for this conceptual gap to be bridged, but no compelling solution is available yet.

Of course, the way things turned out is much better for the Enterprisey, "if it isn't hard, it isn't work" types, who love long meetings and inscrutable code. For the rest of us? Not so much.

Technorati Tags: ,

 Share Tweet This

windows

Office App Competition

September 10, 2007 6:36:21.718

The Office Application space is no longer dull - Nick Carr notes that Cap Geminii is pushing Google Apps:

In the clearest sign yet that Google Apps may be about to make the leap from small businesses to large ones, a major systems consulting firm, Capgemini, is announcing today a partnership with Google to push Apps into the enterprise market. Capgemini is incorporating Apps into its outsourcing service for managing companies' PC networks. It currently manages about a million desktops for corporate clients. In a statement that is sure to annoy Microsoft, which has long dominated business PCs with its Office suite, Capgemini says that Google Apps represents "the next-generation communication and collaboration tools [workers] need to manage electronic communications, share and publish information, and stay connected while on the go."

Over on the Mac, iWork has added a spreadsheet, which makes that suite much more compelling as well - and if you run Parallels, you can open Word docs (et. al.) directly into iWork from your Windows mail client.

Microsoft's tidy little office monopoly is getting some actual competition, and from more than one direction. Even if you like MS Office, this is good news - recall that Internet Explorer has only improved when competition (Netscape in the 90's, Firefox now) has shown up.

 Share Tweet This

books

Osman's Dream

September 10, 2007 9:09:44.960

Osman's Dream I just finished "Osman's Dream", a history of the Ottoman Empire. While it was a tough slog in some places, I found it to be an interesting look at one of the least understood - but longest lasting - empires in history. Perhaps the most interesting thing is this: the empire almost didn't outlive its birth. I had already read a history of Tamerlane, and between that book and this one, it's clear that the Ottoman Empire nearly died in the wake of Tamerlane's 14th century expansion.

It lived on though, and grew right up until the end of the 1th century, when - like many other empires (Russian, Austro-Hungarian, British) - it went into long term decline. There were many reasons for that, and the book does a good job of explaining the problems that were specific to the Ottomans. For instance - as they lost non-Muslim peoples (during wars with the Russians, British, French, Italians, and Austrians), they lost their tax base. That was an artifact of Islamic law as they ran it, where taxes fell more heavily on non-Muslim peoples. As they lost that population, they lost revenues, and it was hard for them to cope with that.

The end game of the empires was interesting, too - apparently, the Ottoman sultans never really played up their role as Caliph of all Muslims until close to the end. Their position as head of the Empire was seen as far more prestigious until they started to collapse inward, and lost their non-muslim populations. That kind of throws a monkey wrench into some of the recent readings of history from some quarters, but it makes sense, and seems to be well researched.

In any event, I recommend the book to anyone who's interested in learning more about the Ottomans.

Technorati Tags:

 Share Tweet This

smalltalk

Ruby and Smalltalk Idioms

September 10, 2007 12:40:47.601

Alan Knight adds some light to last week's heat on Smalltalk, Ruby, and meta-programming.

Update: Blaine Buxton weighs in.

Technorati Tags: ,

 Share Tweet This

screencast

Smalltalk Daily 9/10/07: Web APIs

September 10, 2007 13:12:28.601

On today's Smalltalk Daily, we look at using web APIs - specifically, the Google Calendar API. For starters, we look at the client login authentication.

Technorati Tags:

 Share Tweet This

cst

Cincom Smalltalk Product Direction: UI

September 10, 2007 20:32:30.558

As most of you know, Cincom embarked on the creation of a new user interface framework for VisualWorks in 2001. It is now 2007, and this framework, Widgetry, has been in development (but not formally released) for six years. At this point in time, our customers have many questions:

  • When will UI building tools appear?
  • When will Cincom start migrating the development tools to Widgetry?
  • How will we migrate our applications to Widgetry?

In looking at those questions, we stepped back and took a look at Widgetry and its goals. Widgetry was built as an entirely new framework, without concern for backward compatibility. Unfortunately, in making that decision, we had not adequately thought through the issues of migration (both on our part and that of our customers), tool support, and maintaining two large frameworks simultaneously for a lengthy period. As is clear from the length of time it has taken to bring Widgetry to this initial release status, still without tools or documentation, we also underestimated the effort involved in the task. When we began looking at migrating our own tools forwards, it became clear that we would have had to commit a large percentage of the total development effort to this task alone, sacrificing numerous other areas that are also important to our customers.

We have come to the conclusion that the leap to Widgetry is simply too large for most of our customers, and have decided not to make it. Widgetry does offer improvements over the existing VisualWorks UI framework, and we have invested a lot of time and effort into Widgetry - but that time and effort is not nearly as large as what would be required of our customers in a migration effort. We understand that many of our customers have been patiently waiting for the improvements promised in Widgetry, and we will be using Widgetry as a base from which to incorporate improvements for the UI in VisualWorks in a more incremental fashion.

What does this mean for you, as a user of VisualWorks? It means that your existing UI tools and applications will continue to work, and will not need to be migrated. However, it does not mean that there will be no improvements. In the next release (scheduled for January, 2008), improvements to existing tools (the Refactoring Browser in particular) will appear. Incremental improvements to the UI will start to appear after that, including:

  • New and better widgets, incorporating some of the enhancements made in Widgetry
  • Improved UI building tools - the painter tools will get updated and improved incrementally
  • Improvements to the framework itself - many of the known issues in the underlying UI libraries will be incrementally addressed

We think that incremental improvements will serve our customers - both existing and new - better than a large leap into a new and incompatible framework. Widgetry will stay in the “preview” directory on the installation media, and will remain available for anyone who is interested in using it. It will not be supported by Cincom, however, and will not be a direct part of our future plans for the product. In the future, we will be avoiding long term projects that require lengthy lead times before customers can examine and explore them. We are committed to working more closely with our user and customer community, and we apologize for the pain and confusion caused by this decision - but we think it’s the best one for our customers

If you have feedback on this, please feel free to send it directly to me, James Robertson, the Cincom Smalltalk Product Evangelist.

Technorati Tags: ,

 Share Tweet This

java

Dynamic Languages on Static VMs

September 10, 2007 22:39:47.886

Blaine Buxton explains why Groovy is slow on the JVM: it has nothing to do with the language, and everything to do with the environment:

It's not that the above posts are bad. I think they are wonderful. It gives something that the Groovy guys can use to make their product better. And that's good for all of us wanting to be dynamic in a static world. But, those numbers will also be used to prove why you shouldn't use dynamic languages. And that's sad. It's all come full circle. I hope I am wrong, but I doubt it. The numbers are not bad because dynamic languages are slow, but because trying to get them run on an architecture not built with them in mind.

Technorati Tags: ,

 Share Tweet This

cst

UI Explanations

September 11, 2007 6:30:02.897

Travis takes a look at the existing UI framework in VisualWorks, and what's right and wrong with it

Update: Michael Lucas-Smith adds some thoughts

Technorati Tags:

 Share Tweet This

events

Sixth Anniversary

September 11, 2007 7:45:04.626

I remember where I was, and what I was doing:

9/11

Technorati Tags:

 Share Tweet This

screencast

Smalltalk Daily 9/11/07: Web APIs II

September 11, 2007 12:47:45.698

On today's Smalltalk Daily, we plow forward with the Google calendar example - using the authentication information we got yesterday, we query an API and get back some data.

There's more to it though - Google is using a custom authentication scheme, rather than Basic or Digest. So, to use the API we first have to create a custom AuthenticationPolicy class, and plug that in. I need to thank Martin Kobetic and Tamara Kogan, two of our engineers, for their help - without them, this screencast would not be done.

Technorati Tags: , , ,

 Share Tweet This

cst

We appreciate the Feedback

September 11, 2007 19:57:12.829

We appreciate all of the feedback that's come in - positive, negative, and otherwise. We understand that the decision announced here yesterday on Widgetry was a difficult one to understand, and we realize that our customers and community are going to have a variety of opinions on the matter. I'd like to take the time to do two things:

  • This decision is not in any way meant as a slam on Sam Shuster, who was the main (usually the only) developer for Widgetry. Sam put in a lot of effort, and that is appreciated - even if it doesn't look like it right now
  • Cincom Smalltalk will be moving forward, with incremental improvements in the existing UI tools and frameworks. For instance: here's a screen shot of the updated inspector, running on my Mac:

Other improvements will be coming, sooner rather than later. The largest mistake we made over the last few years with Widgetry was not working to build tools in it as we built out the framework. That's not a mistake we will make again.

Technorati Tags: ,

 Share Tweet This

screencast

Smalltalk Daily 9/12/07: Google Calendar Feed Handling

September 12, 2007 7:20:38.696

On today's Smalltalk Daily, we continue with the Web API work - we take the feed we got yesterday, and use the Smalltalk syndication library to get it into a Feed Object.

Technorati Tags: , ,

 Share Tweet This

news

Accidental Complexity

September 12, 2007 9:03:58.565

The topic of "accidental complexity" came up last week in a few posts about Smalltalk, Ruby, and code generation - but this NY Times piece speaks to the real thing - massive complexity due to the ad-hoc dependencies of various networks and services:

When the electrical grid went out in the summer of 2003 throughout the Eastern United States and Canada, “it wasn’t any one thing, it was a cascading set of things,” Mr. Bellovin noted.
That is why Andreas M. Antonopoulos, a founding partner at Nemertes Research, a technology research company in Mokena, Ill., says, “The threat is complexity itself.”

Some people will read this and advocate strict planning, but that's not going to do it. What we really need are systems that react better to error states - instead of "throw my hands in the air and die", "try to move on as if nothing happened" is probably a better answer in an awful lot of these cases. Not all, to be sure - there are catastrophic error states that require shutdown. However, a bad network card in one system really shouldn't be one of them :)

Technorati Tags: ,

 Share Tweet This

humor

Bad Copies Department

September 12, 2007 15:01:40.531

Having a bad copy of Smalltalk isn't enough - now Sun has a bad copy of the Smalltalk balloon :)

 Share Tweet This

news

Missing the Point

September 12, 2007 15:28:41.633

Nick Carr completely misses the point on sites like Digg, Reddit (et. al.) - there's a reason "top stories" in traditional media tend not to hit big there: we already know where to find those stories. That simple thought apparently hasn't crossed his mind:

So what happens when "the people formally known as the audience," as the citizen journalism hypesters like to say , take charge of the dissemination of news? A study released today by the Project for Excellence in Journalism provides a hint, and it's not exactly encouraging.
The researchers examined the top stories appearing in the crowd-edited news sites Digg, Reddit, and Del.icio.us during a week in June and compared them to the top stories covered by the mainstream media. They found that the stories in the user-driven sites were "more diverse" but also "more fragmented and transitory." Hard news tended to be buried in a stream of soft news, gossip, product announcements and trivia.

Examining the front page of Digg in hopes of finding (say) coverage of a Supreme Court decision is like expecting to find coverage of that decision on the sports pages.

 Share Tweet This

management

Gosh forbid managers should manage

September 12, 2007 16:21:57.663

Mathew Ingram notes that businesses are starting to worry about time lost to Facebook (et. al.):

The BBC has a story about a survey that says businesses are losing hundreds of millions of dollars a day because employees are wasting time on Facebook and other social networking sites. According to this consulting firm, 233 million hours worth of work time is lost every day -- and the firm recommends that more businesses ban or block Facebook, as both the Ontario government and Toronto City Hall have done recently.

Here's a small suggestion for managers who have this idea cross their mind: How about you try doing your job? If you have staff that isn't getting assigned tasks done, then perhaps it behooves you to notice that fact and do something about it? Banning access to websites (or even the web in general) is simply an abdication of responsibility on the part of management.

Technorati Tags: ,

 Share Tweet This

podcasting

Podcast Idea

September 12, 2007 22:25:03.977

Industry Misinterpretations

I have no idea whether this will work, or whether there will be any interest. Having said that - if you have questions for us on the podcast, a cool thing would be sending us an mp3 file with your question. We'll play it, and then answer it. Interested? Email (unzipped) mp3 files to my private email address, jarober@gmail.com - my corporate address has been doing nasty things to mp3 attachments :)

Technorati Tags:

 Share Tweet This
-->