screencast

Smalltalk Daily 8/22/08: Rewrite Rules in Code

August 22, 2008 12:45:51.113

On today's Smalltalk Daily, we take a look at how to set up rewrite rules in code.

Technorati Tags: ,

screencast

ST Daily on YouTube

August 21, 2008 12:30:48.650

If you want to view today's Smalltalk Daily via YouTube, here it is:

Technorati Tags: ,

screencast

Smalltalk Daily 8/20/08: Transformations with the Rewrite Engine

August 20, 2008 15:49:52.443

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: ,

screencast

Smalltalk Daily 8/19/08: Intro to Web Velocity

August 19, 2008 10:34:37.581

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: , ,

screencast

Smalltalk Daily 8/18/08: Publishing with Web Velocity

August 18, 2008 11:17:42.729

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: , ,

screencast

Smalltalk Daily 8/15/08: Intro to Web Velocity

August 15, 2008 11:41:37.844

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: , ,

screencast

Smalltalk Daily 8/14/08: Runtime Exception Handling

August 14, 2008 9:33:10.602

On today's Smalltalk Daily, we'll look at how exceptions are handled at runtime, and how you can customize that behavior.

Technorati Tags:

screencast

Smalltalk Daily 8/13/08: MD5

August 13, 2008 5:48:18.380

On today's Smalltalk Daily, we look at using MD5 in Smalltalk

Technorati Tags: ,

screencast

Smalltalk Daily 8/12/08: Easier Lists in the Browser

August 12, 2008 5:34:42.283

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:

screencast

Smalltalk Daily 8/11/08: Immediate Objects

August 11, 2008 5:03:09.748

On today's Smalltalk Daily, we wrap up our tour of object definition types with immediate objects

Technorati Tags:

Next (454 total)