RE: [Newbies] Re: remove allInstances?

2016-09-23 Thread Ron Teitelbaum
Woop woop, alarm alarm, error error. Sorry my alarm just went off. If Squeak quit after a become and you are seeing differences after not saving things, something is wrong. Be afraid, be very afraid. All the best, Ron Teitelbaum From: beginners-boun

RE: [Newbies] generating animations

2016-09-21 Thread Ron Teitelbaum
And Etoys! http://www.squeakland.org/ All the best, Ron Teitelbaum -Original Message- From: beginners-boun...@lists.squeakfoundation.org [mailto:beginners-boun...@lists.squeakfoundation.org] On Behalf Of Ron Teitelbaum Sent: Wednesday, September 21, 2016 9:57 PM To: 'A friendly

RE: [Newbies] generating animations

2016-09-21 Thread Ron Teitelbaum
Hi Ralph, Have you seen scratch? https://scratch.mit.edu/ All the best, Ron Teitelbaum -Original Message- From: beginners-boun...@lists.squeakfoundation.org [mailto:beginners-boun...@lists.squeakfoundation.org] On Behalf Of Ralph Boland Sent: Wednesday, September 21, 2016 9:34 PM

RE: [Newbies] Expand TextMorph to encompass entire string?

2016-09-07 Thread Ron Teitelbaum
From: John-Reed Maffeo Sent: Wednesday, September 7, 2016 10:37 PM Ron / Dan, Thanks. I have resolved the issue, by trying a lot of different, minor modifications to my methods; 59 versions of the most problematic one! [Ron Teitelbaum] Excellent I’m glad you figured it out

RE: [Newbies] Expand TextMorph to encompass entire string?

2016-09-05 Thread Ron Teitelbaum
contents. Any suggestions? [Ron Teitelbaum] Hi John-Reed, There are a number of method available to you on TextMorph. Browse TextMorph and press the instVars button. Select wrapFlag to see Accesses to that. In general the TextMorph has methods that should update the text to wrap

RE: [Newbies] Project on squeak language

