Re: [Pharo-users] How to detect wheter the computer is connected to the internet ?

2015-12-13 Thread Peter Uhnak
On 12/14, Sven Van Caekenberghe wrote: > Hi Dimitris, > > > On 14 Dec 2015, at 07:02, Dimitris Chloupis wrote: > > > > Hey guys I try to make a way to detect whether my project is up to date and > > if not to update it from the github repo automagically. This part works > > fine , but I will a

Re: [Pharo-users] code coverage tools

2015-12-09 Thread Peter Uhnak
On 12/09, p...@highoctane.be wrote: > I came across this: > > http://objectprofile.com/Hapao.html This looks great! Thanks > > but never used or even digged into. > > Phil > > On Wed, Dec 9, 2015 at 9:25 AM, Peter Uhnak wrote: > > > Hi, > &

[Pharo-users] code coverage tools

2015-12-09 Thread Peter Uhnak
Hi, do we have any code coverage tools? -- Peter

Re: [Pharo-users] Roassal Performance Issues when applying layout

2015-12-07 Thread Peter Uhnak
On 12/07, Alejandro Infante wrote: > Hi, > It is really difficult to help you just with a profile and without looking at > your code. > Even though, I have noticed that most of the time is used on calculating > properties related to CompositeShapes (like position and encompassing > rectangle). >

Re: [Pharo-users] About GTSpotter matching

2015-12-07 Thread Peter Uhnak
here are many variations, but wildchars... > > > On Dec 5, 2015, at 20:40, Peter Uhnak wrote: > > > > Hi, > > > > are there some wildcards in GTSpotter matching? > > > > Currently it searches anywhere in the (method) name, which makes it hard > >

Re: [Pharo-users] where is save export setting file

2015-12-06 Thread Peter Uhnak
On 12/06, Hilaire wrote: > Hello > > Where export setting save the prefrence in the host file system, on Linux. Linux config is normally in '~/.config/pharo/' > > I am stuck with it and need to delete it > > Thanks > > Hilaire > > -- > Dr. Geo > http://drgeo.eu > http://google.com/+DrgeoEu

[Pharo-users] OrderedSet?

2015-12-05 Thread Peter Uhnak
Hi, what would be the equivalent of an OrderedSet? 1. all elements are unique 2. they are ordered 3. adding an existing element moves it so myOrderedSet addLast: x. "<- x is added as last" myOrderedSet addFirst: x. "<- x is moved from last to first" Thanks, -- Peter

[Pharo-users] About GTSpotter matching

2015-12-05 Thread Peter Uhnak
Hi, are there some wildcards in GTSpotter matching? Currently it searches anywhere in the (method) name, which makes it hard for shorter names, because it will match a lot of junk. I've also discovered (by accident), that I can use '>>#selector' to anchor the start of the selection. ('#selector'

Re: [Pharo-users] How I can tell to a startup script to target specific images

