Re: [Pharo-users] [ANN] JSON datatype support in PostgresV2 package

2014-09-05 Thread Sven Van Caekenberghe
Great ! On 04 Sep 2014, at 21:34, Esteban A. Maringolo wrote: > Spurred by the last discussion about GLORP, Postgres and friends, I > spent the last few hours looking into the workings of PostgresV2 to > add support to the native JSON datatype provided by PostgreSQL 9.2. > > According to Postgr

Re: [Pharo-users] [ANN] JSON datatype support in PostgresV2 package

2014-09-05 Thread Sven Van Caekenberghe
On 04 Sep 2014, at 21:43, Esteban A. Maringolo wrote: > Even though I don't use PharoExtras/JSON for my daily JSON > manipulation (I use Seaside-JSON and NeoJSON), I found it to be the > most "modular"/"independent" JSON package out there. I don't see how the JSON and NeoJSON package differ in

Re: [Pharo-users] How to create a red box with text in a big font?

2014-09-05 Thread Nicolai Hess
2014-09-05 8:43 GMT+02:00 p...@highoctane.be : > Yes there is that annoying thing with windows that set things bacl to > white. Why is that indeed? > > Phil > I can not reproduce this with this code: Morph new color:Color red; hResizing: #shrinkWrap; addMorph: ( 'Hello World' asM

Re: [Pharo-users] Pharo on retina macbook

2014-09-05 Thread Tommaso Dal Sasso
On 04/09/14 07:46, Johan Brichau wrote: 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 Hi, I use a Macbook pro with retina. Some time ago I found that you can run Pharo in "Low resolution

Re: [Pharo-users] How to create a red box with text in a big font?

2014-09-05 Thread Thierry Goubier
Hi Nicolai, 2014-09-05 9:19 GMT+02:00 Nicolai Hess : > > I can not reproduce this with this code: > Morph new > color:Color red; > hResizing: #shrinkWrap; > addMorph: ( > 'Hello World' asMorph > fontName: 'Open Sans' size: 75; > emphasis: TextEmphasis bold

Re: [Pharo-users] How to create a red box with text in a big font?