2016-08-22 Thread Ron Teitelbaum
From: roger mpouma Sent: Monday, August 22, 2016 2:42 PM Hi Ron, I solved my problem, thank you for your help. I got one more question, how can i add the possibility to erase parts of what i have already drawn as item "clear" but just parts of the drawing ? [Ron

RE: [Newbies] Re: Project on squeak language

2016-08-22 Thread Ron Teitelbaum
From: Joseph Alotta Sent: Monday, August 22, 2016 1:50 PM Is //modification a new way of doing comments? [Ron Teitelbaum] Good question Joe, I assumed it was added to the email and not to code. The comments would require quotes: " this is a comment " All the bes

RE: [Newbies] Project on squeak language

2016-08-22 Thread Ron Teitelbaum
:= Color yellow.//modification drawColor := Color green. //modification drawColor := Color blue. //modification [Ron Teitelbaum] What this does is create a menu with one item clear and then it sets the drawColor to red yellow green

RE: [Newbies] Project on squeak language

2016-08-20 Thread Ron Teitelbaum
From: roger mpouma Sent: Saturday, August 20, 2016 2:42 PM How can i make this please ? I thought to add "color" and "size" commands as "clear" command in the custom menu code. After that, add "color" and "size" methods... [Ron T

RE: [Newbies] Project on squeak language

2016-08-20 Thread Ron Teitelbaum
Have you considered having a menu bar with colors and line sizes. The users can select the color and line size which will change your program to use those settings. All the best, Ron Teitelbaum From: beginners-boun...@lists.squeakfoundation.org [mailto:beginners-boun

RE: [Newbies] Re: printf not working on 5.0

2016-08-10 Thread Ron Teitelbaum
So you are all set now? Ron yes, that is the one. > On Aug 10, 2016, at 2:19 PM, Ron Teitelbaum [via Smalltalk] <[hidden email]> > wrote: > > Hi Joe, > > I'm not aware of printf is it this: http://www.squeaksource.com/Printf/ > > Ron > >

RE: [Newbies] printf not working on 5.0

2016-08-10 Thread Ron Teitelbaum
Hi Joe, I'm not aware of printf is it this: http://www.squeaksource.com/Printf/ Ron -Original Message- From: beginners-boun...@lists.squeakfoundation.org [mailto:beginners-boun...@lists.squeakfoundation.org] On Behalf Of Joseph Alotta Sent: Wednesday, August 10, 2016 12:19 PM To:

RE: [Newbies] indexing into a collection

2016-07-26 Thread Ron Teitelbaum
Hi Joe, If the orderedCollection contains your object DrivingDays then select should give you the object and not a copy. You don't need to add it back to the collection just update the object. Check your code for anything that might be making a copy. All the best, Ron Teitelbaum

RE: [Newbies] Transcript

2016-07-18 Thread Ron Teitelbaum
your transcript messages will show up. The transcript can also get you in trouble with threading, having multiple threads trying to write to the transcript. Make sure you are controlling access to the transcript if you are using it with multiple threads. All the best, Ron Teitelbaum

RE: [Newbies] evaluating strings as blocks

2016-07-11 Thread Ron Teitelbaum
Hi Joe, Have a look at Complier. Then try Complier evaluate: '1+1' All the best, Ron Teitelbaum From: Joseph Alotta Sent: Monday, July 11, 2016 12:14 PM Greetings, For debuting purposes, I want to build a string with calculations and then evaluate it. Something like: string := ‘2

RE: [Newbies] Re: '($1,925.46)' asNumber

2016-07-01 Thread Ron Teitelbaum
From: Joseph Alotta Sent: Friday, July 01, 2016 2:59 PM Thanks, Ron. I needed to preserve the negative, so I append a minus sign, then use your snippet. [Ron Teitelbaum] Excellent! Well done! , str := '($1,925.46)' . ('(*)' match: str ) ifTrue: [str := '-', str]. str := str reject

RE: [Newbies] '($1,925.46)' asNumber

2016-07-01 Thread Ron Teitelbaum
Hi Joe, If you know the format is consistent and you don't really need much error handling then something like this would work ('($1,925.46)' reject: [:e | '($),' includes: e]) asNumber All the best, Ron Teitelbaum > -Original Message- > From: beginner

RE: [Newbies] How does one create an array of points?

2016-06-20 Thread Ron Teitelbaum
From: Michael Rice Sent: Monday, June 20, 2016 11:44 AM Weird, but what do I know. I see that this (a period separating each from the next) also works: {1@1. 2@2. 3@3} => {1@1 . 2@2 . 3@3} [Ron Teitelbaum] Ahh Yes. Even better. Thanks, all. On Mon, Jun 20, 2

RE: [Newbies] How does one create an array of points?

2016-06-20 Thread Ron Teitelbaum
Hi Michael, Good question! {Point x:1 y:1. Point x:2 y:2.} It’s not obvious! Notice the periods after the end of each element. All the best, Ron Teitelbaum From: beginners-boun...@lists.squeakfoundation.org [mailto:beginners-boun...@lists.squeakfoundation.org] On Behalf

RE: [Newbies] Re: CSV file help

2016-06-17 Thread Ron Teitelbaum
latest version and press load. Monticello is a key component to managing an image. You should definitely read up on it. http://wiki.squeak.org/squeak/43 All the best, Ron Teitelbaum From: beginners-boun...@lists.squeakfoundation.org [mailto:beginners-boun...@lists.squeakfoundati

RE: [Newbies] CSV file help

2016-06-17 Thread Ron Teitelbaum
Hi Joe, I haven't tried it but I would probably start with Avi's CSV Parser http://www.squeaksource.com/CSV.html But in general you want to parse all of your lines, then for each line parse quoted values, then you can parse commas. All the best, Ron Teitelbaum > -Original Mess

RE: [Newbies] Subclassing Dictionary Redux

2016-06-13 Thread Ron Teitelbaum
bclassing Dictionary because i want to code to an "interface" rather > than the Dictionary class as I want the flexibility of changing the parent class > to some other collection if that seems appropriate. So, I did something like > this: > > Dictionary subclass: #MySubclass

RE: [Newbies] set variables before initialize and write out files before exit

2016-06-10 Thread Ron Teitelbaum
when an image is started or shutdown. I think a bit more explanation of what problem you are having is needed. All the best, Ron Teitelbaum > From: Joseph Alotta > Sent: Friday, June 10, 2016 12:23 PM > > Greetings, > > My object needs to have some variables set before i

RE: [Newbies] Re: run to here

2016-06-03 Thread Ron Teitelbaum
be 2. [Ron Teitelbaum] Yeah I know it. There are two tricks you can use here. First is go to the bottom of the loop and do “run to here”. Then use Through a few times to get back to the top of the method. Anything selected above the execution point even in a loop is the past J

RE: [Newbies] run to here

2016-06-03 Thread Ron Teitelbaum
ot; method to get to the right location in your method to start debugging. All the best, Ron Teitelbaum > From: Joseph Alotta > Sent: Friday, June 03, 2016 10:33 AM > > Greetings, > > I am using the debugger and wondering how to use the “run to here” > function. > > I

RE: [Newbies] Re: FileDirectory

2016-05-31 Thread Ron Teitelbaum
ubject: [Newbies] Re: FileDirectory > On May 26, 2016, at 5:50 PM, Ron Teitelbaum [via Smalltalk] <[hidden email]> wrote: > > Have a look at the Hierarchy for the class Url > > > > Notice the class method: #urlClassForScheme: > > > > That

RE: [Newbies] Re: FileDirectory

2016-05-26 Thread Ron Teitelbaum
Have a look at the Hierarchy for the class Url Notice the class method: #urlClassForScheme: That should give you a better understanding of why url methods are in FileDirectory. For browser like methods see HTTPClient. All the best, Ron Teitelbaum From: beginners-boun

RE: [Newbies] Re: FileDirectory

2016-05-26 Thread Ron Teitelbaum
ons. [Ron Teitelbaum] Exactly! Well done. Any dynamic information that is related to all or a collection of instances should be held on a class variable. You could of course create a framework by adding another object whose job it is to manage all these instances. Then your class variable beco

RE: [Newbies] Re: FileDirectory

2016-05-26 Thread Ron Teitelbaum
From: Joseph Alotta Sent: Thursday, May 26, 2016 3:02 PM > On May 26, 2016, at 8:29 AM, Ron Teitelbaum [via Smalltalk] <[hidden email]> > wrote: > > One more question for you. I mentioned returning a newly created instance or > a specific class from a class

RE: [Newbies] Re: FileDirectory

2016-05-26 Thread Ron Teitelbaum
dir fileExists: 'categories.CSV’ ==> true So on: is the equivalent of new, in that it gives a new instance. [Ron Teitelbaum] Exactly right. Notice the on: method on the class side, then look at #on: on the instance side. This is one of those “ah ha” moments. Classes create instances so

RE: [Newbies] Re: FileDirectory

2016-05-25 Thread Ron Teitelbaum
e question you asked there is a method on FileDirectory to determine if the file exists before you read it (it's in the method categories I pointed out to you). What is that method? All the best, Ron Teitelbaum From: beginners-boun...@lists.squeakfoundation.org [m

RE: [Newbies] FileDirectory

2016-05-25 Thread Ron Teitelbaum
', and #'file name utilities' when you get a file from that instance you are no longer on FileDirectory. What class are the file entries? Let me know if that helps. All the best, Ron Teitelbaum > -Original Message- > From: beginners-boun...@lists.squeakfoundation.org [mailto:beg

RE: [Newbies] whats the difference between over and through

2016-05-17 Thread Ron Teitelbaum
bugging journey. > > I usually debug my code into life and I still manage to press the wrong > buttons while debugging :-)) > > > Cheers, > > > Herbert > > Am 17.05.2016 um 19:36 schrieb Ron Teitelbaum: > > Hi Joe, > > > > This is a very g

RE: [Newbies] whats the difference between over and through

2016-05-17 Thread Ron Teitelbaum
se Through. I think the accepted description is: Through: if the debugger is going to execute a block, with this button you can step though this block. and it makes sense when you think I want to step through what is inside the block. "Take me through the inside of this block". Does that m

RE: [Newbies] Re: Need a local tutor for Squeak

2016-05-16 Thread Ron Teitelbaum
eetings > simultaneously. A remote user can see the real meeting room and identify > the person he wants to talk to. He then calls that person to start a > conversation. Does such a capability exist? > [Ron Teitelbaum] Right now I think your options are Facebook or google hangouts.

RE: [Newbies] Re: Need a local tutor for Squeak

2016-05-16 Thread Ron Teitelbaum
purchase a single license and then connect to various organizations, events and activities. This is the opposite of having an organizer pay. Either way it does seem like a good idea! Thanks for suggesting it. All the best, Ron Teitelbaum From: beginners-boun

RE: [Newbies] Re: '1921' romanNumber

2016-05-13 Thread Ron Teitelbaum
Thanks Nicolas. Jecel pointed it out too. I figured it had to be there but yeah I didn't see it either. Ron > -Original Message- > From: nicolas cellier > Sent: Friday, May 13, 2016 4:33 PM > > Ron Teitelbaum usmedrec.com> writes: > > > > > Hi Joe!

RE: [Newbies] '1921' romanNumber

2016-05-13 Thread Ron Teitelbaum
Hi Jecel, HAHAHA! I figured it was there somewhere. I looked for omanNumber :). Well done Jecel! All the best, Ron > From: Jecel Assumpcao Jr. > Sent: Friday, May 13, 2016 3:33 PM > > Ron, > > > I would think that 1921 asRomanNumerals (or > > asRomanNumber) would be a cool method to

RE: [Newbies] '1921' romanNumber

2016-05-13 Thread Ron Teitelbaum
Hi Joe! Try this: 'MCMXXI' romanNumber I would think that 1921 asRomanNumerals (or asRomanNumber) would be a cool method to write! I checked but don't see one :). Ron > -Original Message- > From: beginners-boun...@lists.squeakfoundation.org [mailto:beginners- >

RE: [Newbies] Re: Need a local tutor for Squeak

2016-05-13 Thread Ron Teitelbaum
.3dicc.com All the best, Ron Teitelbaum From: beginners-boun...@lists.squeakfoundation.org [mailto:beginners-boun...@lists.squeakfoundation.org] On Behalf Of Joseph Alotta Sent: Friday, May 13, 2016 9:27 AM To: beginners@lists.squeakfoundation.org Subject: [Newbies] Re: Need a local tutor

RE: [Newbies] Re: Need a local tutor for Squeak

2016-05-13 Thread Ron Teitelbaum
Hi Joe and Craig, Not sure if it will help but I’ll donate a Terf space for you to use for lessons. You can drink virtual coffee while learning Squeak in Squeak! J All the best, Ron Teitelbaum Chief Executive Officer 3D Immersive Collaboration Consulting r...@3dicc.com Follow Me

RE: [Newbies] Re: new and initialize

2016-05-10 Thread Ron Teitelbaum
From: Joseph Alotta Sent: Tuesday, May 10, 2016 3:38 PM > On May 10, 2016, at 12:45 PM, Ron Teitelbaum [via Smalltalk] <[hidden email]> > wrote: > > Hi Joe, > > Excellent question. Try this. > > Object new. > > Highlight it a

RE: [Newbies] new and initialize

2016-05-10 Thread Ron Teitelbaum
class new is implemented on. What method should you call to skip initialize? All the best, Ron Teitelbaum > -Original Message- > From: beginners-boun...@lists.squeakfoundation.org [mailto:beginners- > boun...@lists.squeakfoundation.org] On Behalf Of Joseph Alotta > Sent: Tuesday

RE: [Newbies] conceptual design help

2016-04-28 Thread Ron Teitelbaum
. Of course back to my original point, writing 3 parser methods will go faster if there are not that many formats. There is always a trade off when you consider building a framework or just hacking some code that works :). All the best, Ron Teitelbaum > From: Joseph Alotta > Sent: Thursday,

