Re: [Pharo-project] How to open a file with external app

2013-03-27 Thread Max Leske
On 27.03.2013, at 23:26, Camillo Bruni wrote: > The only solution currently is to use OSProcess and > - open under OSX > - gnome-open under linux Or use NativeBoost (e.g. run C code that does what you want). But Camillo's solution is certainly easier to implement. > > > On 2013-03-27, at 23

Re: [Pharo-project] How to open a file with external app

2013-03-27 Thread jannik.laval
I just see that it is not integrated in Pharo2.0. Where can I find it ? Jannik On Mar 28, 2013, at 6:49 AM, jannik.laval wrote: > Do you have an example of code ? > > Jannik > > On Mar 27, 2013, at 11:26 PM, Camillo Bruni wrote: > >> The only solution currently is to use OSProcess and >> -

[Pharo-project] strange problem in CompiledMethod>>=

2013-03-27 Thread Tudor Girba
Hi, One of the Moose test runs a visualization that manipulates CompiledMethods, and it runs into an error when trying to find an entry inside a dictionary that has compiled methods as keys. In the end, I managed to isolate the problem that can be reproduced by: 1. Download the moose image: ht

Re: [Pharo-project] How to open a file with external app

2013-03-27 Thread jannik.laval
Do you have an example of code ? Jannik On Mar 27, 2013, at 11:26 PM, Camillo Bruni wrote: > The only solution currently is to use OSProcess and > - open under OSX > - gnome-open under linux > > > On 2013-03-27, at 23:05, jannik.laval wrote: > >> Hi pharoers, >> >> Is it possible to select

Re: [Pharo-project] in anybody out there? who uses 2.0?

2013-03-27 Thread Tudor Girba
Magritte2 is a bit old. Magritte3 loads fine (we are using it in Moose). Doru On Mar 28, 2013, at 3:11 AM, "Esteban A. Maringolo" wrote: > Did anybody manage to load Magritte 2 at least? > > When running this: > Gofer it > squeaksource: 'MetacelloRepository'; > package: 'Configuratio

Re: [Pharo-project] in anybody out there? who uses 2.0?

2013-03-27 Thread Yanni Chiu
On 27/03/13 10:24 AM, Esteban Lorenzano wrote: Here in Pharo headquarters we are shock that there are just 10 new bugs reported for 2.0 after the release... So... I wonder... is that because we made a really cool release, or just because nobody is using it? Just before the release I loaded u

Re: [Pharo-project] in anybody out there? who uses 2.0?

2013-03-27 Thread Esteban A. Maringolo
Did anybody manage to load Magritte 2 at least? When running this: Gofer it squeaksource: 'MetacelloRepository'; package: 'ConfigurationOfMagritte2'; load. (ConfigurationOfMagritte2 project version: '2.0.6') load: #('Magritte-Seaside') I get the following error: This package depen

[Pharo-project] GSoC idea - Smalltalk Modbus Industrial Communications Protocol

2013-03-27 Thread Ben Coman
Janko Mivšek wrote: Dear Pharoers, Ideas are slowly coming, 14 so far, but this is way below the 30+ in previous years. So, stretch your brain, come with some more ideas, which will be interesting for potential students and of course useful for our community. Students you are again welcome to p

Re: [Pharo-project] Non-Smalltalk content in Pharo and Nautilus

2013-03-27 Thread Benjamin
Exactly what I was about to propose :) Write a GSoC proposal ^^ Ben On Mar 27, 2013, at 9:29 PM, Guillermo Polito wrote: > > > On Wed, Mar 27, 2013 at 9:18 PM, Torsten Bergmann wrote: > When working with Seaside (or other frameworks) one often works with > non-Smalltalk resources > stored w

Re: [Pharo-project] in anybody out there? who uses 2.0?

2013-03-27 Thread Sean P. DeNigris
EstebanLM wrote > So... I wonder... is that because we made a really cool release, or just > because nobody is using it? I've ported most of my projects to 2.0, but I've been on holidays for a few weeks, so I haven't updated to the released version. I'll know better this week, but IIRC most of the

Re: [Pharo-project] [Pharo-users] More GSoC ideas wanted, 3 days left ....

2013-03-27 Thread Sean P. DeNigris
Clément Bera-4 wrote > Title: A Pharo Image running on top of VirtualBox with the help of a Linux > micro kernel I wrapped some of the VirtualBox command line. The code is on ss3. - Cheers, Sean -- View this message in context: http://forum.world.st/More-GSoC-ideas-wanted-3-days-left-tp467

