[Pharo-project] Smalltalk lecture Saturday 20th of August at ESUG

2011-08-14 Thread Stéphane Ducasse
Hi Friends please distribute that widely I will give a free lecture Discovering Smalltalk Smalltalk is a pure and elegant object language. This lectures will cover the fundamental aspects of Smalltalk: syntax, semantics, and key aspects of the system. Doing so we will also revise the real

Re: [Pharo-project] #name

2011-08-14 Thread Craig Latta
Hi Sean-- How is #name used by the system? I often want to use it in my classes, but I don't want to mess with whatever Object is doing with it. There are +++ senders. And several implementers that could be using more descriptive selectors, too, which makes answering the question

Re: [Pharo-project] Smalltalk lecture Saturday 20th of August at ESUG

2011-08-14 Thread Craig Latta
Hi Stef-- I will give a free lecture ... Starting time: 9h30 Closing: 16h00 When does the lecture start and end? I'm looking forward to it! Thanks! -C -- Craig Latta www.netjam.org/resume +31 6 2757 7177 + 1 415 287 3547

Re: [Pharo-project] Smalltalk lecture Saturday 20th of August at ESUG

2011-08-14 Thread Stéphane Ducasse
They told me that the building will be open a 10 so 10h15 Stef Hi Stef-- I will give a free lecture ... Starting time: 9h30 Closing: 16h00 When does the lecture start and end? I'm looking forward to it! Thanks! -C -- Craig Latta www.netjam.org/resume +31

Re: [Pharo-project] #name

2011-08-14 Thread Schwab,Wilhelm K
I looked at this early on, and decided that since Objectname is defined in terns of #printString, there couldn't be anything terribly important happening with the result, because #printSring is not under the system's control. I have freely added name as an instance variable in many classes.

[Pharo-project] BDD: Cucumber Toy Project

2011-08-14 Thread Sean P. DeNigris
I'm playing with Polymorph to make a BDD tool like Ruby's Cucumber (but infinitely better because we're in a live image and don't have to cram the infinite richness of our imagination into dead text, lol). It's amazing how a few lines of code got me *very* close to an active essay of the cucumber

Re: [Pharo-project] [Vm-dev] building Cog on 64 bits debian

2011-08-14 Thread laurent laffont
Thanks Levente. After searching trying finally I've passed this problem by: mv /usr/bin/gcc /usr/bin/real.gcc and then creating /usr/bin/gcc : #!/bin/sh exec real.gcc -m32 $@ and chmod +x /usr/bin/gcc Now I have: [ 94%] Built target vm-display-null Scanning dependencies of target

Re: [Pharo-project] [Vm-dev] building Cog on 64 bits debian

2011-08-14 Thread laurent laffont
So finally I remove from CMakeLists.txt add_subdirectory(vm-display-X11) add_subdirectory(vm-sound-ALSA) and managed to build the VM I want. But it's an ugly way :( Laurent On Sun, Aug 14, 2011 at 5:39 PM, laurent laffont laurent.laff...@gmail.comwrote: Thanks Levente. After searching

Re: [Pharo-project] [Vm-dev] building Cog on 64 bits debian

2011-08-14 Thread Levente Uzonyi
On Sun, 14 Aug 2011, laurent laffont wrote: (no quote, gmail, etc...) All you need is: export CC=gcc -m32 CXX=g++ -m32 Levente

Re: [Pharo-project] BDD: Cucumber Toy Project

2011-08-14 Thread Stéphane Ducasse
you should send it to the awards :) On Aug 14, 2011, at 4:37 PM, Sean P. DeNigris wrote: I'm playing with Polymorph to make a BDD tool like Ruby's Cucumber (but infinitely better because we're in a live image and don't have to cram the infinite richness of our imagination into dead text, lol).

Re: [Pharo-project] [Vm-dev] building Cog on 64 bits debian

2011-08-14 Thread laurent laffont
On Sun, Aug 14, 2011 at 6:21 PM, Levente Uzonyi le...@elte.hu wrote: On Sun, 14 Aug 2011, laurent laffont wrote: (no quote, gmail, etc...) All you need is: export CC=gcc -m32 CXX=g++ -m32 I tried: ~/securedvm/build# export CC=gcc -m32 ~/securedvm/build# export CXX=g++ -m32

Re: [Pharo-project] [Vm-dev] building Cog on 64 bits debian

2011-08-14 Thread Levente Uzonyi
On Sun, 14 Aug 2011, laurent laffont wrote: Hm, yeah. IIRC autotools used gcc (via libtool) for linking instead of ld. You'll need another export LDFLAGS=-m32. Levente

Re: [Pharo-project] BDD: Cucumber Toy Project