RE: [Newbies] f(x, y) or Table

2016-04-14 Thread Ron Teitelbaum
a Point. The object matching is implemented in #=. If the objects match then the value will be returned. All the best, Ron Teitelbaum > -Original Message- > From: beginners-boun...@lists.squeakfoundation.org [mailto:beginners- > boun...@lists.squeakfoundation.org] On Behalf

RE: [Newbies] How to test a String if it is a valid date?

2016-03-29 Thread Ron Teitelbaum
if myDate isNil. All the best, Ron Teitelbaum Head Of Engineering 3D Immersive Collaboration Consulting r...@3dicc.com Follow Me On Twitter: @RonTeitelbaum www.3Dicc.com https://www.google.com/+3Dicc > -Original Message- > From: beginners-boun...@lists.squeakfoundati

RE: [Newbies] RE: How to reopen a collapsed Morph from another Morph?

2015-08-15 Thread Ron Teitelbaum
From: Fredrik Alink Sent: Saturday, August 15, 2015 6:22 AM Ron Teitelbaum wrote Could you post more details like example code that shows the error, and maybe a picture of what you are seeing? http://forum.world.st/file/n4843032/SQ.png [Ron Teitelbaum] Thanks that is much more clear

RE: [Newbies] How to reopen a collapsed Morph from another Morph?

