Re: [Pharo-users] Mugs, mouse mats, stickers

2013-11-24 Thread Jeff Gray
Hi Esteban, Did you see the stickers we have in the Pharo shop? Are they not good for you? -- View this message in context: http://forum.world.st/Mugs-mouse-mats-stickers-tp4724644p4724955.html Sent from the Pharo Smalltalk Users mailing list archive at Nabble.com.

Re: [Pharo-users] Writing a GUI - Where to start?

2013-11-24 Thread Picci Pharo
I knew that the problem was here Ben, but i didn't know how to give to the row a symbol. The only way to make it works was to define the widgets into the instantiateModels (that's why #captainButton doesn't give to me any problem). However thanks for your help! From: benjamin.vanryseghem.ph...@

Re: [Pharo-users] Bad UT8 encoding got with a SQLite3 query

2013-11-24 Thread Sven Van Caekenberghe
Hi Michel, On 24 Nov 2013, at 19:25, Michel wrote: > Hi everyone, > > I have a sqlite3 data base which is UTF8 encoded. Accessing to it with a ruby > script gives me the right encoding for accented vowel, and doing an hexdump > of the file too, but I get a strange one with the sqlite3 package

[Pharo-users] Bad UT8 encoding got with a SQLite3 query

2013-11-24 Thread Michel
Hi everyone, I have a sqlite3 data base which is UTF8 encoded. Accessing to it with a ruby script gives me the right encoding for accented vowel, and doing an hexdump of the file too, but I get a strange one with the sqlite3 package in pharo 2.0. For example, for 'é' (UTF8 0xC3A9) I get 0xA6

Re: [Pharo-users] How to load the PetitPHPParser?

2013-11-24 Thread Hernán Morales Durand
Thanks. I couldn't see the reference to the Lukas repository. I finally load it by hand from Monticello Browser. Cheers Hernán El 24/11/2013 8:14, Tudor Girba escribió: Hmm. That cannot really be. PPCompositeParser is defined in PetitParser, but likely the problem comes from the way the Confi

Re: [Pharo-users] Programmatic Scoped Browsing

2013-11-24 Thread Stéphane Ducasse
On Nov 24, 2013, at 5:55 PM, Hernán Morales Durand wrote: > Hi Sean, > > I do this for browsing BioSmalltalk classes with Nautilus > > | pkgs env | > > pkgs := RPackageOrganizer default packages select: [ :each | each packageName > beginsWith: 'Bio' ]. > env := RBBrowserEnvironment new forP

Re: [Pharo-users] Programmatic Scoped Browsing

2013-11-24 Thread Hernán Morales Durand
Hi Sean, I do this for browsing BioSmalltalk classes with Nautilus | pkgs env | pkgs := RPackageOrganizer default packages select: [ :each | each packageName beginsWith: 'Bio' ]. env := RBBrowserEnvironment new forPackages: pkgs. env label: 'BioSmalltalk'. Nautilus openInEnvironment: env Ch

[Pharo-users] Programmatic Scoped Browsing

2013-11-24 Thread Sean P. DeNigris
I tried: SystemNavigation new environment: RPackage allInstances third asEnvironment; browseAllSelect: aBlock but it still searched the whole image. I looked for examples in the image of manually building an environment/SystemDictionary, but didn't find anything helpful. Thank

Re: [Pharo-users] Mugs, mouse mats, stickers

2013-11-24 Thread Esteban A. Maringolo
I recommend printing the stickers in http://www.stickermule.com/. Their quality is top-class (just check their customer list). I ordered a sample pack in the past, and I can't wait to have one of Pharo. Regards! Esteban A. Maringolo 2013/11/24 Johan Fabry : > > +1 on that! > > On Nov 24, 2013,

[Pharo-users] Bootstrap for Seaside question

2013-11-24 Thread Johan Fabry
Hi all, I'm using Bootstrap for Seaside to make a small web app for managing the hardware resources (Lego Mindstorms! :-) ) of a course I am giving next semester. Bootstrap for Seaside is really cool, it allows to quickly build something that looks very polished. Thanks Torsten! But now I have

Re: [Pharo-users] Mugs, mouse mats, stickers