Re: [Pharo-project] Looking for a Seaside 3.1 Configuration for Pharo 2.0

2013-03-27 Thread Paul DeBruicker
Stéphane Ducasse wrote > Hi guys > > we would like to use seaside to validate the VM and also make sure that > Seaside31. works perfectly in Pharo2.0. > I saw that some of you have a working configuration. Where can we find it > because we would like to publish it in the > MetaRepoForPharo20. >

Re: [Pharo-project] How to open a file with external app

2013-03-27 Thread Camillo Bruni
The only solution currently is to use OSProcess and - open under OSX - gnome-open under linux On 2013-03-27, at 23:05, jannik.laval wrote: > Hi pharoers, > > Is it possible to select a file and open it with an external application ? > For example, I need to open a pdf file. > > How can I do t

[Pharo-project] How to open a file with external app

2013-03-27 Thread jannik.laval
Hi pharoers, Is it possible to select a file and open it with an external application ? For example, I need to open a pdf file. How can I do that ? Thank you for the help, Jannik

Re: [Pharo-project] Non-Smalltalk content in Pharo and Nautilus

2013-03-27 Thread Guillermo Polito
On Wed, Mar 27, 2013 at 9:18 PM, Torsten Bergmann wrote: > When working with Seaside (or other frameworks) one often works with > non-Smalltalk resources > stored within the image (CSS styles, images, ...) often stored as strings > within > methods: > > > myCss >^'body { >background-color

[Pharo-project] Non-Smalltalk content in Pharo and Nautilus

2013-03-27 Thread Torsten Bergmann
When working with Seaside (or other frameworks) one often works with non-Smalltalk resources stored within the image (CSS styles, images, ...) often stored as strings within methods: myCss ^'body { background-color: #ce; }' or script ^'alert("hello from Javascript");' I also of

Re: [Pharo-project] ClassTestCase should be in SUnit not in Tests, agree?

2013-03-27 Thread Marcus Denker
On Mar 27, 2013, at 7:50 PM, Eliot Miranda wrote: > Hi All, > > I'm trying to load NetworkTests into a Newspeak image. This image > doesn't include Tests, but does contain SUnit and SUnitGUI. I can't load > NetworkTests because it depends on ClassTestCase which is in Tests-Utilities. >

Re: [Pharo-project] Suggestion about Phexample and StateSpecs(Mocketry) integration

2013-03-27 Thread Yuriy Tymchuk
If you can write step by step instruction what to show, I can do it. Right now all my time is used to prepare my own presentation, so I can't do it myself. uko On 27 бер. 2013, at 18:41, Denis Kudriashov wrote: > 2013/3/27 Tudor Girba > Perhaps Mocketry would be a good topic for a "Show us y

[Pharo-project] ClassTestCase should be in SUnit not in Tests, agree?

2013-03-27 Thread Eliot Miranda
Hi All, I'm trying to load NetworkTests into a Newspeak image. This image doesn't include Tests, but does contain SUnit and SUnitGUI. I can't load NetworkTests because it depends on ClassTestCase which is in Tests-Utilities. IMO ClassTestCase should be in SUnit. Any disagreements? Any agr

Re: [Pharo-project] Looking for a Seaside 3.1 Configuration for Pharo 2.0

2013-03-27 Thread Johan Brichau
I'm merging mine and Paul's configuration for Seaside 3.0.7 into Diego's and Stefan's work. Of course, there's always stuff that gets in the way of finishing that (like moving our offices ;-). I hope to have one by end of the week for Seaside 3.0.7. The intention is that we merge this into the

Re: [Pharo-project] Looking for a Seaside 3.1 Configuration for Pharo 2.0

2013-03-27 Thread Stephan Eggermont
Stef wrote: >we would like to use seaside to validate the VM and also make sure that >Seaside31. works perfectly in Pharo2.0. >I saw that some of you have a working configuration. Where can we find it >because we would like to publish it in the >MetaRepoForPharo20. We have it working, but it do

Re: [Pharo-project] Looking for a Seaside 3.1 Configuration for Pharo 2.0

