Hi anyone who is listening :) I have been a lurker on this list for a very long time (under another email address) and I vaguely remember some mention of a web...
1985
Jecel Assumpcao Jr
jeceljr
May 14, 2008 10:34 pm
Russell, ... I don't remember any web server code. Squeak has several and it would be easy to borrow one, but depending on your needs it is probably not worth ...
1986
russell.allen23
May 15, 2008 12:39 am
Hi Jecel, ... I guess that means that Self has all the necessary socket primitives etc? Could you share your web server code to give me some help in where to...
1987
Jecel Assumpcao Jr
jeceljr
May 16, 2008 11:28 pm
Russell, ... Sorry, but it was trivial enough that I didn't bother saving it. I was exploring the various socket APIs in Self (I had never looked at them ...
1988
Adam Spitz
adspitz
May 17, 2008 3:18 am
... I've just made 4.3, 4.2, and 4.1 available for download from (what I suppose is now) Self's new home on SourceForge: http://self.sourceforge.net (Thanks to...
1989
mwolczko2
May 17, 2008 7:03 pm
... It just occurred to me that perhaps you were thinking of the web *browser* that Dave wrote. I don't recall if it was part of a release....
1990
russell.allen23
May 18, 2008 8:55 am
Hi everyone, Thanks for your help. I hacked up a small and extremely simple webserver based on the socketServer code. The transporter code goes in...
1991
Jecel Assumpcao Jr
jeceljr
May 19, 2008 11:33 pm
Russell, ... I don't think an attachment would have been a problem, but Yahoo probably wouldn't have saved it in the archives (at least not for very long) and...
1992
russell.allen23
May 29, 2008 7:42 am
Hi guys, Looking through the cvs tree at sourceforge I see that it includes a bunch of stuff not released elsewhere (afaik) including PEP and webBrowser. Is...
1993
Adam Spitz
adspitz
May 30, 2008 4:19 am
... I just asked Dave about this, and he said he thinks it's probably fine. I wouldn't worry about it. ... That's a good question. :) I think it might. I know...
1994
Bergel, Alexandre
godfroy_bern
May 30, 2008 6:38 am
Does the source code of Self available somewhere? What is its license then? Sorry if my questions do not look like to be so deep, but I have been a bit out of...
1995
Bergel, Alexandre
godfroy_bern
May 30, 2008 7:34 am
Please discard my previous email. Source code of the Self VM seems to be the easiest thing to find on the web. Alexandre ... -- ...
1996
russell.allen23
May 31, 2008 6:15 am
Hi Adam, I have Ubuntu set up on Vmware on my mac, and have checked out the sf.net cvs tree, but frankly am a bit daunted by where to start compiling. In linux...
1997
Adam Spitz
adspitz
Jun 1, 2008 4:21 am
... For now, if I had to guess, I'd say try something like: add $SELF_WORKING_DIR/bin/linux and $SELF_WORKING_DIR/bin/shell to your path be sure you've got csh...
1998
Russell Allen
russell.allen23
Jun 3, 2008 12:45 pm
Thanks. I don't have an actual linux machine myself at the moment - I'm just working off vmware. Preliminary play with the latest Ubuntu seems to get most of...
1999
Russell Allen
russell.allen23
Jun 4, 2008 12:01 pm
OK, I have a compiled executable on Ubuntu 8.10. Woohoo! At the moment it loads the Demo snapshot, but the desktop doesn't come up. This presumably means...
2000
Adam Spitz
adspitz
Jun 4, 2008 5:41 pm
... That's great! Did you have to make any changes to the code? (If so, what?) Or was it just a matter of getting the right libraries and stuff installed? Adam...
2001
Russell Allen
russell.allen23
Jun 5, 2008 10:56 am
I changed a reference in $SELF_WORKING_DIR/vm/linux/makeDeps.cpp to the gcc version from 4.1 to 4.2. Also I did "sudo ln -s /usr/lib/libncurses.a...
2002
Russell Allen
russell.allen23
Jun 11, 2008 9:39 am
Hi, So I have worked out that I can load my module with: bootstrap read: 'webserver39; from: 'applications39; and file it out with: modules webserver fileOut Is...
2003
Jecel Assumpcao Jr
jeceljr
Jun 13, 2008 8:07 pm
... I don't think this has been implemented. Given the annotations that every module has, this should be a lot easier to do than when you file in stuff with...
2004
Russell Allen
russell.allen23
Jun 15, 2008 8:44 am
Thanks Jecel. Sounds like something I'll have to come back to....
2005
Russell Allen
russell.allen23
Jun 15, 2008 8:47 am
It is now winter, and grey is getting me down; so I made a module to make my self snapshot more colourful. This turned out to involve wading through the...
2006
Jecel Assumpcao Jr
jeceljr
Jun 16, 2008 7:03 pm
Russell, Morphic did become far more colorful when it moved in Squeak. I liked this but many people were very critical of it and some even refused to even try...
2007
Russell Allen
russell.allen23
Jun 17, 2008 9:53 am
I deployed a Squeak app to a classroom of uni students back in 2001 (2002?) and the major issue wasn't the colours so much as the lack of consistency in the...
2008
Russell Allen
russell.allen23
Aug 22, 2008 12:25 pm
Hello, I'm interested in making a number of improvements/changes to Self, not for any particular commercial motive but out of general interest in Self and its...
2009
erikterpstra
Sep 10, 2008 6:18 pm
On Ubuntu Linux 8.10 I get the following error: ./Self -s Empty.snap Welcome to the Self system! (Version 4.1.5) Copyright 1992-2002 Sun Microsystems, Inc....
2010
Russell Allen
russell.allen23
Sep 11, 2008 3:27 am
Hi Erik, I'm assuming you're using the linux vm from gliebe.de/self - or have you compiled your own from the sourceforge.net cvs tree? Something seems to have...
2011
Jeff Brown
xeeyore42
Sep 19, 2008 7:56 pm
Why not build a Self interpreter on the .Net Dynamic Language Runtime? Sure, the performance won't be as good as native but you'll get more portability in the...
2012
Russell Allen
russell.allen23
Sep 21, 2008 10:15 am
Hi Jeff, There have been attempts to get Self running on the JVM (which I am more familiar with since it is open source and cross platform); as you indicated,...
2013
Michael Latta
michaellatta
Sep 21, 2008 5:03 pm
The DLR (the layer on the CLR designed for dynamic languages) adds support for dynamic languages and packages up some of the concerns, which on the JVM you...