Re: [Pharo-users] Pharo 7 - RFB

2018-11-25 Thread PBKResearch
Sanjay You may find more information at: https://en.wikipedia.org/wiki/RFB_protocol https://en.wikipedia.org/wiki/Virtual_Network_Computing Do you want to use 'remote access to graphical user interfaces'? If not, maybe you can ignore it. Peter Kenny -Original Message- From:

Re: [Pharo-users] Pharo 7 - RFB

2018-11-25 Thread Paul DeBruicker
http://www.samadhiweb.com/tags/VNC Sanjay Minni wrote > OK loaded RFB in pharo 7.0 Thru Monticello > > is there any documentation somewhere > > > Sanjay Minni wrote >> what is RFB used for ? and can I load it in Pharo 7. >> I could not find any documentation anywhere >> >> When migrating

Re: [Pharo-users] My Keynote at the Salta Conference

2018-11-25 Thread Offray Vladimir Luna Cárdenas
Well the important thing is that conversations like this are happening and we, as a community are thinking in alternative ways to promote Smalltalk, and scale such promotion, being by copying your vision, one country at the time, to by using alternative ways. I think these are important

Re: [Pharo-users] Usage of String and FileLocator to reference files in ZipArchive (and probably other places)

2018-11-25 Thread Hans-Martin
I found a related problem which indicates that the depreciation of StandardFileStream in favor of File is incomplete and probably premature: When a ZipArchive is written, in 7.0 it uses (File named: aFileName) writeStreamDo: [...] In 6.1, it uses StandardFileStream

Re: [Pharo-users] Lambda World 2018 - What FP can learn from Smalltalk by Aditya Siram

2018-11-25 Thread dorellang
Loved the Data Studio part. Didn't know it existed, it looks very powerful! -- Sent from: http://forum.world.st/Pharo-Smalltalk-Users-f1310670.html

Re: [Pharo-users] how do I send the 2 messsages to the function

2018-11-25 Thread Roelof Wobben
Thanks, I made a file out with all the code I have right now. The code can be found here :  https://gist.github.com/RoelofWobben/00829deff93e98523f5090383a656582 But still I cannot make it work. What I did is make a class

Re: [Pharo-users] how do I send the 2 messsages to the function

2018-11-25 Thread Roelof Wobben
Op 25-11-2018 om 19:12 schreef dorellang: What you want to do is: findBasement: input2 "solution to part1 of this challenge" input2 withIndexDo: [ :element :index | |action| action:= SantaFloorAction getActionFor: element. floor := action calculateNewFloor: floor index: index ].

Re: [Pharo-users] how do I send the 2 messsages to the function

2018-11-25 Thread Nicole de Graaf
Hi Roelof, is not easy to understand the question , without contents. #calculateNewFloor:index: - I assume you implemented the method on an action class (SantaAction). - In the method I see no usage from argument index but to send the method with a index: aFoor := aAction calculateNewFloor:

Re: [Pharo-users] how do I send the 2 messsages to the function

2018-11-25 Thread dorellang
What you want to do is: findBasement: input2 "solution to part1 of this challenge" input2 withIndexDo: [ :element :index | |action| action:= SantaFloorAction getActionFor: element. floor := action calculateNewFloor: floor index: index ]. ^ counter Notice how I added the

[Pharo-users] how do I send the 2 messsages to the function

2018-11-25 Thread Roelof Wobben
Hello, I have made this function : calculateNewFloor: aFloor index: index     "comment stating purpose of message"    |action floor |    action:= SantaAction getActionFor: aFloor. floor := action doMovementFor: aFloor now I want to send a message to this function  : findBasement: input2    

[Pharo-users] Questions about NewValueHolder and Model

2018-11-25 Thread dorellang
Hi everyone! I was trying to find out how to propagate changes through widgets in the Spec UI framework, and so far it seems to me that using NewValueHolder objects is the most proper way right now. Am I wrong? However I have some questions regarding this class: (BTW I am using a Pharo 7 image)

[Pharo-users] Playing with Pharo 7

2018-11-25 Thread Konrad Hinsen
Hi everyone, after finishing the Pharo MOOC, I have started to play with a simple project of my own, initially using Pharo 6.1. Since Pharo 7 seems to be coming soon, I wanted to try it out, and that lead to a few practical questions. 1) How do you move your personal environment to a new image?

Re: [Pharo-users] Windows 10 double-click issue + solution

2018-11-25 Thread PBKResearch
John Many thanks for the tip. I have always found double click very erratic on Windows 7 and now on W10. It would eventually work, but was critically dependent on getting the right timing for the click interval. Pushing the pointer towards 'slow' on the mouse settings has improved things a

Re: [Pharo-users] Pharo 7 - RFB

2018-11-25 Thread Sanjay Minni
OK loaded RFB in pharo 7.0 Thru Monticello is there any documentation somewhere Sanjay Minni wrote > what is RFB used for ? and can I load it in Pharo 7. > I could not find any documentation anywhere > > When migrating an earlier application (pharo 6.1 to 7.0) > RFB was loaded in the