Tagged Questions

Squeak is a modern, open source implementation of the Smalltalk language, with a history of being very easy to port across platforms.

learn more… | top users | synonyms

79
votes
32answers
20k views

Why isn't Smalltalk popular?

I’ve been looking at Smalltalk (VisualWorks) for the past couple of months - and the more I learn the more I’m impressed. However, I think I must be missing something as Smalltalk doesn’t seem to be ...
15
votes
3answers
499 views

Using Squeak from a shell

Can I launch Squeak as a REPL (no GUI), where I can enter and evaluate Smalltalk expressions? I know the default image don't allow this. Is there any documentation on how to build a minimum image that ...
14
votes
1answer
1k views

When to use Seaside components, and when to use simple render objects?

I have been developing a web application in Seaside+Squeak recently, and have found it to be a wonderful experience. Seaside really is head and shoulders above every other framework out there, and I ...
12
votes
3answers
688 views

Is Pharo just a repackaging/rebranding of Squeak?

I'm trying to learn some Smalltalk. First found was Squeak, but since it has been removed from Gentoo ebuild tree because of security problem, so I decided to find an alternative. Then I found Pharo ...
11
votes
7answers
632 views

Various questions regarding pure OO (Getting set up WITHOUT an ide; Tutorials; The associated books)

I've been wanting to get into a pure-OO language for a while now, but I'm put off by the fact that they all seem to demand an IDE and I can't find any good tutorials that aren't in video format. I'm ...
11
votes
3answers
666 views

What is the difference between a Squeak/Pharo Trait and a Newspeak Mixin?

So Squeak/Pharo support Traits and Newspeak has Mixins. What is the difference? Traits have no instVars but Mixins have?
9
votes
5answers
2k views

Writing a GUI in squeak

How can I write a GIU in Squeak? I'm a Smalltalk newbie and I'm using Cincom's VisualWorks at the moment but I'd like to give Squeak a try. I see that Squeak has Morphic for graphics but for the life ...
8
votes
1answer
224 views

Event propagation in a Morphic GUI

I have an image for a Squeak Morphic GUI that contains some transparent parts and thus should not accept any mouseevents etc. but just be visible, but it needs to be visible in front of other morphs. ...
8
votes
3answers
816 views

Magma, GOODS, GLORP, or something else?

So I've been using Smalltalk for about 6 months now (Squeak and Pharo), mostly doing data analytics, and I'm about to start my first Seaside app. So my question to all you Smalltalkers out there is, ...
8
votes
5answers
1k views

How Compatible is GNU Smalltalk with Squeak

I'm working on an app in squeak that requires no graphics at all, its all just data manipulation. The problem is that I work in a fairly conservative environment and I dont think I'll be able to sell ...
8
votes
12answers
1k views

Best Smalltalk/Squeak Books [closed]

What is a single book you would recommend to someone interested in Smalltalk? I've started looking into Smalltalk some weeks ago. So far I've gone through the Cincom tutorials (1 and 2) and I've read ...
8
votes
8answers
956 views

Is There a “Dive Into Smalltalk” Book

I want to learn Smalltalk (particularly Squeak), but all the websites and books I've come across either assume I'm new to programming or spend forever getting acquainted with all the minutiae of the ...
7
votes
3answers
154 views

Squeak workflow

I'm new to Squeak and Smalltalk but not programming in general(i've some Python experience). I understand the various tools present in the Squeak environment like the Workspace, System Browser and ...
7
votes
6answers
886 views

Why does the Squeak interface look and act so antiquated?

Don't get me wrong - I love Smalltalk, but... To me, the Squeak interface is one of the biggest turnoffs. I love Smalltalk - not the user interface. One only has to contrast modern interfaces like ...
7
votes
5answers
781 views

Current Smalltalk development activity

I'm now a couple of months into my Smalltalk learning voyage. I was aware, from the beginning that Smalltalk has several "dialects" (perhaps "dialect" isn't the best word) but by this I mean ...
7
votes
8answers
932 views

How do you use Squeak?