2013-03-27 Thread Esteban A. Maringolo
2013/3/27 Mariano Martinez Peck : > > > On Wed, Mar 27, 2013 at 2:11 PM, Stéphane Ducasse > wrote: >> >> Hi guys >> >> we would like to use seaside to validate the VM and also make sure that >> Seaside31. works perfectly in Pharo2.0. >> I saw that some of you have a working configuration. Where ca

Re: [Pharo-project] in anybody out there? who uses 2.0?

2013-03-27 Thread Sebastian Sastre
I don't use it yet. But you can bet you'll hear about it:D Let things come to you and keep the great work. sebastian o/ On Mar 27, 2013, at 11:24 AM, Esteban Lorenzano wrote: > Hi, > > Here in Pharo headquarters we are shock that there are just 10 new bugs > reported for 2.0 after the

Re: [Pharo-project] Looking for a Seaside 3.1 Configuration for Pharo 2.0

2013-03-27 Thread Mariano Martinez Peck
On Wed, Mar 27, 2013 at 2:11 PM, Stéphane Ducasse wrote: > Hi guys > > we would like to use seaside to validate the VM and also make sure that > Seaside31. works perfectly in Pharo2.0. > I saw that some of you have a working configuration. Where can we find it > because we would like to publish i

Re: [Pharo-project] [Pharo-users] in anybody out there? who uses 2.0?

2013-03-27 Thread Norbert Hartl
Am 27.03.2013 um 15:24 schrieb Esteban Lorenzano : > Hi, > > Here in Pharo headquarters we are shock that there are just 10 new bugs > reported for 2.0 after the release... > So... I wonder... is that because we made a really cool release, or just > because nobody is using it? > Most of my s

Re: [Pharo-project] Suggestion about Phexample and StateSpecs(Mocketry) integration

2013-03-27 Thread Denis Kudriashov
2013/3/27 Tudor Girba > Perhaps Mocketry would be a good topic for a "Show us your projects" > session. Then we can try to go into a couple of more details. > > Unfortunately I can't participate conference this year > Cheers, > Doru > > > On Mar 27, 2013, at 12:42 AM, Yuriy Tymchuk wrote: > >

Re: [Pharo-project] in anybody out there? who uses 2.0?

2013-03-27 Thread Stephan Eggermont
Esteban wrote: >Here in Pharo headquarters we are shock that there are just 10 new bugs >reported for 2.0 after the release... >So... I wonder... is that because we made a really cool release, or just >because nobody is using it? It is a cool release and we are using it. Sorry about the lack o

[Pharo-project] Looking for a Seaside 3.1 Configuration for Pharo 2.0

2013-03-27 Thread Stéphane Ducasse
Hi guys we would like to use seaside to validate the VM and also make sure that Seaside31. works perfectly in Pharo2.0. I saw that some of you have a working configuration. Where can we find it because we would like to publish it in the MetaRepoForPharo20. Stef

Re: [Pharo-project] in anybody out there? who uses 2.0?

2013-03-27 Thread stephane ducasse
Thanks! STef > Esteban wrote: >> Here in Pharo headquarters we are shock that there are just 10 new bugs >> reported for 2.0 after the release... >> So... I wonder... is that because we made a really cool release, or just >> because nobody is using it? > > It is a cool release and we are usi

Re: [Pharo-project] More GSoC ideas wanted, 3 days left ....

2013-03-27 Thread Serge Stinckwich
One more idea about SciSmalltalk! Title: SciSmalltalk - Solving Ordinary Differential Equations in Smalltalk Level: (intermediate) Possible mentor: Serge Stinckwich Possible second mentor: ? Description SciSmalltalk is a new Smalltalk project, similar to existing scientific libraries like Num

Re: [Pharo-project] More GSoC ideas wanted, 3 days left ....

2013-03-27 Thread Yuriy Tymchuk
Hi, one more idea here: Title: Tree models visualization Level: intermediate Possible mentor: Usman Bhatti Possible second mentor: Yuriy Tymchuk Description: Moose platform (http://www.moosetechnology.org) does very good job for data analysis. Recent FAST extension allows one to model an AST

Re: [Pharo-project] Penelope the Monkey is wrong about email address validity

2013-03-27 Thread Ben Coman
Frank Shearar wrote: Am I the only one to use an email address containing a . ? Penelope doesn't recognise frank.shea...@gmail.com as a valid address, which is unfortunate. I've registered with an old email address in the meantime, but we'll want to flag this up as a problem with someone. frank

Re: [Pharo-project] GSoC idea: Spec over Aida component model

2013-03-27 Thread Benjamin
Thank you :) So I think I will apply as a student (and still be present for the student without being a mentor then) :) Ben On Mar 27, 2013, at 4:21 PM, Ben Coman wrote: > Benjamin wrote: >> Thanks for the explanation :) >> >> My question was more >> Can I be a student for project Foo and a