2013-11-24 Thread Johan Fabry
+1 on that! On Nov 24, 2013, at 11:55 AM, Mariano Martinez Peck wrote: > I would like a Mate :) hahahaha > http://en.wikipedia.org/wiki/Mate_(beverage) > > > On Sun, Nov 24, 2013 at 11:51 AM, Yuriy Tymchuk wrote: > Also a cool design for a colour-changing mug will be cool > > > On 24 Nov

Re: [Pharo-users] Mugs, mouse mats, stickers

2013-11-24 Thread Mariano Martinez Peck
ehhehe in the meanwhile we can workaround it with a sticker :) and replace it every few months! On Sun, Nov 24, 2013 at 12:06 PM, Yuriy Tymchuk wrote: > I’d like that too, but I think that we’ll have to wait at least for Pharo > 4 :) > > On 24 Nov 2013, at 15:55, Mariano Martinez Peck > wrote:

Re: [Pharo-users] Mugs, mouse mats, stickers

2013-11-24 Thread Yuriy Tymchuk
I’d like that too, but I think that we’ll have to wait at least for Pharo 4 :) On 24 Nov 2013, at 15:55, Mariano Martinez Peck wrote: > I would like a Mate :) hahahaha > http://en.wikipedia.org/wiki/Mate_(beverage) > > > On Sun, Nov 24, 2013 at 11:51 AM, Yuriy Tymchuk wrote: > Also a cool des

Re: [Pharo-users] Mugs, mouse mats, stickers

2013-11-24 Thread Mariano Martinez Peck
I would like a Mate :) hahahaha http://en.wikipedia.org/wiki/Mate_(beverage) On Sun, Nov 24, 2013 at 11:51 AM, Yuriy Tymchuk wrote: > Also a cool design for a colour-changing mug will be cool > > > On 24 Nov 2013, at 14:09, kilon alios wrote: > > how about a Kraken grabbing with its tentacles a

Re: [Pharo-users] Mugs, mouse mats, stickers

2013-11-24 Thread Yuriy Tymchuk
Also a cool design for a colour-changing mug will be cool On 24 Nov 2013, at 14:09, kilon alios wrote: > how about a Kraken grabbing with its tentacles a lighthouse ;) > > http://www.deviantart.com/art/Kraken-vs-Lighthouse-325383712 > > > On Sun, Nov 24, 2013 at 2:13 PM, Stéphane Ducasse

Re: [Pharo-users] Thread safe queue like collection

2013-11-24 Thread Stéphane Ducasse
AtomicQueue On Nov 13, 2013, at 7:16 PM, Esteban A. Maringolo wrote: > Hi, > > Do Pharo 2 have some sort of queue like collection, where different threads > (coming mostly from a Multithread Zinc Server) can push objects into it > safely, while a service on the other end can consume the queue

Re: [Pharo-users] Mugs, mouse mats, stickers

2013-11-24 Thread kilon alios
how about a Kraken grabbing with its tentacles a lighthouse ;) http://www.deviantart.com/art/Kraken-vs-Lighthouse-325383712 On Sun, Nov 24, 2013 at 2:13 PM, Stéphane Ducasse wrote: > would be cool to have a really geeky one with a monster logo. > > Stef > > On Nov 24, 2013, at 10:52 AM, Marcus

Re: [Pharo-users] Mugs, mouse mats, stickers

2013-11-24 Thread Stéphane Ducasse
would be cool to have a really geeky one with a monster logo. Stef On Nov 24, 2013, at 10:52 AM, Marcus Denker wrote: > > On 23 Nov 2013, at 21:53, Jeff Gray wrote: > >> What else would you like in the Pharo store? >> Personally I'd like to have a t-shirt. >> > Yes, a T-shirt would be nice!

Re: [Pharo-users] Nautilus pkg-pane regression in pharo 3.0?

2013-11-24 Thread Benjamin
This is also a major pain in my ass :P Ben On 24 Nov 2013, at 12:49, Lorenz Köhl wrote: >> At the risk of making a fool of myself, I believe Lorenz (and I too would >> like that back) is asking about pressing the letters 'p', 'o', 'l', and >> having the cursor end in package 'Polymorph' or wh

Re: [Pharo-users] Nautilus pkg-pane regression in pharo 3.0?

2013-11-24 Thread Lorenz Köhl
> At the risk of making a fool of myself, I believe Lorenz (and I too would > like that back) is asking about pressing the letters 'p', 'o', 'l', and > having the cursor end in package 'Polymorph' or whatever it happens to be the > first match. That's what I meant. IMO not doing that is a usabi

