here is the reaction of a student preparing for a GSoC project for which the
student needs to learn smalltalk:
"I have installed Pharo v4.0 and started the book Pharo By Example as
suggested by you I just wanted to say that I am in the initial stages
and loving it already :)"
greetin
Ok so after rereading the tutorial and testing again and again , I think I
have finally managed to understand how SmaCC really works and I was
succesful into converting simple python litsts to pharo arrays and ordered
collections.
The tricky part now is to apply this knowledge to complex python ty
On Wed, Feb 11, 2015 at 1:25 PM, Laura Risani
wrote:
>
>> Also at some point i started to get an #inform: msg saying "WorldState
> interCyclePause failed".
>
>
>
Thats not GTSpotter. That was my fault since build 40477 integrated Issue
14669.
This should be fixed since Issue 40874 was integrated
> What do you mean about all existing menus in the image? Right now, the
> default Spotter searches for the top level entries in the World menu and
> then lets you dive if you want. It can also be made easily to search for
> all menu entries from the World menu. Is that what you have in mind?
>
At
I'm away from my Pharo computer to double-check, but is it just that is how
a Color object displays itself ? Maybe have a look at Color>>printOn:
cheers -ben
On Wed, Feb 11, 2015 at 9:38 AM, Andy Burnett <
andy.burn...@knowinnovation.com> wrote:
> I would like to create an array with a collection
Andy Burnett wrote
> In both cases it evaluates to 'Color blue' rather than the Color object.
'Color blue' is the Color object you created and put in your array. It is
aColor object. It's print string is 'Color blue'. See Color>>#printOn: for
more info.
-
Cheers,
Sean
--
View this message
or
| colorList |
colorList := { Color blue class }.
*Lic. Ignacio Sniechowski, MBA*
*Prosavic SRL*
*Tel: (011) 4542-6714*
On Tue, Feb 10, 2015 at 10:38 PM, Andy Burnett <
andy.burn...@knowinnovation.com> wrote:
> I would like to create an array with a collection of colour va
| colorList |
colorList := [ Color blue class ] value.
*Lic. Ignacio Sniechowski, MBA*
*Prosavic SRL*
*Tel: (011) 4542-6714*
On Tue, Feb 10, 2015 at 10:38 PM, Andy Burnett <
andy.burn...@knowinnovation.com> wrote:
> I would like to create an array with a collection of colour
I would like to create an array with a collection of colour values.
I tried both:
colorList := {Color blue}
and
colourList := {Color named: #blue.}.
In both cases it evaluates to 'Color blue' rather than the Color object.
What surprised me was that:
charList := {Character digitValue:35. Charac
I'm glad you like them :). It was fun to develop them .
I can play Tetris for a long time, but i can't survive on the EaterGame for
more than 40'.
@Nacho
Thank you for your feedback.
About the Eater, perhaps in the future i make some additions, but is fully
functional now (when you complete a leve
Hi,
As Juraj said, you can Cmd+Shift+ArrowRight to dive in the category and
using the preview you can browse the code. If you want the MessageBrowser,
there is no way to get it by default.
Laura also asked for this feature before, so I listed below a crude code to
add a processor that finds selec
> Am 10.02.2015 um 21:25 schrieb Esteban A. Maringolo :
>
> Great. This is cool.
>
> Why this can't be part of the stock vm/image?
>
Because it needs OSProcess ;)
A zinc server is always present in the image. Sven made a
ZnReadEvalPrintDelegate that you can easily hook in to execute a smallta
Juraj Kubelka wrote
> Do you need to open it in Implementors/Senders Browser?
Yes. I was fixing mouse wheel user code to handle horizontal wheel events.
The Morphic hook is #mouseWheel:, so I wanted a browser on all implementors
of #mouseWheel: so that I could view each one and update it if necess
> Am 10.02.2015 um 20:59 schrieb stepharo :
>
> Yes this should be fixed.
>
You mean fix the current implementation or swap it for epicea?
Norbert
> Le 10/2/15 16:42, Martin Bähr a écrit :
>> Excerpts from Hartmut's message of 2015-02-10 15:58:13 +0100:
>>> Working with Pharo 3.0 I noticed for
Great. This is cool.
Why this can't be part of the stock vm/image?
Regards!
Esteban A. Maringolo
2015-02-10 16:28 GMT-03:00 Sebastian Sastre :
> You can do it with
>
> kill -15 PID
>
> And, this (requires OSProcess):
>
> makeStopHook
> "Answers the process that hooks to the
> OS
You can dive-in using cmd+shift+right-arrow in Spotter and follow observation
of those implementors. Preview is available by cmd+p.
So basically you open in a browser only one specific method.
Do you need to open it in Implementors/Senders Browser? If yes, can you
describe your use case, please
Yes this should be fixed.
Le 10/2/15 16:42, Martin Bähr a écrit :
Excerpts from Hartmut's message of 2015-02-10 15:58:13 +0100:
Working with Pharo 3.0 I noticed for a while that I could not recover
class definitions (do it's) from the "Recent Changes".
i noticed this too.
methods worked fine,
having a simpler way to express
here is my project would be good.
For now the way to add a group is too complex.
I would like to click on package and add it to a favorite list that is
on the top
I would love to get a group containing the class that were loaded (or
not in the system).
because
Maybe I'm missing something obvious, but if I zero in on a message name in
spotter, can I open a browser on all implementors, or only browse one
specific method?
-
Cheers,
Sean
--
View this message in context:
http://forum.world.st/Spotter-Browse-Impementors-tp4805013.html
Sent from the Pha
You can do it with
kill -15 PID
And, this (requires OSProcess):
makeStopHook
"Answers the process that hooks to the
OS signal that makes this worker to shutdown
when the VM process receives a TERM signal from
the OS."
^ [|semaphore|
Depends on how you want the user to access the image. Using Seaside you
could do something like whats described here:
http://book.seaside.st/book/advanced/deployment/maintaining/requesthandler
Esteban A. Maringolo wrote
> Is there a way I can externally signal a running pharo-vm in order to
>
Is there a way I can externally signal a running pharo-vm in order to
request a shutdown equivalent to clicking on the close icon?
I'd like to externally manage the start/stop of a Pharo image, but
because the image can be used during development, I'd like to provide
the user with a confirmation d
Le 10 févr. 2015 à 16:39, Martin Bähr a écrit :
> Excerpts from Christophe Demarey's message of 2015-02-10 14:28:19 +0100:
>> We would like to know if some of you use Nautilus groups functionality:
>> dynamic groups: 'Last modified packages', 'Most viewed classes', 'Work'
>
> do you mean 'last m
Excerpts from Hartmut's message of 2015-02-10 15:58:13 +0100:
> Working with Pharo 3.0 I noticed for a while that I could not recover
> class definitions (do it's) from the "Recent Changes".
i noticed this too.
methods worked fine, but i couldn't recover methods to new classes until i
recreated t
Excerpts from Christophe Demarey's message of 2015-02-10 14:28:19 +0100:
> We would like to know if some of you use Nautilus groups functionality:
> dynamic groups: 'Last modified packages', 'Most viewed classes', 'Work'
do you mean 'last modified classes'?
i use them. i find them much easier to
To whom can answer me
Working with Pharo 3.0 I noticed for a while that I could not recover
class definitions (do it's) from the "Recent Changes".
I also lost class comments on file-out / file-in .
For the second problem I made the following test:
1. take a fresh Pharo 3.0 image (bundle for Ma
> On 10 Feb 2015, at 15:46, Ben Coman wrote:
>
> This was interesting to know... The researchers at Inria published over
> 4,500 articles in 2013. They are behind over 300 active patents and 120
> start-ups.
>
It is a big research institute: 8 research centers, 172 Teams, 4471 members of
s
This was interesting to know... The researchers at Inria published over
4,500 articles in 2013. They are behind over 300 active patents and 120
start-ups.
cheers -ben
On Tue, Feb 10, 2015 at 9:37 PM, Camille wrote:
> Great!
>
> > On 10 Feb 2015, at 14:29, stepharo wrote:
> >
> >
> >
> http:/
I've never used the groups - mainly because I've never seen a sample
workflow that I could copy, and my existing workflow is "sufficient" (which
means I get a mess of windows plastered all over the screen as I follow
sender&implementors, and could probably do better).
btw, I've just spent 60 secon
Hi Offray,
2015-02-09 22:14 GMT+01:00 Offray Vladimir Luna Cárdenas
:
> Hi all,
>
> So, wiring by "sendToOutside: from:" is not working and I don't know how
> to tell my code browser to autosave its contents as part of the node body
> where they belong.
>
> Any help with this is appreciated
Hi Christophe,
2015-02-10 14:28 GMT+01:00 Christophe Demarey :
> Hello,
>
> We would like to know if some of you use Nautilus groups functionality:
>
>- dynamic groups: 'Last modified packages', 'Most viewed classes',
>'Work'
>
> I do not use dynamic groups.
>
>- user defined grou
Great!
> On 10 Feb 2015, at 14:29, stepharo wrote:
>
>
> http://www.inria.fr/en/institute/recruitment/offers/phd/campaign-2015/%28view%29/details.html?id=PNGFK026203F3VBQB6G68LOE1&LOV5=4509&LG=EN&Resultsperpage=20&nPostingID=9157&nPostingTargetID=15138&option=52&sort=DESC&nDepartmentID=28
>
>
http://www.inria.fr/en/institute/recruitment/offers/phd/campaign-2015/%28view%29/details.html?id=PNGFK026203F3VBQB6G68LOE1&LOV5=4509&LG=EN&Resultsperpage=20&nPostingID=9157&nPostingTargetID=15138&option=52&sort=DESC&nDepartmentID=28
Hello,
We would like to know if some of you use Nautilus groups functionality:
dynamic groups: 'Last modified packages', 'Most viewed classes', 'Work'
user defined groups : from the menu, you can flatten the content of many
packages and get all classes into the newly created group.
We have the fe
>I always found it strange what effect loading Glorp had on an image, blowing
>it up.
Looks like it is really an effect of the Glorp code. Maybe because it was
initially
exported from VW and then imported into Squeak/Pharo. I always thought slow
loading
is because of this or the long license te
Esteban,
You might be on something important there.
I always found it strange what effect loading Glorp had on an image, blowing it
up.
I can't say I understand though, best make it into an issue.
Sven
> On 10 Feb 2015, at 00:22, Esteban A. Maringolo wrote:
>
> Just when I found a way to re
36 matches
Mail list logo