active questions tagged smalltalk - Stack Overflowmost recent 30 from stackoverflow.com2009-11-29T11:35:52Zhttp://stackoverflow.com/feeds/tag/smalltalkhttp://www.creativecommons.org/licenses/by-nc/2.5/rdfhttp://stackoverflow.com/questions/1810383/pharo-gofer-can-it-fallback-to-local-package-cache-when-offline1Pharo Gofer, can it fallback to local package cache when offline?Adrian2009-11-27T19:39:51Z2009-11-27T21:33:21Z
<p>Can I tell <code>Gofer</code> to fall back to the local package cache when no internet is available?</p>
<p>For example such that I can use</p>
<pre><code>Gofer it
squeaksource: 'CodePhoo';
addPackage: 'CodePhoo';
load
</code></pre>
<p>to setup an image when offline on the train? (In that case we can be sure that the packages are in fact available locally from a previous image setup.)</p>
http://stackoverflow.com/questions/1014369/what-makes-a-framework-a-true-mvc-framework9What makes a framework a "true" MVC framework?Alan Storm2009-06-18T18:23:32Z2009-11-26T15:51:58Z
<p>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 clever hacks, but not true MVC". </p>
<p>So, what makes something a "true" MVC framework. i.e. what's an example of a .NET or Java MVC framework that does things differently than Cake, Code Igniter, Symfony, etc., and what are those different things? Is it just PHP's lack of a forced object orientation requiring a bootstrap, or is it something else?</p>
<p>I know why PHP the language "sucks", I'm more interested in the differences in MVC implementation and/or use.</p>
http://stackoverflow.com/questions/1776119/how-do-i-copy-and-paste-an-error-message-in-pharo1How do I copy and paste an error message in Pharo?Niko2009-11-21T17:27:32Z2009-11-23T00:55:23Z
<p>Squeak was once innovative by giving people more than a dull error message: a debugger and go figure out! </p>
<p>However, nowadays there's a google, and now it'd rock to copy paste the error message, which is typically served as the title of a debugger window. How can I copy and paste that error message?</p>
http://stackoverflow.com/questions/1097585/is-there-a-script-that-turns-a-pharo-core-image-into-something-more-useful-that2Is there a script that turns a Pharo core image into something more useful, that would include an OmniBrowser?Niko2009-07-08T11:49:43Z2009-11-20T13:04:08Z
<p>Hi,</p>
<p>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 into Pharo that the core image misses, as compared to the dev image.</p>
<p>Cheers,</p>
<p>Niko</p>
http://stackoverflow.com/questions/1769778/migrating-from-sunit-to-phexample2Migrating from SUnit to Phexamplegulliver2009-11-20T11:07:45Z2009-11-20T12:32:38Z
<p>Hi, I'm trying out Pharo's <a href="http://smalltalkthoughts.blogspot.com/2009/11/phexample-because-examples-expand-on.html" rel="nofollow">Phexample</a> 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 tests?</p>
http://stackoverflow.com/questions/1759018/distributed-source-control-for-visualworks-smalltalk2Distributed source control for VisualWorks SmalltalkBenjamin Pollack2009-11-18T20:53:56Z2009-11-19T17:06:15Z
<p>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 called Monticello that works passably well. As near as I can tell, VisualWorks' main VCS, StORE, only works in old-fashioned centralized mode. Is there a system similar to Monticello available for VisualWorks? Alternatively, am I misunderstanding the right way to use StORE?</p>
http://stackoverflow.com/questions/1500907/smalltalk-compilers-that-target-either-java-net-or-ruby3Smalltalk compilers that target either Java, .NET or Rubyjm044692009-09-30T22:04:42Z2009-11-18T11:44:43Z
<p>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 Smalltalk.</p>
<p>I have googled for solutions and ran across a company who had a website (<a href="http://www.smalltalkmigrations.com/" rel="nofollow">http://www.smalltalkmigrations.com/</a>) but it seems as if they are no longer in business and looking for other options.</p>
http://stackoverflow.com/questions/1641400/smalltalk-inserting-a-tab-character-visual-works2Smalltalk - Inserting a TAB character (Visual Works)unknown (google)2009-10-29T03:05:00Z2009-11-18T11:39:32Z
<p>I'm having some trouble inserting a tab between two strings.</p>
<pre><code>stringOne := 'Name'.
stringTwo := 'Address'.
</code></pre>
<p>I've tried:</p>
<pre><code>info := stringOne, String tab, stringTwo.
</code></pre>
<p>or </p>
<pre><code>info := stringOne, Character tab asString, stringTwo.
</code></pre>
<p>But none of those two messages are understood. I'm using Visual Works.</p>
http://stackoverflow.com/questions/187380/why-use-ruby-instead-of-smalltalk34Why use Ruby instead of Smalltalk?matthewgarysmith2008-10-09T13:58:41Z2009-11-17T18:16:19Z
<p>Ruby is becoming <a href="http://www.tiobe.com/index.php/content/paperinfo/tpci/index.html" rel="nofollow">popular</a>, 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 -- <a href="http://ruby.gemstone.com/" rel="nofollow">maglev</a> is a testament to that. Despite having a more unusual syntax, Smalltalk has all (if not more) of the object-oriented beauty of Ruby. </p>
<p>From what I have read, Smalltalk seems to have Ruby beat on:</p>
<ul>
<li>Maturity (developed in the 1970's)</li>
<li>Stability</li>
<li>Commercial support</li>
<li><a href="http://www.wiresong.ca/Monticello" rel="nofollow">Distributed source control</a> (understands the structure of the code, not just text diffing)</li>
<li>Several <a href="http://en.wikipedia.org/wiki/Smalltalk#List_of_implementations" rel="nofollow">implementations of the VM</a></li>
<li>Cross-platform support</li>
<li>The <a href="http://www.seaside.st/" rel="nofollow">seaside web framework</a> as a <a href="http://www.sauria.com/blog/2005/11/10" rel="nofollow">strong alternative to Rails</a> </li>
</ul>
<p>It seems like Ruby is just reinventing the wheel. So, why don't Ruby developers use SmallTalk? <strong>What does Ruby have the Smalltalk doesn't?</strong> </p>
<p><em>For the record: I'm a Ruby guy with little to no experience in Smalltalk, but I'm starting to wonder why.</em></p>
<p><hr /></p>
<p><strong>Edit:</strong> I think the ease-of-scripting issue has been addressed by <a href="http://en.wikipedia.org/wiki/GNU_Smalltalk" rel="nofollow">GNU Smalltalk</a>. As I understand it, this allows you to write smalltalk in regular old text files, and you no longer need to be in the Smalltalk IDE. You can then <a href="http://www.gnu.org/software/smalltalk/manual/html_node/Invocation.html#Invocation" rel="nofollow">run your scripts</a> with:</p>
<pre><code>gst smalltalk_file
</code></pre>
http://stackoverflow.com/questions/1671154/gemstone-linux-apache-seaside-smalltalk-how-practical-is-4gb1GemStone-Linux-Apache-Seaside-Smalltalk.. how practical is 4GB?Paulb2009-11-04T01:08:13Z2009-11-14T00:29:06Z
<p>I am really interested in <a href="http://seaside.gemstone.com/" rel="nofollow" title="GLASS">GLASS</a>. The 4GB limit for the free version has me concerned. Especially when I consider the <a href="http://seaside.gemstone.com/docs/GLASS-Announcement.htm" rel="nofollow" title="price">price</a> for the next level ($7000 year).</p>
<ol>
<li><p>I know this can be subjective and variable, but can someone describe for me in everyday terms what 4 GB of GLASS will get you? Maybe a business example. 4 GB may get me more storage than I realize.. and I don't have to worry about it.</p></li>
<li><p>In my app, some messages have file attachments up to 5 MB in size. Can I conserve the 4 GB of Gemstone space by saving these attachments directly to files on the operating system, instead of inside Gemstone? I'm thinking yes.</p></li>
</ol>
http://stackoverflow.com/questions/1727422/redefining-instance-variables-of-a-smalltalk-class4Redefining instance variables of a Smalltalk classSean2009-11-13T06:07:00Z2009-11-13T06:13:11Z
<p>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 program's objects are using alters the running program's behavior. It's clearly powerful stuff and I understand how that can work the way it does. What I can't seem to nail down for certain is what happens to the existing instances of a class when you want to add, remove, or rename instance variables of that class.</p>
<p>I can't imagine how one can alter the instance variables that all the classes are using in a running program and still expect the existing instances of that class to function correctly afterward. Perhaps I'm adding a new instance variable that I need to have initialized and where previously existing methods have been altered to depend on this variable. Couldn't I end up with a horrible malfunction of any running code that has live instances of that class? Or what if the meaning of an instance variable has changed and I now expect a different kind of object to be stored there than was previously? Is there some kind of "upgrade" mechanism? Or is the usual practice to just let the previous instances crash and burn? Or is this simply a case of "we don't do that sort of thing on running programs and expect them to survive?"</p>
<p>The only reasonably clean approach I can think of is that when you alter the instance variable definitions perhaps it actually creates an entirely new class and the old instances, prior to the change, continue to function just fine with the old class definition (which is now inaccessible by name since the name was redefined to the new class definition). Perhaps that is the most logical explanation - but since I haven't found anything that directly explains this process, I figured I'd ask here and see what kind of fun information that got me. :)</p>
http://stackoverflow.com/questions/1598054/smalltalk-newline-character0Smalltalk, newline characterunknown (google)2009-10-21T00:13:00Z2009-11-11T16:51:22Z
<p>Does anybody know what's the newline delimiter for a string in smalltalk?</p>
<p>I'm trying to split a string in separate lines, but I cannot figure out what's the newline character is smalltalk.</p>
<p>ie. </p>
<pre><code>string := 'smalltalk is
a lot of fun.
ok, it's not.'
I need to split it in:
line1: smalltalk is
line2: a lot of fun.
line3: ok, it's not.
</code></pre>
<p>I can split a line based on any letter or symbol, but I can't figure out what the newline delimter is.</p>
<p>OK here is how I'm splitting the string based on commas, but I cannot do it based on a new line.</p>
http://stackoverflow.com/questions/1708576/if-there-was-one-programming-language-u-knew-waht-would-it-be-3If there was one programming language u knew.... waht would it be? [closed]potlee2009-11-10T14:57:38Z2009-11-10T14:57:38Z
<p>programming is become one thing everyone needs to know these days, more than ever before. Not speaking from the perspective of a typical programmer of course, real programmers <em>need</em> to know more than one language. If I'm not one of those. i just code because love coding, i'm on my way to being a chemical engineer. i find excuses to code ....like.... writing a ruby script to automatically open utorrent at 2 am, after which internet if free, writing a c program to solve my math problems(although it takes longer, its more fun)
so, what programing language would u think a person who knows just one know.
(i prefer ruby for myself, i just love the elegance and the simplicity, i want other;s opinions and reasons)
I'd also love comparisons between how easy it is to read code, the type of people im talking about don't have too much time to devote to programming, they'd prefer a language that would have a limited type of syntactical constructions making it east to read code.</p>
http://stackoverflow.com/questions/948958/why-does-the-squeak-interface-look-and-act-so-antiquated6Why does the Squeak interface look and act so antiquated?David2009-06-04T06:53:08Z2009-11-08T23:16:39Z
<p>Don't get me wrong - I love Smalltalk, but...</p>
<p>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 GNOME, MacOS X, and Windows Vista with their combination of ease of use and visually pleasing eye-candy with Squeak's flat 2-D cartoony 16-color (or is it 256 colors?) interface.</p>
<p>Aren't we ever going to see modern user interface design put into Squeak?</p>
<p>Or am I missing something entirely and the current crop of computer user interfaces are all wrong?</p>
http://stackoverflow.com/questions/1635902/best-os-and-tools-for-smalltalk-learning-and-development1Best OS And Tools For SmallTalk Learning And DevelopmentNathan Campos2009-10-28T08:44:25Z2009-11-02T13:12:48Z
<p>I'm starting to learn Smalltalk. What's the best OS (in terms of having more and better tools) and tools for development?</p>
http://stackoverflow.com/questions/1583145/performance-differences-between-swazoo-and-komanche3Performance differences between Swazoo and Komanche?Richard Durr2009-10-17T20:41:18Z2009-11-02T13:10:57Z
<p>Hello,</p>
<p>I'd like to know what the performance differences between Swazoo and Komanche in general and for Seaside are. Especially <strong>why</strong> and <strong>in what situations</strong> I should prefer the one over the other?</p>
http://stackoverflow.com/questions/1528760/smalltalk-collections1Smalltalk collections. unknown (google)2009-10-06T23:54:48Z2009-10-31T01:02:39Z
<p>If I have an array of employees, how can I sorted based on employee last name?</p>
http://stackoverflow.com/questions/1641303/smalltalk-compare-two-strings-for-equality3Smalltalk - Compare two strings for equalityunknown (google)2009-10-29T02:28:20Z2009-10-30T18:02:17Z
<p>I am trying to compare two strings in Smalltalk, but I seem to be doing something wrong.</p>
<p>I keep getting this error:</p>
<p>Unhandled Exception: Non-boolean receiver. Proceed for truth.</p>
<pre><code>stringOne := 'hello'.
stringTwo := 'hello'.
myNumber := 10.
[stringOne = stringTwo ] ifTrue:[
myNumber := 20].
</code></pre>
<p>Any idea what I'm doing wrong?</p>
http://stackoverflow.com/questions/461052/smalltalk-learning-project-any-recommendation3Smalltalk Learning Project: Any recommendation ?Andrei Savu2009-01-20T12:10:25Z2009-10-30T15:01:09Z
<p>Currently I am learning Smalltalk. I do this because I want to learn as much as I can in one week about a new programming language in order to improve my skills. Next week I will try something else.</p>
<p>So far I am able to read Smalltalk code but I have a very limited experience in writing. Can you recommend me any small size project that will help me understand better this language in a short time period?</p>
http://stackoverflow.com/questions/1605082/smalltalk-displaying-orderedcollection-to-list-widget1Smalltalk, displaying OrderedCollection to List Widgetunknown (google)2009-10-22T04:55:30Z2009-10-29T03:25:29Z
<p>Hi I have an ordered collection of strings which I'm trying to display on a list widget.
I do the following:</p>
<pre><code>self displayWidget list: coll.
</code></pre>
<p>where displayWidget is a List Widget and coll is the OrderedCollection containing the strings. It will display it, but it displays it in a single line.</p>
<p>Instead of getting</p>
<pre><code>line one
line two
line three
</code></pre>
<p>I get:</p>
<pre><code>line oneline twoline three
</code></pre>
<p><strong>I'm using visual works.*</strong></p>
http://stackoverflow.com/questions/1634605/is-smalltalk-dead-4Is SmallTalk "Dead"? [closed]Nathan Campos2009-10-28T00:56:13Z2009-10-28T01:04:52Z
<p>Hello,</p>
<p>I'm thinking to start learning SmallTalk, but as I can see, SmallTalk was left in the time, because in the last years I didn't see much SmallTalk developers, but is it dead? Thanks</p>
http://stackoverflow.com/questions/1583597/asm-c-python-perl-lisp-scheme-programmer-looking-for-something-new-to-l4asm / C / Python / Perl / Lisp / Scheme Programmer looking for something new to learn.adriyel2009-10-18T00:29:48Z2009-10-23T10:27:16Z
<p>I need to have an at-home project now that I'm working on Python/Django at work. I'd like to learn something new, so I was thinking of checking out Java.</p>
<p>What's the most well respected web framework for deploying Java web apps?
The only reason I'm not checking out ruby on rails is because of how similar the ORM and other parts are to Django.</p>
<p>Alternatively, does anyone think I should take a look at seaside/smalltalk? Can anyone explain why I should?</p>
<p>Haskell is something I'll consider if anyone can make a good argument for it. I'd need a web framework and database access library to go along with it though.</p>
<p>I'd consider factor/forth if I wasn't so accustomed to the stack paradigm via x86/asm. I'd be willing to hear any counter-arguments to this as well.</p>
<p>See also: <a href="http://www.reddit.com/r/programming/comments/9v3uf/asm%5Fc%5Fpython%5Fperl%5Flisp%5Fscheme%5Fprogrammer%5Flooking/" rel="nofollow">http://www.reddit.com/r/programming/comments/9v3uf/asm%5Fc%5Fpython%5Fperl%5Flisp%5Fscheme%5Fprogrammer%5Flooking/</a></p>
http://stackoverflow.com/questions/1603693/smalltalk-converting-text-object-to-string1Smalltalk - Converting text object to stringunknown (google)2009-10-21T21:13:59Z2009-10-22T15:15:35Z
<p>Hi I have text editor widget in smalltalk (visual works) that returns a text object, however I want the text returned to be handled as a string object.</p>
<p>How do you parse a text object as a string?</p>
http://stackoverflow.com/questions/179238/what-scares-you-the-most-about-the-integrated-ide-of-most-modern-smalltalks11What scares you the most about the integrated IDE of most modern Smalltalks?Randal Schwartz2008-10-07T16:13:24Z2009-10-21T02:44:49Z
<p>As I'm <a href="http://methodsandmessages.vox.com/library/post/the-year-of-smalltalk.html" rel="nofollow">riding the wave of resurgence of Smalltalk</a> (especially because many Ruby-on-Rails people are rediscovering Smalltalk and seeing <a href="http://seaside.st" rel="nofollow">Seaside</a> as their next upgraded web framework), I get questions like "yeah, but how do I use my favorite editor to edit Smalltalk code?" or "Does Smalltalk still insist on living in a world of its own?".</p>
<p>Now, <a href="http://methodsandmessages.vox.com/library/post/transcript-show-hello-world-cr.html" rel="nofollow">having first experienced Smalltalk back in 1981</a>, I don't understand these questions very well. It seems rather natural that I'd want the editor and debugger to be savvy of my current code state, and integrate with the change control system that is Smalltalk-aware. Using an external editor or debugger or change control manager would seem very awkward.</p>
<p>So what is it that scares you the most about not being able to edit the five-line methods in Smalltalk with your favorite editor, or use your favorite non-Smalltalk-aware change control system?</p>
http://stackoverflow.com/questions/1451989/does-seaside-scale7Does Seaside scale?Richard Durr2009-09-20T20:55:36Z2009-10-13T14:31:10Z
<p>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 scaling. </p>
<p>Ruby on rails on the other hand shares as less state as possible. It has been known to scale pretty well, even if it is dog slow compared to modern smalltalk vms. flickr uses php and has scaled to an extremly big infrastructure...</p>
<p>So has anybody some experience in the scaling of Seaside?</p>
http://stackoverflow.com/questions/1526326/smalltalk-how-to-insert-tab-in-a-string3Smalltalk, how to insert tab in a stringunknown (google)2009-10-06T15:25:21Z2009-10-06T20:36:29Z
<p>How do you insert a "tab" in a string? I thought it was t enclosed in <> , but I do:</p>
<pre><code>'Name <t> Age <t> Occupation'
</code></pre>
<p>prints exactly how it's typed. I would like to get</p>
<pre><code>Name Age Occupation
</code></pre>
<p>instead of </p>
<pre><code>Name <t> Age <t> Occupation
</code></pre>
http://stackoverflow.com/questions/1514232/smalltalk-collections-and-sorting1Smalltalk collections and sortingkaka2009-10-03T16:41:03Z2009-10-03T23:52:41Z
<p>I need a collection of items in which I can perform selection sort in Smalltalk.</p>
<p>What's the best thing to use? List, set, linkedlist, etc.?</p>
http://stackoverflow.com/questions/1514383/typed-collections-in-smalltalk2Typed collections in Smalltalkunknown (google)2009-10-03T17:40:24Z2009-10-03T18:49:32Z
<p>I'm trying to learn some smalltalk programming.... I'm trying to create a list of objects of type myClass. What's the best way to do this?</p>
<p>I have the following:</p>
<pre><code>| list |
list := OrderedCollection new.
</code></pre>
<p>Correct me if I'm wrong.</p>
<p>So how should I add elements to my list?</p>
http://stackoverflow.com/questions/1508256/how-does-smalltalk-pharo-for-example-compare-to-python4How does Smalltalk (Pharo for example) compare to Python?Richard Durr2009-10-02T08:09:36Z2009-10-02T15:54:15Z
<p>I've seen some comparisons between <strong>Smalltalk and Ruby</strong> on the one hand and <strong>Ruby and Python</strong> on the other, but <strong>not between Python and Smalltalk</strong>. I'd especially like to know what the fundamental differences in Implementation, Syntax, Extensiabillity and Philosophy are. </p>
<p><em>For example Python does not seem to have Metaclasses. Smalltalk has no concept of generators. And although both are said to be dynamicly typed, I believe that Python does not do dynamic method dispatch. Is this correct?</em></p>
http://stackoverflow.com/questions/1416624/invoking-shell-commands-from-squeak-or-pharo1Invoking shell commands from Squeak or Pharosqueaknewb2009-09-13T01:40:10Z2009-09-19T21:04:59Z
<p>How can you invoke shell commands from Squeak and Pharo? Do these environments have anything in them like the system() function in certain unix languages to run external shell commands, or the backticks (can't make them here do to the editor, but what you get when you push the key left of "1" and above "TAB") to capture the output of commands?</p>