2015-08-14 Thread Ron Teitelbaum
the best, Ron Teitelbaum I found a sort of “solution”, but is leaves a residu collapsed morph on the screen: morphB: (statements) morphA currentWorld removeMorph: morphA. morphA openInWorld. self currentWorld removeMorph: self. morphA reappears opened

RE: [Newbies] RE: How to reopen a collapsed Morph from another Morph?

2015-08-14 Thread Ron Teitelbaum
Sent: Friday, August 14, 2015 4:59 PM To: beginners@lists.squeakfoundation.org Subject: [Newbies] RE: How to reopen a collapsed Morph from another Morph? Ron Teitelbaum wrote . Didn't get that from your email sorry. Have a look at Morphchanged. Calling changed on the container should

RE: [Newbies] RE: How to reopen a collapsed Morph from another Morph?

2015-08-14 Thread Ron Teitelbaum
From: Fredrik Alink Sent: Friday, August 14, 2015 3:22 PM Ron Teitelbaum wrote . See implementors of collapseOrExpand on a workspace type in collapseOrExpand and press Alt-b. . Sorry,I didn't get a reasonable clue out of that. The thing is when I click a button *inside

RE: [Newbies] How to Double Squeak?

2015-05-26 Thread Ron Teitelbaum
Hi Kirk, You are correct that you need to copy the files, I would just copy the entire directory, as you did previously. The error you saw was about the changes file. The image will still run but since the changes file is already open in the first instance it cannot be used for the second.

