Tagged Questions
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 ...
3
votes
6answers
726 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
2answers
311 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
2answers
78 views
Packages for developing static web sites in Smalltalk?
What would be good (cross Smalltalk, mantained, documented) web frameworks or packages (in terms of fewer things to learn/adapt) to use for implementing a static web site with really few forms? .i.e. ...
1
vote
1answer
165 views
What is the “best practice” portable way of Symbol using in Smalltalk?
What are the "best practice" rules for using symbols in Smalltalk in a portable way? I use squeak and pharo mainly and I know they both allow 'foo' = #foo and #foo = 'foo' to be true while other ...
0
votes
1answer
57 views
How to identify binary and text files using Smalltalk
I want to verify that a given file in a path is of type text file, i.e. not binary, i.e. readable by a human. I guess reading first characters and check each character with :
isAlphaNumeric
...
0
votes
1answer
114 views
Tree implementations in Smalltalk
I'm trying to find open-source implementations of Trees (not binary) like Red-black, B-Trees, 2-3 Trees, or General Tree, ideally for Squeak/Pharo, but any other implementations in other Smalltalk ...