2011-08-14 Thread Tudor Girba
This is really cool. Please keep us posted :) Doru On 14 Aug 2011, at 16:37, Sean P. DeNigris wrote: I'm playing with Polymorph to make a BDD tool like Ruby's Cucumber (but infinitely better because we're in a live image and don't have to cram the infinite richness of our imagination into

Re: [Pharo-project] [Vm-dev] building Cog on 64 bits debian

2011-08-14 Thread laurent laffont
On Sun, Aug 14, 2011 at 6:37 PM, Levente Uzonyi le...@elte.hu wrote: On Sun, 14 Aug 2011, laurent laffont wrote: Hm, yeah. IIRC autotools used gcc (via libtool) for linking instead of ld. You'll need another export LDFLAGS=-m32. Does not help. It looks like flags are discared. For example

[Pharo-project] Congratulations on help system

2011-08-14 Thread Max Leske
Just wanted to let the people who wrote the Pharo help system know that I think you did a great job. I especially enjoy the editor workspace for writing help texts (BTW: could autocompleteion and syntax highlighting be turned off by default for editor workspaces?). I encourage everyone to

[Pharo-project] optimizing primitiveFindFirstInString

2011-08-14 Thread Philippe Marschall
Hi In Seaside we get a lot of performance gains out of primitiveFindFirstInString. One thing that always annoyed me a bit is that it's not as optimized as it could be. The inclusionMap you give it are 256 consecutive boolean values (0 or 1). There is no need for this to be a 256 element

[Pharo-project] Fwd: [Vm-dev] Socket's readSemaphore is losing signals with Cog on Linux

2011-08-14 Thread Stéphane Ducasse
can be a valuable information for some of you. Would be good to fix it for real. Stef Begin forwarded message: From: Andreas Raab andreas.r...@gmx.de Date: August 14, 2011 7:58:06 PM GMT+02:00 To: vm-...@lists.squeakfoundation.org Subject: Re: [Vm-dev] Socket's readSemaphore is losing

Re: [Pharo-project] optimizing primitiveFindFirstInString

2011-08-14 Thread Levente Uzonyi
On Sun, 14 Aug 2011, Philippe Marschall wrote: Hi In Seaside we get a lot of performance gains out of primitiveFindFirstInString. One thing that always annoyed me a bit is that it's not as optimized as it could be. The inclusionMap you give it are 256 consecutive boolean values (0 or 1).

Re: [Pharo-project] [Vm-dev] building Cog on 64 bits debian

2011-08-14 Thread Igor Stasenko
On 14 August 2011 18:39, laurent laffont laurent.laff...@gmail.com wrote: Thanks Levente. After searching trying finally I've passed this problem by: mv /usr/bin/gcc /usr/bin/real.gcc and then creating /usr/bin/gcc : #!/bin/sh exec real.gcc -m32 $@ and chmod +x /usr/bin/gcc Now I have:

[Pharo-project] citezen-pier broken

2011-08-14 Thread Tudor Girba
Hi, Citezen-Pier does not seem to work anymore. The first thing I noticed is that it still relies on Rio for accessing the bib file. I guess we should update it to work with Filesystem. Anyone happens to have an interest to work on it? Cheers, Doru -- www.tudorgirba.com Some battles are

Re: [Pharo-project] optimizing primitiveFindFirstInString

2011-08-14 Thread Philippe Marschall
On 14.08.2011 22:00, Levente Uzonyi wrote: On Sun, 14 Aug 2011, Philippe Marschall wrote: Hi In Seaside we get a lot of performance gains out of primitiveFindFirstInString. One thing that always annoyed me a bit is that it's not as optimized as it could be. The inclusionMap you give it

[Pharo-project] [ANN] SmallHarbour ALPHA release

2011-08-14 Thread laurent laffont
Hi, We are pleased to announce the first version of SmallHarbour. SmallHarbour is a public fork of SeasideHosting, running on top of Pharo, Seaside and Cog - driven by Romain Verduci and Laurent Laffont for ESUG SummerTalk 2011. The main goals are: - people should be able to (easily) setup

Re: [Pharo-project] [Esug-list] [ANN] SmallHarbour ALPHA release

2011-08-14 Thread Mariano Martinez Peck
Excllent!! This sounds awesome. Continue with your effort :) On Sun, Aug 14, 2011 at 11:23 PM, laurent laffont laurent.laff...@gmail.com wrote: Hi, We are pleased to announce the first version of SmallHarbour. SmallHarbour is a public fork of SeasideHosting, running on top of Pharo,

Re: [Pharo-project] optimizing primitiveFindFirstInString

2011-08-14 Thread Levente Uzonyi
On Sun, 14 Aug 2011, Philippe Marschall wrote: On 14.08.2011 22:00, Levente Uzonyi wrote: On Sun, 14 Aug 2011, Philippe Marschall wrote: Hi In Seaside we get a lot of performance gains out of primitiveFindFirstInString. One thing that always annoyed me a bit is that it's not as optimized as

Re: [Pharo-project] citezen-pier broken

2011-08-14 Thread Damien Pollet
Let's have a look during ESUG, it shouldn't be that difficult to fix :) On 14 August 2011 22:11, Tudor Girba tu...@tudorgirba.com wrote: Hi, Citezen-Pier does not seem to work anymore. The first thing I noticed is that it still relies on Rio for accessing the bib file. I guess we should