cst
January 10, 2006 22:23:57.860
I reported a few issues with the NC installer last week - it turned out to be a simple build problem in the installer itself. That was fixed, and an updated set of executables is on the site now.
Another piece of news that should go out - we now have Solaris on x86 VMs available - as part of the NC and commercial releases.
Share
travel
January 10, 2006 22:16:02.390
We had a good meeting in Cincinnati today - but boy, when the day starts with a rise from bed at 4:15 am, and you're still sitting in an airport at 10:15 pm, it's been a heck of a long day. Someone invent teleportation already :)
Share
itNews
January 10, 2006 21:48:44.280
Share
tv
January 10, 2006 12:52:25.187
PVR Wire reports that Tivo to Go is in alpha for the Mac.
Share
events
January 10, 2006 11:01:43.678
Charles points out that Norm Green of Gemstone will be presenting 64 bit Gemstone/S at the NYC STUG on February 1st. Check out their Wiki for details.
Share
smalltalk
January 10, 2006 10:55:03.992
The ESUG feed has a long list of online Smalltalk videos - check them out.
Share
marketing
January 10, 2006 4:31:29.032
Via Cook Computing, I see that MS staff are still pumping out utilities in C++:
4: Is DVD Maker written in managed code?
A: No. Yes, it is ironic that I spent so much time on C# and then spent a ton of time writing something in C++ code. Everybody on the team is a believer in managed code, and we hope we'll be able to use it for future projects.
I'm with Charles Cook on this one - more dogfooding would be a lot more impressive than the hype machine surrounding Vista. Reminds me of a ParcPlace engineer, way back in the VW 2.0 timeframe - he announced (internal mailing list) of his pride and joy - a brand new (code) browser (written in the legacy UI framework). I recall slagging him for it, for the same reasons that Charles posted this: it lets slip the idea that if even the experts still use the old stuff, there must be a reason for it.
Share
travel
January 10, 2006 4:25:46.977
Ugh. I decided to take the 5:50 AM flightto Cincinnati this morning so as to avoid an overnight stay. That doesn't seem like such a bright idea now that I'm waiting for the cab :/
Share
DRM
January 9, 2006 21:19:25.651
Via Steve Rubel, I see that Verizon has decided to take the "oops it was a mistake (damn, they noticed being whispered) about the disabling of MP3 music on their new phones:
Verizon Wireless spoke out Monday after criticisms began appearing on Web logs including PCS Intel and Techdirt regarding the new service, which the company launched last week at the International Consumer Electronics Show in Las Vegas.
Customers wanting V Cast Music who already own one of the two compatible handsets need to visit one of the company's retail locations for a software upgrade.
"Upgrade" my foot :) - it's a restoration of the previous firmware. Meanwhile, verizon claims that it couldn't possibly be to force people to re-purchase stuff they already own:
Verizon dismissed accusations on certain Web logs that this decision was made for any ulterior profit motive such as forcing users to repurchase music through the V Cast store.
Instead, the company said, the MP3 capability was temporarily disabled so that it can be integrated into the V Cast application, rather than appearing as a separate application that might confuse customers.
Yeah, right. And I'm the Queen of Romania.
Share
news
January 9, 2006 18:35:23.686
Via Rob Fahrni, I found this truly bizarre CNN story - a man tried to burn a mouse, and lost his house instead:
A mouse got its revenge against a homeowner who tried to dispose of it in a pile of burning leaves. The blazing creature ran back to the man's house and set it on fire.
I'm getting flashbacks to those margarine ads from the 70's - the ones where the woman (playing Mother Nature) would taste the margarine, and then say (ominously) "It's not nice to fool Mother Nature" when she was informed that it wasn't butter...
Share
smalltalk
January 9, 2006 18:27:31.909
David Buck is offering a two day introductory course:
I keep hearing people say that they'd like to learn Smalltalk but don't want to sign up for a full 5-day Introduction to Smalltalk course. I decided that it would be a good idea to have a quick 2 day course showing what Smalltalk is all about. This course is aimed at people who don't necessarily expect to work professionally in Smalltalk after the course but who want to learn more about object oriented programming and how it's done in other languages. I'll be holding the first run of the course in Ottawa on February 16th and 17th, 2006.
Share
development
January 9, 2006 15:51:31.670
Via Glenn Vandenburg, I came across this post from Reginald Braithwaite-Lee. It's all good, but there's a really, really good summary in there, where he explains why Rails is hot and Seaside isn't (yet):
Speaking of Rails, I'm going to conclude with my take on one reason why Rails is taking off and Seaside is not. Rails allows programmers to express the idioms they already know (relational databases, web-backed MVC, stateless event handling plus a global session store) in fewer bits.
Seaside provides a whole new idiom, continuations, that IMO is more powerful. I think you end up with an even higher signal-to-noise ratio with a Seaside app than with a Rails app. Why? Because continuations afford you a much higher degree of controller reuse.
Now, here's the catch: if you try to imagine your current application running on both Rails and on Seaside, you probably won't see much difference between the two (although they'll both be an order of magnitude better than ASP.NET). They will look the same because you designed your application with idioms that both Rails and Seaside support.
I think that captures it perfectly. What we (in the Smalltalk community) need to do is show Seaside (or something else in Smalltalk) solving a common problem in a dramatically easier fashion - as Rails has.
Share
cst
January 9, 2006 11:40:37.929
The Security libraries in VW 7.4 have been cleaned up a lot - but some of that might affect backward compatibility. This server is still running on VW 7.1, for instance - I had to do a small bit of work (with Martin's help) to get things to interoperate between the two.
Back in 7.3 and prior versions, here's how I encrypted a string using DES:
des := DES new.
cypher := des encrypt: plain with: key.
Now, in 7.4, there's been an API change. The #encrypt:with: method no longer exists. So it looked like all I had to do was this:
des := DES newBP_ECB.
des setKey: key asBigEndianByteArray.
cypher := des encrypt: plain asByteArray.
However, there was another change that this didn't account for. When the Security libraries first came in, they were rushed out the door - the code was hard to follow, and there were other issues. That's cleaned up in 7.4, but it was smacking me in the head for backwards compatibility. After a conversation with Martin, it turned out that the padding scheme used in 7.4 was correct, and that older versions had used something else. To get it to work, I juist had to wrap the DES encryption with the same kind of padding:
des := SSLBlockPadding on: DES new.
des setKey: key asBigEndianByteArray.
cypher := des encrypt: plain asByteArray.
And it all worked. Which means, I can now put together a dev build of BottomFeeder using 7.4. I'll get to that later today, or possibly Wednesday (I'm heading to corporate for meetings tomorrow).
Share
events
January 9, 2006 11:28:56.930
If you're in the LA, the STUG is meeting this evening.
Share
community
January 9, 2006 9:44:23.683
Blaine reports that the Omaha Smalltalk and Ruby groups have decided that they have a lot in common - so they are combining:
The Smalltalk and Ruby user's groups have been combined into the new and exciting Dynamic Language User's Group. The new group will be about all dynamic langauges. So, we'll be talking about a lot of languages. The first meeting will be on February 7, 2006. Our first topic will be DynAPI which is cool Javascript open source project and presented by Brent Adkisson. Our meeting place and email list has changed too. I hope to see everyone! Sign up for the new list!
Share
development
January 9, 2006 8:13:08.740
Vorlath should look at Seaside, and the concept of Continuations. Bottom line - been there, done that.
Something else I just can't understand is why source code doesn't have rollbacks. Let's say I allocate an object, then I open a file, but then some kind of error happens on the third statement. How many times do we have code in C (or any other language) to check for allocation, then check for NULL on the file and delete the previously allocated object if the open file command did return NULL and so on getting bigger and bigger. We need a rollback command. Some kind of code attached to all sorts of commands so that it can go back to a previous state. Rollback code for allocation should be deallocation. Rollback code for opening a file should be to close it. Most of this should be default and supplied by the library. So if an error happens, we can rollback to a more stable state. And all this should be hidden away from normal view. If you want to change the way it works, then fine. But it shouldn't clutter the main code. It boggles the mind how backwards we are when it comes to programming. Databases have it. Why not code?
Share
sports
January 8, 2006 20:35:41.595
Watching the Bengals game, the best I could figure about the second half was that the studied film from the second half of the Giants game. Boy, did they fall apart.
Share
web
January 8, 2006 15:19:17.138
Jeremy Zawodny thinks that Feedster is toast, but Technorati will be fine. I agree with him on Feedster; the amount of broken HTML and spam in the search feeds I use has been horrible. On Technorati though? He needs to talk to Troy.
Share
DRM
January 8, 2006 15:10:51.370
Via Doc Searls, I see that Microsoft and Verizon have learned nothing from the Sony affair. I guess disabling features counts as delighting your customers, eh Scoble? Then again, these are the people who want to ram the PVP-OPM down my throat, so I shouldn't be surprised.
Share
sports
January 8, 2006 15:00:51.073
The game isn't over as I write this, but it may as well be. A botched punt return at the end of the first half allows a field goal. A stupid pass at 6:30 left in the third yields an interception and a touchdown. The offense has been asleep at the hike when they haven't been trying to give the ball away. I guess the only consolation is that Carolina won't get far if they play this way again; they should be up by 4 or more touchdowns with how they've dominated time of possession.
Sigh.
Update, end of game: Here's how I imagine the half time speech in the Giants locker room: "Guys, we mostly sucked in the first half. If we work at it, we can completely suck in the second half!"
Share
PR
January 8, 2006 13:34:01.203
Troy is pretty darn torqued at Technorati (read the post to see why) - and his post is an example of something I've spoken about a lot. Word of mouth carries a lot further than the break room these days. When you ignore problems long enough, they don't just go away - they start generating negative PR. For those without a cluestick, take a look at Dell Hell for instruction.
Share
sports
January 8, 2006 10:05:19.868
It's time to find out whether the 11-5 Giants are for real, or a fluke. Two weeks ago, they fell apart against Washington - a team that looked completely ineffective against the Bucs yesterday. What you have to realize about that Skins game is that their offense only managed 3 points by itself - the defense scored one touchdown, and laid the other one at the offense's feet. Which is why I wonder about the Giants - they let Washington walk all over them.
I guess I'll find out this afternoon. At least there's a playoff game I have some interest in to watch.
Share
logs
January 7, 2006 13:07:38.743
It's time to look at the logs again - last week, BottomFeeder downloads held steady at a rate of 352 per day. The details:
| Platform | BottomFeeder Downloads |
| Sources | 651 |
| Windows | 499 |
| HPUX | 474 |
| Mac 8/9 | 291 |
| Update | 144 |
| Linux x86 | 144 |
| Mac X | 113 |
| CE ARM | 61 |
| AIX | 19 |
| Windows98/ME | 18 |
| Solaris | 17 |
| Source Script | 13 |
| Linux Sparc | 10 |
| Linux PPC | 7 |
| SGI | 3 |
| ADUX | 2 |
| CE x86 | 0 |
I'm not sure why the source downloads jumped up - I haven't released a new build recently. Anyway, off to the HTML page accesses over the week:
| Tool | Percentage of Accesses |
| Mozilla | 53.4% |
| Internet Explorer | 26.7% |
| Other | 7.7% |
| MSN Bot | 6.8% |
| Google Bot | 3.2% |
| BottomFeeder | 1.2% |
| Opera | 1% |
Back to Mozilla being on top, which is more like my normal distribution - that likely means nothing more than a return to work after the holiday season. On to the RSS accesses:
| Tool | Percentage of Accesses |
| Mozilla | 24.4% |
| Other | 5.3% |
| BottomFeeder | 21.2% |
| Net News Wire | 9.1% |
| BlogLines | 8.7% |
| Safari RSS | 5.4% |
| Internet Explorer | 4.3% |
| SharpReader | 2.7% |
| Magpie | 2.3% |
| RSS Bandit | 2.1% |
| Planet Smalltalk | 1.8% |
| NewsGator | 1.6% |
| Feed Reader | 1.4% |
| Liferea | 1.3% |
| BlogSearch | 1.2% |
| MSN Bot | 1.2% |
| Java | 1% |
| JetBrains | 1% |
| News Fire | 1% |
| Python | 1% |
| Feed Demon | 1% |
| Google Bot | 1% |
Now, that looks like a sudden jump in BottomFeeder usage, but it's not. I looked at the "other" category, and I had forgotten that a few revs of Bf have gone out with an agent string that differs from what I've been looking for in my script. So, the numbers for Bf access should be increased by around 10% (and "other" marked down) for the last 6-9 months or so. Ahh, statistics :)
Share
smalltalk
January 7, 2006 12:10:19.366
Bob Congdon links to Dave Delay, a former Lotus Notes Developer. Dave is upset that many people seem to hate Notes, and is attempting to counter that:
In my opinion, people dislike Notes because their expectations don't jive with the original intent of the product. At its core, Notes is a runtime environment for collaborative applications, but when people complain about Notes, they are usually not talking about core Notes at all. They are talking about the Notes Mail and Calendar applications. Why does this distinction matter? It matters because the Notes core is what a lot of people really love.
Bob goes on to explain the issue, and it's something that resonates with me. I love Smalltalk, and have for years. I get the same kind of "huh?" reactions that Bob brings up on a regular basis, and it has to do with expectations.
Smalltalk, for good or ill, has a culture surrounding it. That's not really true of C, or C#, or Java (or most other languages, including newish ones like Ruby or Python). Smalltalkers don't work in their favorite code editor, followed by a compile cycle. We work in an image, crafting code one method at a time in a browser. We don't look at long listings of class definitions and methods; we look at little snippets of our system through the browser, and rely on inspectors and ad-hoc workspace testing (not to mention more formal testing) to "see" the code. Which is to say, our development culture is different than what the mainstream developer expects.
When a developer who's heard a lot about Smalltalk - perhaps after having seen Ruby or Python - can be somewhat taken aback by this culture. All their familiar tools are gone; the version control systems are unique to the product, and the development tools are embedded in the environment. We, as Smalltalkers revel in that - we understand the power this brings, and want no part in leaving it. The newbie, on the other hand, sees a learning curve and an inability to apply previous skills to the task at hand.
Which is why there's a disconnect between the Smalltalk community and the development community at large. Now, many would say that we should just "get with the program" and make our stuff look like everything else. The trouble is, that would jettison a goodly proportion of the power we have - the cost is simply too high. We could do a better job of introducing people to the environment, that's for sure. But I don't think we can walk off the mountain and be like everyone else.
Share
humor
January 6, 2006 17:46:03.964
Share
news
January 6, 2006 17:22:52.430
Steve Rubel points to one of the most bizarre rumors I've ever seen floated - the idea that former President Clinton will take over from Ballmer as Microsoft President:
There are some rumors circulating that Steve Ballmer is about to step aside at Microsoft as its day to day operations head to make room for another president.
Bill Clinton.
Here's what I know. Sources near Microsoft headquarters report that over the past few months the ex cigar smoking prexy has made trips to Microsoft headquarters and has been interviewing for the top slot as the company looks at ways to transform themselves for the future. Given the global implications of technology, having a leader that is an ex country president would be massive.
Is April 1st early this year, and I just didn't get the memo?
Share
tv
January 6, 2006 14:54:14.788
Fox is ahead of the curve:
News Corp.'s Fox Entertainment Group has worked a deal with its sister company DirecTV to offer shows on demand, but this arrangement is something different from what you've come to expect. The deal involves the FOX network as well as its cable/satellite FX channel, and will see the company offering on demand content not only following regular broadcasts, but users can pay a premium price to see content before it is aired. "Hit" Fox content such as 24 will be available after airing for 99 cents, but $2.99 pre-air episodes of FX shows The Shield, Rescue Me, It’s Always Sunny in Philadelphia, and others will be available also, typically 24-48 hours in advance.
I can definitely see the $2.99 being worthwhile for shows you really don't want to miss, and would rather not wait to see. If Sci-Fi channel were in on this, I'd definitely pop the surcharge to get an episode or two of BattleStar Galactica or Stargate before a vacation.
Share
cst
January 6, 2006 14:27:34.910
When downloading the non-commercial, I've seen a few reports of trouble, mostly with the network installer. For one, older revs of Opera seem to have a problem with the FTP operation - I was just told that the latest release works fine. The reported issue doesn't come up with IE or Firefox, so either use those, or grab the latest Opera.
Another issue reported has been particular to Unix/Linux - instead of downloading to a file, the installer starts downloading to the screen. I've changed the form we were using to a list of links - so if you see the "downloading to the screen" problem, go back, and just right-click on the link in question - that will let you save the corresponding file to disk.
One more thing - the Net Installer links are all FTP, and the installer itself uses FTP to download components. So if you are sitting behind a firewall that blocks FTP - you'll need to either open that port, or grab the download via the ISO file or the individual component files.
Share
humor
January 6, 2006 14:14:00.807
Share
analysts
January 6, 2006 10:13:18.587
James Governor thinks that the Vista launch will be huge, due to web/RSS integration:
I have a post in mind about why Vista is going to be major launch, like Win 95, which not even the Microsoft Vista team seems to believe. But its not the OS that will sell the OS, its the integrated handling of standard specifications that will sell the OS. I am not the biggest fan of integrated aggravation but its a model that works for hundreds of millions of people. RSS, rather than XML per se, may be the killer spec for Office 12.
I have my doubts. For one thing, I'm not completely convinced that Vista will actually get out the door anytime soon. Microsoft has coded themselves into a corner with the the various integrations they've done already - this release has been delayed how long already? From the Vista Office blog:
The story of Windows Vista has been a scrappy one to date. Three years late, with countless stops and starts, plus a rewrite-from-scratch, has left public confidence more than a little shaken. However, its public release towards the end of 2006 should see the operating system back on track. Here’s a short rundown on what has happened so far:
I can't see businesses taking the new Office as a serious reason to move up from XP - the ridiculous Ribbon is certainly not a reason to move from Office 2003. What actual new functionality are you getting? As to the OS, what actual new stuff is left, beyond the UI shell upgrade? Not a whole heck of lot. The "rewrite from scratch" aspect of things also bodes ill for this - partly because I don't buy it. What I would guess is that they threw the (then current build) away, tossed a few of the more ill behaved new components, and started rewriting other stuff in light of their absence. Not a confidence builder, IMHO.
Windows has reached an impasse of complexity. It's largely C++, which is a hard language to deal with - especially for large projects. Making C++ code move from point A to point B is hard, and gets harder with large codebases. Heck, once the size is as large as the Windows codebase, even a dynamic language (Smalltalk, Ruby, et. al.) would be harder to push around. You wouldn't have memory handling as a problem, but there would still be problems.
All through the late 90's, I watched people whine about how MS "had to be stopped", because they were integrating "everything" into the OS. Heck, there are entities out there who still want Media Player removed. What none of those people saw was the expanding pool of molasses that MS was sinking Windows into. The more stuff they larded in, the harder it got to move. That's why Vista is so late, and why I think many, many corporate users will hold back. It's conventional wisdom to let a new Windows release bake for a bit before upgrading now. With all the delays that Vista has had, that notion is just reinforced.
IT managers won't even consider RSS as a reason to upgrade. I rather suspect that they'll consider XP to be "good enough" for a long while yet. On the consumer end, new machines will ship with it, sure. However - I'm going to return to one of my hobby horses here, DRM. Sony and EMI have caught a lot of hell for their stupid (and hostile) DRM implementations. Well, how long do you think it will be before the first person with a legal copy of a DVD slaps it into his upgraded machine and gets told to sod off before the same kind of hue and cry arises? Not long, I'll bet.
Here's the thing - RSS is big amongst the tech-literati now, and will eventually be big for the general public. However, any positive noise based on that will be overwhelmed by the DRM nightmare that MS is lining itself up for. The "cool, I can track 100 websites" buzz won't quite match the "why the heck does my DVD look so fuzzy?" Or worse: "Your monitor isn't compliant? WTF is up with that?"
We know that hostile DRM gets buzz. Unless MS gets a clue and decides against the PVP-OVM crapware they plan to include, they'll get hammered with the same cluestick that Sony and EMI are feeling. I'm guessing that they won't like it any better.
Share
space
January 6, 2006 8:29:24.287
I passed on this story early yesterday - it sounded way, way too much like an April 1st thing for me to take seriously. In the meantime, everyone else has linked to it, so here goes:
The hypothetical device, which has been outlined in principle but is based on a controversial theory about the fabric of the universe, could potentially allow a spacecraft to travel to Mars in three hours and journey to a star 11 light years away in just 80 days, according to a report in today's New Scientist magazine.
The theoretical engine works by creating an intense magnetic field that, according to ideas first developed by the late scientist Burkhard Heim in the 1950s, would produce a gravitational field and result in thrust for a spacecraft.
I still think this needs to be taken with a huge grain of salt. It comes off sounding "too good to be true" to me. I'd love to be wrong about it though.
Share
smalltalk
January 6, 2006 8:22:48.685
Lair of the Gecko contrasts Smalltalk and Ruby with Lisp:
I think that potential confusion actually highlights one of the flaws the Reddit guys found with Lisp. If you want to get started with Ruby, your only choice is the one and only Ruby. If you want to get started with Smalltalk , then Squeak and VisualWorks are the most obvious and easily accessible choices. If you want to get started with Lisp, is it CLisp? Scheme? Something else? Which version?
With Ruby and Smalltalk , it's relatively easy for someone who's an outsider to the language to figure out what to use, and to get up and running quickly. Choice is good after you understand what you're choosing between, but having too many entry points is confusing to beginners. Would Rails be as accessible if new users had to find the correct combination of OS/Ruby/Rails for their platform?
I haven't followed the Lisp vendors with any kind of regularity, so I can't really speak to the problem on that end. In the Smalltalk space, Squeak and Cincom Smalltalk (VW in particular) have become the best known and most easily available products - and the "cool" application server Seaside works in both - so either way, you can try out what people are buzzing about.
Even nicer at the moment is that the latest non-commercial version - VW 7.4 and OST 7.1 - are available for download now. A side note on that - the Network Installer can grab any version of vwnc from 7.1 forward - so if you need a back version for some reason, you can use that.
Share
cst
January 5, 2006 21:43:34.864
The latest non-commercial download is now live on the site, ready for download. If you have registered before, simply follow the link that was emailed to you and grab the new release. If you haven't, register here and then grab what you need. The network installer may well be the simplest option - it's a small download (4.3 MB for Windows, same neighborhood on other platforms), and grabs components off the server.
Update: The online installer is missing a file on the server that it needs. I should have that updated by tomorrow - I can't reach the relevant engineer at the moment. In the meantime, grab the ISO or the individual files.
Update2: The missing file has been put in place - you can use the Network Installer to grab the latest. Sorry about that!
Share
BottomFeeder
January 5, 2006 15:03:40.814
I've pushed up upgraded scripts and files for building BottomFeeder up from sources. I've updated the download page, adding two zip files:
These are slightly shortened versions of the scripts I use to build development images and deployment images. If you might want to contribute, then you want to grab the second one. If you are just looking around, grab the first. Get Store Access here. Also, you'll need to get the Software With Style components, which will require you to register on their site. Make sure you grab the 4.780 version of the software. The loads will not work with out the SwS code.
I'll be pushing out a 7.4 based dev build (and associated scripts) soon. Check back on the download page for that.
Share
smalltalk
January 5, 2006 10:07:47.660
Lair of the Gecko ponders languages:
I'd originally written a lengthy post denouncing the Lispers' reaction to the change, but before posting I did a little followup reading and saw that many of them are trying to organize an effort to provide solutions to the issues raised by Reddit, so I was forced to rethink and rewrite my stance. Bravo to them, and I wish them well, but for right now I just want to get some fun stuff done. For that reason, I'm leaning toward Rails . As with Lisp, I have doubts about how easy it would be to do Smalltalk/Seaside development on a Mac and then deploy to a Linux or BSD server, or two switch back and forth between Mac and PC for development.
Well, I can address that one. Both Squeak and VisualWorks are cross platform, and mostly seamlessly so. I do all the development for BottomFeeder on Windows, and packaging on my Linux box. If you go to the download page, you'll see the supported platforms - and I have users on all of them.
For server side applications, it's pretty simple. The Silt server running this site is developed on Linux and Windows (interchangeably). I deploy to Linux, but there are Windows uses of it, and I built a Windows executable for it, which works just fine - and it's all one codebase.
With Cincom Smalltalk VisualWorks, you can get seamless x-platform deployments. I've got a Mac Mini I use for testing, and BottomFeeder and Silt work just fine there as well - without me ever having done anything specific to support it.
Share
music
January 5, 2006 9:59:10.526
CNet News reports that album sales are down:
Tracking firm Nielsen SoundScan, which measures point-of-sale purchases across the United States, said Wednesday that total album sales--including current and catalog titles--fell 7.2 percent from 2004 to 618.9 million units, the lowest since 1996, when they were 616.6 million. After enjoying an "up" year in 2004, prompting predictions that the worst was over, sales flagged during 2005, hurt by competition from illegal downloads, rival forms of entertainment such as video games, and a lack of breakout musical acts.
Notice the blame assigned to illegal downloads? That's kind of contradicted by the upswing in digital sales they also report:
Nielsen SoundScan said overall music sales, which include albums, singles, music videos and digital tracks, jumped 22.7 percent to just over a billion units in 2005. The rise was fueled by a 194 percent increase in digital downloads.
Gee, let me apply a few nano-seconds of thought to this (which is way, way more than the clowns at the RIAA have) - sales of albums down, digital sales up (mostly singles). Looking through my stacks of CD's, mostly purchased years ago, I find that I bought a lot of albums for one song - other than a few favorite artists, it's rare that I like the contents of an entire album. I suspect that most people are the same way.
Now, ten years ago, I had to buy the CD if I wanted the one song. Now? I pop over to the iTunes music store, and grab the one song. My daughter and her friends almost never buy CD's - they get them as gifts, but their first notion is to go online. There were an awful lot of iTunes gift cards sold this year.
What we have here is a changing market. It's really a return to the 1950's music model, when most young people bought singles. The labels really liked the transition to albums, because a $12.00 album contains a lot more profit margin than a $0.99 song download. The insane thing is, they are trying to maintain the dying business model with progressively stupider actions, which makes a resurgence in album sales even less likely. It's time they faced reality.
Share
development
January 5, 2006 8:46:42.360
There's a small page on the c2 wiki that asks the question -
As lamented on AllPanaceasBecomePoison, part of what poisons a language is that if it's got any real power it soon grows ExtremelyInterstrangled. Well, political woes aside, that doesn't seem to have happened to lisp and smalltalk. How come?
The first link in the paragraph goes into how and why C++ became "poison" over time - the layers of complexity that got added eventually created this:

Why have languages like C++ (and Java, and C#) gone toward the image above, when Smalltalk and Lisp haven't? Well, both Smalltalk and Lisp are simple languages - Smalltalk has 5 reserved words and two operators. When Smalltalkers need power, they don't need a JSR that adds a new set of keywords and features to the language. When Java developers found they needed generics, it came with a layer of new complexity. When Smalltalkers needed the same thing, they found that unlimited polymorphism already provided it.
The reason Smalltalk hasn't become "poison" is that we haven't spent the last 25 years larding in new reserved words and "features". Instead, we've been writing libraries. Fortunately for Sun (et. al.), most developers really like complexity - so they keep going for the shiny new toys that come pre-packaged with inscrutability
Share
itNews
January 5, 2006 8:22:08.383
Chris Pirillo on Gates' talk at CES:
In the first broad demonstration of Windows Vista for consumers, Gates showed how Microsoft's next-generation operating system, due later this year, will offer customers powerful new advances in security, search capability and digital entertainment. He highlighted how Windows Vista will bring clarity to customers' digital world and help them easily accomplish everyday tasks, instantly find what they want, enjoy the latest in entertainment, keep their personal information safe, and stay connected at home or on the go.
He highlighted some of the most compelling consumer-oriented features of Windows Vista, including a sleek user interface, richer multitasking experiences and deep integration of search throughout the operating system. He also showed the new Windowsr Photo Gallery, which will make managing and working with digital photos easier.
That'll all be great until the first time you slap a new DVD into the machine you upgraded to Vista, believing all this hype - and get the beautiful experience of being told that you can't watch it - for your own protection, of course. Kind of like the new ColdPlay CD - the whole idea is to *cough* enhance *cough* your experience.
Share
games
January 5, 2006 8:10:55.083
If this report is true, then Microsoft has set up a serious "Steal their Thunder" moment for the PS3 launch:
Capitalizing on the blockbuster FPS from Bungie, Microsoft is planning its third edition in the epic series as a full-fledged next-gen title, to be released in time to compete with the release of the rival PlayStation 3 system -- day and date, Sony will be facing with its new system the release of one of the most anticipated games of the next-gen system wars. Further info is being kept secret by Microsoft and developer Bungie.
Share
StS2006
January 4, 2006 21:10:39.397
Share
development
January 4, 2006 20:05:53.716
Martin Fowler wants implicit interfaces in Java and C#
What would it mean to implement an implicit interface? Essentially it would tell the type system that the ValuedCustomer class implements all the methods declared in the public interface of Customer but does not take any of its implementation, that is its public method bodies, and non public methods or data. In other words we have interface-inheritance but not implementation-inheritance.
Of course, we don't have this problem in Smalltalk (or other dynamic languages). As Martin says further down:
This issue isn't a problem with dynamically typed languages. If you want to implement another class's interface all you need to do is implement the same methods and just use the object where you need it. It's also quite common to use dynamic proxies to do this kind of thing in Java, although I feel that implicit interface implementation would be more communicative.
As I've said before - you can pick power, or handcuffs. Most developers seem to prefer the latter.
Share
support
January 4, 2006 15:48:30.515
Digg linked to this frustrated consumer's experience:
A frustrated customer's experience with HP that is
still unresolved. Keep checking for updates. "The following is a
timeline detailing the absolutely terrible experience I have had
dealing with HP's tech support & customer service
department."
A few years ago, a frustrated consumer might vent to a few friends but - unless one of those friends was an influential tech reporter, the blowback was pretty limited. Now? All it takes is one post that gets picked up by Digg, or Blogniscient, or Techmemeorandum (et. al.). At that point, you have a real problem on your hands. If you don't keep on top of your support results, you may wake up one day with a huge PR problem staring you in the face.
Share
media
January 4, 2006 14:53:42.122
I wonder if Kathleen Parker would like to take back her recent column - the one that fretted about the lack of restraint on the part of bloggers, and the near superhuman efforts at accuracy that the mainstream press *cough* strives for *cough*:
Although I've been a blog fan since the beginning, and have written favorably about the value added to journalism and public knowledge thanks to the new "citizen journalist," I'm also wary of power untempered by restraint and accountability.
Say what you will about the so-called mainstream media, but no industry agonizes more about how to improve its product, police its own members and better serve its communities. Newspapers are filled with carpal-tunneled wretches, overworked and underpaid, who suffer near-pathological allegiance to getting it right.
Right. Like, say Katrina reporting. Or perhaps she meant the reporting on those miners who were trapped? Or possibly she meant that reporting on the re-introduction of wolves? I for one am so glad that those underpaid, hardworking souls in the newsroom have all those editors and fact checkers *cough* backing them up *cough*. Unlike us unrestrained bloggers. Gosh forbid.
Update: Or maybe she meant *cough* professionals *cough* like Mike Olesker, who just resigned from the Baltimore Sun due to plagiarism problems.
Share
cst
January 4, 2006 11:09:46.974
Cincom Smalltalk™ Winter Edition Now Available!
CINCINNATI, Ohio – January 4, 2006 – Cincom Systems is announcing the immediate release of Cincom Smalltalk Winter Edition, an object-oriented development tool used for mission-critical business applications.
VisualWorks® 7.4 and ObjectStudio® 7.1 comprise the new Cincom Smalltalk Winter Edition. VisualWorks is the Smalltalk toolset for building instantly portable server, Web-based, and client-server applications; ObjectStudio allows developers of native Windows® applications to create innovative solutions that model complex business processes.
What’s new with Cincom Smalltalk VisualWorks:
- New supported 64-bit VMs -- Solaris 5.x Sparc64 and Linux x86-64
- New unsupported 64-bit VMs -- Solaris 10 x86-64
- New unsupported 32-bit VMs -- Solaris 10 x86-64
- Improved Database/Store support -- Oracle Connection Pooling, threaded CTLib (Sysbase) Connection and Store support, ODBC SQL Execution improvements
- Finished THAPI support for SGI, AIX, and HPUX
- Internalization—Extended Unicode awareness from Windows to Mac OS 8/9
- Improved support for Web services, including SOAP Headers
- WebSphere/MQ Connectivity support
- Security enhancements surrounding ASN.1 and S.509
- Deployment -- RuntimePackager now works off of packages and bundles
- Plugin -- Support for Windows-based Beta IE plugin
What’s new with Cincom Smalltalk ObjectStudio:
- Ole bug enhancements
- DB bug enhancements
- XML Parser synched with the VW version
- Opentalk synched with the VW version
- Early access availability for ObjectStudio on the VW VM -- by request only
Meet with Cincom Smalltalk engineers, customers and partners at Smalltalk Solutions 2006 held in conjunction with LinuxWorld and NetworkWorld Canada, April 24-26, 2006 in Toronto, Canada. More information can be found at http://www.lwnwexpo.plumcom.ca/.
About Cincom Smalltalk
Cincom Smalltalk enables software developers to build applications quickly and efficiently, including scalable browser-based and client-server systems. Cincom Smalltalk delivers significant productivity over Java™, C#, C++, or Visual Basic®, allowing developers to bring their products to market significantly faster. For more information, please visit our Web site at http://smalltalk.cincom.com/index.ssp.
About Cincom
For nearly 40 years, Cincom's software and services have helped thousands of clients worldwide simplify the management of complex business processes. Cincom specializes in the five areas of business where simplification brings the greatest value to managers who want to grow revenue, control costs, minimize risk and achieve rapid ROI better than their competitors.
Cincom serves clients on six continents including BMW, Citibank, Boeing, Northwestern Mutual, Federal Express, Ericsson, Penn State University, Milacron, Siemens, Rockwell Automation and Trane.
For more information about Cincom's products and services, contact Cincom at 1-800-2CINCOM (USA only), send an e-mail to info@cincom.com, or visit the company's website at www.cincom.com.
Contacts:
Share
news
January 4, 2006 8:06:10.741
I will actually have a choice in cable providers soon:
In granting cable TV franchise, council seeks to foster choice Howard County residents will be the first in Maryland to have a choice between Comcast and telecommunications giant Verizon for cable television services after a unanimous vote by the Howard County Council last night to grant Verizon a local cable franchise.
With any real luck, that will include broadband choice as well.
Share
blog
January 4, 2006 7:50:29.449
Gordon tackles the syndication ID issue, and mentions in passing the scheme I use on this server:
RSS 2.0, RSS 1.0, and Atom all provide a way to handle post identity: the <guid> element, the rdf:about attribute, and the <atom:id> elements, respectively. Unfortunately, not everyone provides this metadata, or does it incorrectly: for instance, CNN doesn't give you GUIDs, the Cincom weblogs just use big integers (these look like they might be dates, but I'm not sure), and PHP.NET is re-using the rdf:about attribute on different posts. The problems, from last to first: if you identify posts by GUID, re-using a GUID amounts to modifying a post, though that doesn't seem to be the intent in this case. Using big integers is poor practice, because an integer isn't a GUID. Recall that the GU part stands for globally unique : if you use integers as GUIDs, you're just hoping that there won't be a collision, especially if your protocol is to increment a counter with each new post. If you're going to use an integer for a GUID, use a really big one (128 bits or so), and use an algorithim appropriate for the purpose: counters are not appropriate.
Well, I can explain what I'm doing here. Ideally, the GUID should probably be an URL, and the scheme I'm using would allow for that. Way back when I started the codebase, that didn't seem so obvious, so I picked something I figured would be unlikely to be duped:
guid := Timestamp now asSeconds.
Meaning, the guid for a post on this server is the creation time for the post. It's unique within the context of a single image server, and unlikely to be duplicated somewhere else. As well, in the feed itself, it's clearly marked as not being an url.
Was this a great idea in the long term? Possibly not. The scheme could produce duplicate numbers (at least across different blogs) if I started using more than one image - and, if I ever changed the code to use more than one image for a given blog, I'd have real problems. On the other hand, I'd need to make multiple changes to do the latter change, so it's unlikely to happen. As for duplicate numbers across different blogs? Yeah, that's an issue, and if I ever need to cross that bridge, I'll just change the ids to urls - the ID is used by the server to identify posts, so it would be a trivial change.
If it's a trivial change, why haven't I done it? Sheer inertia. Things work at present, and I haven't been highly motivated to fix a theoretical problem. At least, not yet.
Share
management
January 3, 2006 23:40:04.862
Scoble this morning:
OK, this one is depressing to me. It’s one thing to pull a
list of words out of blogs using an algorithm. It’s another
thing to become an agent of a government and censor an entire
blogger’s work. Yes, I know the consequences. Yes, there are
thousands of jobs at stake. Billions of dollars. But, the behavior
of my company in this instance is not right.
Scoble this evening:
I have been talking to lots of people today, though,
inside and outside of Microsoft. In every instance they asked me to
keep those conversations confidential. Why? Cause we’re
talking about international relations here and the lives of
employees. I wish I could go into it more than that, but I
can’t. Not yet. See, it’s real easy as Americans to
rattle the door and ask for change, but we don’t live there.
Saying “give them the finger” isn’t that easy
when there are real human lives at stake. And I don’t need to
spell out what I’m talking about here, do I?
One thing I’ve heard is that we spell out our terms of service very explicitly on MSN Spaces. Here in the United States we pull down stuff too at government request, like child pornography or other illegal content.
I thought he'd gone way, way too far out on a limb this morning. It's not that he said anything outrageous as a private citizen - but as an employee of Microsoft? It may be his own blog on a non-corporate server, but he's clearly identified himself as a Microsoft evangelist. Which means that - for all intents and purposes - when he speaks there, he's speaking as a Microsoft employee - pretty much without regard to any disclaimers he puts up. Which kind of explains the later post to me - I'm sure that various levels of management at MS were not pleased by the loose cannon behavior.
There's another problem with the earlier approach too. Never mind the topic - he was publicly calling his company out. Now, stop and think about that for a minute. You have an employee, and he's off calling the company wrong in public. How likely is that to gain internal allies? Even if he "wins" a battle like that, the win is pyrrhic. People who might have been on his side will be torqued by the public attack. Believe me, I know - back at ParcPlace and ParcPlace-Digitalk, I engaged in public warfare with management. It was entertaining, but it accomplished absolutely nothing - unless you count making enemies as an accomplishment.
I rather suspect that the goal Scoble had this morning became a lot harder after his outburst. There are things I disagree with my management on, but you won't see me airing them here - because that wouldn't help my chances of convincing them.
Share
DRM
January 3, 2006 16:37:54.293
My wife pointed out this post from Ed Foster of InfoWorld - he's got his prediction post up, and he's having some fun at Sony's expense:
Entertainment Industry Agrees on DNA-Based DRM Media conglomerates have put aside their wrangling over what Digital Rights Management technology to use, adopting a standard developed by Sony and its DRM experts that will provide copy protection for music, movies, TV shows, and computer programs. "The exciting thing about this technology is it employs DNA technology to make absolutely certain the user matches our records as having a valid license," a Sony spokesperson explained. "All the user has to do whenever he or she wishes to listen to a tune, play a DVD, watch a TV show, etc. is to provide just a few drops of blood for the built-in DNA testing device, which will then use the Internet to check the DNA profile match. In just a few hours, your right to enjoy the media you have licensed will be confirmed." Diabetics and others who might be constrained in how much blood they can supply will be given the alternative of providing hair roots, the spokesperson added. "It's not that anybody in the entertainment industry wants the blood of our customers -- it's just that we need it."
The tragedy is, I didn't laugh when reading it - it was more of a head shake. Before this last year, I wouldn't have believed they would install rootkits either :)
Share
DRM
January 3, 2006 16:28:03.254
Look, the clowns at the RIAA want to scare me! Go visit
grokster.com, and you'll see the
following:
The United States Supreme Court unanimously confirmed that
using this service to trade copyrighted material is illegal.
Copying copyrighted motion picture and music files using
unauthorized peer-to-peer services is illegal and is prosecuted by
copyright owners.
There are legal services for downloading music and movies. This
service is not one of them.
YOUR IP ADDRESS IS [Your IP Here] AND HAS BEEN LOGGED. Don't
think you can't get caught. You are not anonymous.
Oh my gosh! They can read the header information from a web request! What a bunch of clueless morons.
Share
marketing
January 3, 2006 16:22:11.263
If you sell products, you really need to watch anything that might pop up on the web - you can't counter everything, but you can try to get out in front of sudden memes. Take trans-fatty acids, for instance:
The Ban Trans Fats suit was eventually dropped, but BuzzMetrics' study showed that the damage had been done: Kraft and Oreo were mentioned in 17 percent and 26 percent of the 2.6 million comments about trans fats, respectively, showing that the public clearly linked the dangers of consuming processed oils with the company and one of its most famous products.
When your firm/product starts getting mentions like that - especially in a negative context - you really, really need to know about it. If your marketing team isn't looking for corporate mentions and likely keywords, you need to beat them with a cluestick.
Share
sports
January 3, 2006 16:17:39.819
ESPN has the tentative lineups for the AL (NL here) teams, noting new arrivals in bold. The Yankees have a solid lineup this year - and the defense should be good as well. All they need is the pitching to hold up - if that comes through, it should be a heck of a year in NY. So what's it look like?
- 1B: Jason Giambi
- 2B: Robinson Cano
- SS: Derek Jeter
- 3B: Alex Rodriguez
- C: Jorge Posada
- LF: Hidekei Matsui
- CF: Johnny Damon
- RF: Gary Sheffield
That's going to be a murderers row.
Share
logs
January 3, 2006 9:44:43.334
In all the holiday planning and partying, I forgot the weekly log post. It was a slow week - people are off work, or - if they aren't - they aren't paying a lot of attention. So it's no big surprise that BottomFeeder downloads dropped to a rate of 281 per day last week. The distribution:
| Platform | BottomFeeder Downloads |
| HPUX | 507 |
| Windows | 385 |
| Mac 8/9 | 362 |
| Sources | 248 |
| Mac X | 122 |
| Update | 109 |
| Linux x86 | 91 |
| CE ARM | 55 |
| Windows98/ME | 36 |
| Linux Sparc | 18 |
| Solaris | 15 |
| Linux PPC | 7 |
| AIX | 5 |
| SGI | 4 |
| ADUX | 2 |
| Source Script | 2 |
| CE x86 | 1 |
Same pattern as I've seen recently. Next up - the HTML page accesses:
| Tool | Percentage of Accesses |
| Mozilla | 49.7% |
| Internet Explorer | 27.6% |
| Other | 10% |
| MSN Bot | 7.3% |
| Google Bot | 4.4% |
| Opera | 1% |
If I had to hazard a guess, I'd say the drop in IE usage last week was due to fewer people being in the office. The smaller number of people accessing might have pushed those bot numbers up as well. Finally, the RSS tool spread:
| Tool | Percentage of Accesses |
| Mozilla | 22.7% |
| Other | 15% |
| BlogLines | 9.2% |
| BottomFeeder | 8.3% |
| Planet Smalltalk | 8.1% |
| Net News Wire | 6.6% |
| Internet Explorer | 5.4% |
| Safari RSS | 4.8% |
| SharpReader | 2.8% |
| Magpie | 2.5% |
| BlogSearch | 1.7% |
| NewsGator | 1.7% |
| Feed Reader | 1.5% |
| RSS Bandit | 1.3% |
| Liferea | 1.2% |
| MSN Bot | 1.2% |
| Feed Demon | 1% |
| Java | 1% |
| JetBrains | 1% |
| Google Bot | 1% |
| Python | 1% |
| News Fire | 1% |
That distribution looks about the same as usual.
Share
spam
January 3, 2006 8:29:46.349
If the concept of "click fraud" is something you've had difficulty wrapping your head around, check out this month's Wired - they have a nice roundup on the subject. Certainly makes the whole Splog model understandable - the affiliate advertising model is what they are exploiting.
Looks like this is unavoidable online overhead - although still better than the TV/radio broadcast model.
Share
weather
January 3, 2006 0:10:24.581
Share