RE: [Newbies] Can You Hear Me Now?

2014-11-15 Thread Ron Teitelbaum
this end? Thanks for your help. - Dan -Original Message- From: Ron Teitelbaum Sent: Nov 14, 2014 11:45 AM To: 'A friendly place to get answers to even the most basic questions about Squeak.' Subject: RE: [Newbies] Can You Hear Me Now? Hi

RE: [Newbies] Can You Hear Me Now?

2014-11-13 Thread Ron Teitelbaum
Hey Dan, I don’t see that email. Did you sign up for that mailing list. If not the emails may be waiting for someone to moderate it. Make sure you are signed up, and use the same email that you signed up with and it should show up. All the best, Ron Teitelbaum From: beginners

RE: [Newbies] hi

2014-10-31 Thread Ron Teitelbaum
From: Herbert König Just think of your reply. He won't bother to read the mailing list. :-)) I thought the same thing but figured, this is a friendly group that encourages people to write in with newbie questions. Someone else might read it and say, Hey cool group. :) Ron Cheers

RE: [Newbies] hi

2014-10-31 Thread Ron Teitelbaum
Hahahah! Ok that was funny! Ron -Original Message- From: beginners-boun...@lists.squeakfoundation.org [mailto:beginners- boun...@lists.squeakfoundation.org] On Behalf Of Casey Ransberger Sent: Friday, October 31, 2014 3:49 PM To: A friendly place to get answers to even the most

RE: [Newbies] hi

2014-10-30 Thread Ron Teitelbaum
Hi Hans, |x| x := 100. |x| defines a temp x. | x y | defines both x and y as temps. The assignment operator is := If you use = or == you are asking for a comparison of x and 100. All the best, Ron Teitelbaum -Original Message- From: beginners-boun...@lists.squeakfoundation.org

RE: [Newbies] status of the 'mvc' environment?

2014-09-06 Thread Ron Teitelbaum
hirzel, thanks for the note. btw, what do you mean by _late_ andreas raab? has he passed away or something? hope that's not true. Very sad. Yes it is true he passed away early last year. http://en.wikipedia.org/wiki/Andreas_Raab Ron i will be going for an earlier version, thanks

RE: [Newbies] debugging over loops

2014-05-30 Thread Ron Teitelbaum
. It will highlight the code at its execution point. You can also just select the stack method again to do the same thing. Tally well is supposed to Tally selected code. Ignore Tally. If you want to tally something do it outside a debugger. Hope that helps! All the best, Ron Teitelbaum Head

RE: [Newbies] List still active?

2014-04-05 Thread Ron Teitelbaum
Yes the list is active. Ron Teitelbaum From: beginners-boun...@lists.squeakfoundation.org [mailto:beginners-boun...@lists.squeakfoundation.org] On Behalf Of Ben Coman Sent: Saturday, April 05, 2014 12:52 PM To: A friendly place to get answers to even the most basic questions about Squeak

RE: [Newbies] Re: Read a filestream (named pipe) with a timeout

2014-01-13 Thread Ron Teitelbaum
with this approach? Thanks, Dave On Thu, Jan 9, 2014 at 9:16 PM, Ron Teitelbaum [via Smalltalk] [hidden email] wrote:    Hi Dave,    See #dataAvailable ??and #recieveAvailableData.    It's never good to call for data if you don't know you have any. ??Better to   Â

RE: [Newbies] Pool Variables

2013-07-01 Thread Ron Teitelbaum
Hi John, You might want to parse a configuration file but you are not sure where it is used. You could share these values using pool variables. It actually is useful but you can certainly accomplish this may other ways. All the best, Ron Teitelbaum -Original Message- From

RE: [Newbies] classes and code snippets to download a web page

2013-05-24 Thread Ron Teitelbaum
this? Hi Joe, Have a look at WebClient httpGet: 'http://yourAddress.com/yourLinkToDownload' It handles everything you need. All the best, Ron Teitelbaum Head Of Engineering 3d Immersive Collaboration Consulting r...@3dicc.com Follow Me On Twitter: @RonTeitelbaum https

RE: [Newbies] Testing = and == in workspace

2012-01-06 Thread Ron Teitelbaum
Hi Ben, Have a look at the method for yourself. Check out the method = on the instance side of String. It should be pretty obvious when you get to the actual string comparison. All the best, Ron Teitelbaum -Original Message- From: beginners-boun...@lists.squeakfoundation.org

RE: [Newbies] Anyone knows why Sophie was migrated from Squeak/Smalltalk to Java?

