Re: [Pharo-project] Who broke UTF8TextConverter?

2012-09-07 Thread p...@highoctane.be
Ah, I love when a project has a Soul. What a great initiative to be part of. I feel rejuvenated every time I work with Pharo :-) [Seems we'll need a philosophical page one of these days, or we can do that in the vein of venerable C2: http://c2.com/cgi/wiki?SmalltalkLanguage]. Pharo is here: http

Re: [Pharo-project] Who broke UTF8TextConverter?

2012-09-07 Thread Stéphane Ducasse
Yes ! >> Pharo manifesto >> - Better for the better >> - Beauty to learn from >> - Not backward compatible *** >> - Clean, lean and fast >> > > Every wtf we leave in the system limits the human expression of ourselves > and our users. For one thing, aesthetics count. Emotions are hugely > impor

Re: [Pharo-project] Who broke UTF8TextConverter?

2012-09-06 Thread Igor Stasenko
On 6 September 2012 13:48, Henrik Sperre Johansen wrote: > On 28.08.2012 23:11, Igor Stasenko wrote: >> >> On 28 August 2012 14:45, Henrik Sperre Johansen >> wrote: >>> >>> On 28.08.2012 14:35, Igor Stasenko wrote: or it was like that from the birth?? agg...

Re: [Pharo-project] Who broke UTF8TextConverter?

2012-09-06 Thread Sven Van Caekenberghe
Well said. On 06 Sep 2012, at 15:41, Sean P. DeNigris wrote: > Every wtf we leave in the system limits the human expression of ourselves > and our users. For one thing, aesthetics count. Emotions are hugely > important to the quality of one's work, and unless we are all inspired by a > beautiful

Re: [Pharo-project] Who broke UTF8TextConverter?

2012-09-06 Thread Sean P. DeNigris
Henrik Sperre Johansen wrote > > their extensive usage > limits the space for actual improvements within the space of backwards > compatability. http://code.google.com/p/pharo/#Pharo_manifesto : > Pharo manifesto > - Better for the better > - Beauty to learn from > - Not backward compatible

Re: [Pharo-project] Who broke UTF8TextConverter?

2012-09-06 Thread Henrik Sperre Johansen
On 28.08.2012 23:11, Igor Stasenko wrote: On 28 August 2012 14:45, Henrik Sperre Johansen wrote: On 28.08.2012 14:35, Igor Stasenko wrote: or it was like that from the birth?? agg... | stream | stream := WriteStream on: (ByteArray new: 100). UTF8TextConverter new nextPut: (Character

Re: [Pharo-project] Who broke UTF8TextConverter?

2012-08-28 Thread Igor Stasenko
On 28 August 2012 14:45, Henrik Sperre Johansen wrote: > On 28.08.2012 14:35, Igor Stasenko wrote: >> >> or it was like that from the birth?? >> >> agg... >> >> | stream | >> stream := WriteStream on: (ByteArray new: 100). >> >> UTF8TextConverter new nextPut: (Character value: 129 ) toStre

Re: [Pharo-project] Who broke UTF8TextConverter?

2012-08-28 Thread Henrik Sperre Johansen
On 28.08.2012 14:35, Igor Stasenko wrote: or it was like that from the birth?? agg... | stream | stream := WriteStream on: (ByteArray new: 100). UTF8TextConverter new nextPut: (Character value: 129 ) toStream: stream. stream contents #[129] This is WRONG! RTFM, about utf8 encoding,

Re: [Pharo-project] Who broke UTF8TextConverter?

2012-08-28 Thread Mariano Martinez Peck
igor, maybe this is related to http://code.google.com/p/pharo/issues/detail?id=6565 ? On Tue, Aug 28, 2012 at 2:35 PM, Igor Stasenko wrote: > or it was like that from the birth?? > > agg... > > | stream | > stream := WriteStream on: (ByteArray new: 100). > > UTF8TextConverter new nextPu

[Pharo-project] Who broke UTF8TextConverter?

2012-08-28 Thread Igor Stasenko
or it was like that from the birth?? agg... | stream | stream := WriteStream on: (ByteArray new: 100). UTF8TextConverter new nextPut: (Character value: 129 ) toStream: stream. stream contents #[129] This is WRONG! RTFM, about utf8 encoding, please! :) - nextPut: aCharacter t