Tagged Questions

Smalltalk is one of the oldest object-oriented programming languages. It pioneered many aspects modern developers take for granted: Virtual Machines (Smalltalk was an interpreted language) IDEs Pure object approach (no primitives or keywords at all) Closures (called Blocks) An image (i.e. non-file-based language) Advanced debugging techniques (halting programs on-the-fly, inspection, writing or modifying code on-the-fly)

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 ...
77
votes
29answers
9k 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 -- ...
69
votes
19answers
4k views

Non-Mainstream Languages, Bad for your resume? [closed]

I got my BS in Computer Science about seven years ago. I spent two years in neuroscience research and the next three providing what amounts to tech support. But I love computer programming - and I ...
49
votes
26answers
9k views

Where do you use Smalltalk?

In what solutions are you employing Smalltalk? What are the pros&cons of Smalltalk for those solutions?
49
votes
20answers
5k views

Would you start learning Smalltalk?

My questions is simple! Would you start learning Smalltalk if you had the time? Why? Why not? Do you already know Smalltalk? Why would you recommend Smalltalk? Why not? Personally I'm a Ruby on ...
31
votes
12answers
2k 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?
21
votes
6answers
1k views

Is Seaside still a valid option?

Seaside just released a release candidate for the upcoming 3.0 version, so it appeared on my radar again. As I'm currently pondering what web framework to use for a future project, I wonder whether ...
19
votes
6answers
975 views

Run Smalltalk on server without GUI?

I've got rather distinct question - I'd like to run Smalltalk on a production server without using graphical interface. Is this possible with VW or Pharo (maybe even Squeak)? I've got a VPS hosting ...
18
votes
8answers
1k views

What scares you the most about the integrated IDE of most modern Smalltalks? [closed]

As I'm riding the wave of resurgence of Smalltalk (especially because many Ruby-on-Rails people are rediscovering Smalltalk and seeing Seaside as their next upgraded web framework), I get questions ...
17
votes
8answers
1k views

Why do pythonistas call the current reference “self” and not “this”?

Python is the language I know the most, and strangely I still don't know why I'm typing "self" and not "this" like in Java or PHP. I know that Python is older than Java, but I can't figure out where ...
17
votes
13answers
2k views

Looking for examples of “real” uses of continuations

I'm trying to grasp the concept of continuations and I found several small teaching examples like this one from the Wikipedia article: (define the-continuation #f) (define (test) (let ((i 0)) ...
16
votes
7answers
940 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 ...
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
7answers
524 views

Version control for Smalltalk / Seaside?

I'm primarily a Java EE developer. I've been asked to explore the possibility of using Smalltalk / Seaside in an upcoming web project. As you can imagine, this has led to many interesting questions. ...
14
votes
7answers
1k views

Does Seaside scale?

Seaside is known as "the heretical web framework". One of the points that make it heretical is that it has much shared state. That however is something which, in my current understanding, hinders easy ...
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 ...
13
votes
1answer
279 views

What's the Clojure equivalent of inject:into: in Smalltalk?

I'm trying to learn Clojure but my synapses seem to be hard-wired to Smalltalk. What's the equivalent of this function? [:n :k | (1 to: k) inject: 1 into: [:c :i | c * (n - k + i / i)]] this is ...
13
votes
12answers
1k views

Which programming languages (besides Smalltalk) are image based?

I'm really interested if someone knows a programming language that uses an image like Smalltalk... I think that is one of the greatest ides in the history of computer science.. I can not find other ...
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 ...
12
votes
14answers
940 views

Back-end choice for a new dynamic programming language?

I've been developing a Smalltalk variant for just the fun of it and I wonder what would be a fellow stackoverflowers choice when it comes to targeting a back-end. These were my current considerations: ...
12
votes
10answers
4k views

What's the best free IDE for learning smalltalk?

What do you think is a good IDE for learning SmallTalk? I'll only be using it as a hobby, so it has to be free.
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
7answers
371 views

What other programming languages have a Smalltalk-like message-passing syntax?

What languages are there with a message-passing syntax similar to Smalltalk's? Objective-C is the only one I'm familiar with. Specifically, I was wondering if any other language implementations exist ...
11
votes
7answers
599 views

Are there any good open source smalltalk implementations?

Do you know any good smalltalk implementations which meet the following criteria: are open source (and free) are enterprise ready - I can do commercial apps into it works on os x I'm asking this ...
11
votes
7answers
498 views

What are the key differences between OO in Smalltalk and Java?