2011-06-22 Thread Ron Teitelbaum
Hi David, Couldn’t find john’s comment. Any pointers? I like this comment: “You'd probably have an easier time finding skilled Amiga users than skilled smalltalk developers.” That’s pretty funny. Ron From: beginners-boun...@lists.squeakfoundation.org

RE: [Newbies] I don't get it

2011-06-21 Thread Ron Teitelbaum
the best, Ron Teitelbaum Immersive Collaboration Expert 3d Immersive Collaboration Consulting r...@3dicc.com Follow me on Twitter http://twitter.com/RonTeitelbaum twitter.com/RonTeitelbaum http://www.3dicc.com/ www.3dicc.com From: beginners-boun...@lists.squeakfoundation.org

RE: [Newbies] Re: You said you'd get back to me

2011-06-01 Thread Ron Teitelbaum
. There is no solution between people without finding common ground. Find the common ground and work together or don't. The rest is a waste of your time and talent. Respectfully submitted, Ron Teitelbaum -Original Message- From: beginners-boun...@lists.squeakfoundation.org

RE: [Newbies] Returned values

2011-02-28 Thread Ron Teitelbaum
way? In many cases you need to access the class variable to get information that is relevant to all the class instances, or to get a single class instance (MyObject class myDefaultInstnace) from another class so class variable accessors are required. Ron Teitelbaum From

[Newbies] Obama -- The Judas Goat

2009-01-25 Thread Ron Teitelbaum
Obama -- The Judas Goat 1/25/2009 By David Duke Judas Goat\ A goat that leads other goats or sheep to slaughter. Also, one who entices into danger and betrays others. The name is an allusion to Judas Iscariot, who betrayed Jesus for 30 pieces of slaughter. (From Merriam Webster’s Dictionary)

RE: [Newbies] Obama -- The Judas Goat

2009-01-25 Thread Ron Teitelbaum
for beginners@lists.squeakfoundation.org; Sun, 25 Jan 2009 16:58:53 + From: Ron Teitelbaum r...@usmedrec.com To: beginners@lists.squeakfoundation.org Content-Type: text/plain; charset=US-ASCII Date: Sun, 25 Jan 2009 17:58:53 +0100 X-Priority: 3 Message-Id: 20090125165853.ilsr28583.cdptpa

RE: [Newbies] Best place to ask Smalltalk questions?

2008-08-07 Thread Ron Teitelbaum
changing your running image, although your image needs to know when the file changes so that it can refresh your instances. Hope that helps, Ron Teitelbaum ___ Beginners mailing list Beginners@lists.squeakfoundation.org http

RE: [Newbies] SSH server in Squeak

