Re: [Pharo-users] Contributing code

2016-12-08 Thread Sven Van Caekenberghe
> On 9 Dec 2016, at 07:21, Ben Coman wrote: > > > Bugs are tracked at pharo.fogbugz.com. My screen is a little different to > yours since Fogbugz keeps me logged on, but you should see information about > signing up. Please let us know of any difficulties. In

Re: [Pharo-users] Contributing code

2016-12-08 Thread Ben Coman
Bugs are tracked at pharo.fogbugz.com. My screen is a little different to yours since Fogbugz keeps me logged on, but you should see information about signing up. Please let us know of any difficulties. In particular you might not get a confirmation email when you sign up and need to reset your

Re: [Pharo-users] Image Downloading

2016-12-08 Thread Asbath Sama biyalou via Pharo-users
--- Begin Message --- Thanks all for your answers. But now I want to access to some images on my disk from a rest client. I have the name of the image in a variable. Cheers Asbath On 08/12/2016 19:33, Sven Van Caekenberghe wrote: > Hi, > >> On 8 Dec 2016, at 09:43, Asbath Sama biyalou via

[Pharo-users] Contributing code

2016-12-08 Thread Evan Donahue
Hello, I wanted to ask if there was a good resource I could use to learn how to find out about current bugs and submit patches/code/contributions to the core Pharo classes (or other major Pharo projects). I'd like to be able to fix the things I encounter, I've just never gotten around to learning

Re: [Pharo-users] [Pharo-dev] Archive for Monthly Pharo Newsletter

2016-12-08 Thread stepharong
This is cool like that I link to it from the pharoweekly blg Hi, There is an archive for the monthly newsletter: http://us11.campaign-archive1.com/home/?u=6f667565c2569234585a7be77=048680a940 I will add that link to the website. Marcus -- Using Opera's mail client:

Re: [Pharo-users] [Pharo-dev] [ANN] Pharo Association has a new Website!

2016-12-08 Thread Sven Van Caekenberghe
> On 8 Dec 2016, at 19:59, Marcus Denker wrote: > > >> >>> Accepting Bitcoin payments would be a plus ;-) (https://bitpay.com/tour) >>> >> > > Hi, > > I have setup bitpay. This means we can now accept bitcoin, to pay by bitcoin, > for now please select “offline”

Re: [Pharo-users] PolyMath 0.66

2016-12-08 Thread Morgan, Rebecca Erin - morre02f
Wow, thanks, this looks very interesting! Cheers Rebecca Morgan -Original Message- From: Pharo-users [mailto:pharo-users-boun...@lists.pharo.org] On Behalf Of Serge Stinckwich Sent: Thursday, 8 December 2016 11:22 PM To: Any question about pharo is welcome ;

Re: [Pharo-users] [squeak-dev] pondering Smalltalk scripting in Minecraft

2016-12-08 Thread Hilaire
Just a quick note before I forget: why not using the Minetest free software alternative? It is really nice. Hilaire Le 07/12/2016 à 14:50, Ben Coman a écrit : > Thanks Sven. I completely missed that. > However digging in, it seems only the Pi version got an API. The PC > versions have no

Re: [Pharo-users] [Pharo-dev] Archive for Monthly Pharo Newsletter

2016-12-08 Thread Sven Van Caekenberghe
Wow, this is very nice! > On 8 Dec 2016, at 17:07, Marcus Denker wrote: > > Hi, > > There is an archive for the monthly newsletter: > > > http://us11.campaign-archive1.com/home/?u=6f667565c2569234585a7be77=048680a940 > > I will add that link to the website. >

[Pharo-users] Drastically improving the messageNotUnderstood title

2016-12-08 Thread stepharong
Hi guys As I exposed newbies to our wonderfull debugger I think that we should change MessageNotUnderstood: Class>>#message into an instance of Class did not understand message To me this simple change would have a HUGE impact on making the debugger first contact a lot more friendly. Any

Re: [Pharo-users] [Pharo-dev] [ANN] Pharo Association has a new Website!

2016-12-08 Thread Marcus Denker
> >> Accepting Bitcoin payments would be a plus ;-) (https://bitpay.com/tour >> ) >> > Hi, I have setup bitpay. This means we can now accept bitcoin, to pay by bitcoin, for now please select “offline” payment and then send a mail to associat...@pharo.org

Re: [Pharo-users] Image Downloading

2016-12-08 Thread Sven Van Caekenberghe
Hi, > On 8 Dec 2016, at 09:43, Asbath Sama biyalou via Pharo-users > wrote: > > > From: Asbath Sama biyalou > Subject: Image Downloading > Date: 8 December 2016 at 09:43:00 GMT+1 > To: Pharo users users > >

[Pharo-users] Archive for Monthly Pharo Newsletter

2016-12-08 Thread Marcus Denker
Hi, There is an archive for the monthly newsletter: http://us11.campaign-archive1.com/home/?u=6f667565c2569234585a7be77=048680a940 I will add that link to the website. Marcus

[Pharo-users] PolyMath 0.66

2016-12-08 Thread Serge Stinckwich
PolyMath, the science library for Pharo, version 0.66 is out ! We have 622 green tests. You can download this version in a fresh Pharo 4.0/5.0 image with: Gofer new url: 'http://smalltalkhub.com/mc/PolyMath/PolyMath/main'; configurationOf:'PolyMath'; loadVersion: '0.66' You will

Re: [Pharo-users] Image Downloading

2016-12-08 Thread p...@highoctane.be
Save to disk and open in a Window: | image | 'http://www.w3schools.com/css/paris.jpg' in: [ :url | image := (ZnEasy get: url) contents. 'file.jpg' asFileReference writeStreamDo:[ :stream | stream nextPutAll: image. (ImageReadWriter formFromStream: image readStream) asMorph openInWindowLabeled:

Re: [Pharo-users] Image Downloading

2016-12-08 Thread Blondeau Vincent
Hi, Here is a first idea of how to do it : image := (ZnEasy get: 'http://www.w3schools.com/css/paris.jpg') contents. file := 'file.jpg' asFileReference. [stream := file writeStream. stream nextPutAll: image. ]ensure: [stream close]. ImageReadWriter formFromStream: file readStream. Cheers,

[Pharo-users] Image Downloading

2016-12-08 Thread Asbath Sama biyalou via Pharo-users
--- Begin Message --- Hi. I want to download images from Internet and save them on my local disk. I will take the path of this image and put it in variable in pharo. I don't know how to proceed. Thanks --- End Message ---