Tagged Questions
Pharo is an open-source Smalltalk distribution.
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 ...
12
votes
3answers
687 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
3answers
665 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?
8
votes
3answers
379 views
Is there a dependency injection framework for Smalltalk?
I'm running Pharo and I'm just in a use case that sort of screams for Dependency Injection à la Guice. Is there something similar for Smalltalk?
I understand that you can sort of do it all by foot, ...
8
votes
3answers
815 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, ...
6
votes
6answers
442 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
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 ...
5
votes
2answers
95 views
How can I find all objects that reference myObject?
I have an object myObject and I'm not sure who's holding references to it. (I want to know because I'm reverse engineering something.)
I found the button "Objects pointing to this value" in the ...
5
votes
1answer
52 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
1answer
73 views
Comparing newline counts speed between wc and Smalltalk
I am comparing performance for reading how many lines contains a file.
I did it first using the wc command line tool:
$ time wc -l bigFile.csv
1673820 bigFile.csv
real 0m0.157s
user 0m0.124s
...
5
votes
3answers
173 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
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
3answers
135 views
Why are Metaclasses instances of Metaclass and not Class?
I'd like to know the reasoning why there are two different classes used, instead of just using Class for both.
5
votes
4answers
729 views
Smalltalk web app deployment on headless Linux server
We wrote a small prototype web app using Pharo and Seaside and we want to now demonstrate to the suits that the app can be deployed into our standard Linux build. We use a mix of CentOS, Ubuntu Server ...
5
votes
3answers
697 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
1answer
64 views
How to prevent Pharo from executing a #startUp-Method of a class?
I added a startUp-Method to one of my classes that immediatelly quits my image. Is there a way to prevent Pharo from executing that method so that I can fix it?
4
votes
2answers
49 views
In Pharo, how can you measure the system's current total memory consumption?
I'd like to track memory usage thru the runtime of my image. I'd like to frequently measure the current memory usage.
4
votes
1answer
58 views
How can you programatically add a class variable to a class in Pharo?
How can you programatically add a class variable to a class in Pharo? It should be in the class builder, that's where you can add instance variables to a class. But I don't see it.
4
votes
2answers
42 views
Saving several Monticello packages at once
I am working with Pharo Smalltalk. Suppose you want to save your own group of packages into a local repository, you know that your packages are prefixed with "MyPrefix". What's the right message to do ...
4
votes
2answers
70 views
In Pharo, my classes should not appear in the Browser, or even in the Smalltalk global
I don't want my new classes to appear in the system browser, moreover, i dont think they should appear in the Smalltalk global.
By default, classes appear in the browser and in the Smalltalk global. ...
4
votes
2answers
68 views
What is the correct way to test Unicode support in a Smalltalk implementation?
Given any Smalltalk flavor, how should I proceed to check if Unicode is supported? In case of not having support, how can I detect at which level is missing (VM, font, Converter, etc)?
4
votes
3answers
323 views
How to save a pharo image automatically every hour?
I want to save my Pharo image every hour on the hour automatically.
How would you make this automatic within the image?
I've seen the Pier project do this.
But I'm not sure how they do it.
TIA
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
341 views
Smalltalk Variadic functions
Does Smalltalk(especially Squeak/Pharo) have some form of variadic functions?
I was just reading about the power of designing your own control statments in smalltalk and while I'm a big fan of ...
4
votes
1answer
121 views
Adding stuff to run on startup of Pharo Image
I'd like to add stuff to run at the beginning of a pharo image start-up. Nothing fancy just a call to a class method that is an entry point to my application.
I can't find any guides to making ...
4
votes
2answers
213 views
Pharo/Squeak and GemStone?
May I ask who has used this combination and how good that has worked?
What about ease of deployment also? Especially interesting would be in conjunction with either Seaside or Aida/Web...
It's a ...
4
votes
2answers
420 views
Browser that does refactoring in Smalltalk Pharo?
The Pharo dev image ships, by default, with a browser that doesn't seem to have any refactoring abilities. What's the most convenient way to transform a fresh Pharo image into something more useful?
3
votes
1answer
96 views
FFI error module not found
I'm using Ubuntu 64bit and Pharo 1.2.1
I've written some FFI code that accesses crypt(3) from glibc. I'd like to change it to access crypt from libxcrypt that I install using apt-get. When I change ...
3
votes
2answers
212 views
Python development enviroments like Smalltalk
(I hope to explain well my question)
I like to programming in Python language to solve daily problems in system administration contexts, and I am happy for that, but lately I am learning Pharo ...
3
votes
1answer
128 views
Where could I find more examples of using PetitParser?
I'm looking for additional examples of using PetitParser beyond PPArithmeticParser and PPLambdaParser that are provided in the tests package and a couple of blog posts by Lukas? If anyone's willing to ...
3
votes
2answers
92 views
Defining a maximum running time for a process
I need to stop a process from running longer than n seconds, so here's what I thought I'd do:
|aProcess|
aProcess := [ 10000 timesRepeat: [Transcript show: 'X'] ] fork.
[(Delay forSeconds: 1) wait. ...
3
votes
2answers
141 views
How do I embed a Smalltalk code editor into my application?
I'm building a blog entry viewer and editor application in my Pharo image, and the entry content is formatted as Smalltalk code (the Seaside markup API is really nice). I'm pretty new to Smalltalk, ...
3
votes
2answers
237 views
Best way to extend Pharo Smalltalk class behavior?
I want to extend the String class with a method to create a url slug out of a string. I found a link here that shows how you can move extensions to their own package:
Smalltalk Daily 07/13/10: ...
3
votes
3answers
311 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
2answers
251 views
What is the difference between a Morph in Morphic and a NSView in Cocoa?
I'd like to know about the things that make Morphic special.
3
votes
1answer
74 views
How to mark expected failures in SUnit?
How can I mark a unit test in SUnit (or phexample) as expected failures?
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
2answers
157 views
Unix crypt() function in smalltalk/pharo
I want to encode passwords for UNIX accounts using the crypt function. I'm using pharo 1.0. I tried to install the crypto package from squeakmap, but it gaves me an error and the package seem to get ...
3
votes
1answer
145 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
72 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 ...
2
votes
2answers
47 views
2
votes
1answer
55 views
In Moose, why can't I populate my dynamic presentation with an action?
This works (a debugger comes up):
bubbler := GLMFinder new.
bubbler show: [:a |
a text
selectionPopulate: #selection
on: $k
entitled: 'Implementors (k)'
with: [ :text | ...
2
votes
3answers
61 views
How do I simply redirect to another toplevel Seaside component?
Newbie question. Google has been no help at all. Besides, the problem I have is kinda hard to explain properly.
I have two components in my application: a JournalView and a JournalEntryView. The ...
2
votes
1answer
69 views
Is there a reusable Dialog for getting a class name in Pharo?
I need something better than writing the entire class name in a text field. Maybe a reduced view of the System Browser.
I've searched class names with 'Dialog' and 'Window' but i couldn't find it.
2
votes
2answers
210 views
A Smalltalk implementation with the perfect feature set
I prefer interfacing with programming languages through a standard bash terminal. While Squeak and Pharo are well documented, they don't seem to have a CLI, just a VM GUI.
GNU Smalltalk and Slate ...
2
votes
2answers
77 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. ...
2
votes
1answer
53 views
What high level network object passing facilities exist in squeak/pharo?
The squeak webpage says: Squeak provides programatic access to the networking environment of your computer at all levels, from high level object passing
What package should I load to take a look at ...
2
votes
4answers
144 views
Can I use interactive command line for Squeak/Pharo development?
I tried to install Squeak/Pharo into Ubuntu server machine.
./squeak -vm-display-null ./Pharo-1.2.2-12353/Pharo-1.2.image
It executed, but there was no command-line. No way to use without GUI?
2
votes
6answers
221 views
smalltalk public initialize
Is there any way to "hide" initialize method so it couldn't be called after construction?
I would like something like:
Class>>new: params
^super newInstance initializedBy: [
"actual ...