Re: [Pharo-users] Pharo - database without database

2015-09-27 Thread stepharo
If I'm correct we wrote about it on the seaside book http://book.seaside.st Le 27/9/15 20:23, Adam a écrit : Hello, thank You for great hints. I will look at this. Have a nice day, Adam. Dne Ne 27. září 2015 19:16:10, p...@highoctane.be napsal(a): Adam, SandstoneDb may be of interest to

Re: [Pharo-users] is " #^ " legal syntax?

2015-09-27 Thread Thierry Goubier
Le 28/09/2015 03:58, Ben Coman a écrit : Interesting though that #'a' printIt--> #a but #'^'printIt--> #'^' If the symbol contains characters which would not make it a valid symbol, enclose with quotes. Note that #'' is possible. Thierry cheers -ben On Sun, Sep 27, 2015 a

Re: [Pharo-users] [ OT ] About Encodings and Character Sets

2015-09-27 Thread Sven Van Caekenberghe
> On 28 Sep 2015, at 03:18, Offray Vladimir Luna Cárdenas > wrote: > > Thanks Sven, > > Today I used your superb documentation to solve a bug in my software caused > by my improper handling of encoding. Your documentation was very helpful. Thanks. BTW, here is the official book link: htt

Re: [Pharo-users] is " #^ " legal syntax?

2015-09-27 Thread Ben Coman
Interesting though that #'a' printIt--> #a but #'^'printIt--> #'^' cheers -ben On Sun, Sep 27, 2015 at 7:05 PM, Thierry Goubier wrote: > Hi Udo, > > #^ is invalid by definition. #'^' is the right way to write it. > > The definition is that # can be followed by a message selector (i

Re: [Pharo-users] [ OT ] About Encodings and Character Sets

2015-09-27 Thread Offray Vladimir Luna Cárdenas
Thanks Sven, Today I used your superb documentation to solve a bug in my software caused by my improper handling of encoding. Your documentation was very helpful. Cheers, Offray On 27/06/15 05:04, Sven Van Caekenberghe wrote: This is a nice article: What Every Programmer Absolutely, Posit

[Pharo-users] Is Pharo the best system to make this application?

2015-09-27 Thread Justin Northrop
I've described it here: https://www.reddit.com/r/smalltalk/comments/3mk0pe/what_system_should_i_use_to_quickly_prototype_a/ Basically, it's a visual programming language, and an environment controlled by this language that allows real-time shared editing of the visual language, and real-time tran

Re: [Pharo-users] Pharo - database without database

2015-09-27 Thread Adam
Hello, thank You for great hints. I will look at this. Have a nice day, Adam. Dne Ne 27. září 2015 19:16:10, p...@highoctane.be napsal(a): > Adam, > > SandstoneDb may be of interest to you: > > http://www.smalltalkhub.com/#!/~gnaritas/SandstoneDb > "SandstoneDb is a lightweight Prevayler sty

Re: [Pharo-users] Pharo - database without database

2015-09-27 Thread p...@highoctane.be
Adam, SandstoneDb may be of interest to you: http://www.smalltalkhub.com/#!/~gnaritas/SandstoneDb "SandstoneDb is a lightweight Prevayler style embedded object database with an ActiveRecord API that doesn't require a command pattern and works for small apps that a single Squeak image can handle.

[Pharo-users] Pharo - database without database

2015-09-27 Thread Adam
Hello, I was wondering if it is possible for Pharo to load lots of data and query them without using external DB, just using object memory. Well, someting like GemStone/S, but not so sophisticated. I did some research so here is details what I found. I would appreciate if someone can tell me i

[Pharo-users] [ANN] Mathex release 0.2

2015-09-27 Thread Julien Delplanque
Hi all, I just released Mathex 0.2 (https://github.com/juliendelplanque/mathex/releases/tag/0.2). Here are the improvements: - Made preview in GT-Inspector asynchronous. - Improved LaTeX code generated for compilation. - Mathex Rewriter is now loadable using 'MLoader loadRewriter'. - Removed

Re: [Pharo-users] pharotogo-discussion (fr)

2015-09-27 Thread Tudor Girba
Nice! Doru On Sun, Sep 27, 2015 at 2:10 PM, stepharo wrote: > Hi > > we created a mailing-list in french for togo people :) > > http://lists.gforge.inria.fr/mailman/listinfo/pharotogo-discussion > > Stef > > -- www.tudorgirba.com "Every thing has its own flow"

[Pharo-users] pharotogo-discussion (fr)

2015-09-27 Thread stepharo
Hi we created a mailing-list in french for togo people :) http://lists.gforge.inria.fr/mailman/listinfo/pharotogo-discussion Stef

Re: [Pharo-users] is " #^ " legal syntax?

2015-09-27 Thread Thierry Goubier
Hi Udo, #^ is invalid by definition. #'^' is the right way to write it. The definition is that # can be followed by a message selector (including binary selectors such as -), or by a quoted string, or by an opening parenthesis (array literal). Regards, Thierry Le 27/09/2015 12:27, Udo Schn

[Pharo-users] is " #^ " legal syntax?

2015-09-27 Thread Udo Schneider
All, I just hit a case where I needed to return the caret character "^" as a Symbol. However simply doing something like method ^ #^. doesn't work. Even inspecting the symbol itself #^ inspect. doesn't work. "Quoting" the caret works fine: method ^ #'^'. So I'm wondering whether #^ (w