Re: [Pharo-users] An Ubuntu-inspired theme for Pharo

2015-07-03 Thread stepharo
Thanks Glenn. this is quite nice :) Stef Le 3/7/15 20:47, Glenn Cavarlé a écrit : Hi all, If anyone is interested, i made a small theme inspired by the Ubuntu Ambiance theme : http://smalltalkhub.com/#!/~GlennCavarle/PharoBuntuTheme It

Re: [Pharo-users] An Ubuntu-inspired theme for Pharo

2015-07-03 Thread Alain Plantec via Pharo-users
--- Begin Message --- thanks a lot for sharing this! Cheers Alain > On 03 Jul 2015, at 22:15, Merwan Ouddane wrote: > > Nice :) > > I have joined a screenshot > > On 03/07/2015 21:19, Esteban Lorenzano wrote: >> Pretty cool :) >> >> (Btw, I'm slowly working in a real theme manager... With re

Re: [Pharo-users] An Ubuntu-inspired theme for Pharo

2015-07-03 Thread Esteban Lorenzano
Pretty cool :) (Btw, I'm slowly working in a real theme manager... With remote themes so everybody will be able to contribute their themes without overbloath the image) Esteban > On 3 Jul 2015, at 20:47, Glenn Cavarlé wrote: > > Hi all, > If anyone is interested, i made a small theme inspi

[Pharo-users] An Ubuntu-inspired theme for Pharo

2015-07-03 Thread Glenn Cavarlé
Hi all, If anyone is interested, i made a small theme inspired by the Ubuntu Ambiance theme : http://smalltalkhub.com/#!/~GlennCavarle/PharoBuntuTheme It is yet under development and if somebody is motivated to contribute, he is welcome

[Pharo-users] Building a Morphic Card Wall, Part 3: SVG export & WebSocket

2015-07-03 Thread Stephan Eggermont
https://vimeo.com/132548781

Re: [Pharo-users] an elegant way to return a result

2015-07-03 Thread Peter Uhnák
> > By the way, I've always used return statements in blocks to "break" out of > loops since i didn't find any "break" method in Pharo. Is that bad too ? > It's still the same thing. Could you provide an example where you do such a thing? When I started with Smalltalk I had also this habit of forc

Re: [Pharo-users] Phratch: Support for Spanish language in the interface

2015-07-03 Thread jannik laval
2015-07-03 11:22 GMT+02:00 Thierry Goubier : > > > 2015-07-03 11:06 GMT+02:00 jannik laval : > >> >> >> 2015-07-03 11:01 GMT+02:00 Thierry Goubier : >> >>> >>> >>> 2015-07-03 10:51 GMT+02:00 jannik laval : >>> Hi Thierry, It is a choice :) Scratch uses the scratch plugin to do

Re: [Pharo-users] an elegant way to return a result

2015-07-03 Thread Matthieu Lacaton
Well, thanks for the documentation, the first article was quite interesting and I'm gonna get this book asap :) When you execute a block (far away from the place it was created), it acts > as an exception, it stops the execution of currently executed methods and > return to its home context (metho

Re: [Pharo-users] Phratch: Support for Spanish language in the interface

2015-07-03 Thread Guillermo Polito
Wait, there is already in-image support to obtain the current locale and language setting. Did you try Locale current ? (and there is a setting to enable its obtention automatically on startup). Actually if somebody uses it for real and tests it well that would be a big +1 :) Guille El vie.,

Re: [Pharo-users] Phratch: Support for Spanish language in the interface

2015-07-03 Thread Thierry Goubier
2015-07-03 11:06 GMT+02:00 jannik laval : > > > 2015-07-03 11:01 GMT+02:00 Thierry Goubier : > >> >> >> 2015-07-03 10:51 GMT+02:00 jannik laval : >> >>> Hi Thierry, >>> >>> It is a choice :) >>> Scratch uses the scratch plugin to do that. >>> In phratch, I removed the scratch plugin, to be sure to

Re: [Pharo-users] Phratch: Support for Spanish language in the interface

