Feeds:
Posts
Comments

Archive for October, 2008

I’m on Late Night Cocoa, discussing F-Script 2.0 with Scotty of the Mac Developer Network. You can listen to us here.

Read Full Post »

I just created a F-Script group on Google Groups. You are invited to join and to use it for technical questions or discussions about F-Script and related subjects. This is also the place where you can get notified of the latest releases.

You can access the group at http://groups.google.com/group/f-script

Read Full Post »

One day of workshops and a two days conference for Mac Developers, organized by the excellent Mac Developer Network. The workshops+conference will run from April 15 to April 17, near London, UK. I’ll be speaking there! More on the conference Web site.

Read Full Post »

F-Script is mostly latently typed and, as such, could benefit from a type inference system. Among other things, type inference can be used to detect a number of programming errors at compile time (which is nice) without cluttering programs with explicit typing.

Creating such a system for F-Script can draw from techniques already in use with [...]

Read Full Post »

F-Script for Automator

Dominique Dutoit has released an F-Script action for Automator. It lets you add custom F-Script code within your Automator processes. You can get it here.

The input of the action (i.e., the output of the previous action) is automatically bound to a variable named “input” in the F-Script workspace. Usually, it is an NSArray object. [...]

Read Full Post »

Alpha 6

You can now download F-Script 2.0 alpha 6. It contains the latest developments, including:

Better error detection and reporting when defining new classes
Support in the runtime for subclassing F-Script classes in Objective-C
A literal syntax for hexadecimal numbers (finally!). Standard Smalltalk syntax; e.g., 16rFF5A.
Support for using the ~~ message with nil as a receiver
Various internal improvements

In addition, [...]

Read Full Post »