Aida 6.5 Released
Aida/Web 6.5 is out:
Summer Edition of Aida/Web framework and application server is here with bunch of new features
Technorati Tags: aidaweb
. .
The author of this blog, James Robertson, passed away in April 2014. This blog is being maintained by David Buck (david@simberon.com).
Aida/Web 6.5 is out:
Summer Edition of Aida/Web framework and application server is here with bunch of new features
Technorati Tags: aidaweb
Today's Smalltalk 4 You looks at using stdin/stdout in Pharo. If you have trouble viewing it here in the browser, you can also navigate directly to YouTube. To watch now, click on the image below:
If you have trouble viewing that directly, you can click here to download the video directly. If you need the video in a Windows Media format, then download that here.
You can also watch it on YouTube:
Enclosures:
[st4u276-iPhone.m4v ( Size: 1995159 )]
Welcome to episode 92 of Independent Misinterpretations - a Smalltalk and dynamic language oriented podcast with James Robertson and David Buck.
This week david and James talk about some of the stranger things they've seen in software development through the years.
You can subscribe to the podcast in iTunes (or any other podcatching software) using this feed directly or in iTunes with this one.
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. You can also download the podcast in ogg format.
If you like the music we use, please visit Josh Woodward's site. We use the song Troublemaker for our intro/outro music. I'm sure he'd appreciate your support!
If you have feedback, send it to jarober@gmail.com - or visit us on Facebook - you can subscribe in iTunes using this iTunes enabled feed.. If you enjoy the podcast, pass the word - we would love to have more people hear about Smalltalk!
Technorati Tags: smalltalk
Enclosures:
[im92.m4a ( Size: 17079745 )]
Welcome to episode 92 of Independent Misinterpretations - a Smalltalk and dynamic language oriented podcast with James Robertson and David Buck.
This week david and James talk about some of the stranger things they've seen in software development through the years.
You can subscribe to the podcast in iTunes (or any other podcatching software) using this feed directly or in iTunes with this one.
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. You can also download the podcast in ogg format.
If you like the music we use, please visit Josh Woodward's site. We use the song Troublemaker for our intro/outro music. I'm sure he'd appreciate your support!
If you have feedback, send it to jarober@gmail.com - or visit us on Facebook - you can subscribe in iTunes using this iTunes enabled feed.. If you enjoy the podcast, pass the word - we would love to have more people hear about Smalltalk!
Technorati Tags: smalltalk
Enclosures:
[im92.mp3 ( Size: 12342412 )]
The Fundación Argentina de Smalltalk (FAST, http://www.fast.org.ar) invites you to the 6th Argentine Smalltalk Conference, to be held on November 7, 8 and 9, 2012 at the Universidad Nacional de la Patagonia San Juan Bosco located in Puerto Madryn, Argentina. Everyone, including teachers, students, researchers, developers and entrepreneurs, are welcome as speakers or attendees. Registration is free and now open
Technorati Tags: smalltalks, argentina
Huge thanks to yesplan.be for hosting Camp Smalltalk at ESUG 2012 in Gent, Belgium! I walked in and connected my computer to a humongous display and wireless keyboard/mouse, and connected myself to a humongous pile of speculoos, koffie, and Belgian chocolate. :) All while a charming street festival went on outside. This is the perfect recipe for classic code!
Technorati Tags: esug12
Today's Smalltalk 4 You puts the pieces together on WS* in VA Smalltalk - we'll deploy our simple example. If you have trouble viewing it here in the browser, you can also navigate directly to YouTube. To watch now, click on the image below:
If you have trouble viewing that directly, you can click here to download the video directly. If you need the video in a Windows Media format, then download that here.
You can also watch it on YouTube:
Today we'll go back to the Web Services example we had been building in VA Smalltalk. To get started, recall the simple example we'll be using - a "counter" class:
The first thing we'll need is a server to listen on a port. Start that this way:
server := SstHttpServerExample runAt: 'http://:7777' in: ('C:\Program Files\Instantiations\VA Smalltalk\8.5\xml').
The file path should be to wherever you have VA looking for the XML files, as specified in your ini file.
If you do that correctly, you should see a console window like the following appear:
That window will log what's happening, so if anything goes wrong, you can examine the results. Next, you'll need to deploy the container for your WS* application:
SstWSContainer clearAll. "create server container" [ | aContainer | aContainer := SstWSContainer createContainerNamed: 'ServerContainer' using: (SstWSContainerConfiguration defaultConfiguration). aContainer startUp. aContainer deploy: 'http://localhost:7777/CounterServer.xml'] fork.
You should see some reporting in the server log after doing this:
Now, we are ready to actually set up and invoke the code through a client. Here's the code for that:
"create client container" [ "| cContainer counterService |" cContainer := SstWSContainer containerNamed: 'ClientContainer' ifNone: [SstWSContainer createContainerNamed: 'ClientContainer']. cContainer deploy: 'http://localhost:7777/CounterClient.xml'. "two ways to retrieve the service from the client" "counterService := (SstWSContainer containerNamed: 'ClientContainer') allServices first. " counterService := (SstWSContainer containerNamed: 'ClientContainer') serviceNamed: 'Counter' inNamespace: 'http://www.Counter.com/Counter-impl'. "result should be the string returned from the Counter class methods" (counterService addValue: '5') inspect. (counterService subtractValue: '10' ) inspect ] fork.
Notice the lines at the end where we invoke the service. If everything went well, you'll see two signs that it all worked - lines in the Transcript from the code, and more entries in the log:
Finally, if you want to experiment with the example, you may need the following "clean up" code - to clear out your listeners and start fresh:
(SstWSContainer containerNamed: 'ServerContainer') shutDown. (SstWSContainer containerNamed: 'ClientContainer') shutDown
Need more help? There's a screencast for other topics like this which you may want to watch. Questions? Try the "Chat with James" Google gadget over in the sidebar.
Technorati Tags: smalltalk, va smalltalk, web services
Enclosures:
[st4u275-iPhone.m4v ( Size: 4509257 )]
Sounds like hosting on Dart is a better idea than on Javascript. However, does any browser other than Chrome actually support Dart directly?
Technorati Tags: newspeak, javascript, dart
![]() |
Today's Javascript 4 You starts looking at how to hook up event listeners in the context of the Javascript Google Maps API. If you have trouble viewing it here in the browser, you can also navigate directly to YouTube. Join the Facebook Group to discuss the tutorials. You can view the archives here. |
To watch now, click on the image below:
If you have trouble viewing that directly, you can click here to download the video directly. If you need the video in a Windows Media format, then download that here.
You can also watch it on YouTube:
JS 4U 198: Maps and Events 1 Using the Google maps API, it's easy to hook up simple event listeners javascript, maps, events 0:40 1149089 http://archive.org/details/Js4u198MapsAndEvents1 http://archive.org/download/Js4u198MapsAndEvents1/js4u198.wmv http://archive.org/download/Js4u198MapsAndEvents1/js4u198-iPhone.m4v http://archive.org/download/Js4u198MapsAndEvents1/js4u198.mp4 http://youtu.be/gHddL9S-hC0
Technorati Tags: javascript, maps, events
Enclosures:
[js4u198-iPhone.m4v ( Size: 1149089 )]
CodeCity started out in VisualWorks, but issues around Cincom's licensing have driven the development efforts to Pharo. The toolset is not open source, which means that people are choosing to use Pharo for proprietary, commercially oriented work.
If you want to see the tools in action, grab the video (wmv format)
Technorati Tags: sourcecity, pharo
Maybe that last 18 months of college (way, way back when :) ) was good for me:
But today new research being released at the annual meeting of the American Sociological Association reports that college students who binge drink are happier than those who do not.
Technorati Tags: college
Today's Smalltalk 4 You looks at the the XML files produced by the VA Smalltalk Web Services libraries, and where you'll need to modify them for your own use.. If you have trouble viewing it here in the browser, you can also navigate directly to YouTube. To watch now, click on the image below:
If you have trouble viewing that directly, you can click here to download the video directly. If you need the video in a Windows Media format, then download that here.
You can also watch it on YouTube:
Today we'll take a look at the XML files generated by the VA Web Services support code, and we'll get to using it all next time. You might want to download the XML files here.
Need more help? There's a screencast for other topics like this which you may want to watch. Questions? Try the "Chat with James" Google gadget over in the sidebar.
Technorati Tags: smalltalk, va smalltalk, web services
Enclosures:
[st4u274-iPhone.m4v ( Size: 4277034 )]
![]() |
Today's Javascript 4 You looks at the map projections in the Google maps API. If you have trouble viewing it here in the browser, you can also navigate directly to YouTube. Join the Facebook Group to discuss the tutorials. You can view the archives here. |
To watch now, click on the image below:
If you have trouble viewing that directly, you can click here to download the video directly. If you need the video in a Windows Media format, then download that here.
You can also watch it on YouTube:
Technorati Tags: javascript, maps
Enclosures:
[js4u197-iPhone.m4v ( Size: 3461836 )]
Today's Smalltalk 4 You looks at configuring the toolbars in the VA Smalltalk development environment. If you have trouble viewing it here in the browser, you can also navigate directly to YouTube. To watch now, click on the image below:
If you have trouble viewing that directly, you can click here to download the video directly. If you need the video in a Windows Media format, then download that here.
You can also watch it on YouTube:
The VA tools have a lot of options on the toolbars, but what if you want more? For instance, what if you really want to be able to open a browser from the workspace? Under Options on the Launcher, pull right at Toolbars:
Select a tool in the menu, then move options to on or off. Be careful with the mouse wheel; it's easy to change the menu when you intend to scroll through options:
Now, open a new workspace after adding the Class Browser icon - you should see your toolbar item:
Need more help? There's a screencast for other topics like this which you may want to watch. Questions? Try the "Chat with James" Google gadget over in the sidebar.
Technorati Tags: smalltalk, va smalltalk, toolbars
Enclosures:
[st4u273-iPhone.m4v ( Size: 3312163 )]