Re: [Pharo-users] new Pharo Success story

2014-10-20 Thread stepharo
I agree but I prefer that esteban works on spur. Stef On 20/10/14 17:43, Esteban A. Maringolo wrote: 2014-10-20 6:41 GMT-03:00 Sven Van Caekenberghe : It is a lot of work to do a project inside such a big bank, let alone make a success of it. Congratulation to Tomas and the rest of his team.

Re: [Pharo-users] GUI Frameworks Choice

2014-10-20 Thread stepharo
Ok I will do a pass with johan and we will ask people to read the new version. On 20/10/14 22:47, Annick Fron wrote: Hi Steph, I sent a correction of the ImageSpec example some time ago. Don’t forget to mention how to put a white background …. Annick Le 20 oct. 2014 à 22:00, stepharo a écr

Re: [Pharo-users] Socket plugin signature - Urgent

2014-10-20 Thread stepharo
Thanks sven I will check with the guys that wrote the socket chapter if we can add this snippet. Stef On 20/10/14 23:44, Sven Van Caekenberghe wrote: Again, Pharo is a high-level language, not a low-level one. Here is a working, standalone example: "An UDP echo server on port " [ Socke

Re: [Pharo-users] Citizen example for manipulating a bibtex file

2014-10-20 Thread stepharo
Check in the tools there is a bib writer. Stef On 21/10/14 03:33, Offray Vladimir Luna Cárdenas wrote: Thanks Stef and Damien, I have this small script as a proof of concept: === | bibFile bibliography | bibFile := ((FileLocator documents / 'U/Libertadores/Graf

Re: [Pharo-users] [Ann] Phratch 4.0

2014-10-20 Thread jannik laval
Thank you Hilaire, Could you try phratch and say me what do you expect. Then explain me what is not working. Cheers, Jannik 2014-10-20 10:53 GMT+02:00 Hilaire Fernandes : > Le 20/10/2014 10:36, jannik laval a écrit : > > So, Hilaire, if you have some times to test the two firmware or if you > >

Re: [Pharo-users] Citizen example for manipulating a bibtex file

2014-10-20 Thread Offray Vladimir Luna Cárdenas
Thanks Stef and Damien, I have this small script as a proof of concept: === | bibFile bibliography | bibFile := ((FileLocator documents / 'U/Libertadores/Grafoscopio') children detect: [:each | each basename endsWith: 'bib' ]) contents. bibliography := CZB

Re: [Pharo-users] Socket plugin signature - Urgent

2014-10-20 Thread Sven Van Caekenberghe
Again, Pharo is a high-level language, not a low-level one. Here is a working, standalone example: "An UDP echo server on port " [ Socket newUDP in: [ :socket | | loop buffer result input | buffer := String new: 256. loop := true. socket setPort: . [ loop ] whileTrue: [ [ r

Re: [Pharo-users] GUI Frameworks Choice

2014-10-20 Thread Annick Fron
Hi Steph, I sent a correction of the ImageSpec example some time ago. Don’t forget to mention how to put a white background …. Annick Le 20 oct. 2014 à 22:00, stepharo a écrit : > I should do a pass on the Spec chapters. > So if you have feedback I'm interested. > I plan to integrate the cont

Re: [Pharo-users] Socket plugin signature - Urgent

2014-10-20 Thread Annick Fron
In your answer you mention 1 2 3 4 data, without specifying how many bytes they have. Typically the IP address needs 4 bytes, so your answer 1 2 3 4 is quite incomplete. When I receive data like that [28 0 203 204 …….] I don’t know if I have only the datagram or if I have also the IP header. S

Re: [Pharo-users] GUI Frameworks Choice

2014-10-20 Thread stepharo
I should do a pass on the Spec chapters. So if you have feedback I'm interested. I plan to integrate the contributions made by Stefan Eggermont which were never considered. Stef Hi craig The examples are in the class WidgetExample or ExampleWidget. Now we are not happy from a design point o

Re: [Pharo-users] Using a private git repository with Metacello

2014-10-20 Thread Manfred Kröhnert
Hello Julien, sorry for coming in so late. On Mon, Oct 13, 2014 at 8:19 AM, Julien Delplanque wrote: > Hi Thierry, Dale, > > I get a ZnUnknownScheme whatever the solution I choose... > > Are you sure it works for private repositories that need your ssh key > for auth? > > Julien > I have succe

Re: [Pharo-users] new Pharo Success story

2014-10-20 Thread Mark Rizun
I really like this "success stories" page on pharo website. +1 >> >> suggestion: can the success page be splitted into different pages? >> I prefer a main success page with the logos and/or excerpts of the >> solutions linking to the full success page case. >> > +1 to Estebans suggestion:)

Re: [Pharo-users] new Pharo Success story

2014-10-20 Thread kilon alios
I really the interface from what I have seen from the screenshots looks clean and crystal clear. On Mon, Oct 20, 2014 at 6:43 PM, Esteban A. Maringolo wrote: > 2014-10-20 6:41 GMT-03:00 Sven Van Caekenberghe : > > > It is a lot of work to do a project inside such a big bank, let alone > make a s

Re: [Pharo-users] new Pharo Success story

2014-10-20 Thread Esteban A. Maringolo
2014-10-20 6:41 GMT-03:00 Sven Van Caekenberghe : > It is a lot of work to do a project inside such a big bank, let alone make a > success of it. > Congratulation to Tomas and the rest of his team. +1 suggestion: can the success page be splitted into different pages? I prefer a main success pag

Re: [Pharo-users] Socket plugin signature - Urgent

2014-10-20 Thread Sven Van Caekenberghe
I don't understand why you would need it, see my previous reply to your other message. > On 20 Oct 2014, at 17:23, Annick Fron wrote: > > Hi, > > Is it possible to get the documentation of the socket api signature, because > otherwise I am unable to setup a UDP server ? > > Annick

Re: [Pharo-users] UDP example

2014-10-20 Thread Sven Van Caekenberghe
Annick, > On 20 Oct 2014, at 17:12, Annick Fron wrote: > > Thank you but your explanation does not explain what is the type (signed > unsigned) and the size of each header component. > Thus it is impossible to work with that. I think you are making this way more difficult than it is. ZTimesta

[Pharo-users] Socket plugin signature - Urgent

2014-10-20 Thread Annick Fron
Hi, Is it possible to get the documentation of the socket api signature, because otherwise I am unable to setup a UDP server ? Annick

Re: [Pharo-users] UDP example

2014-10-20 Thread Annick Fron
Thank you but your explanation does not explain what is the type (signed unsigned) and the size of each header component. Thus it is impossible to work with that. Annick Le 17 oct. 2014 à 19:09, Sven Van Caekenberghe a écrit : > Yes, you have to use the methods in the protocol 'datagrams' of S

Re: [Pharo-users] new Pharo Success story

2014-10-20 Thread Tudor Girba
+100 Doru On Mon, Oct 20, 2014 at 11:41 AM, Sven Van Caekenberghe wrote: > > > On 19 Oct 2014, at 09:44, stepharo wrote: > > > > Hi > > > > we just published a new success story: Pharo at CSOB > > > >http://pharo.org/success > > > > And yes we are interested in your sucess stories > > > >

Re: [Pharo-users] [Ann] Phratch 4.0

2014-10-20 Thread Hilaire
Le 20/10/2014 10:26, jannik laval a écrit : > Hi Hilaire, > > Which version of Linux are you using ? LinuxMint 17 64 bits > - for me, the font characters in the bricks are too small > >>> you can change it in settings. Then in settings Phratch click on the > button launch to refresh the display

Re: [Pharo-users] new Pharo Success story

2014-10-20 Thread Sven Van Caekenberghe
> On 19 Oct 2014, at 09:44, stepharo wrote: > > Hi > > we just published a new success story: Pharo at CSOB > >http://pharo.org/success > > And yes we are interested in your sucess stories > > Stef > > PS: big thanks to Tomas and CSOB for letting us making this public. Beautiful! Great

Re: [Pharo-users] [Ann] Phratch 4.0

2014-10-20 Thread Hilaire Fernandes
Le 20/10/2014 10:36, jannik laval a écrit : > So, Hilaire, if you have some times to test the two firmware or if you > are using one on Pharo, or if you have any knowledge to share. It will > be really fast to make something work. > > Thank you again for yoour feedback and Ihope you can help me fo

Re: [Pharo-users] [Ann] Phratch 4.0

2014-10-20 Thread jannik laval
Hi Hilaire, 2014-10-19 10:08 GMT+02:00 Hilaire : > Le 19/10/2014 08:38, jannik laval a écrit : > > About the Arduino, it is a first try I did, but it seems to not working > > well. > > If you want to make it usable: just create a new sprite, you will have > > the choice of a standard sprite and a

Re: [Pharo-users] [Ann] Phratch 4.0

2014-10-20 Thread jannik laval
Hi Hilaire, Which version of Linux are you using ? Thank you again for your feedback. Here is my comments for your list: - On Linux, keypad does not work >>> Ok, the last build of the vm I use is from 5 month ! I redo it, it should work today. By the way, keypad does not work on pharo-launcher