I downloaded Squeak, the Image file, and the Sources file, but I can't figure out how to write Smalltalk code. Is there something obvious I'm missing? Is Squeak even the right IDE for serious ...
6
votes
6answers
443 views

Squeak or Pharo for the beginning Smalltalker?

I am a Rubyist that is just starting to dabble in Smalltalk and am trying to chose an implementation to experiment with. It seems like Squeak or Pharo would be a good choice, but I'm having trouble ...
6
votes
2answers
90 views

Squeak Smalltalk vertical arrow in code

I'm trying to learn Smalltalk and so I'm doing the "Squeak by Example" tutorial. I have to write a method in the system browser with a vertical arrow which points up at the beginning of the code. Is ...
6
votes
2answers
377 views

Are Traits good or bad?

This is an open-ended question, but I would like to solicit some opinions from the SO community on Traits; do you think Traits in Squeak/Pharo are a good thing, or should you stay away from them and ...
6
votes
7answers
983 views

Are there any large-scale commercial projects that use Squeak Smalltalk?

I've been learning Squeak Smalltalk & have noticed that it's got a really faithful community and is used in some large academic and open-source projects, but I haven't found any examples of it ...
5
votes
2answers
100 views

How to search for a string inside a class in Squeak smalltalk ? How about inside a package?

I searched, and searched. I went to IRC Hope the question is not silly. If it was, the right string to search at google would still be much appreciated
5
votes
1answer
54 views

VT100 screen scraping interface for Smalltalk

Hello (also posted on the VWNC list), We are looking at options for interfacing with a legacy Unix system. One option we'd like to explore would be to screen scrape a VT100 terminal session. Is there ...
5
votes
3answers
174 views

App building for a beginner in Smalltalk

I am a newbie to Smalltalk technology. My experience in programming is with C and C++. I would like to understand the design methodology of smalltalk. Could any one suggest some simple real-time apps ...
5
votes
1answer
80 views

How to install a squeak smalltalk plugin?

I am trying to use squeakSSL with WebClient, the squeakSSL page says: "To install SqueakSSL you need to download and install the binary version of the plugin and then install SqueakSSL via: ...
5
votes
2answers
169 views

Generating diagrams in Pharo/Squeak Smalltalk

I'm having trouble understanding big code libraries in Pharo and Squeak, is there is a typical template script to generate a static class relationship diagram (not necessarily UML) and a dynamic ...
5
votes
6answers
412 views

Are there any commercial projects using Squeak Smalltalk that are not web based

Doing a Google search doesn't reveal much, the three of four links I found where dead. Maybe the stackoverflow community is in a better position to answer the question. Where are the none web based ...
5
votes
8answers
886 views

Why does Squeak use Colors to identify Mouse Buttons?

This is really annoying when you try to follow the documentation Squeak by Example. Instead of calling the mouse buttons left, right, and middle, like in any other documentation, they give them ...
5
votes
3answers
699 views

How can I easily change to native fonts in Smalltalk Squeak/Pharo

With every new Squeak/Pharo image, I immediately change the fonts to some native version. It is a lot of mouseclicks and I want to script the process.
4
votes
3answers
146 views

Smalltalk Return Precedence

I'd like a little clarification on the precedence of the return statement, which appears to go against the general precedence rules. For example the expression ^ 2 + 3. returns 5(which is what ...
4
votes
2answers
201 views

Microframeworks for Squeak/Pharo web service

Lots of languages have microframeworks for writing very tiny websites or web services, such as Flask for Python, or Sinatra for Ruby. On Squeak, there doesn't seem to be any equivalent; Iliad, ...
4
votes
3answers
149 views

In Squeak, where do I find the code for the message handling algorithm?

When sending a message to an object in Squeak, the runtime invocation algorithm is something like curr <- the receiver's class Repeat while curr isn't nil Search for the selector in that class's ...
4
votes
1answer
202 views

Create from scratch, or build up on Scratch?