2015-12-02 Thread Peter Uhnak
On 12/02, Dimitris Chloupis wrote: > I have a startup script that loads the libraries and project I mostly use, > including my own, but I want that script to target specific folders and its > subfolders , is this possible ? You can test values of `SmalltalkImage current`... for example (Smalltal

[Pharo-users] graph library in Pharo

2015-11-29 Thread Peter Uhnak
Hi, is there any graph library for pharo with algorithms for planarity testing, spanning trees, flow costs, etc.? Thanks, -- Peter

Re: [Pharo-users] Pillar tables with multiline cells

2015-11-24 Thread Peter Uhnak
On 11/24, Peter Uhnak wrote: > Hi, > > is it possible to have table with multiline cells in Pillar? > > For example in markdown I can embed a piece of HTML, unfortunately > Pillar requires {{{html: to start at a new line which doesn't work with > tables. Or I can use

[Pharo-users] Pillar tables with multiline cells

2015-11-24 Thread Peter Uhnak
Hi, is it possible to have table with multiline cells in Pillar? For example in markdown I can embed a piece of HTML, unfortunately Pillar requires {{{html: to start at a new line which doesn't work with tables. Is there another solution? Thanks, -- Peter

Re: [Pharo-users] piping output from shell process to transcript

2015-11-24 Thread Peter Uhnak
> On Mon, Nov 23, 2015 at 6:42 PM, Peter Uhnak wrote: > > > Hi, > > > > how can I pipe output from PipeableOSProcess to Transcript? > > > > I tried doing: > > > > (PipeableOSProcess command: 'my-command.sh') outputOn: Transcript. > > &

[Pharo-users] piping output from shell process to transcript

2015-11-23 Thread Peter Uhnak
Hi, how can I pipe output from PipeableOSProcess to Transcript? I tried doing: (PipeableOSProcess command: 'my-command.sh') outputOn: Transcript. However `#outputOn:` doesn't send `#endEntry` so I don't see anything, and even if it would, the output is delivered there at the end anyway. I woul

Re: [Pharo-users] Basic versioning of GitHub repositories from within Pharo

2015-11-23 Thread Peter Uhnak
On Mon, Nov 23, 2015 at 04:25:28PM +0100, Skip Lentz wrote: > Hi everyone, > > As part of my internship I am creating bindings to the GitHub API in Pharo. > As a prototype and demo, I have created a small tool last week to do some > basic versioning, namely checking out a version, committing a ve

Re: [Pharo-users] Pillar for 30 gone the way of the dodo on the CI

2015-10-01 Thread Peter Uhnak
In Jenkins you specify configuration matrix (versions of pharo versus type (development, stable, ...)).. So it will run development for all versions, even pharo 30 (which is now permanently broken) -Original Message- From: "Stephan Eggermont" Sent: ‎10/‎1/‎2015 9:47 AM To: "pharo-users@

Re: [Pharo-users] Custom type inference and RoelTyper

2015-09-30 Thread Peter Uhnak
ething ready for public consumption soon... Alexandre > On Sep 30, 2015, at 8:28 PM, Peter Uhnak wrote: > > Hi, > > Moose/FAMIX uses RoelTyper for type inference, how this does not seem to be > maintained (last version 2013), and for my purposes is lacking. > > So do we

[Pharo-users] Code completion in comment pane and Pillar

2015-09-30 Thread Peter Uhnak
Hi, Some time ago I ran into a problem with typing left brackets into comment pane. As you know, code blocks in Pillar are marked with [[[ However comment pane is subject to regular code completion of NECController, which means that every time I type '[' NEC converts it into '[ ]'. So if I type

[Pharo-users] Custom type inference and RoelTyper

2015-09-30 Thread Peter Uhnak
Hi, Moose/FAMIX uses RoelTyper for type inference, how this does not seem to be maintained (last version 2013), and for my purposes is lacking. So do we have something more advanced, even at the expense of speed? Other alternative would be to either extend RoelTyper or write something custom t

Re: [Pharo-users] interview on .Net Rocks! about Moose, humaneassessment, Pharo and GT

2015-07-30 Thread Peter Uhnak
Thank you, I've really enjoyed it! Peter -Original Message- From: "Tudor Girba" Sent: ‎7/‎30/‎2015 9:35 PM To: "moose-dev" ; "Discusses Development of Pharo" ; "Any question about pharo is welcome" Subject: [Pharo-users] interview on .Net Rocks! about Moose, humaneassessment, Pharo a

Re: [Pharo-users] [Moose-dev] Re: Script of the day

2015-07-30 Thread Peter Uhnak
You should be able to specify all layouts available in roassal... b layout tree. b layout cluster. b layout force. ... Peter -Original Message- From: "H. Hirzel" Sent: ‎7/‎30/‎2015 8:40 PM To: "Moose-related development" ; "pharo-users@lists.pharo.org" Subject: Re: [Pharo-users] [Moos

[Pharo-users] Class side vs instance side

2015-07-22 Thread Peter Uhnak
Hi, I am trying to figure out where to best place some mapping/data/stable methods. For example imagine method ~ MyRectangle>>oppositeSides ^ { #top -> #bottom. #bottom -> #top. #topLeft -> #bottomRight } asDictionary And then the class might hav

Re: [Pharo-users] Request to put up my under-development applicationfor automated build

2015-07-13 Thread Peter Uhnak
Has your registration to pharo-contribution been approved yet? An admin needs to manually approve it, so it make take couple of hours. Peter -Original Message- From: "Jigyasa Grover" Sent: ‎7/‎13/‎2015 1:48 PM To: "pharo-users@lists.pharo.org" Subject: Re: [Pharo-users] Request to put

Re: [Pharo-users] GTSpotter with no results

2015-03-31 Thread Peter Uhnak
I also experience this daily, it happens when I start typing immediately, so maybe it isn't fully initialized yet? As a sidenote this sometimes happens to me with spec windows, so maybe some problem in rendering loop. Peter -Original Message- From: "Christophe Demarey" Sent: ‎3/‎31/‎2

Re: [Pharo-users] Pillar multiline comment

2015-03-08 Thread Peter Uhnak
H If pillar is line based, how I can make code examples? Actually, maybe this could work, I'll try it later. {{{comment: My Multiline Comment }}} -Original Message- From: "stepharo" Sent: ‎3/‎8/‎2015 8:21 AM To: "Any question about pharo is welcome" Subject: Re: [Pharo-users] Pillar mu

Re: [Pharo-users] UI framework&design options

2015-01-25 Thread Peter Uhnak
Hi, what is in Deep into Pharo is describing Roassal1, but now we have Roassal2. Also the book is still work in progress... I believe Alex mentioned releasing it in mid 2015. Right now also the pharo and moose mailing list is good source of information, since roassal was discussed a lot in the

<    1   2   3