What are the key differences between OO in Smalltalk and Java? Please note that I am a Java programmer trying to expand his horizons by exploring Smalltalk. Currently I know almost nothing about ...
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?
10
votes
2answers
423 views

Smalltalk blocks in Objective-c?

Does Objective-C support blocks "a la Smalltalk"? In Smalltalk, blocks are similar to "closures" or "lambda-expressions" or "nameless functions" found in other languages.
10
votes
10answers
1k views

Why is smalltalk not a functional programming language?

With the renewed interest in functional programming languages, I've seen some similitudes between Smalltalk and FPL, namely closures ( BlockClosures in Smalltalk ) Yet, Smalltalk is not a FPL? What ...
9
votes
4answers
123 views

Which innovations (like MVC, xunit, Hotspot) did Smalltalk bring?

I find more and more aspects where Smalltalk was the innovator, i.e. created the technique or at least the overall concept for the first time. I can think of the following: xunit approach IDE ...
9
votes
7answers
471 views

What is meant by classes themselves are objects?

I was Just reading about the python classes documentation,it says ,in python "classes themselves are object".How is that different from C# or Java classes? What advantageous and disadvantages this ...
9
votes
4answers
375 views

Smalltalk web development software

I try to be very cautious with this question. There are at least three different web-development frameworks available in Smalltalk. The most prominent seems to be Seaside but there is also AIDA/Web ...
9
votes
2answers
271 views

I'm confused with block in ruby, compared to smalltalk

What does block in ruby mean? It looks similar with smalltalk, but you can't send messages to it. For example, in smalltalk: [:x | x + 3] value: 3 returns 6. But in ruby: {|x| x + 3}.call 3 ...
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 ...
9
votes
5answers
10k views

Early binding vs. late binding: what are the comparative benefits and disadvantages?

When discussing the evolution of computer languages, Alan Kay says that the single most important attribute of his Smalltalk is late binding; it gives the language its malleability and extensibility, ...
8
votes
2answers
178 views

What are some of the most 'pure' object-oriented languages? [closed]

A recent introduction to Smalltalk has enlightened me on the application and benefits of a 'pure' object oriented style. I'd previously seen the benefits of this in Ruby, though the presence of non ...
8
votes
1answer
260 views

Python's if __name__==“__main__” idiom for GNU Smalltalk?

Does such a thing exist? Ruby: if __FILE__ == $0 main end Perl: unless(caller) { main; } Lua: if type(package.loaded[(...)]) ~= "userdata" then main(arg) else module(..., ...
8
votes
9answers
726 views

Best way to start with smalltalk in a windows environment (win 7) [closed]

I am a c# developer and most of my friends are much smarter than me, and they laugh at me and start to swear at me in smalltalk. I want to learn this so that I might better be insulted at their ...
8
votes
1answer
506 views

How to access the jQuery event object in a Seaside callback

Basically, I want to translate the following into Seaside Smalltalk: $(".myDiv").bind('click', function(e) { console.log(e); }); Besides that I don't want to console.log the event, but access ...
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
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
5answers
2k views

Is Smalltalk a viable development language for Mac OS X?

Every time I see a discussion on software development, always someone suggests or exalts the qualities of Smalltalk, be it the beautiful language constructs or the better implementation of basically ...
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
9answers
490 views

Do you use articles in your variable names?

Edit: There appears to be at least two valid reasons why Smalltalkers do this (readability during message chaining and scoping issues) but perhaps the question can remain open longer to address ...
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
3answers
851 views

What is the difference between Seaside programmming and other web programming

To me it seems the main point of Seaside is that it is more like normal "desktop" programming. The control flow looks much more like "traditional" programming instead of "web" programming. Is that a ...
8
votes
10answers
2k views

(Mis)Understanding Smalltalk and TDD

I'm trying to learn Smalltalk by doing, so I'm getting a grip on the syntax and style by buiding a simple "Matrix" class. First of all, I'd be grateful if linked to a good Smalltak tutorial (although ...
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
4answers
178 views

Why does Java need interfaces and Smalltalk does not?

I have been programming in Smalltalk for some time, but I never really needed interfaces to implement anything. Then why can't languages such as Java get rid of interfaces? Is it only Smalltalk or is ...
7
votes
2answers
288 views

Python and Smalltalk - Metaprogramming capabilities comparison

I have of late been learning Python, and am amazed by its superb runtime metaprogramming capabilities. Previously I came across the term 'runtime metaprogramming' was when I was reading about ...

1 2 3 4 5 8