[Pharo-users] In Praise of the Very Best Programming Language

2017-07-17 Thread horrido
My farewell article? https://medium.com/@richardeng/in-praise-of-the-very-best-programming-language-eae36ae434af -- View this message in context: http://forum.world.st/In-Praise-of-the-Very-Best-Pr

Re: [Pharo-users] Little challenge: Best way to read stream and count line returns

2017-07-17 Thread Julián Maestri
count := 0. stream do: [ :character | (character = Character cr and: [stream peek = Character lf]) ifTrue: [ count := count + 1 ]]. count. Snippet with example: | count crlftext stream | stream := (String streamContents: [ :s | s nextPutAll: 'Lorem ipsum dolor sit amet, consectetur adipiscing el

Re: [Pharo-users] Pharo 6.0 don't start

2017-07-17 Thread Trussardi Dario Romano
Ciao, > Nothing there jumps out at me, so just a general question... what other > versions of Pharo have you successfully run on your system? I have run: Pharo4.0 Launcher Latest update: #40621 Pharo 4.0 Latest update: #40625

Re: [Pharo-users] How to run a window in full-screen mode?

2017-07-17 Thread Luke Gorrie
On 17 July 2017 at 16:02, Nicolai Hess wrote: > There is a FullscreenMorph > Thanks, Nicolai! That's exactly what I need. I wonder how I missed it in the Spotter :).

Re: [Pharo-users] How to run a window in full-screen mode?

2017-07-17 Thread Nicolai Hess
2017-07-17 15:50 GMT+02:00 Luke Gorrie : > Hoi! > > I am looking for a way to run a window in full-screen mode in Pharo. That > is it should maximize, beyond the bounds that the expand button usually > takes, and it should automatically resize when the world does. > > I'm thinking of the GTInspect

[Pharo-users] How to run a window in full-screen mode?

2017-07-17 Thread Luke Gorrie
Hoi! I am looking for a way to run a window in full-screen mode in Pharo. That is it should maximize, beyond the bounds that the expand button usually takes, and it should automatically resize when the world does. I'm thinking of the GTInspector but a custom class would be fine too. Is there a s

Re: [Pharo-users] Using the Debugger to write code

2017-07-17 Thread Marcus Denker
>>> >>> 2017-07-12 9:09 GMT+02:00 Marcus Denker >> >: >>> in the workspace it creates a variable (with value nil)… so it treats >>> upper-case >>> unknown vars the same as lower case. >>> >>> I think it might make sense to have for upper case instead the menu that

Re: [Pharo-users] Creating the smallest server runtime footprint

2017-07-17 Thread Tim Mackinnon
Well I’ve been shooting in the dark a bit - but I also left out the sound and display so’s (e.g. -x execlude the following and add back the null so's zip -r --symlinks ../deploy/$LAMBDA_NAME.zip * -x pharo-local/\* \*.sources \*.changes \*.st \*.log */libgit2.* */libSDL2* */B3DAccelerator* *

Re: [Pharo-users] Playground and Dr. Geo

2017-07-17 Thread Hilaire
The owner of the menu (DockingBarToogleMenuItemMorph) does not have the right bounds. Therefore its #adjacentTo message returns the wrong information. Le 17/07/2017 à 10:50, Hilaire a écrit : >> if b) The real morph position is probably not the same as where >> clicked causing it to open at anoth

Re: [Pharo-users] Playground and Dr. Geo

2017-07-17 Thread Hilaire
Hi, Le 16/07/2017 à 22:02, Henrik Nergaard a écrit : > > a)Do you wrap the morph inside the morph tab view? , > I don't understand. > b) Do you use the same code for rendering as in Morph>> > #gtInspectorMorphIn: . > No, as I want a Morph view and not a From: gtInspectorCanvasIn: composite

Re: [Pharo-users] Mysterious problem in loading Pharo

2017-07-17 Thread Peter Uhnak
With fast boot I had experiences where the restart wasn't enough and I had to restart several times, but since I disabled fast boot restarting once was always enough... so usually the first thing I do when windows boots is to check if Pharo runs ok. In some rare unclear circmustances (now I won

Re: [Pharo-users] VoyageMongo with Metacello project spec in Pharo 6 on MacOS Sierra

2017-07-17 Thread Esteban Lorenzano
> On 16 Jul 2017, at 15:27, Guillaume Giraud > wrote: > > Thanks a lot ! > > I used your config and now it works. > > The result of evaluating 'Smalltalk os’ is 'a MacOSPlatform’, and the VM is > 201705310241. > > By the way, I find it difficult to fully grasp the Metacello config process.