2014-09-05 Thread Thierry Goubier
2014-09-05 8:43 GMT+02:00 p...@highoctane.be : > Yes there is that annoying thing with windows that set things bacl to > white. Why is that indeed? > > Phil > > Morphic is full of interesting magic :) (or non-working stuff :( ) For example, doing a toolbar that insert itself at the top of a windo

Re: [Pharo-users] How to create a red box with text in a big font?

2014-09-05 Thread PBKResearch
Hello I have played with this on Moose 5.0 (Pharo 3.0 update: #30854) on Windows 7 Pro. For me, it is necessary to include color:Color red after openInWindow to get the red background, as Thierry said. There is another puzzle, which is that the code does not respond in any linear way to chan

[Pharo-users] Smalltalk platform

2014-09-05 Thread Annick Fron
I have a bug on OldAlien on pharo 3 because it is asking SmalltalkImage current platformName What is the replacement ? Annick

Re: [Pharo-users] Smalltalk platform

2014-09-05 Thread François Stephany
I don't know if they are similar but I would say: Smalltalk platform name On Fri, Sep 5, 2014 at 10:54 AM, Annick Fron wrote: > I have a bug on OldAlien on pharo 3 because it is asking > SmalltalkImage current platformName > > What is the replacement ? > Annick > >

Re: [Pharo-users] Smalltalk platform

2014-09-05 Thread kilon alios
there is also "Smalltalk image platform", dont know if it makes any diffirence, looks same thing to me On Fri, Sep 5, 2014 at 11:56 AM, François Stephany < tulipe.mouta...@gmail.com> wrote: > I don't know if they are similar but I would say: > > Smalltalk platform name > > > On Fri, Sep 5, 2014

[Pharo-users] Using Playground on Pharo 3.0

2014-09-05 Thread PBKResearch
Hello I have been playing with Moose 5.0 (Pharo 3.0 update: #30854) on Windows 7 Pro, trying to copy and paste code from e-mails in another thread. However, if I open a Playground (which is what I get when I click 'Workspace' in the World Menu), I find that the right click menu does not have an

Re: [Pharo-users] Pharo Glorp 1.7 <-> VisualWorks

2014-09-05 Thread Stephan Eggermont
Sven wrote: >Porting something cross platform is a huge amount of work, I think most of it >was basically done by hand. >This creates a huge maintenance problem of course. The same is true for >Xtreams. >Seaside seems to be able to manage this problem by being extremely careful. We now have t

Re: [Pharo-users] How to create a red box with text in a big font?

2014-09-05 Thread Thierry Goubier
Hi Peter, As far as I can understand, this is because TextStyle is brain dead code when it comes to font selection (and fontName:size: is a useless API). (and now I can't write code in my Workspace in 4.0 because I get a DNU from the styler for every key I type :( :( :( ) This code correctly sel

Re: [Pharo-users] Pharo Glorp 1.7 <-> VisualWorks

2014-09-05 Thread François Stephany
I have no idea how complicated this can be. I'm a bit reluctant to dive into this if we are only 2-3 people to use Glorp in Pharo. Guillermo, Mariano, what was the process when you imported Glorp in the first place? How did you keep up with Glorp latest changes (From what I see in Store, developme

Re: [Pharo-users] How to create a red box with text in a big font?

2014-09-05 Thread Tim Mackinnon
Thanks everyone for all your follow up messages - I’ve learned quite a lot from such a simple question!!! With regards to the #fontName:size: being not very useful - is that something I should submit a fogbugz for (maybe there is one already there). I’m thinking the Pharo way is to try and elim

Re: [Pharo-users] Smalltalk platform

2014-09-05 Thread Esteban Lorenzano
Smalltalk os platformName. On 05 Sep 2014, at 11:14, kilon alios wrote: > there is also "Smalltalk image platform", dont know if it makes any > diffirence, looks same thing to me > > > On Fri, Sep 5, 2014 at 11:56 AM, François Stephany > wrote: > I don't know if they are similar but I woul

Re: [Pharo-users] Pharo Glorp 1.7 <-> VisualWorks

2014-09-05 Thread Stephan Eggermont
Francois wrote: >I have no idea how complicated this can be. I'm a bit reluctant to dive into >this if we are only 2-3 people to use Glorp in Pharo. It would be a worthwhile initiative because it would make collaboration much easier for other projects too. I'm interested in looking into this. I

Re: [Pharo-users] Using Playground on Pharo 3.0

2014-09-05 Thread Tudor Girba
You did not do anything wrong. At the moment, these entries do not exist in the menu. Doru On Fri, Sep 5, 2014 at 11:18 AM, PBKResearch wrote: > Hello > > > > I have been playing with Moose 5.0 (Pharo 3.0 update: #30854) on Windows 7 > Pro, trying to copy and paste code from e-mails in another

Re: [Pharo-users] How to create a red box with text in a big font?

2014-09-05 Thread Thierry Goubier
2014-09-05 12:13 GMT+02:00 Tim Mackinnon : > Thanks everyone for all your follow up messages - I've learned quite a lot > from such a simple question!!! > It was a pleasure to have a look and learn a bit more as well :) > > With regards to the #fontName:size: being not very useful - is that > s

Re: [Pharo-users] [ANN] JSON datatype support in PostgresV2 package

2014-09-05 Thread Esteban A. Maringolo
2014-09-05 4:18 GMT-03:00 Sven Van Caekenberghe : > > On 04 Sep 2014, at 21:43, Esteban A. Maringolo wrote: > >> Even though I don't use PharoExtras/JSON for my daily JSON >> manipulation (I use Seaside-JSON and NeoJSON), I found it to be the >> most "modular"/"independent" JSON package out there.

Re: [Pharo-users] Pharo Glorp 1.7 <-> VisualWorks

2014-09-05 Thread Esteban A. Maringolo
Hi, 2014-09-05 3:53 GMT-03:00 jtuc...@objektfabrik.de : > Esteban, > I disagree ;-) > Am 04.09.14 um 17:09 schrieb Esteban A. Maringolo: >> 2014-09-04 11:18 GMT-03:00 François Stephany : >>> Where is the best place to ask about Glorp by the way? >> I wonder the same. >> The official discussion gr

Re: [Pharo-users] Pharo Glorp 1.7 <-> VisualWorks

2014-09-05 Thread jtuc...@objektfabrik.de
Esteban, Am 05.09.14 um 15:36 schrieb Esteban A. Maringolo: Hi, 2014-09-05 3:53 GMT-03:00 jtuc...@objektfabrik.de : Esteban, I disagree ;-) Am 04.09.14 um 17:09 schrieb Esteban A. Maringolo: 2014-09-04 11:18 GMT-03:00 François Stephany : Where is the best place to ask about Glorp by the wa

Re: [Pharo-users] Tide installation

2014-09-05 Thread Bernat Romagosa
The slides are cool, but I really don't quite understand how Tide works... I tried to reproduce the Hero example, but when asking my lair for heroes (from the client side) I got: TDClient >> promiseNotFound: > No promise was found for selector heroes It'd be great if someone wrote a getting sta

[Pharo-users] Hello ...

2014-09-05 Thread Mayuresh Kathe
A hello to Pharo-Users list members. I am Mayuresh Kathe from Mumbai, India. I used to work with Squeak a while (14 years) back, but ever since I had to move over to non-OOP environments, and never did get to work with Smalltalk or alike systems ever since. To add to that, I haven't been pro

Re: [Pharo-users] Hello ...

2014-09-05 Thread S Krish
Welcome to the Smalltalk world.. You would have already seen: http://pharo.org/documentation in particular: http://pharobyexample.org/ In Pharo Start with the Pharo Tutorials through ( Left Click on the World, Help >> Pharo Tutorials ) Watch the screencasts.. in the documentation page..

Re: [Pharo-users] Hello ...

2014-09-05 Thread Mayuresh Kathe
Thanks for the welcome note. :) I am quite certain that I want to head in a direction away from Web application development using Pharo. I see in Pharo the promise that was left unhonoured by Squeak, one of having an elegant system instead of a quilt. The Pharo UI looks better than any of t

Re: [Pharo-users] Hello ...

2014-09-05 Thread kilon alios
I have posted a series of video tutorial for Pharo and in some of them I explain the basics of OO with practical examples https://www.youtube.com/playlist?list=PLqbtQ7OkSta0ULYAd7Qdxof851ybh-_m_ if you throw also PBE I think you pretty much covered. OO is not really a difficult concept, an objec

Re: [Pharo-users] Hello ...

2014-09-05 Thread Mayuresh Kathe
Cool, thanks for the information. Also, your "riding a bike" analogy is quite good. :) Let's see how it goes for me. Best, ~Mayuresh On 2014-09-05 22:50, kilon alios wrote: I have posted a series of video tutorial for Pharo and in some of them I explain the basics of OO with practical example

Re: [Pharo-users] How to create a red box with text in a big font?

2014-09-05 Thread stepharo
The idea was that the color is propagated from the container. Stef On 5/9/14 08:43, p...@highoctane.be wrote: Yes there is that annoying thing with windows that set things bacl to white. Why is that indeed? Phil Le 4 sept. 2014 23:32, "Thierry Goubier" >

Re: [Pharo-users] Hello ...

2014-09-05 Thread kilon alios
by the way I forgot to add that I am active at #pharo irc channel at freenode if you want to chat about pharo and ask questions and also you can ask your questions at stackoverflow adding the tag pharo , the pharo community is so active in stackoverflow that I have never seen an unanswered question

Re: [Pharo-users] Hello ...

2014-09-05 Thread S Krish
Sure can... Morphic is a different beast, very malleable, glitchy too for now, much better with clean up in Pharo. But the future may see major shifts if Bloc comes through. Spec and my own effort on Pharo Morphic View.. ** https://picasaweb.google.com/skrishnamachari/PharoTabletIDE ** h

Re: [Pharo-users] How to create a red box with text in a big font?

2014-09-05 Thread stepharo
This is not without reason that I wrote a roadmap on font cleaning. https://github.com/pharo-project/pharo-workingRoadmaps Stef

Re: [Pharo-users] Hello ...

2014-09-05 Thread Alexandre Bergel
Welcome Mayuresh! Alexandre -- _,.;:~^~:;._,.;:~^~:;._,.;:~^~:;._,.;:~^~:;._,.;: Alexandre Bergel http://www.bergel.eu ^~:;._,.;:~^~:;._,.;:~^~:;._,.;:~^~:;._,.;:~^~:;. On Sep 5, 2014, at 12:59 PM, Mayuresh Kathe wrote: > A hello to Pharo-Users list members. > > I am Mayuresh Kathe from Mu

[Pharo-users] not a smalltalk!

2014-09-05 Thread Mayuresh Kathe
hey, i've just been reading up the pharo forums, and one of the posts/entries mentions something about pharo not being a smalltalk, but instead a dialect! is it true? that would mean, all or any code i write for pharo would not be portable to other smalltalk-80 systems! hmnn... ~mayuresh

Re: [Pharo-users] not a smalltalk!

2014-09-05 Thread Yuriy Tymchuk
There is a long story about all that. But to be short: - if you call it Smalltalk then you have to make it compatible with other Smalltalks. And they are a lot in the 80s… - we want to make something new and cool what may be not always compatible. So yeah On 05 Sep 2014, at 20:25, Mayuresh Kath

Re: [Pharo-users] How to create a red box with text in a big font?

2014-09-05 Thread Thierry Goubier
Le 05/09/2014 19:29, stepharo a écrit : The idea was that the color is propagated from the container. Fair enough. But why it is propagated in Pharo 3 and not in Pharo 4? Thierry

Re: [Pharo-users] not a smalltalk!

2014-09-05 Thread kilon alios
AFAIK Pharo technically is not even compatible with Squeak which is where it forks form. You assume the code you write will automatically be incompatible to smalltalk-80 but since pretty much a huge percentage of the functionality of Pharo and Smalltalk is in libraries since the language itself is

Re: [Pharo-users] Hello ...

2014-09-05 Thread kilon alios
Just started to play with Racket a few moments ago http://racket-lang.org/ There so many great languages out there and tools, really. GUI wise the future of Pharo is at least cleaning up Morphic. So it can only get better. Spec also looks like it has a promising future in Pharo. I was thinking i

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

2014-09-05 Thread Offray Vladimir Luna Cárdenas
Hi Doru an community, In almost a week from now I will write an small revision article about this prototyping exercise on Moose/Glamour/Pharo, for structured writing. My ideal would be to write it inside this prototype, but for that I need to be able to edit and store the changes on the tree a