Re: [Pharo-users] Nautilus pkg-pane regression in pharo 3.0?

2013-11-24 Thread Sergi Reyner
At the risk of making a fool of myself, I believe Lorenz (and I too would like that back) is asking about pressing the letters 'p', 'o', 'l', and having the cursor end in package 'Polymorph' or whatever it happens to be the first match. Cheers, Sergi 2013/11/24 Benjamin > if it’s a leaf and yo

Re: [Pharo-users] Writing a GUI - Where to start?

2013-11-24 Thread Benjamin
Here is a working version based on DynamicComposableModel (a subclass dedicated to the caseswhere you have a lot, or an undefined number of sub widgets) ProvaSquadra.st Description: Binary data Ben On 22 Nov 2013, at 11:08, prova email wrote:Hi Ben,here the .st file, there

Re: [Pharo-users] Writing a GUI - Where to start?

2013-11-24 Thread Benjamin
The problem is here rowPlayer add: (textPlayer at:i) ; add:#captainButton; add: (buttonStartingEleven at:i). ].

Re: [Pharo-users] How to load the PetitPHPParser?

2013-11-24 Thread Tudor Girba
Hmm. That cannot really be. PPCompositeParser is defined in PetitParser, but likely the problem comes from the way the ConfigurationOfPetitPHPParser defines the dependency to PetitParser: spec project: 'PetitParser for PetitPHPParser' with: [ spec className: 'ConfigurationOfPetitParser'; file: 'Con

Re: [Pharo-users] Nautilus pkg-pane regression in pharo 3.0?

2013-11-24 Thread Benjamin
if it’s a leaf and you do -> you jump. if it’s not a leaf, you expand Ben On 24 Nov 2013, at 10:14, Esteban Lorenzano wrote: > Yes, I'm aware... I still do not decide if is a bug or a feature :) > > Honestly, the problem is the collision of functionality for <- and ->. And I > don't know how

Re: [Pharo-users] Deploying a polymorph app - two questions

2013-11-24 Thread kmo
Done. -- View this message in context: http://forum.world.st/Deploying-a-polymorph-app-two-questions-tp4724525p4724724.html Sent from the Pharo Smalltalk Users mailing list archive at Nabble.com.

Re: [Pharo-users] Mugs, mouse mats, stickers

2013-11-24 Thread Marcus Denker
On 23 Nov 2013, at 21:53, Jeff Gray wrote: > What else would you like in the Pharo store? > Personally I'd like to have a t-shirt. > Yes, a T-shirt would be nice! Marcus

Re: [Pharo-users] NativeBoost Questions while wrapping FMOD

2013-11-24 Thread Stéphane Ducasse
> > On 23 November 2013 09:07, Stéphane Ducasse wrote: > I really think that NativeBoost MUST HAVE a decent documentation. > > i agree. i need to invest into it. we should build a working group with pomodoro around it. JB and Damien could help. I can play the naive idiot and editor but I cannot

Re: [Pharo-users] [Athens] Finding if a line passes through a specific pixel .

2013-11-24 Thread Stéphane Ducasse
have a look at roassal because mathieu started to implement something and he realized it was already in the image. On Nov 23, 2013, at 3:20 PM, kilon alios wrote: > aahhh come on ... I am not THAT lazy :D > > of course I have searched it before asking. Unless I am blind I see loads of >

Re: [Pharo-users] Nautilus pkg-pane regression in pharo 3.0?

2013-11-24 Thread Esteban Lorenzano
Yes, I'm aware... I still do not decide if is a bug or a feature :) Honestly, the problem is the collision of functionality for <- and ->. And I don't know how to handle it. Suggestions? Esteban On Sun, Nov 24, 2013 at 12:59 AM, Benjamin < benjamin.vanryseghem.ph...@gmail.com> wrote: > That a

Re: [Pharo-users] Deploying a polymorph app - two questions

2013-11-24 Thread Esteban Lorenzano
it should work (it is vm related, nothing to do with the image). please report a bug :) Esteban On Sat, Nov 23, 2013 at 7:58 PM, kmo wrote: > Does not work in pharo 3.0 either on my ubuntu system. > > My VM is dated 13/03/2013. I don't think I'm using a particularly old one. > > Ken > > > > >