-
Recent Posts
Recent Comments
Zipping files in VA… on VASmalltalk – how to cre… Peter on Smalltalk – Better produ… Vinnie Moag on About arihant on ERROR: Cannot determine the lo… JJACK on ERROR: Cannot determine the lo… Archives
- May 2013
- March 2013
- February 2013
- January 2013
- December 2012
- September 2012
- August 2012
- July 2012
- June 2012
- May 2012
- April 2012
- March 2012
- February 2012
- January 2012
- December 2011
- November 2011
- October 2011
- September 2011
- August 2011
- July 2011
- June 2011
- May 2011
- April 2011
- March 2011
- February 2011
- January 2011
- December 2010
- November 2010
- October 2010
- September 2010
- August 2010
- July 2010
- June 2010
- May 2010
- April 2010
- March 2010
- February 2010
- January 2010
- December 2009
- November 2009
- October 2009
- September 2009
- August 2009
- July 2009
- June 2009
- May 2009
- April 2009
- March 2009
- February 2009
- January 2009
- November 2008
- October 2008
- September 2008
- August 2008
- July 2008
- June 2008
Categories
Meta
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
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
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.
VASmalltalk – TNetStrings Implementation published
The implementation and its tests are available at vastgoodies.com
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
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
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
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
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
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