Smalltalk Daily 8/22/08: Rewrite Rules in Code
On today's Smalltalk Daily, we take a look at how to set up rewrite rules in code.
Technorati Tags: smalltalk, refactoring
Cincom Smalltalk Community Blogs
Opinions expressed in this blog are not necessarily those of Cincom Systems, Inc.
On today's Smalltalk Daily, we take a look at how to set up rewrite rules in code.
Technorati Tags: smalltalk, refactoring
If you want to view today's Smalltalk Daily via YouTube, here it is:
One of the critiques that's often levelled at refactoring support in Smalltalk is the "all or nothing" charge - i.e., that refactorings are just "across the system" renaming.
Today's Smalltalk Daily drops into the rewrite engine support to show you how to do complex refactorings that are limited to what you want to see refactored. Today, we look at simple transformations: changing things that look like this:
someValue isNil ifTrue: [self doNilThing] ifFalse: [self doNotNilThing].
To this:
someValue ifNil: [self doNilThing] ifNotNil: [self doNotNilThing].
Technorati Tags: smalltalk, refactoring
On today's Smalltalk Daily, we step back to the beginning with Web Velocity, and cover some of the basics of the interface.
Technorati Tags: smalltalk, seaside, web velocity
On today's Smalltalk Daily, we continue with last week's "Hello World" example, and publish it to the personal repository used by Web Velocity.
Update: Link is fixed
Technorati Tags: smalltalk, seaside, web velocity
On today's Smalltalk Daily, we take a look at Web Velocity, and build a simple "Hello World" application. Interested in the Web Velocity beta program? Head over here for details.
Technorati Tags: smalltalk, seaside, web velocity
On today's Smalltalk Daily, we'll look at how exceptions are handled at runtime, and how you can customize that behavior.
Technorati Tags: smalltalk
On today's Smalltalk Daily, we look at using MD5 in Smalltalk
Today's Smalltalk Daily is in the "coming attractions" category - it shows off some early work Travis is doing with the browser. Bear in mind that what I'm showing off is subject to change before the next release.
Technorati Tags: smalltalk
On today's Smalltalk Daily, we wrap up our tour of object definition types with immediate objects
Technorati Tags: smalltalk
| Next | (454 total) |