development

Exceptions are harmful? Bleah...

October 13, 2003 18:59:00.270

Joel Spolsky seems to simply not get it on exceptions. This is somewhat surprising; I really like most of what he writes. In this case, he's just not right, at all. Here's where he starts:

People have asked why I don't like programming with exceptions. In both Java and C++, my policy is:

  • Never throw an exception of my own
  • Always catch any possible exception that might be thrown by a library I'm using on the same line as it is thrown and deal with it immediately.

The reasoning is that I consider exceptions to be no better than "goto's", considered harmful since the 1960s, in that they create an abrupt jump from one point of code to another.

Hmm. Loosely coupled code, anyone? Sometimes, you have exceptions at a low level in the application that really can't be dealt with, unless you are at the UI level. Here's what Joel says:

  • They are invisible in the source code. Looking at a block of code, including functions which may or may not throw exceptions, there is know way to see which exceptions might be thrown and from where. This means that even careful code inspection doesn't reveal potential bugs.
  • They create too many possible exit points for a function. To write correct code, you really have to think about every possible code path through your function. Every time you call a function that can raise an exception and don't catch it on the spot, you create opportunities for surprise bugs caused by functions that terminated abruptly, leaving data in an inconsistent state, or other code paths that you didn't think about.

Hmmm. Everything he says here about exceptions is true of events as well. Are they evil? Are they to be avoided? After all, a piece of code may not know that it will get interrupted by an inbound event. So what is an exception? It's an application error event. That's what it is - nothing more, nothing less. What's Joel's answer?

A better alternative is to have your functions return error values when things go wrong, and to deal with these explicitly, no matter how verbose it might be. It is true that what should be a simple 3 line program often blossoms to 48 lines when you put in good error checking, but that's life, and papering it over with exceptions does not make your program more robust.

Bleah. I've seen code written using that theory. It very, very quickly becomes an unmaintainable nightmare, and has errors being propagated from deep in the bowels of the application up to a level where they can be handled. This is clean how? Maybe the problem is that exception handling in Java and C++ sucks - in Smalltalk I can do something like this


