[Pharo-users] If comments seperate from the source code and have your own comments

2015-06-13 Thread lb
Hi, I know the comment is very important for reading source code and it is also important to write your own comment after understand somethings. I created a rough annotation applicationAnnoApp for Nautilus, please give me good advice to improve it. Attached are the monticello files. Thank y

Re: [Pharo-users] If comments seperate from the source code and have your own comments

2015-06-13 Thread lb
Thank you Paul and Stepharo. AnnoApp is a tool for writting your own comment for Package\Tag\Class\Method. seperating from source code file. Your own annotation can be save out as a file use AnnoEditor. The output file can be read back to (new) image according the name of Package\Tag\Class\Me

[Pharo-users] About asSymbol message , some questions in my mind

2017-02-10 Thread lb
Hi, I know Symbol is subclass of String. Any string object can become symbol object by sending 'asSymbol' message.. I think symbol must has its meaning in comon use, so the symbol should be composed of alphabet or number ‘without space“. BUT There are not compliant below 1.' ' a

[Pharo-users] About asSymbol message , some questions in my mind

2017-02-10 Thread lb
Hi, I know Symbol is subclass of String. Any string object can become symbol object by sending 'asSymbol' message.. I think symbol must has its meaning in comon use, so the symbol should be composed of alphabet or number ‘without space“. BUT There are not compliant below 1.' ' a

[Pharo-users] About asSymbol message , some questions in my mind

2017-02-11 Thread lb
not be a selector (message/method) name, but >that does not mean a Symbol with a space could not be useful in some other >context. > >Regards, > >Sven > >> On 11 Feb 2017, at 05:56, lb wrote: >> >> Hi, >> I know Symbol is subclass of String.

Re: [Pharo-users] About asSymbol message , some questions in my mind

2017-02-11 Thread lb
2017-02-12 00:39:55, "Ben Coman" wrote: >Hi Bing Liang, > >Thanks for your comments. Fresh eyes provide interesting perspectives >on things we take for granted. > >On Sat, Feb 11, 2017 at 4:41 PM, lb wrote: >> Thank you, Sven >> gradually clear. >> 1

[Pharo-users] About asSymbol message , some questions in my mind

2017-02-11 Thread lb
Hi, Dnenis Thank you. Your sample gives me some tips on AI , NLP. Cheers Bing 在 2017-02-11 22:18:14,"Denis Kudriashov" 写道: 2017-02-11 8:51 GMT+01:00 Sven Van Caekenberghe : The concept of 'meaning' is defined by the user, the usage, not by the Symbol itself. A Symbol with a space c

Re: [Pharo-users] About asSymbol message , some questions in my mind

2017-02-13 Thread lb
bols. Try this in a Playground, it works in Pharo 5" | oc sym filtered| oc := ' one two three $%%&' splitOn: ' '. sym := OrderedCollection new. oc do: [:each | sym add: each asSymbol]. filtered := OrderedCollection new. filtered := sym select: [ :each | each ~= #'

[Pharo-users] Re: Error in Pharo 9 under Windows 10

2021-02-28 Thread lb
Hi Nacho, Pls update VM 在 2021-03-01 04:56:04,"Rafael Ignacio Matías Sniechowski" <0800na...@gmail.com> 写道: Hi, Every time I try to start a Pharo 9 image I get an error. This happens with both 32 and 64 bit versions, under Windows 10. I've tried uninstalling and reinstalling Pha

Re: [Pharo-users] Literals

2018-04-27 Thread lb
Hi, I think the question is How automaticly create literal's objects , not initialize. e.g 'aString' #aSymbol { anArray} #[] Cheers Liang