2008-05-08 Thread Ron Teitelbaum
anyway, and let us know how it works for you. Thanks, Ron Teitelbaum Squeak Cryptography Team Leader _ From: [EMAIL PROTECTED] [mailto:[EMAIL PROTECTED] On Behalf Of Aditya Siram Sent: Thursday, May 08, 2008 12:24 PM To: beginners@lists.squeakfoundation.org Subject: [Newbies] SSH

RE: [Newbies] [ANN] Learn Morphic and have fun

2008-04-25 Thread Ron Teitelbaum
Hi Edgar, I'm sure I'm not the only one that noticed that you did quite well in the election. A hand full more votes and you would have been in. Good luck with your project. Ron -Original Message- From: Edgar J. De Cleene Folks: As I said in my failed campaign for have a place

RE: [Newbies] Re: [Webteam] Suggestion for Squeak Website

2008-02-28 Thread Ron Teitelbaum
I responded to her but did it off list. (Didn't hear back) Ron -Original Message- From: [EMAIL PROTECTED] [mailto:beginners- [EMAIL PROTECTED] On Behalf Of Brad Fuller Sent: Thursday, February 28, 2008 9:20 PM To: Costello, Barbara A (Barbara); [EMAIL PROTECTED];

RE: [Newbies] Re: [Webteam] Suggestion for Squeak Website

2008-02-28 Thread Ron Teitelbaum
Wait I take that back I did hear back from her. This is what she wrote: THANK YOU THANK YOUTHANK YOU! YOUR A LIFE SAVER. -Original Message- From: [EMAIL PROTECTED] [mailto:beginners- [EMAIL PROTECTED] On Behalf Of Brad Fuller Sent: Thursday, February 28, 2008 9:20 PM

[Newbies] FW: [Webteam] Suggestion for Squeak Website

2008-02-28 Thread Ron Teitelbaum
Here's what I sent. Ron From: Ron Teitelbaum [mailto:[EMAIL PROTECTED] You are quite welcome! Have fun!! Ron From: (Barbara) THANK YOU THANK YOUTHANK YOU!   YOUR A LIFE SAVER

RE: [Newbies] How to empty a collection?

2008-02-18 Thread Ron Teitelbaum
that would significantly improve your performance. Ron Teitelbaum From: [EMAIL PROTECTED] [mailto:[EMAIL PROTECTED] On Behalf Of Marcin Tustin Sent: Monday, February 18, 2008 8:43 PM To: A friendly place to get answers to even the most basic questions

Squeak Board Member Responsibilities (was: [Newbies] Squeak Foundation Election 2008 coming up!)

2008-02-05 Thread Ron Teitelbaum
get certified and VOTE!! If you are planning to run for the board please announce your candidacy to squeak-dev by Feb 22, 2008. If you need to have your password changed on squeak people email: [EMAIL PROTECTED] . Happy Squeaking! Ron Teitelbaum Squeak Elections Team Member -Original

RE: [Newbies] Overriding methods

2008-01-20 Thread Ron Teitelbaum
. Happy Squeaking! Ron Teitelbaum President / Principal Software Engineer US Medical Record Specialists -Original Message- From: Blake Hey, all: I figure this is a beginner question. I get a big warning when I override certain methods. (Class methods

[Newbies] Reminder - Check your Squeak People Email or Sign up to vote

2008-01-16 Thread Ron Teitelbaum
. We have not set the voting schedule. Please stay informed, get involved in the upcoming election and remember to please vote. Also I'd like to express our thanks to Ken Causey for helping us get the tools we needed to better run the election this year. Thanks Ken! Happy Squeaking, Ron

[Newbies] Give One. Get One. Now!!

2007-11-12 Thread Ron Teitelbaum
/give-one-get-one-now/ Or go directly to: http://www.laptopgiving.org/en/index.php Check out a cool review: http://news.squeak.org/2007/10/05/pretty-cool-nytimes-olpc-review/ Thanks, Ron Teitelbaum ___ Beginners mailing list Beginners

RE: [Newbies] Smalltalk Javascript

2007-11-04 Thread Ron Teitelbaum
on a widget in Squeak you might have to write the conversation yourself. Oh and I found this, but I've never used it so your mileage may vary. http://www.squeaksource.com/ST2JS.html Happy Coding! Ron Teitelbaum President / Principal Software Engineer US Medical Record Specialists www.USMedRec.com

RE: [Newbies] Ordered Set?

2007-11-04 Thread Ron Teitelbaum
for uniqueness before adding). Otherwise just use OrderedCollection and manage order and uniqueness manually. The class has all the methods you need to do so. Happy Coding! Ron Teitelbaum -Original Message- From: [EMAIL PROTECTED] [mailto:beginners- [EMAIL PROTECTED] On Behalf Of itsme213 Sent

RE: [Newbies] Concrete classes... multiple users

2007-10-27 Thread Ron Teitelbaum
, I guess! -- John On Oct 26, 2007, at 10:48 PM, Ron Teitelbaum wrote: Hi John, I read your question, but had some trouble trying to understand what you did or why you are having trouble now that you have to connect to multiple databases. You say that you have only one Item

RE: [Newbies] Concrete classes... multiple users

2007-10-26 Thread Ron Teitelbaum
!! Ron Teitelbaum President / Principal Software Engineer US Medical Record Specialists From: John Almberg One of the cool things, I think, about Smalltalk is that Classes are objects... i.e. concrete factories that can be modified at runtime to produce objects

RE: [Newbies] how do I get Seaside up on my Squeak?

2007-10-11 Thread Ron Teitelbaum
Hi, It's nice that your first post is to help someone else! It's very nice to have you here, welcome!! Ron Teitelbaum From: Prashanth Hebbar Hope this helps. By the way, this was my first posting on this mailing list. Thank you. Cheers, Prashanth

RE: [Newbies] Re: Semaphore problems

2007-09-29 Thread Ron Teitelbaum
, but I think it’s good to look at these constructs closely, if you are planning to work with threads. Check out SharedQueue for thread safe processing. Also have a look at Mutex for other Semaphore behavior. Good luck! Ron Teitelbaum President / Principal Software Engineer US Medical Record

RE: [Newbies] The #squeak IRC Channel is getting crowded

2007-09-21 Thread Ron Teitelbaum
HEHEHE!! That was pretty funny! Ron -Original Message- From: Blake On Fri, 21 Sep 2007 13:56:44 -0700, Janko Mivšek [EMAIL PROTECTED] wrote: Blake wrote: [EMAIL PROTECTED] wrote: #squeak is getting crowded: Perhaps, but there doesn't seem to be much discussion, at

RE: [Newbies] RE: RE: delegation vs inheritance

2007-08-06 Thread Ron Teitelbaum
of creating new classes. Use as many objects as you need but no more! Hope that helps!! Ron Teitelbaum President / Principal Software Engineer US Medical Record Specialists www.USMedRec.com -Original Message- From: Darren Hi Ron Sorry for the confusion. I'm just using Stack

RE: [Newbies] delegation vs inheritance

2007-08-04 Thread Ron Teitelbaum
Hello, I have to ask is Grunt your real name? Do you have a real name? Ok so your question is very vague. I'll try to answer, but I'm not sure my answer will be much help. Stack is a specialization of Object Stack has a linked list Stack normally implements linked list as a collection of

RE: [Newbies] RE: delegation vs inheritance

2007-08-04 Thread Ron Teitelbaum
From: Darren from: Ron Teitelbaum Does that help? Ron Thanks Ron, yes that does help but also what would be the thought process (I know you can't read minds) to choose this approach as apposed to specializing StackLink? -Regards Darren I don't understand your question. What

RE: [Newbies] Squeak Tutorial

2007-07-10 Thread Ron Teitelbaum
If this is not the problem please let us know, Ron Teitelbaum President / Principal Software Engineer US Medical Record Specialists www.USMedRec.com -Original Message- From: [EMAIL PROTECTED] [mailto:beginners- [EMAIL PROTECTED] On Behalf Of Raoul Zimmermann Sent: Tuesday, July 10, 2007 8:25 AM

RE: [Newbies] Some general questions

2007-05-23 Thread Ron Teitelbaum
write goes on the class you create called User on the class side [press the class button]) Happy coding! Ron Teitelbaum From: Darren White Hello Is there a way to use a string as the name for a object? For example if I have the input string 'fred' from

RE: [Newbies] User interfaces | getting started

2007-05-21 Thread Ron Teitelbaum
of Contact, with your info in it. It's not a console but there is nothing that a console can do that you can not reproduce by adding new methods to your instance. Happy Coding! Ron Teitelbaum President / Principal Software Engineer US Medical Record Specialists

RE: [Newbies] regd databases and networking in squeak

2007-04-06 Thread Ron Teitelbaum
. If you are looking for more advanced Database tools then consider using PostgreSQL and Glorp. This is a much more complicated so if you are new to this I'd stick with ODBC until you get your feet wet. Please feel free to ask questions! Happy coding, Ron Teitelbaum President / Principal Software

RE: [Newbies] A Question of Style

2007-03-30 Thread Ron Teitelbaum
I like the second one; it explains your intention much better. Ron From: Tim Johnson Hi, I know the rules for naming accessor and setter methods. But what do I do when the accessor method needs a parameter? I'll try to provide an example. A vendor sells an item called #apple. If I

[Newbies] FW: [Squeakland] SqueakFest '07 - Save the Date!

2007-03-22 Thread Ron Teitelbaum
is for you! Plus this would also be a good chance to learn more about OLPC. Spread the word and save the date: August 1, 2 3 for SqueakFest '07. Ron Teitelbaum Squeak News Team Member _ From: Kim Rose Greetings! Thanks to the continued interest and generosity of Columbia College

RE: [Newbies] ssl support

2007-03-19 Thread Ron Teitelbaum
and it is working very well. The package can also connect and retrieve contents from other SSL sites. Please let me know if you have any other problems or if you would like to give me more information about the problem you are experiencing. Thanks, Ron Teitelbaum Squeak Cryptography Team Leader From

RE: [Newbies] Re: Squeak - for a different Summer of Code!

2007-03-16 Thread Ron Teitelbaum
http://code.google.com/soc/ Ron -Original Message- From: [EMAIL PROTECTED] [mailto:beginners- [EMAIL PROTECTED] On Behalf Of Serge Stinckwich Sent: Friday, March 16, 2007 4:12 AM To: beginners@lists.squeakfoundation.org Cc: [EMAIL PROTECTED]; squeak- [EMAIL PROTECTED] Subject:

RE: [Newbies] Uploading Patches and Enabling Features in CommercialSystems

2007-03-08 Thread Ron Teitelbaum
of detail so I really want to make sure you actually find it useful. Ron Teitelbaum President / Principal Software Engineer US Medical Record Specialists www.usmedrec.com Squeak Cryptography Team Leader From: Ron Teitelbaum Updated List 1) A system must be able to ensure

[Newbies] The Election Ends TODAY, you have about 12 hours left to vote

2007-03-07 Thread Ron Teitelbaum
. We can resend it to you if you are on the list of squeakPeople with an account certification of at least Apprentice. Thank you again, Please Vote. Ron Teitelbaum [EMAIL PROTECTED] Squeak Elections Team Member ___ Beginners mailing list Beginners

  1   2   >