Re: [Pharo-project] GSoC idea: Spec over Aida component model

2013-03-27 Thread Ben Coman
Benjamin wrote: Thanks for the explanation :) My question was more Can I be a student for project Foo and a mentor for project Bar ? :) Ben GSOC FAQ... Students and Eligibility Q10: I would like to participate in Google Summer of Code as both a mentor and a student. Is this possible? **

Re: [Pharo-project] in anybody out there? who uses 2.0?

2013-03-27 Thread Max Leske
I use 2.0 for development of FileSystem-Git and Fuel but it will be quite a while before we'll have a critical application working on 2.0, so in that respect: no we don't use 2.0 in production. Max On 27.03.2013, at 15:24, Esteban Lorenzano wrote: > Hi, > > Here in Pharo headquarters we are

Re: [Pharo-project] Penelope the Monkey is wrong about email address validity

2013-03-27 Thread Benjamin
Thank you for the report We are aware of this, but running out of time right now. Sorry for the inconvenience, Ben On Mar 27, 2013, at 3:48 PM, Frank Shearar wrote: > Am I the only one to use an email address containing a . ? Penelope > doesn't recognise frank.shea...@gmail.com as a valid addr

Re: [Pharo-project] in anybody out there? who uses 2.0?

2013-03-27 Thread p...@highoctane.be
As far as I am concerned, I report what I do find. But needing to put bread on the table, I can do that a few days a week. More to expect as I started the development of a seaside-rest / amber app (getting inspiration from STH). Other than that, the system looks like okay from a usage perspective

[Pharo-project] Penelope the Monkey is wrong about email address validity

2013-03-27 Thread Frank Shearar
Am I the only one to use an email address containing a . ? Penelope doesn't recognise frank.shea...@gmail.com as a valid address, which is unfortunate. I've registered with an old email address in the meantime, but we'll want to flag this up as a problem with someone. frank

Re: [Pharo-project] [Pharo-users] in anybody out there? who uses 2.0?

2013-03-27 Thread Sven Van Caekenberghe
Hi, On 27 Mar 2013, at 15:24, Esteban Lorenzano wrote: > Hi, > > Here in Pharo headquarters we are shock that there are just 10 new bugs > reported for 2.0 after the release... > So... I wonder... is that because we made a really cool release, or just > because nobody is using it? > > Cheer

[Pharo-project] in anybody out there? who uses 2.0?

2013-03-27 Thread Esteban Lorenzano
Hi, Here in Pharo headquarters we are shock that there are just 10 new bugs reported for 2.0 after the release... So... I wonder... is that because we made a really cool release, or just because nobody is using it? Cheers, Esteban

Re: [Pharo-project] More GSoC ideas wanted, 3 days left ....

2013-03-27 Thread Clément Bera
Yeah it's fine. Thank you. 2013/3/27 Janko Mivšek > Yuriy, thanks for your explanation, I now understand the intent of your > idea better. Good luck with it! > > Janko > > Dne 26. 03. 2013 20:24, piše Yuriy Tymchuk: > > Hi Janko, > > > > To be honest, you are touching Java only by parsing it's c

[Pharo-project] [ANN] Pomodoro for Pharo 2.0

2013-03-27 Thread Torsten Bergmann
MartinW wrote: >- When you drag and drop a finished (red) Pomodoro Morph the whenFinishedDo: >block is executed every time on dropping the morph. Ahh ... I see. I fixed that. >- The clock starts with 4 seconds and displays the 'Pomodoro finished' >notification 1 second after the progress bar and

Re: [Pharo-project] Fwd: Some question and request for Athens

2013-03-27 Thread Tristan Bourgois
2013/3/26 Igor Stasenko : > On 26 March 2013 11:29, Tristan Bourgois wrote: >> 2013/3/25 Stéphane Ducasse : >>> >>> >>> Begin forwarded message: >>> >>> From: Igor Stasenko >>> Subject: Re: Some question and request for Athens >>> Date: March 25, 2013 2:57:33 PM GMT+01:00 >>> To: Tristan Bourgois