2015-07-03 Thread jannik laval
2015-07-03 11:01 GMT+02:00 Thierry Goubier : > > > 2015-07-03 10:51 GMT+02:00 jannik laval : > >> Hi Thierry, >> >> It is a choice :) >> Scratch uses the scratch plugin to do that. >> In phratch, I removed the scratch plugin, to be sure to be compatible >> with platforms where it is not available.

Re: [Pharo-users] Phratch: Support for Spanish language in the interface

2015-07-03 Thread Thierry Goubier
2015-07-03 10:51 GMT+02:00 jannik laval : > Hi Thierry, > > It is a choice :) > Scratch uses the scratch plugin to do that. > In phratch, I removed the scratch plugin, to be sure to be compatible with > platforms where it is not available. > Ok. I need to have a deeper look into all this (like wh

Re: [Pharo-users] Phratch: Support for Spanish language in the interface

2015-07-03 Thread jannik laval
Hi Thierry, It is a choice :) Scratch uses the scratch plugin to do that. In phratch, I removed the scratch plugin, to be sure to be compatible with platforms where it is not available. Maybe, we can reintroduce it using OSProcess or NativeBoost. If you have a code snippet, I can use it. Cheers,

Re: [Pharo-users] [Ann] DragPanels: Floating palette windows with drag-and-drop in Morphic

2015-07-03 Thread H. Hirzel
On 7/1/15, Stephan Eggermont wrote: > On 01/07/15 13:00, H. Hirzel wrote: >> BTW >> >> Gofer new >> smalltalkhubUser: 'StephanEggermont' project: 'Documentation' >> package: 'CardsMorphic'; >> load. >> >> taken from above gives an error message. > > Needs a configuration

Re: [Pharo-users] Slow compilation on one of my Windows PCs

2015-07-03 Thread Jan Blizničenko
I tried making store benchmark based on caching settings on Windows which look like this: http://www.windows7library.com/blog/wp-content/uploads/2011/07/Write-Caching-Policy.jpg both options checked: desktop 690 per sec, laptop 490 per sec caching checked (enabled), second one not checked (which i

Re: [Pharo-users] an elegant way to return a result

2015-07-03 Thread Peter Uhnák
by the way > nextOrNextAfterNext := stream next ifNil: [stream next]. > I would argue that almost every person who would read this would think it's a bug and it should be ifNotNil: Also there would be no point in saving it to a variable if you will just return. ^ stream next ifNil: [ stream nex

Re: [Pharo-users] Slow compilation on one of my Windows PCs

2015-07-03 Thread Jan Blizničenko
Well, Peter posted here his results on his Windows XP and it is slow on his PC, too. About those non-latin characters... lots of these benchmarks are made on compilation of ASCII characters as far as I know, without our project ever loaded. I tested whole loading also on Roassal2 package where I d

Re: [Pharo-users] an elegant way to return a result

2015-07-03 Thread abdelghani ALIDRA
Hi, There is also this book : Clean Code: A Handbook of Agile Software Craftsmanship Some of you probably already knew about it, still it is good to recall :) Abdelghani |   | |   | |   |   |   |   |   | | Clean Code: A Handbook of Agile Software CraftsmanshipBook by Martin Robert C | | | | Aff

Re: [Pharo-users] an elegant way to return a result

2015-07-03 Thread jtuc...@objektfabrik.de
Stef, So we're finding more and more problems in just a single line of code ;-) Do you see advantages in this piece of code? Would it be friendlier to the Compiler/VM or a programmer in your opinion? |nextOrNextAfterNext| nextOrNextAfterNext := stream next ifNil: [stream next]. ^nextOrNextA

Re: [Pharo-users] Slow compilation on one of my Windows PCs

2015-07-03 Thread p...@highoctane.be
On Thu, Jul 2, 2015 at 11:39 PM, Jan Blizničenko wrote: > Flush is, in the store benchmark I used, called from from > MultiByteFileStream(WriteStream) >>#nextChunkPut: and from > CompiledMethod>>#putSource:inFile:withPreamble: ... when I comment out > calling flush in these two methods, it is fas