I'm considering building a visual programming language, akin to Scratch, for use by children (a.k.a. poor typists) in programming micro-controllers or robots. There is, for example, a project to ...
4
votes
3answers
454 views

new line in squeak

i want to do something like this: Transcript show: '\n'. how?
4
votes
2answers
603 views

Performance overhead of perform: in Smalltalk (specifically Squeak)

How much slower can I reasonably expect perform: to be than a literal message send, on average? Should I avoid sending perform: in a loop, similar to the admonishment given to Perl/Python programmers ...
4
votes
4answers
343 views

Inter-Image communication in Smalltalk. Possible?

I have a graph-traversal problem that is beautifully and elegantly modeled in smalltalk, but it's too big (in terms of computation and storage) for one smalltalk image instance. So, I want to ...
4
votes
4answers
397 views

Does Squeak support namespaces?

So, I'm looking at using Smalltalk/Squeak for a couple of hobby/academic interest projects, and while trying to read up on the language I came across this nice article. However, this paragraph had me ...
3
votes
2answers
94 views

How to figure out if a regex implementation uses DFA or NFA?

I'm facing the question, whether a certain regex implementation is based on a DFA or NFA. What are the starting points for me to figure this out. One could also ask: What am I looking for? What are ...
3
votes
4answers
308 views

How can I add methods to a class at runtime in Smalltalk?

I'm building a Smalltalk API to an XML-based web service. The XML service is so regular that, rather than write the methods by hand, I figured I'd just override #doesNotUnderstand: to dynamically add ...
3
votes
2answers
141 views

How do I perform a text search of a Squeak 3.7 image?

I have an image that runs on the 3.7 version of Squeak - I'd like to do a text search for strings and fragments of strings, over all classes, categories and selectors in the image. Is there a built in ...
3
votes
3answers
312 views

Function objects in Smalltalk (or executing blocks with no `value:`)

Is it possible to send an anonymous message to an object? I want to compose three objects like this (think FP): " find inner product " reduce + (applyToAll * (transpose #(1 2 3) #(4 5 6))) where ...
3
votes
3answers
340 views

How to print Smalltalk code from Pharo/Squeak?

What is the best way to print - syntax colored and well formatted - code from Pharo/Squeak on paper? 1) Is there a way to print directly from within Pharo/Squeak? (i use it on macosx) 2) Is there a ...
3
votes
1answer
146 views

How can I get all the methods in a Protocol?

How can I get a collection of all the (class) methods in a given protocol in smalltalk/squeak/pharo? I'm trying to collect the values returned by a group of methods. I don't want to have to store the ...
3
votes
1answer
73 views

I need a dictionary-like mapping between characters and other kinds of objects. Which class would be best?

This is in Squeak/Pharo. If I want to have a mapping between Character objects like $a and $b to other kinds of objects, and want to look up those other objects based on the Character, what is the ...
3
votes
3answers
320 views

Working with Excel files in web app frameworks like Seaside

Ive been reading about seaside and like the sound of it but i cant see an easy way for handling data files, primarily importing Excel. Of course csv files would be more straight forward, but are there ...
3
votes
3answers
392 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 ...
3
votes
6answers
727 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 := ...
3
votes
3answers
671 views

How to create a global variable in Squeak?

I don't mean a class variable. I want a variable that can be used everywhere. Where should I define it? [in squeak]
3
votes
5answers
362 views

Message forwarding in Smalltalk

So I'm writing an application where one object has a bunch of delegate objects that it forwards messages to. The idea is that I can say someObject sendMessage:aMessage and aMessage will be sent to ...
3
votes
2answers
312 views

How can I run VisualWorks under OpenBSD?

Has anyone gotten VisualWorks running under OpenBSD? It's not an officially supported platform, but one of the Cincom guys was telling me that it should be able to run under a linux compatibility ...
2
votes
1answer
70 views

Route for learning Smalltalk aka Squeak

Calling Jedi Masters of the Smalltalk universe, I have knowledge of C++/Python/Perl and have been coding for 5+ years now. I have to fork Scratch - MIT's Visual programming language to add support ...

1 2 3