Pharo Hits 1.0 MIlestone
The Pharo project has reached 1.0 - congratulations to them!
Technorati Tags: pharo
. .
The author of this blog, James Robertson, passed away in April 2014. This blog is being maintained by David Buck (david@simberon.com).
The Pharo project has reached 1.0 - congratulations to them!
Technorati Tags: pharo
Today's screencast looks at a simple "Hello World" app in WebVelocity. If you're looking for a particular topic, you can find it with the Media Search application on our site.
You can download the video directly here. If you like this kind of video, why not subscribe to "Smalltalk Daily"?
Technorati Tags: webvelocity, seaside, video
Today's screencast looks at using Twitter from Smalltalk. If you're looking for a particular topic, you can find it with the Media Search application on our site.
Here's the script I used in the screencast after loading the Twitter
"create settings file" settings := TwitterClient.Settings new. settings username: 'TwitterScreenNameHere'. settings password: 'TwitterPasswordHere'. settings saveTo: 'twitter_settings.ini'. "get an interface" model := TwitterModel new. "get friend updates" latestUpdates := model getFriendsUpdates. "get Follower updates" latestFollowers := model getFollowersUpdates. "get the current trends" trends := model getCurrentTrends. daily := model getDailyTrends. weekly := model getWeeklyTrends. "user query" args := UserQueryArgs new. args screen_name: 'jarober'. model showUser: args. "get direct messages" args := StatusListArgs new. args per_page: 100. model getDirectMessagesFor: args. "set status" model setStatusTo: 'From VisualWorks during today''s screencast'.
You can download the video directly here. If you like this kind of video, why not subscribe to "Smalltalk Daily"?
Technorati Tags: twitter, social media
Today's screencast looks at creating an RSS feed with a Smalltalk SAX driver. If you're looking for a particular topic, you can find it with the Media Search application on our site.
Here's the script I used to create the RSS Feed - it's using the package FeedWriter from the public store), as per the screencast:
"Using a SAX Driver"
stream := ('rss1.xml' asFilename withEncoding: #'UTF-8') writeStream.
writer := RSS20_SAXWriter new output: stream.
"start the document"
writer prolog.
writer startRSS.
writer startChannel.
writer title: 'My RSS Feed'.
writer link: 'http://www.somesite.com'.
writer description: 'My RSS Feed'.
"Now write an item"
writer startItem.
writer title: 'Test Item'.
writer link: 'http://www.somesite.com/item1'.
writer description: 'test item1'.
writer pubDate: Timestamp now.
writer endItem.
"end the document"
writer endChannel.
writer endRSS.
stream close.
You can download the video directly here. If you like this kind of video, why not subscribe to "Smalltalk Daily"?
Videos from the Smalltalks 2009 conference in Argentina are online now at the FAST website.
A GLASS workshop is planned for May 6th:
Norbert Hartl is putting on a GLASS workshop in Cologne on May 6th. Norbert talked about GLASS at the March 19th Smalltalk meeting in Cologne and there was enough interest in GLASS that he decided to put on a workshop dedicated to covering GLASS and GemStone/S in more detail.
Today's screencast looks at adding a menu to a VisualWorks UI, using the Menu builder tool. There's also a way to create a menu programmatically; that's a separate topic, covered in this screencast. If you're looking for a particular topic, you can find it the same way I just looked that up - try the Media Search application on our site.
You can download the video directly here. If you like this kind of video, why not subscribe to "Smalltalk Daily"?
Technorati Tags: visualworks, UI, menu
Here's part two of our conversation with Dave Buck, about upgrading from older revs of VisualWorks to the latest. It picks up right where we left off; if you haven't listened to part 1, go here.
To listen now, you can either download the mp3 edition, or the AAC edition. The AAC edition comes with chapter markers. You can subscribe to either edition of the podcast directly in iTunes; just search for Smalltalk and look in the Podcast results. You can subscribe to the mp3 edition directly using this feed, or the AAC edition using this feed using any podcatching software.
To listen immediately, use the player below:
If you like the music we use, please visit Josh Woodward's site. We use the song Effortless for our intro/outro music. I'm sure he'd appreciate your support!
If you have feedback, send it to smalltalkpodcasts@cincom.com - or visit us on Facebook or Ning - you can vote for the Podcast Alley, and subscribe on iTunes. If you enjoy the podcast, pass the word - we would love to have more people hear about Smalltalk!
Technorati Tags: podcast, visualworks, upgrade
Instantiations is having a Smalltalk event in Stuttgart, Germany this June:
Join us in Stuttgart, Germany on Tuesday, June 8th, 2010 for a full day of discussion and learning on VA Smalltalk.This is a free event, but we ask that you please pre-register at the Registration Site so we know that you are coming.
Today's screencast looks at File Dialogs in Smalltalk - both native and emulated.
You can download the video directly here. If you like this kind of video, why not subscribe to "Smalltalk Daily"?
Technorati Tags: video, file dialog, dialog
| Previous | Next | (1107 total) |