[Pharo-users] [ann] presenter notes support for demos

2014-02-06 Thread Tudor Girba
(repost to the correct mailing lists) Pharo workflow is best seen in action. However, I noticed that we do not have much support for demoing what we do. For example, if you do not record with sound, you want to add notes. I saw several videos with notes being added to the workspace. This looks cl

[Pharo-users] a BitSet class

2014-02-06 Thread Torsten Bergmann
Hi Stef,   I checked with the downloadable PDF from http://www.deepintopharo.com/ some examples are not covered, like #bitAt:put: message or the C abbreviations | and &,  bitXor: is also missing from a first short look. I also havent seen examples with different base.   Feel free to add them sin

[Pharo-users] Bug in JQMHtmlRoot>>CloseOn ?

2014-02-06 Thread Juergen Rauch
Hi Smalltalkers, I am new to this list. Just downloadad and started Pharo Seaside-3.1-OneClick under Linux in order to get my hands on jquery mobile development. As the documentations suggest I first performed: Gofer it url: 'http://ss3.gemstone.com/ss/jQueryMobile'; package: 'Co

Re: [Pharo-users] a BitSet class

2014-02-06 Thread Pharo4Stef
torsten could you check that all your examples are really covered in the deepintopharo chapter about little numbers? Else we should add them. Stef On 06 Feb 2014, at 16:08, Torsten Bergmann wrote: > Hi Pablo, > > can you be more specific why you need a BitSet class other than convinience? >

Re: [Pharo-users] NativeBoost and standard out

2014-02-06 Thread Emilio Oca
Hi Esteban > I recommend you to take a look at this:  > http://smalltalkhub.com/#!/~OS/OS-Windows > there can be a solution (not sure, because I never used it) Yes I did, I got something like this si := WinStartupInfo new. si wShowWindow: 0. pi := WinProcessInformation new. WinProc

Re: [Pharo-users] Fwd: NativeBoost and standard out

2014-02-06 Thread Emilio Oca
Thanks Hernan, I am going to try it Best Emilio > -Mensaje original- > De: Pharo-users [mailto:pharo-users-boun...@lists.pharo.org] En nombre > de Hernán Morales Durand > Enviado el: Lunes, 23 de Diciembre de 2013 17:55 > Para: Any question about pharo is welcome > Asunto: Re: [Pharo

[Pharo-users] Removing an obsolete class

2014-02-06 Thread Esteban A. Maringolo
I found I have to obsolete classes, but I can't remove them from the system. GptDatedModel subclass: 'AnObsoleteAnObsoleteGptRouteItemRegistration' instanceVariableNames: 'routeItem' classVariableNames: '' poolDictionaries: '' category: 'nil' They show in the "_UnpackagedPackage" UndefinedObject

[Pharo-users] a BitSet class

2014-02-06 Thread Torsten Bergmann
Hi Pablo, can you be more specific why you need a BitSet class other than convinience? What do you want to do? Note that for bit handling in Smalltalk you can easily just send messages to integers or large integers: Access bits:12 bitAt: 1 -> 0 Modify bits:12 bitAt: 1 put

[Pharo-users] a BitSet class

2014-02-06 Thread Pablo Herrero
Does anyone knows about BitSet class implementation lying around on the image or some external project? Thanks in advance.