Re: [Pharo-users] Spur images

2014-10-05 Thread Benjamin Pollack
On Sun, 05 Oct 2014 16:51:25 -0400, Sven Van Caekenberghe wrote: Working with WideStrings is way slower than working with ByteStrings, there is just no way around that. What is especially slow is the automagic switch from ByteString to WideString, for example in a String>>#streamContents

Re: [Pharo-users] Spur images

2014-10-05 Thread Sven Van Caekenberghe
Hi Benjamin, On 05 Oct 2014, at 22:37, Benjamin Pollack wrote: > On Sun, 05 Oct 2014 10:36:31 -0400, Sven Van Caekenberghe > wrote: > >> How come you got WideStrings ? >> What does the input look like, can you give a partial example ? > > I'm guessing I got WideStrings because the file is in

Re: [Pharo-users] Spur images

2014-10-05 Thread Benjamin Pollack
On Sun, 05 Oct 2014 10:36:31 -0400, Sven Van Caekenberghe wrote: How come you got WideStrings ? What does the input look like, can you give a partial example ? I'm guessing I got WideStrings because the file is indeed in UTF-8, with lots of characters outside the lower 128 code points. A

Re: [Pharo-users] Spur images

2014-10-05 Thread Sven Van Caekenberghe
How come you got WideStrings ? What does the input look like, can you give a partial example ? On 05 Oct 2014, at 16:03, Benjamin Pollack wrote: > On Fri, 03 Oct 2014 16:13:35 -0400, stepharo wrote: >>> Looking at MessageTally, it seems at least half of that 278ms is spent >>> noodling around i

Re: [Pharo-users] Spur images

2014-10-05 Thread Benjamin Pollack
On Fri, 03 Oct 2014 16:13:35 -0400, stepharo wrote: Looking at MessageTally, it seems at least half of that 278ms is spent noodling around in WideStrings and other small things that the Spur object format ought to help with, so it'd be interesting to see how much of a speed boost that gives with

Re: [Pharo-users] How to create a package via code correctly ?

2014-10-05 Thread Esteban Lorenzano
> On 05 Oct 2014, at 00:04, Nicolai Hess wrote: > > 2014-10-04 8:45 GMT+02:00 Esteban Lorenzano >: > (RPackage named: 'ABC') register. > > or > > RPackageOrganizer default registerPackage: (RPackage named: 'ABC’). > > or > > RPackageOrganizer default registerPack