Re: [Pharo-users] seaside javascript builders

2016-12-10 Thread Siemen Baader
Thanks, that was very helpful! Siemen Sent from my iPhone On 09/12/2016, at 19.45, "p...@highoctane.be" wrote: > I guess that's where passengers: come handy. > > Because what you pass can be the result of a jQuery. > > TBH sometimes it is easier to do a JSStream on: 'some js code that does w

Re: [Pharo-users] Hash collision

2016-12-10 Thread Martin McClure
On 12/09/2016 09:45 AM, Ben Coman wrote: The suggested fix depended on being willing to let go of byte ordering (which we might not want different results on different platforms) Float>>hash ^ByteArray hashBytes: self startingWith: self species hash This fix contains a good idea, bu

[Pharo-users] Fuel fuelAfterMaterialization - wrong order?

2016-12-10 Thread Petr Fischer
Hello, I have "Model" class, dictionary instance variable in it and in this dictionary, there is "Task" and "Meeting" classes (Meeting is subclass of Task). I have problem with fuelAfterMaterialization order, if I log debug line in fuelAfterMaterialization, I got this fuelAfterMaterialization c

Re: [Pharo-users] [Pharo-dev] Pharo poster

2016-12-10 Thread stepharong
**tx** I added the two files to the media folder on file.pharo.org On Sat, 10 Dec 2016 12:12:36 +0100, Cyril Ferlicot D. wrote: On 10/12/2016 12:08, stepharong wrote: Hi I'm brainstorming about a pharo poster and I remember that one person produce a poster with all the pharo technologies

Re: [Pharo-users] [Pharo-dev] Pharo poster

2016-12-10 Thread Cyril Ferlicot D.
On 10/12/2016 12:08, stepharong wrote: > Hi > > I'm brainstorming about a pharo poster and I remember that one person > produce a poster with all the pharo technologies. > I'm that I saved it somewhere but I do not know where. I tried to find > it with google but no chance for now. > > Stef > >

[Pharo-users] Pharo poster

2016-12-10 Thread stepharong
Hi I'm brainstorming about a pharo poster and I remember that one person produce a poster with all the pharo technologies. I'm that I saved it somewhere but I do not know where. I tried to find it with google but no chance for now. Stef -- Using Opera's mail client: http://www.opera.com/m

Re: [Pharo-users] [Pharo-dev] consider putting stars on our nice books on github :)

2016-12-10 Thread stepharong
Thanks for the explanation Stef On Fri, 09 Dec 2016 18:54:26 +0100, Ben Coman wrote: Good idea. Done. Now just because I couldn't remember explicitly what "starring" meant, from GitHub help... Starring a repository allows you to keep track of projects that you find interesting, even if you

Re: [Pharo-users] setter method

2016-12-10 Thread stepharong
Hi everybody! I've just joined the community:) and have a question How to write the method count: such that, when invoked on an instance of Counter, instance variable is set to the argument given to the message? so that Counter new count: 7 would set the value of a new Counter instance to 7