1
vote
2answers
43 views
Showing inherited methods in Squeak/Pharo Smalltalk
I'm familiar with the VisualWorks and Dolphin versions of Smalltalk, but have not previously used Squeak. I'm just familiarising myself with Pharo, which is a 'cleaned up' fork of Squeak.
I'm used to …
14
votes
10answers
500 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?
35
votes
27answers
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 -- …
1
vote
2answers
38 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
1answer
20 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
…
9
votes
6answers
398 views
What makes a framework a “true” MVC framework?
When reading online discussions about MVC frameworks, I hear a lot of commentary pointed toward PHP projects like Cake, Code Igniter and Symfony from Java/.NET developers in the vein of "those are …
1
vote
2answers
35 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
4answers
97 views
Is there a script that turns a Pharo core image into something more useful, that would include an OmniBrowser?
Hi,
I cannot use the most recent dev Pharo release because of some strange issues with the compiler built into Pharo. Well. I was wondering if there is a quick way to install all the nifty extras …
2
votes
1answer
27 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 …
2
votes
1answer
46 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 …
3
votes
3answers
85 views
Smalltalk compilers that target either Java, .NET or Ruby
Looking for a Smalltalk compiler that given Smalltalk (Instantiations) will emit either Java bytecode, .NET CLR or Ruby. Not looking for porting utilities as I want to leave the application in …
2
votes
3answers
52 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
3answers
112 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 …
4
votes
1answer
53 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
5answers
144 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.
…
