4
votes
5answers
197 views
What is so special about Smalltalk?
In every technical publication, and on this site too, people are always comparing OO languages to Smalltalk. My experience is in Java: is Smalltalk so important that I should study it?
1
vote
1answer
11 views
Pharo Gofer, can it fallback to local package cache when offline?
Can I tell Gofer to fall back to the local package cache when no internet is available?
For example such that I can use
Gofer it
squeaksource: 'CodePhoo';
addPackage: 'CodePhoo';
load
…
1
vote
2answers
34 views
How do I copy and paste an error message in Pharo?
Squeak was once innovative by giving people more than a dull error message: a debugger and go figure out!
However, nowadays there's a google, and now it'd rock to copy paste the error message, which …
2
votes
1answer
45 views
Distributed source control for VisualWorks Smalltalk
One of the annoying things about Smalltalk is that it (usually) requires its own VCS, due to the way that it manages its source code. Squeak and Gemstone (at least in its GLASS version) have a DVCS …
2
votes
1answer
24 views
Migrating from SUnit to Phexample
Hi, I'm trying out Pharo's Phexample and I like it, but it feels clumsy to have half my unit tests in SUnit and the other half in Phexample. Does Phexample have like an import feature for my existing …
4
votes
1answer
52 views
Redefining instance variables of a Smalltalk class
I've never used Smalltalk, but I've read a lot about it and it has always intrigued me. I've seen the cool demos where a program is running and simply by changing the methods of the classes the …
1
vote
3answers
108 views
GemStone-Linux-Apache-Seaside-Smalltalk.. how practical is 4GB?
I am really interested in GLASS. The 4GB limit for the free version has me concerned. Especially when I consider the price for the next level ($7000 year).
I know this can be subjective and …
-3
votes
0answers
228 views
If there was one programming language u knew… waht would it be? [closed]
programming is become one thing everyone needs to know these days, more than ever before. Not speaking from the perspective of a typical programmer of course, real programmers need to know more than …
4
votes
11answers
397 views
asm / C / Python / Perl / Lisp / Scheme Programmer looking for something new to learn.
I need to have an at-home project now that I'm working on Python/Django at work. I'd like to learn something new, so I was thinking of checking out Java.
What's the most well respected web framework …
0
votes
5answers
133 views
Smalltalk, newline character
Does anybody know what's the newline delimiter for a string in smalltalk?
I'm trying to split a string in separate lines, but I cannot figure out what's the newline character is smalltalk.
ie.
…
3
votes
5answers
93 views
Smalltalk - Compare two strings for equality
I am trying to compare two strings in Smalltalk, but I seem to be doing something wrong.
I keep getting this error:
Unhandled Exception: Non-boolean receiver. Proceed for truth.
stringOne := …
2
votes
3answers
47 views
Smalltalk - Inserting a TAB character (Visual Works)
I'm having some trouble inserting a tab between two strings.
stringOne := 'Name'.
stringTwo := 'Address'.
I've tried:
info := stringOne, String tab, stringTwo.
or
info := stringOne, Character …
1
vote
2answers
36 views
Smalltalk, displaying OrderedCollection to List Widget
Hi I have an ordered collection of strings which I'm trying to display on a list widget.
I do the following:
self displayWidget list: coll.
where displayWidget is a List Widget and coll is the …
1
vote
3answers
89 views
Best OS And Tools For SmallTalk Learning And Development
I'm starting to learn Smalltalk. What's the best OS (in terms of having more and better tools) and tools for development?
34
votes
26answers
3k views
Why use Ruby instead of Smalltalk?
Ruby is becoming popular, largely from the influence Ruby on Rails, but it feels like it is currently struggling through its adolescence. There are a lot of similarities between Ruby and Smalltalk -- …
