[Pharo-users] Pharo on retina macbook

2014-09-03 Thread Johan Brichau
Hi, I just started using a Macbook pro with retina display. I notice the fonts are quite blurry. Is there something one can do to improve that? Johan

Re: [Pharo-users] best solution to store data

2014-09-03 Thread Alain Rastoul
This example is just about storage, for a real app, dont use Arrays, but make a User with name and password members, and a UserDAL class that do the write.

Re: [Pharo-users] best solution to store data

2014-09-03 Thread Alain Rastoul
Great! As of your requirements there is very few business logic, and lot of data entry. With the estimation you gave about data size, I would try STON straightforward to start prototyping. see (for example) http://www.jarober.com/blog/blogView?showComments=true&printTitle=ST_4U_389:_STON_Serial

Re: [Pharo-users] Date text converter/formatter

2014-09-03 Thread stepharo
That is why the formatter/parser was written in the first place ;-) It is modelled after a Go standard library (http://golang.org/src/pkg/time/format.go) and some Ruby library I can't remember the name of. I implemented this as a proof of concept to see if/how it could be done. Hi sven and th

Re: [Pharo-users] Date text converter/formatter

2014-09-03 Thread Ben Coman
Sven Van Caekenberghe wrote: On 03 Sep 2014, at 15:24, Ben Coman wrote: Sven Van Caekenberghe wrote: Hi Sean, On 03 Sep 2014, at 00:32, Sean P. DeNigris wrote: Sven Van Caekenberghe-2 wrote Maybe you

Re: [Pharo-users] Tide installation

2014-09-03 Thread p...@highoctane.be
I tried to get this working. bower installed Tide loaded as per the slides (with some fiddling as what is there doesn't work). Then TDDispatcher tideIndexPageUrl inspect gives http://localhost:/tide/tide/index.html (Why that 'tide' twice in there?) And there, no helios or anything. But th

Re: [Pharo-users] [Article] Reddit.st - In 10 Cool Pharo Classes

2014-09-03 Thread Pierce Ng
On Mon, Sep 01, 2014 at 11:18:14PM +0200, Sven Van Caekenberghe wrote: > Reddit.st - In 10 Cool Pharo Classes Very nice! Pierce

Re: [Pharo-users] Date text converter/formatter

2014-09-03 Thread Sven Van Caekenberghe
On 03 Sep 2014, at 15:44, Esteban A. Maringolo wrote: > Esteban A. Maringolo > > > 2014-09-02 17:46 GMT-03:00 Sven Van Caekenberghe : >> >> On 02 Sep 2014, at 21:39, Esteban A. Maringolo wrote: >> >>> Thank you. It is certainly better than the base parser. >>> But for formats I can't pass D

Re: [Pharo-users] Date text converter/formatter

2014-09-03 Thread Sven Van Caekenberghe
On 03 Sep 2014, at 15:24, Ben Coman wrote: > Sven Van Caekenberghe wrote: >> Hi Sean, >> >> On 03 Sep 2014, at 00:32, Sean P. DeNigris >> >> wrote: >> >> >>> Sven Van Caekenberghe-2 wrote >>> >>> Maybe you got the example and the input mixed up ? >>> Oh yeah,

Re: [Pharo-users] Date text converter/formatter

2014-09-03 Thread Esteban A. Maringolo
Esteban A. Maringolo 2014-09-02 17:46 GMT-03:00 Sven Van Caekenberghe : > > On 02 Sep 2014, at 21:39, Esteban A. Maringolo wrote: > >> Thank you. It is certainly better than the base parser. >> But for formats I can't pass Date objects to #format:, I have to >> convert them to ZTimestamp before.

Re: [Pharo-users] Date text converter/formatter

2014-09-03 Thread Ben Coman
Sven Van Caekenberghe wrote: Hi Sean, On 03 Sep 2014, at 00:32, Sean P. DeNigris wrote: Sven Van Caekenberghe-2 wrote Maybe you got the example and the input mixed up ? Oh yeah, I did, but even the example in that case is ambiguous, no? (ZTimesta

Re: [Pharo-users] best solution to store data

2014-09-03 Thread Pierce Ng
On Tue, Sep 02, 2014 at 03:23:41PM +0200, Esteban Lorenzano wrote: > so unless you are really constrained for some reason (like imposition of > customers), or you have real use cases (like doing complex tabular > projections), I would always recommend to take another approach than > relational. >

Re: [Pharo-users] best solution to store data

2014-09-03 Thread kilon alios
I really like Fuel , nice design and easy moving data between images, Pharo Grid Computing for the win :) I am sure it will come handy. Also great work with Pharo for The Enterprise this book is growing and growing and growing will eventual turn into a encyclopedia for pharo :) On Tue, Sep 2, 20

Re: [Pharo-users] Moose browsers: Updating an object value from a text pane and from an emergent window

2014-09-03 Thread Tudor Girba
Hi, As I said before, right now, Glamour does not easily the behavior you want, but you can abuse an existing mechanism of capturing changes of a port through a transmission that transforms that value. Here is an example: text := ''. GLMCompositePresentation new wrapper with: [ :wrapper | wrappe

Re: [Pharo-users] Tide installation

2014-09-03 Thread stepharo
On 3/9/14 11:08, Bernat Romagosa wrote: Hi Stef, I got Tide working alright, the only thing that's a bit off is the part of the installation steps where it says you have to use a particular bower version. I can issue a pull request for readme.md correcting this part if you

Re: [Pharo-users] Tide installation

2014-09-03 Thread Tudor Girba
Hi, On Wed, Sep 3, 2014 at 11:08 AM, Bernat Romagosa < tibabenfortlapala...@gmail.com> wrote: > Hi Stef, > > I got Tide working alright, the only thing that's a bit off is the part of > the installation steps where it says you have to use a particular bower > version. I can issue a pull reques

Re: [Pharo-users] Tide installation

2014-09-03 Thread Bernat Romagosa
Hi Stef, I got Tide working alright, the only thing that's a bit off is the part of the installation steps where it says you have to use a particular bower version. I can issue a pull request for readme.md correcting this part if you want. Then I tried Marina and the instructions were bright and

Re: [Pharo-users] Tide installation

2014-09-03 Thread stepharo
Bernat once you get it working could you issue some pull requests so that I integrate the changes (if I have right access). Stef On 2/9/14 17:05, Bernat Romagosa wrote: Hi list! I wanted to try out Tide, and I'm following the steps at: https://github.com/tide-framework/tide However, I ca

Re: [Pharo-users] best solution to store data

2014-09-03 Thread stepharo
BTW remember that if you charge people for your application, then you will need to pay if you use VW. Thanks. Could Magna also be a good solution ? Saving and loading an object in fuel is two lines of code. So with a little strategy 2014-09-02-Bills-252 you can save fast your data. Same g

Re: [Pharo-users] best solution to store data

2014-09-03 Thread stepharo
Have a look at the PharoForTheEntreprise chapter (I'm in the high speed train - no internet connection). And there is also the web site of Fuel on rmod. Stef On 2/9/14 14:01, Roelof Wobben wrote: Thanks all. Is there a good tutorial how I can work with Fuel ? Roelof stepharo schreef op 2-

Re: [Pharo-users] Date text converter/formatter

2014-09-03 Thread Sven Van Caekenberghe
Hi Sean, On 03 Sep 2014, at 00:32, Sean P. DeNigris wrote: > Sven Van Caekenberghe-2 wrote >> Maybe you got the example and the input mixed up ? > > Oh yeah, I did, but even the example in that case is ambiguous, no? > > (ZTimestampFormat fromString: '02/03/01 (16:05:06)') >par