Tag Archives: Smalltalk

VASmalltalk – Call a Lua function with parameters from Smalltalk

Here is the Smalltalk version of Calling Lua Functions. We assume that the following code is located in an external file: function f (x, y) return (x^2 * math.sin(y))/(1 – x) end and here is the Smalltalk code to call … Continue reading

Posted in Smalltalk | Tagged , , , | Leave a comment

VASmalltalk – Sending EMail via EMan

I read at the Instantiations forum about problems sending eMails from VASmalltalk. I would like to remember EMan, a pretty good software for sending and receiving EMails – available for free over the last 10 years !? manager := OcEMManager … Continue reading

Posted in Smalltalk | Tagged , , | 1 Comment

VASmalltalk – ICU 4.9.1 released

I’ve uploaded the actual ICU wrapper code to vastgoodies.com and it works with ICU 4.9.1, which has been released last week.

Posted in Smalltalk | Tagged , | Leave a comment

VASmalltalk – TNetStrings Implementation published

The implementation and its tests are available at vastgoodies.com

Posted in Smalltalk | Tagged , , | Leave a comment

VASmalltalk – TNetStrings and Mongrel2

The creators of Mongrel2 had used JSON as their first internal protocol to communicate via 0MQ to application servers. They made measurements and found out, that JSON parsing is still a time consuming task and much of the time is … Continue reading

Posted in Smalltalk | Tagged , , | Leave a comment

VASmalltalk – Headless IC Infrastructure

The IC infrastructure for headless operation is growing. I added wrappers for SQLite, PostgreSQL, LibHaru, FreeImage and ODBC to the list of the generated ICs. As mentioned in earlier posting. The creation of now 35 ICs becomes a time consuming … Continue reading

Posted in Smalltalk | Tagged , | Leave a comment

VASmalltalk – LibHaru Wrapper

MSKLibHaruInterface is now obsolete. I just uploaded a new version to vastgoodies.com and named the version of this map “obsolete-finished”. The development is now done under the map “MSKICXDLibHaruDM”, which is part of my IC building process. I uploaded an … Continue reading

Posted in Smalltalk | Tagged , , | Leave a comment

VASmalltalk – 0MQ and Linux

Ok, I tried the stuff today under Ubuntu 10.10 (with standard libzmq 2.0.6 beta) and it crashed. Then I had to downloaded source code for 2.1.1 (stable version) and compiled and installed the stuff and it worked out of the … Continue reading

Posted in Smalltalk | Tagged , , | Leave a comment

VASmalltalk – 0MQ – Request and Reply example

Here is another example from the user guide of 0MQ: a classical server-client communication: Ask and Ye Shall Receive example in the 0MQ Guide Execute in the workspace: context := ZMQCore newContext: 1. special class with additional logic. somehow the … Continue reading

Posted in Smalltalk | Tagged , | Leave a comment

VASmalltalk – Seaside and Load Balancing

I’ve read this posting about Load Balancing and just wanted to make clear, that this is also possible with VASmalltalk/Seaside together with Apache. It’s general idea. I just did this while doing the traffic tests I mentioned in earlier postings … Continue reading

Posted in Smalltalk | Tagged , , | 1 Comment