answer := [self doSomeThing that Calls ManyLevelsDeep]
	on: SomeException
	do: [:exception | exception isResumable
		ifTrue: [exception resume]
		ifFalse: [self reportError: exception]

So what will that do? It will resume the exception (i.e., resume as if the exception never happened in some cases, and report the error in others. It's compact, and it's easy to follow - and it has the benefit of avoiding a whole bunch of checks on whether or not I got an error throughout the call chain. In other words, it makes the code easier to read and easier to maintain. Joel's way makes the code crusty, complex, and hard to follow. It puts error handling code up and down the call chain in places it has no business residing. What Joel is advocating is writing code that misplaces responsibility - very bad form. I don't usually disagree with him, but on this, he's just wrong. A lot

 Share Tweet This

BottomFeeder

Learn something new every day

October 13, 2003 18:43:13.585

Gordon Weakliem's old blog is here, and his new one is here. He wanted to redirect his rss feed, but Radio doesn't support issuing 301's. So he was trying to use this RSS level redirection, but found that few aggregators supported it. Well heck, I didn't even know that existed! So I sat down and added that support, just now. It's only in the dev stream of BottomFeeder, but it will be supported in the 3.2 release.

 Share Tweet This

BottomFeeder

Re: RSS Redirection

October 13, 2003 16:53:17.518

Gordon Weakliem states that BottomFeeder doesn't support this redirection feature. Hmm - Bf supports 301 redirects (Http level), but it seems Gordon can't do that - Radio is broken that way. I'll have a look and see how hard it would be to add support for the feed level redirect....

 Share Tweet This

development

RSS feeds from Vault

October 13, 2003 16:51:06.083

Eric Sink lets the world know that his company's source tool (Vault) supports the generation of RSS from checkins. I suspect that this will become a demanded feature as time goes by - the feeds on our internal source db and the VW Public Store are highly useful - it's one of the best ways to track activity!

 Share Tweet This

itNews

killing spam

October 13, 2003 8:22:46.462

Tim Bray has an idea for killing spam - it's the pay for email variant (each message costs some small amount of money to send). The only problem with the idea is that - as with most such ideas - it could easily be defeated by some unscrupulous set of offshore operators. All it would take to get around it is someone willing to charge less than the typical rate and willing to accept spammers. He has the whole digital signature and certification idea for working around that, but I don't buy it - I just don't see all email systems going to this model simultaneously, and that's what it would take. In the meantime, some of his anecdotes explain why I still don't use a spam killer - I'd rather hand delete the stuff than try to figure out what I've lost.

 Share Tweet This

BottomFeeder

Better Error recovery

October 12, 2003 10:56:59.681

I got a complaint about BottomFeeder's handling of network errors yesterday - specifically, the way it deals with getting timeouts from all (or most) of the feeds during an update cycle. The way it handled this before was to just ignore it, treating it as (yet another) transient network issue. However, some kinds of ISP issues can make this a painful choice - say your system acts like it has network connectivity, but all http requests yield timeouts. Given the time for any particular request to timeout, this can yield a very unresponsive application.

What I've done is added a counter - if 10% or more of your feeds are failing with timeouts, then the update process will be suspended, and you'll get prompted for what to do - ignore the errors and push on, or go offline. I also added a setting that allows the old behavior (just completely ignoring the timeouts) to take place - I often get transient errors that come and go, and I'd just as soon let them pass. The way Bf is now set up, that decision is up to you as the user

 Share Tweet This

movies

Action flick meandering

October 12, 2003 8:47:13.986

Charles Miller has some hot tips for screenwriters of action flicks. Seems to me that most of them should pay attention to what he has to say.

 Share Tweet This

general

Performace Review gems

October 11, 2003 11:49:32.170

Apocryphal or not, Blaine Buxton quotes some truly amusing performance review lines.

 Share Tweet This

management

Why you have to always read the license

October 11, 2003 11:46:53.684

Don Park explains why you always have to read the license for software products:

My situation is a common one in that I will have a single server driving several websites and web services, some of which will be commercial. More servers might be added later, but still located at a single data center (ServerMatrix). BDBXML license allows free use under this situation. But the software that runs on my server(s) is being written at home which is in a different state. Since my development machine is in California and my production server(s) are in Texas, I am in fact redistributing whenever I upload my software to the server(s), violating free use under BDBXML license.

Liz Pennell, Account Executive at Sleepycat Software, confirmed this but, recognizing that this might discourage developers from developing software based-on their new product, they graciously granted me free license.

Kind of makes me wonder how many people are violating licenses without knowing it. Funky....

 Share Tweet This

events

DC Area UML Talk

October 11, 2003 11:34:02.107

I'm going to miss this WOAD event, as I'll be in Tokyo that week. Here's a rundown for those of you that might be interested:

(Washington Object-Oriented Architecture and Design)

WHEN Tuesday, October 21st, 2003 at 7:00 PM
WHERE: Best Western of Rockville (in the Restaurant)
DINNER: Buffet $12.50 (includes tax $ tip - to get the space, we have to eat)
TOPIC: MDA: The Future of Modeling or Costly Diversion?
SPEAKER: David Fado (co-author of UML 2 Toolkit)

This session reviews MDA as an initiative to guide modeling. In some ways, MDA provides an encouraging road map for the use of UML 2 and modeling for information technology. At the same time, the "big tent" of MDA contains goals and aspects that will likely prove a costly diversion. As MDA is very much in formation, how it will evolve depends on how modelers and tool vendors take advantage of the opportunities presented by MDA/UML 2 and deliver success under the MDA umbrella. This talk will look both at the "future of modeling" side and the "costly diversion" side and invite comment on the best direction for MDA's future.

The talk will include an example of using UML 2 activity diagrams as a way of managing high level information about a project with greater precision.

About Our Speaker:

David Fado is a software architect for Number Six Software in Rosslyn. He is co-author of the recently released second edition of the UML 2 Toolkit with Brian Lyons. He has presented at numerous software conferences and is currently on the program committee for the MDA implementer's conference run by the OMG. Before joining Number Six, he worked with Reuters Information as well as with an offshore development group using UML to communicate about software development.

RSVP:

Put WOAD-RSVP in the subject line. RSVP by email to cpbell@sysnet.net Space WILL be limited to those who RSVP.

These events always produce a lot of good discussion - well worth attending!

 Share Tweet This

news

Gattaca arirves

October 11, 2003 11:18:33.026

Here's a fascinating "tale from the future - gene doping is being added to the list of things competing athletes will get checked for. Shades of Gattaca....

 Share Tweet This

cst

What's coming in CST November?

October 10, 2003 19:47:10.782

We are about to release a new version of Cincom Smalltalk - both VisualWorks and ObjectStudio. There's a lot of cool new things coming up - there are details on the referenced page, but here are a few tidbits:

  • Opentalk for ObjectStudio - this will allow object level communication between VW and OS applications. That means that OS developers will be able to expose their business objects to all the interfaces supported by VisualWorks
  • New Platforms! We are releasing WinCE support in preview (beta). Check the wiki page for processor details
  • Squeak plugin support in the VM - the plugin support that Squeak uses is now available to VisualWorks. This allows for tighter OS integration, if desired

And there's lots of other good stuff as well. Check the Wiki page for details. We expect to release in November.

 Share Tweet This

cst

How to stop forks in their tracks

October 10, 2003 19:41:48.870

Travis Griggs explains how to prevent code forks when you have more than one person working on a project. You can merge a published version with what's in your image, and then - via reconciling with what's in the db (i.e., making sure that Store versions your code based on the right published version), you can avoid a code fork.

 Share Tweet This

development

Charsets and encodings, oh my!

October 10, 2003 16:18:34.850

Joel on Software tells you everything you always wanted to know about encodings and character sets, but were afraid to ask....

 Share Tweet This

BottomFeeder

Bf - now with filtering

October 10, 2003 13:36:09.528

I added filtering capabilities to BottomFeeder this morning - both a global capability, and a per-feed capability. The per-feed filter will override any global filter you have set. This is still early development on this - there may be some glitches. I'm pushing it out in the dev stream in order to get feedback

 Share Tweet This

law

The RIAA - worse than you thought

October 10, 2003 8:48:08.470

Doc Searls reports on something Glenn Reynolds posted:

AT LUNCHTIME TODAY, I moderated a panel discussion on digital downloading and music, featuring a bunch of musicians, songwriters, and industry people from Nashville. Here's the scary bit: one of the industry guys said that their big legislative priority is to try to create a regime where you have to register with a unique, verifiable ID to access the Internet.

Just when I think those morons have gone over the top, they say or do something crazier....

 Share Tweet This

news

WiFi suit?

October 10, 2003 8:43:17.288

Wired News reports that parents in an Illinois district are suing the local scholl district over WiFi at the schools. Here's what should be asked of these clowns:

  • How many of you have cell phones?
  • How many of you have walk-around phones?

Sheesh. Luddites everywhere...

 Share Tweet This

music

Huh - what's up with that?

October 10, 2003 8:29:48.483

Just go read what Doc Searls posted on the latest silliness by the music industry. I can't possibly improve on his take :)

 Share Tweet This

general

Wiki "hackers"

October 10, 2003 8:28:04.115

Another report of "wiki hacking". As Dave Johnson says, why do these morons bother? Even better are the idiots who upload scripts to the Cincom Smalltalk Wiki in hopes of cracking the server. Too bad dudes - the server is a Smalltalk web server, immune to those kinds of attacks.

 Share Tweet This

general

DRM Costs

October 9, 2003 19:37:50.060

Ted Leung points out what the real costs of going overboard with DRM are - the RIAA likely won't understand it....

 Share Tweet This

java

Re: RE: File Access in EJB

October 9, 2003 16:18:31.077

I linked yesterday to a post on the difficulties of doing file i/o from a server based EJB app. Today, I see more oddball work arounds to this problem. Here's a cluestick - it's a server side app. Presumably, the hosting company can set it up such that your application only has permissions to diddle in your directory (you know, using ultra-complex stuff like file permissions). So why again do you have to jump through hoops to do this? Maybe because the EJB Spec is just plain stupid in this area?

 Share Tweet This

java

JNI is that hard?

October 9, 2003 15:23:46.154

Wow - I had no idea that javah sucked so bad:

Probably the biggest problem with the current javah-based package is the tremendous difficulty using existing native libraries - there's no reverse version of javah that sucks up existing header files and produces a set of Java classes filled with native keywords that automatically binds.

DLLCC in VW does parse header files and produce classes and bindings. What were those Sun guys thinking? And they say that us Smalltalkers live on an island....

 Share Tweet This

news

Think your job stinks?

October 9, 2003 14:07:46.969

This stinks worse than your job. You have to read it to believe it....

 Share Tweet This

development

Embrace Extends, or Extend Embrace?

October 9, 2003 10:24:08.026

Phillip Brittan complains that Microsoft is is moving purposely away from the browser in order to push server managed fat clients. I'm wondering how that's different from the original Java vision of server managed applets running on the client. I guess it's different because it's not Java as the fat client....

 Share Tweet This

development

How to work around Eolas

October 9, 2003 8:35:58.636

Don Park explains that there are three ways to deal (technically speaking) with the Eolas patent:

  • Generate <OBJECT> tag using JavaScript
  • Add a special - i.e., non-standard - attribute
  • Require users to click Ok in a dialog box before proceeding

Those are some ugly choices. The first blows, because so many people have JavaScript turned off (if you run a Windows based software firewall, it's likely off by default). The second seems less awful - after all, IE is dominant. The only problem is, usage of other browsers is high enough that this will cause grief. The third is just annoying as heck.

As I reported yesterday, Eolas is now trying to get an injunction against IE distribution. This shouldn't make users of Netscape, Opera (et. al.) happy, because those browsers have exactly the same problem with respect to the Eolas suit. This whole thing just stinks, and I'm amazed that it hasn't been sunk yet by a prior art showing.

 Share Tweet This

law

IE changes, or IE stops?

October 9, 2003 0:06:07.100

So which happens first? The MS changes to IE, or the full stop to IE distribution that Eolas is asking for? If this thing goes forward, the whole web could take a hit....

 Share Tweet This

java

Why EJB is rare in actual usage

October 8, 2003 16:10:01.348

Read this and you'll see why - simply accessing files from an EJB application is a pain. It's amazing how much work you apparently have to go through to do so:

Of course, many types of file access can be worked around. For example, configuration information can be placed in LDAP, JNDI, a database, or even properties files delivered inside your JAR files that get loaded as a resource through the classloader. In those circumstances where accessing files is a requirement, then other solutions include loading the file through the servlet container, having it sent to the EJB tier via messaging, downloading the file from a webserver through a socket connection and so on.

These are all workarounds for the programming restriction but at the end of the day I think you have to be pragmatic.

The sort of pragmatism we see is lots of use of JSP's, and not a lot of use of EJB. This sort of thing explains a lot of that. Of course, I use Smalltalk Server pages, so the entire problem is avoided....

 Share Tweet This

humor

I've seen this business plan

October 8, 2003 13:15:40.169

I've seen this business plan. Worse, I've worked with that business plan :)

 Share Tweet This

continuations

Chris Double explains continuation based web apps

October 8, 2003 8:33:40.390

If you still don't follow what continuations are or how they are used in a web app, go read Chris Double's post now. It gives a simple example of how and why they work.

 Share Tweet This

itNews

Globalized Outsourcing

October 8, 2003 8:29:04.381

Outsourcing isn't just an American issue - Don Park reports that call centers in Korea are being outsourced to China. I guess "low cost" is a relative term.....

 Share Tweet This

general

Word Bullets

October 8, 2003 8:27:00.250

 Share Tweet This

open source

Professional Open Source?

October 8, 2003 8:21:00.809

Ted Leungdoesn't like what he's hearing, but it looks like market-speak has gained a strong foothold in the Open Source world. Listen to Marc Fleury describe what the JBoss team intends to do:

With the deals announced Monday, JBoss Group will now sell services for software from the Tomcat, JGroups, Hibernate, Javassist and Nukes projects. As part of the arrangement, the lead developers from Tomcat, JGroups and Hibernate will become JBoss employees, and the project heads of Javassist and Nukes will work with JBoss Group on a consulting basis.

These open-source projects will remain independent in that development on each product will continue under the auspices of their respective leaders.

The move will allow JBoss to ensure that each open-source product works well with the JBoss software and expand the potential revenue the company generates from services, said Marc Fleury, the company's president and founder.

"We go out and hire these guys and turn them into professionals, as opposed to an amateur or a hobbyist," said Fleury. "Other (companies) expand by acquisition or by deepening their (software) stack. We expand by recruiting those projects."

Aside from the "professional Open Source" terminology, this is a familiar business plan - think any large consulting company and their various software "practices" - they tend to focus on a business domain - and in doing so, they tend to focus on a few software products. This looks an awful lot like that model carried over to open source. It will be interesting to see how well the model translates.

 Share Tweet This

BottomFeeder

A Small UI change

October 8, 2003 1:32:59.401

I made a small UI change in BottomFeeder - so far, only visible in the dev stream. On the Mac platform, the font used in the listbox is bold - which means that having new items bolded isn't meaningful. What I've done is made new items appear in red (as well as bold) to add an additional highlight. That should make new items in feeds much easier to spot.

 Share Tweet This

smalltalk

Alan Kay speaks

October 7, 2003 22:38:05.660

 Share Tweet This

sports

Scary Moment in the playoffs

October 7, 2003 13:43:57.393

Last night's game between the Red Sox and A's was great baseball - it was a close game, coming right down to the final out - it may be the case that I want the Yankees to demolish the Red Sox, but I can admire gritty play, and that's what we saw last night. The collision between Damon and Jackson was scary too - I shuddered every time they ran the replay. The amazing thing was watching Garciaparra keep his cool - picking up the dropped ball and getting the runner at second in the middle of all that. Here's hoping Damon makes a full and fast recovery - that was an ugly accident, and one that I wouldn't wish on anybody....

 Share Tweet This

smalltalk

Blog Challenge In Squeak?

October 7, 2003 10:31:36.019

Clarence Westberg mentions that there's a challenge to build a blog server in Squeak. They should feel free to look at the code that dives this site :)

 Share Tweet This

development

Problems with Demos

October 7, 2003 9:41:43.165

The BC4J blog points out some issues with stock vendor demos. The poster states that many client apps he's seen show that developers haven't looked at the demos - and the post actually explains why, without realizing it:

Some time ago, one of our developers on the JClient team took a similar amount of time and built a demo that illustrates virtually all of the different kinds of JClient bindings for Swing-based UI's that we support.

This is a common thing for developers to do - create the kitchen sink demo that shows off every feature. The trouble is, most developers open those demos once, say something like "wow, that looks like too much to digest", and then run off and just wade through the code as best as they can. This is an industry problem; I've seen it as often in Smalltalk demos as I've seen it elsewhere. What developers really need is short, simple demonstrations of common things they'll use, not baroque examples of every possible use. The former will get looked at and digested; the latter will get ignored.

 Share Tweet This

news

the political blogs...

October 7, 2003 8:33:54.123

Instapundit reports that the Bush campaign has a blog. I'm not terribly impressed with any of the campaign blogs I've seen (I subscribe to most of them). Why not? Well, they are to blogging what the marketing department is to communications - completely packaged. This isn't a big surprise; a political campaign is going to want to stay on message. On the other hand, one of the great things about blogs is that they enable a more open form of communication - without all the pre-processing and editing that you get from the marketing process. Don't get me wrong - that pre-processing has a place, and it's crucial - one of the reasons Java broke through in 1995-1996 was the huge marketing promotion from Sun. It's not that marketing isn't needed - it is. But is marketing needed in a blog? That I'm not too sure about. Why exactly do I want to read blow-dried words in a blog when I can already find them in my newspaper? There's been a lot of talk about how the various campaign blogs are some kind of breakthrough event, but I'm just not seeing it...

 Share Tweet This

rss

Jon Udell on aggregators

October 7, 2003 8:21:15.429

 Share Tweet This

BottomFeeder

BottomFeeder for the Mac

October 7, 2003 8:13:32.107

If you have had trouble with BottomFeeder on the Mac platform, see Travis' instructions. I'd set it up better myself, but I don't have a Mac for packaging....

 Share Tweet This

sports

What if...

October 6, 2003 16:45:50.969

What if the Red Sox and the Cubs actually advanced to the series? Well, these are the likely results:

  • A City would have to be sacrificed to the deity of your choice
  • The game just go to extra innings to the point where so many players had dropped dead that it wasn't possible to carry o

 Share Tweet This

examples

Nifty BOSS Helper

October 6, 2003 11:50:36.016

I've posted on BOSS schema migration before, and now Dave Murphy has published a nifty package in the public store - BOSSClassMappings - that will help out in wider circumstances. The standard migration mechanism works for the straightforward cases - i.e., you have added/removed/changed instance variables - the most common being that version 1 of a class has N instance variables, and version 2 has N+1. But what if the change is bigger? What if you either:

  • Moved a class or classes to a different namespace?
  • Renamed a class?

You can handle these in schema migration code, but with complexity. What Dave has done is publish a package that makes it easier. Normally, I open an existing BOSS file for reading like this:


stream := 'somefile.bos' asFilename readStream.
bos := BinaryObjectStorage onOld: stream.

With Dave's changes, you do it like this:


mappings := Dictionary new.
mappings at: 'Foo.Bar' put: 'Baz.Bar'.
stream := 'somefile.bos' asFilename readStream.
bos := BinaryObjectStorage onOld: stream withMappings: mappings.

What you'll then get is that all instances of class Foo.Bar will map over to instances of Baz.Bar. This is something that should make the work Rich Demers is doing on BottomFeeder much easier to integrate - he's building a brand new domain, and the current save files reference the current one. What this also does is make refactorings less onerous in the face of an installed base - one of the reasons I haven't rearranged the existing domain was the hassle of dealing with this problem. Nifty piece of work.

 Share Tweet This

events

SCRUM and Smalltalk - talk by Joseph Pelrine

October 6, 2003 10:03:26.426

Joseph Pelrine is giving a talk on SCRUM and Smalltalk in Switzerland:

SSUG the Swiss Smalltalk User Group in collaboration with CHOOSE is glad to invite you to the next half-day tutorial given by J. Pelrine (MetaProg GmbH):

"SCRUM: A Methodology to Keep the Team Going" on tuesday, October 14th 2003 from 14h to 18h at the IAM Room 001. http://www.iam.unibe.ch/~ssug/Events/20031014.html

Scrum, one of the agile processes, has been used to develop systems and products since 1995 on thousands of projects in hundreds of organizations. Scrum implements in several days and delivers increments of functionality within thirty days. Scrum wraps existing engineering practices. Because Scrum is a development management process, it has also been used for such projects as marketing, research, and hardware product development.

In this talk, we'll discuss how Scrum and all agile processes work, the theory behind them and their underlying practices of inspection and adaptation. Then we'll look at Scrum's detailed practices of iterations, increments of code, emergence of requirements and design, and self-organization of teams. Through these practices, Scrum introduces a heartbeat of regular productivity to an organization that foments customer and engineering collaboration. If XP is wrapped by Scrum, XP's engineering practices ensure the quality of this code and stability of the emerging product, while Scrum provides the organizational framework which allows development to flourish.

References:

Ken Schwaber and Mike Beedle, Agile Software Development with Scrum (First edition), Alan R. Apt, 2001.

Mike Beedle, Martine Devos, Yonat Sharon, Ken Schwaber and Jeff Sutherland, SCRUM: A Pattern Language for Hyperproductive Software Development
Pattern Languages of Program Design 4 , Neil Harrison, Brian Foote and Hans Rohnert (Eds.), pp. 637-652, Addison Wesley, 2000.

Biography

Joseph Pelrine is CO of MetaProg, a company devoted to increasing the quality of software and its development process. He has had a successful career as software developer, project manager and consultant, and has spoken about it at such diverse places as IBM, OOPSLA and the Chaos Computer Club. In addition to being one of Europeís most experienced eXtreme Programming practitioners and coaches, he is also Europe's first certified ScrumMaster.

Tutorial Fees

140 CHF for Choose member
120 CHF for SSUG members (in fact 100 CHF + 20 CHF for registration)
80 CHF for students
200 CHF SI member
250 CHF others

SSUG Sponsors:

Daedalos Consulting AG,
iFace AG,
Object-Oriented Limited.

REGISTRATION

Fill in the form below and sent it to tschmid@iam.unibe.ch. You will then receive an invoice from the University of Berne.

I want to register to the SCRUM tutorial held at Bern the 14 October 2003. Name: ______________________________________
Email: ______________________________________
Company: ______________________________________
Company Address: ______________________________________
Company ZIP/City: ______________________________________

Please check:

[ ] CHOOSE member
[ ] SUGS member
[ ] students
[ ] SI member
[ ] Non-Member

 Share Tweet This

development

Exception handling issues

October 6, 2003 9:45:50.831

Daniel Steinberg talks about exception handling - and while he's posting on Java, many of his points are generally applicable. In particular, he warns about throwing generic exceptions - have a look at his column.

 Share Tweet This

smalltalk

Very much yes

October 6, 2003 9:39:52.299

Ted Leung, in a post mostly about Lisp, makes a point I'll echo:

Python is attracting a lot of people who like Lisp. There's only one Python, and there's starting to be a body of interesting programs. There's momentum there, quite a bit more than there is around all the various Lisps. I think that the momentum around languages like Python and Ruby is going to open a window of opportunity for Lisp and Smalltalk. The question is will those communities be ready when the window opens? This is something to be thinking about now.

There is a lot of buzz happening around Python, and there's a lot of potential benefit for Smalltalk (and Lisp) in it - are we ready to take advantage of it?

 Share Tweet This
-->