Re: [Pharo-project] More GSoC ideas wanted, 3 days left ....

2013-03-27 Thread Yuriy Tymchuk
You are welcome, and thank you. One more question: why SciSmalltalk isn't present among the ideas? Yuiry On 27 бер. 2013, at 13:56, Janko Mivšek wrote: > Yuriy, thanks for your explanation, I now understand the intent of your > idea better. Good luck with it! > > Janko > > Dne 26. 03. 2013

Re: [Pharo-project] [Help to review/test] Crash when downloading FFI

2013-03-27 Thread Luc Fabresse
2013/3/27 Guillermo Polito > > > On Wed, Mar 27, 2013 at 9:46 AM, Luc Fabresse wrote: > >> Hi all, >> >> 2013/3/26 Guillermo Polito >> >>> Hi! >>> >>> I've given a shot trying to get a fix for this case. Thanks to Eliot, I >>> think I reached a solution, but since I had some random results at fi

Re: [Pharo-project] More GSoC ideas wanted, 3 days left ....

2013-03-27 Thread Janko Mivšek
Yuriy, thanks for your explanation, I now understand the intent of your idea better. Good luck with it! Janko Dne 26. 03. 2013 20:24, piše Yuriy Tymchuk: > Hi Janko, > > To be honest, you are touching Java only by parsing it's code. Yes, it's > shifted towards Java because there is a lot of Jav

Re: [Pharo-project] [Help to review/test] Crash when downloading FFI

2013-03-27 Thread Guillermo Polito
On Wed, Mar 27, 2013 at 9:46 AM, Luc Fabresse wrote: > Hi all, > > 2013/3/26 Guillermo Polito > >> Hi! >> >> I've given a shot trying to get a fix for this case. Thanks to Eliot, I >> think I reached a solution, but since I had some random results at first, >> I'd like if someone else can take 5

Re: [Pharo-project] [Pharo-users] More GSoC ideas wanted, 3 days left ....

2013-03-27 Thread Janko Mivšek
Clement, your interesting idea was just added to the Ideas page. http://gsoc2013.esug.org/ideas#h-5. I shortened the title to just Pharo Image running on top of VirtualBox, will be ok? Dne 27. 03. 2013 10:30, piše �: > Title: A Pharo Image running on top of VirtualBox with the help of a > Linux m

Re: [Pharo-project] [ANN] Pomodoro for Pharo 2.0

2013-03-27 Thread MartinW
Torsten Bergmann wrote >"Provide an action when pomodoro is finished" >Pomodoro timerFor: 5 seconds > whenFinishedDo: [ self inform: 'Pomodoro finished'] Hi, i like the Pomodoro App. Two things i noticed when i tried the above example: - When you drag and drop a finished (red

Re: [Pharo-project] Some issues with UDP sockets in Pharo 1.4/Pharo 2.0

2013-03-27 Thread Norbert Hartl
Am 27.03.2013 um 11:31 schrieb Sven Van Caekenberghe : > Semantically, datagrams can get lost or arrive out of order. A or B will > never know as there are no guarantees. To add reliability, you need > acknowledgements, retries, numbering, and so on. If you do all that with a > stream interfac

Re: [Pharo-project] Some issues with UDP sockets in Pharo 1.4/Pharo 2.0

2013-03-27 Thread Sven Van Caekenberghe
On 27 Mar 2013, at 10:55, Norbert Hartl wrote: > > Am 27.03.2013 um 00:25 schrieb Sven Van Caekenberghe : > >> >> On 26 Mar 2013, at 23:46, Norbert Hartl wrote: >> >>> Am 26.03.2013 um 21:08 schrieb Sven Van Caekenberghe : >>> Hi Holger, On 26 Mar 2013, at 12:12, Holger Han

[Pharo-project] [FugBugz] Simplififactions Issue tracker

2013-03-27 Thread Marcus Denker
Hi,I simplified things a bit -> just one Milestone for 3.0 -> "Active" is retired, the default Active state is "Work Needed"In addtion, the filters are simplified.-> dedicted "Integration" and "Review" Filteres. They cross cut all Milestones, as we should quickly integrate 1.4 and 2.0 fixes.the "3.

Re: [Pharo-project] Some issues with UDP sockets in Pharo 1.4/Pharo 2.0

2013-03-27 Thread Norbert Hartl
Am 27.03.2013 um 00:25 schrieb Sven Van Caekenberghe : > > On 26 Mar 2013, at 23:46, Norbert Hartl wrote: > >> Am 26.03.2013 um 21:08 schrieb Sven Van Caekenberghe : >> >>> Hi Holger, >>> >>> On 26 Mar 2013, at 12:12, Holger Hans Peter Freyther >>> wrote: >>> Hi, I am port

Re: [Pharo-project] [Pharo-users] More GSoC ideas wanted, 3 days left ....

2013-03-27 Thread Clément Bera
Title: A Pharo Image running on top of VirtualBox with the help of a Linux micro kernel Level: intermediate Possible mentor: Clement Bera Possible second mentor: Marcus Denker, Camillo Bruni Description Archiving Pharo / Squeak Image is not easy : it depends on a VM, that depends on a

Re: [Pharo-project] [Help to review/test] Crash when downloading FFI

2013-03-27 Thread Luc Fabresse
Hi all, 2013/3/26 Guillermo Polito > Hi! > > I've given a shot trying to get a fix for this case. Thanks to Eliot, I > think I reached a solution, but since I had some random results at first, > I'd like if someone else can take 5 minutes and validate. > > > https://pharo.fogbugz.com/f/cases/101

Re: [Pharo-project] [update 3.0] #30014

2013-03-27 Thread Camillo Bruni
On 2013-03-27, at 09:17, Sven Van Caekenberghe wrote: > > On 27 Mar 2013, at 08:25, Marcus Denker wrote: > >> 7465 version printing command line needs modifiers >> https://pharo.fogbugz.com/f/cases/7465 > > Cool. I was already thinking about this. > > Could we not further extend #print

Re: [Pharo-project] [update 3.0] #30014

2013-03-27 Thread Sven Van Caekenberghe
On 27 Mar 2013, at 08:25, Marcus Denker wrote: > 7465 version printing command line needs modifiers > https://pharo.fogbugz.com/f/cases/7465 Cool. I was already thinking about this. Could we not further extend #printVersion with - an option to print the VM version (through the image) -

Re: [Pharo-project] Some issues with UDP sockets in Pharo 1.4/Pharo 2.0

2013-03-27 Thread Sven Van Caekenberghe
On 27 Mar 2013, at 08:11, Holger Hans Peter Freyther wrote: > On Tue, Mar 26, 2013 at 09:08:09PM +0100, Sven Van Caekenberghe wrote: > >> Maybe I am telling you things you already know, but TCP and UDP are >> fundamentally different. UDP is really one-shot, try-and-hope, completely >> asynchr

Re: [Pharo-project] Some issues with UDP sockets in Pharo 1.4/Pharo 2.0

2013-03-27 Thread Sven Van Caekenberghe
On 27 Mar 2013, at 08:03, Holger Hans Peter Freyther wrote: > On Wed, Mar 27, 2013 at 12:25:20AM +0100, Sven Van Caekenberghe wrote: > >> I politely disagree ;-) >> >> But I am willing to learn: so please provide some references of such UDP >> usage. >> >> http://en.wikipedia.org/wiki/Datagr

[Pharo-project] [update 3.0] #30014

2013-03-27 Thread Marcus Denker
30014 - 10138 Config browser does not work in Pharo 3.0, requires new repo https://pharo.fogbugz.com/f/cases/10138/ 10111 DictionaryTest does not properly test subclass functionality https://pharo.fogbugz.com/f/cases/10111 7465 version printing command line ne

Re: [Pharo-project] Some issues with UDP sockets in Pharo 1.4/Pharo 2.0

2013-03-27 Thread Holger Hans Peter Freyther
On Tue, Mar 26, 2013 at 09:08:09PM +0100, Sven Van Caekenberghe wrote: > Maybe I am telling you things you already know, but TCP and UDP are > fundamentally different. UDP is really one-shot, try-and-hope, completely > asynchronous. In networking you generally only get a ConnectionClosed when >

Re: [Pharo-project] Some issues with UDP sockets in Pharo 1.4/Pharo 2.0

2013-03-27 Thread Holger Hans Peter Freyther
On Wed, Mar 27, 2013 at 12:25:20AM +0100, Sven Van Caekenberghe wrote: > I politely disagree ;-) > > But I am willing to learn: so please provide some references of such UDP > usage. > > http://en.wikipedia.org/wiki/Datagram I am not sure which part you are disagreeing to. But you can definat