Re: [Pharo-dev] iPad version does not work ?[SEC=UNCLASSIFIED]

2014-02-26 Thread Esteban Lorenzano
Yes it is. Take a look at the readme :) On 26 Feb 2014, at 08:28, p...@highoctane.be p...@highoctane.be wrote: You can make it work following the procedure: http://www.youtube.com/watch?v=7MNsUiCc5FQlist=UUul18dYQnhOVMfYFg6YSK4A I don't know if you will have to mess with the Xcode

Re: [Pharo-dev] iPad version does not work ?[SEC=UNCLASSIFIED]

2014-02-26 Thread p...@highoctane.be
Ah, yes, I saw that in the README but haven't yet been able to get the Sim to work. Have you? Phil On Wed, Feb 26, 2014 at 9:01 AM, Esteban Lorenzano esteba...@gmail.comwrote: Yes it is. Take a look at the readme :) On 26 Feb 2014, at 08:28, p...@highoctane.be p...@highoctane.be wrote:

Re: [Pharo-dev] Pharo contribution CI: Email on failed build

2014-02-26 Thread Christophe Demarey
Hello, Le 25 févr. 2014 à 16:53, Damien Cassou a écrit : On Tue, Feb 25, 2014 at 4:42 PM, Norbert Hartl norb...@hartl.name wrote: Is it possible to receive an email when the build of the project I registered turns to unstable? yes, just add a post build action Email notification and put

Re: [Pharo-dev] easier start with Phobos

2014-02-26 Thread Pavel Krivanek
Hi Alexandre, there are some bundles based on Pharo 2.0 on the CI: https://ci.inria.fr/pharo-contribution/view/Phobos/. They work slightly differently because Pharo server is started by the JavaScript client internally. It's not so easy then to modify Smalltalk sources mainly on Mac. I'm not sure

[Pharo-dev] Pharo is cool

2014-02-26 Thread Norbert Hartl
The best smalltalk/pharo moments you get if you try things you want to have just in order to see they are already there. Today FileBrowser. I switched one of my servers to dump to stack with fuel to disk if an exception occurs. Today I copied the files from the server to my local machine and

Re: [Pharo-dev] Pharo is cool

2014-02-26 Thread Max Leske
Cool! :) Just be careful: if you’re using a large model the stack can blow up your image with a low space warning / make it inresponsive (because the stack referenes your model and boom, pretty much all of your instances will becom serialized). FYI we’re actively working on pruning of the

Re: [Pharo-dev] Pharo is cool

2014-02-26 Thread Esteban A. Maringolo
Pharo is Cool. Definitely. How do you set up the fuel dump? This morning I woke up with a out of memory crash (the first crash in two months), and going through the .log file didn't help much. Regards! Esteban A. Maringolo 2014-02-26 10:01 GMT-03:00 Norbert Hartl norb...@hartl.name: The

Re: [Pharo-dev] New methods for the String class

2014-02-26 Thread Stephan Eggermont
Eliot wrote But the real things to learn are the Method Finder and the browser. In case you are wondering why no beginner seems to know about Method Finder: Your post made me take a look at it for the first time (after near a decade of smalltalk). Interesting class comment. I’m pretty sure no

Re: [Pharo-dev] easier start with Phobos

2014-02-26 Thread Pavel Krivanek
Ok, thank you, I will check that. -- Pavel 2014-02-26 14:40 GMT+01:00 Stephan Eggermont step...@stack.nl: This doesn't work on a mac (running Mavericks) c := PipeableOSProcess command: 'cd PhobosDemo.app/Contents; mkdir Frameworks; cd Frameworks; tar -jxvf ../../../xulrunner.tar.bz2'.

Re: [Pharo-dev] expected failures

2014-02-26 Thread Emilio Oca
Hi, I tend to wrap then like this: [ self operationThatShouldFail. self fail: 'why!'. ] on: Error do: [ check that is the right error ] -Mensaje original- De: Pharo-dev [mailto:pharo-dev-boun...@lists.pharo.org] En nombre de Pharo4Stef Enviado el: Martes, 25 de Febrero de 2014

Re: [Pharo-dev] Pharo is cool

2014-02-26 Thread Norbert Hartl
Here the code operates on a shared queue EventDispatcher#consumeQueue | block | [ true ] whileTrue: [ block := queue next. [ block value ] on: Error do: [ :err | self

[Pharo-dev] In Praise of Small Commits | Dr Dobb's

2014-02-26 Thread Sven Van Caekenberghe
http://www.drdobbs.com/architecture-and-design/in-praise-of-small-commits/240166249?elq=a0ee24c4d39d4741ae4deddd44b0ed90elqCampaignId=190 With smaller commits, teams accelerate code reviews and builds, while shrinking the delay between committing and feedback. That's a lot of payback for a

[Pharo-dev] Pharo 3.0 on Windows 8.1

2014-02-26 Thread Sven Van Caekenberghe
Pharo 3.0 on Windows 8.1 Installing and running Pharo 3.0 on a blank Windows 8.1 machine in under 1 minute. http://www.youtube.com/watch?v=FKokxrQtrg0 With an extra minute to demo some basic interactions. Sven -- Sven Van Caekenberghe Proudly supporting Pharo http://pharo.org

[Pharo-dev] Pharo 3.0 on Windows 8.1

2014-02-26 Thread Sven Van Caekenberghe
Pharo 3.0 on Windows 8.1 Installing and running Pharo 3.0 on a blank Windows 8.1 machine in under 1 minute. http://www.youtube.com/watch?v=FKokxrQtrg0 With an extra minute to demo some elementary interactions. Sven -- Sven Van Caekenberghe Proudly supporting Pharo http://pharo.org

Re: [Pharo-dev] [Pharo-users] Pharo 3.0 on Windows 8.1

2014-02-26 Thread Tudor Girba
Beautiful! Doru On Wed, Feb 26, 2014 at 3:47 PM, Sven Van Caekenberghe s...@stfx.eu wrote: Pharo 3.0 on Windows 8.1 Installing and running Pharo 3.0 on a blank Windows 8.1 machine in under 1 minute. http://www.youtube.com/watch?v=FKokxrQtrg0 With an extra minute to demo some elementary

Re: [Pharo-dev] expected failures

2014-02-26 Thread Camillo Bruni
On 2014-02-25, at 17:04, b...@openinworld.com wrote: I'd like to better understand the semantics of expected failures in TestRunner. It seems to me that if you want to ensure that a certain operation fails, in a test you'd wrap it as follows... shouldFailed=false. [ self

Re: [Pharo-dev] New methods for the String class

2014-02-26 Thread Camillo Bruni
On 2014-02-26, at 03:53, Hernán Morales Durand hernan.mora...@gmail.com wrote: 2014-02-25 8:49 GMT-03:00 p...@highoctane.be p...@highoctane.be: Yes but... in Pharo strings are collections and a ton of things can be done with collections already. Other languages have more basic strings

Re: [Pharo-dev] Pharo 3.0 on Windows 8.1

2014-02-26 Thread btc
Nice initiative - but up to about 50 seconds the image is so compressed it is unreadable. cheers -ben Sven Van Caekenberghe wrote: Pharo 3.0 on Windows 8.1 Installing and running Pharo 3.0 on a blank Windows 8.1 machine in under 1 minute. http://www.youtube.com/watch?v=FKokxrQtrg0 With an

Re: [Pharo-dev] Pharo 3.0 on Windows 8.1

2014-02-26 Thread Sven Van Caekenberghe
On 26 Feb 2014, at 17:21, b...@openinworld.com wrote: Nice initiative - but up to about 50 seconds the image is so compressed it is unreadable. cheers -ben No, it's not. The movie is properly HD, 720p (1280 px × 720 px). YouTube automatically adapts the quality setting depending on the

Re: [Pharo-dev] Stepping through with GLORP Proxies

2014-02-26 Thread Esteban A. Maringolo
Hi Eliot, 2013-11-30 18:30 GMT-03:00 Eliot Miranda eliot.mira...@gmail.com: On Fri, Nov 29, 2013 at 2:22 PM, Esteban A. Maringolo emaring...@gmail.com wrote: 2013/11/29 Eliot Miranda eliot.mira...@gmail.com: I'll either prepare a change set or submit. It'll get done. I can continue

Re: [Pharo-dev] In Praise of Small Commits | Dr Dobb's

2014-02-26 Thread Pharo4Stef
+1 00 S On 26 Feb 2014, at 09:57, Sven Van Caekenberghe s...@stfx.eu wrote: http://www.drdobbs.com/architecture-and-design/in-praise-of-small-commits/240166249?elq=a0ee24c4d39d4741ae4deddd44b0ed90elqCampaignId=190 With smaller commits, teams accelerate code reviews and builds,

Re: [Pharo-dev] access to CI debug info Re: test failures in downloaded image 30733

2014-02-26 Thread btc
Thanks for that info Max.  I can see "Files to archive" in the PharoLauncher configuration that I have access to.  I don't have access to the configuration of Pharo-3.0-Issue-Validator to check, but I guess it should have an entry...     **/*/*.fuel to gather fuel files from the

Re: [Pharo-dev] New methods for the String class

2014-02-26 Thread p...@highoctane.be
Which Ruby guru an Python guru is going to give it a shot? [I am a Tcl guy... hey, that's an everything is a string language... ] Oh well, I started something: http://www.smalltalkhub.com/#!/~philippeback/StringTclShim So, who is taking StringRubyShim and StringPythonShim :-p ? Phil On Wed,

Re: [Pharo-dev] access to CI debug info Re: test failures in downloaded image 30733

2014-02-26 Thread Max Leske
On 26.02.2014, at 17:47, b...@openinworld.com wrote: Thanks for that info Max. I can see Files to archive in the PharoLauncher configuration that I have access to. I don't have access to the configuration of Pharo-3.0-Issue-Validator to check, but I guess it should have an entry...

Re: [Pharo-dev] Stepping through with GLORP Proxies

2014-02-26 Thread Eliot Miranda
Hi Esteban, find attached. Let me know of any problems. On Wed, Feb 26, 2014 at 8:32 AM, Esteban A. Maringolo emaring...@gmail.comwrote: Hi Eliot, 2013-11-30 18:30 GMT-03:00 Eliot Miranda eliot.mira...@gmail.com: On Fri, Nov 29, 2013 at 2:22 PM, Esteban A. Maringolo

Re: [Pharo-dev] Pharo is cool

2014-02-26 Thread Sebastian Sastre
interesting So far I’m using the sringify-ed walkbacks in emails, but (if the materializable dump isn’t too big) it would definitively be cool to have it. Made me think, thanks for sharing Norbert friends On Feb 26, 2014, at 11:31 AM, Norbert Hartl norb...@hartl.name wrote: Here the code

Re: [Pharo-dev] expected failures

2014-02-26 Thread btc
Camillo Bruni wrote: On 2014-02-25, at 17:04, b...@openinworld.com wrote: I'd like to better understand the semantics of "expected failures" in TestRunner. It seems to me that if you want to ensure that a certain operation fails, in a test you'd wrap it as follows...

Re: [Pharo-dev] Pharo 3.0 on Windows 8.1

2014-02-26 Thread btc
Sven Van Caekenberghe wrote: On 26 Feb 2014, at 17:21, b...@openinworld.com wrote: Nice initiative - but up to about 50 seconds the image is so compressed it is unreadable. cheers -ben No, it's not. The movie is properly HD, 720p (1280 px 720 px). YouTube

Re: [Pharo-dev] Pharo is cool

2014-02-26 Thread Norbert Hartl
Am 26.02.2014 um 14:38 schrieb Mariano Martinez Peck marianop...@gmail.com: Just be careful 2: I switched one of my servers to dump to stack with fuel to disk if an exception occurs. Once it happened to me the stack I was taking for serializing an error was too big. Too big because it

Re: [Pharo-dev] Pharo 3.0 on Windows 8.1

2014-02-26 Thread kilon alios
you can set the quality of the streaming clicking the gear button and also set it permanently for all videos in the youtube settings. On Wed, Feb 26, 2014 at 8:18 PM, b...@openinworld.com wrote: Sven Van Caekenberghe wrote: On 26 Feb 2014, at 17:21, b...@openinworld.com wrote: Nice

[Pharo-dev] Pharo-Business: a new mailing-list

2014-02-26 Thread Pharo4Stef
Dear Pharoers and Smalltalkers from all over the world We would really like to push business in our community and we believe that it is important to create a community around business questions. We created a new mailing-list

Re: [Pharo-dev] expected failures

2014-02-26 Thread Camillo Bruni
On 2014-02-26, at 19:11, b...@openinworld.com wrote: Camillo Bruni wrote: On 2014-02-25, at 17:04, b...@openinworld.com wrote: I'd like to better understand the semantics of expected failures in TestRunner. It seems to me that if you want to ensure that a certain operation

Re: [Pharo-dev] access to CI debug info Re: test failures in downloaded image 30733

2014-02-26 Thread Camillo Bruni
On 2014-02-26, at 17:47, b...@openinworld.com wrote: Thanks for that info Max. I can see Files to archive in the PharoLauncher configuration that I have access to. I don't have access to the configuration of Pharo-3.0-Issue-Validator to check, but I guess it should have an entry...

Re: [Pharo-dev] Pharo-Business: a new mailing-list

2014-02-26 Thread Santiago Bragagnolo
I'm in :) 2014-02-26 20:05 GMT+01:00 Pharo4Stef pharo4s...@free.fr: Dear Pharoers and Smalltalkers from all over the world We would really like to push business in our community and we believe that it is important to create a community around business questions. We created a new

Re: [Pharo-dev] Pharo is cool

2014-02-26 Thread Mariano Martinez Peck
On Wed, Feb 26, 2014 at 3:53 PM, Norbert Hartl norb...@hartl.name wrote: Am 26.02.2014 um 14:38 schrieb Mariano Martinez Peck marianop...@gmail.com: Just be careful 2: I switched one of my servers to dump to stack with fuel to disk if an exception occurs. Once it happened to me the

Re: [Pharo-dev] Pharo-Business: a new mailing-list

2014-02-26 Thread Esteban A. Maringolo
Hi Stef, Can you explain what's the purpose of this list? I don't fully get it. What is to be discussed there? Market for Pharo? Derived businesses from pharo? (like pharocloud?). Thank you! Regards! Esteban A. Maringolo 2014-02-26 16:05 GMT-03:00 Pharo4Stef pharo4s...@free.fr: Dear

[Pharo-dev] about dateAndTime and TimeStamp

2014-02-26 Thread Pharo4Stef
one of these days we will have to remove TimeStamp because it just adds noise to the system (in fact I would not have any problem to see DateAndTime renamed as timestamp - but having the two for nothing looks useless to me). Stef

Re: [Pharo-dev] Pharo is cool

2014-02-26 Thread Norbert Hartl
Am 26.02.2014 um 21:21 schrieb Mariano Martinez Peck marianop...@gmail.com: On Wed, Feb 26, 2014 at 3:53 PM, Norbert Hartl norb...@hartl.name wrote: Am 26.02.2014 um 14:38 schrieb Mariano Martinez Peck marianop...@gmail.com: Just be careful 2: I switched one of my servers to dump

Re: [Pharo-dev] Pharo-Business: a new mailing-list

2014-02-26 Thread askoh
We should use something Smalltalk Powered instead of Python Powered for the list. -- View this message in context: http://forum.world.st/Pharo-Business-a-new-mailing-list-tp4746585p4746618.html Sent from the Pharo Smalltalk Developers mailing list archive at Nabble.com.

Re: [Pharo-dev] iPad version does not work ?

2014-02-26 Thread jannik laval
Yes, but a Pharo1.4 I tried with a Pharo2.0 but it freezes. Morover, for Pharo2.0 there are some changes to do to download all the stuff. Here is the process for Pharo 1.4: git clone https://github.com/pharo-project/pharo-vm.git cd pharo-vm/image/ ./newImage.sh == it load a pharo20 ./pharo

Re: [Pharo-dev] about dateAndTime and TimeStamp

2014-02-26 Thread Norbert Hartl
Am 26.02.2014 um 21:29 schrieb Pharo4Stef pharo4s...@free.fr: one of these days we will have to remove TimeStamp because it just adds noise to the system (in fact I would not have any problem to see DateAndTime renamed as timestamp - but having the two for nothing looks useless to me).

Re: [Pharo-dev] Pharo-Business: a new mailing-list

2014-02-26 Thread Esteban A. Maringolo
2014-02-26 17:33 GMT-03:00 askoh as...@askoh.com: We should use something Smalltalk Powered instead of Python Powered for the list. What would we gain out of that? Esteban A. Maringolo

Re: [Pharo-dev] Pharo is cool

2014-02-26 Thread Mariano Martinez Peck
On Wed, Feb 26, 2014 at 5:30 PM, Norbert Hartl norb...@hartl.name wrote: Am 26.02.2014 um 21:21 schrieb Mariano Martinez Peck marianop...@gmail.com: On Wed, Feb 26, 2014 at 3:53 PM, Norbert Hartl norb...@hartl.name wrote: Am 26.02.2014 um 14:38 schrieb Mariano Martinez Peck

Re: [Pharo-dev] Pharo-Business: a new mailing-list

2014-02-26 Thread Norbert Hartl
Am 26.02.2014 um 21:33 schrieb askoh as...@askoh.com: We should use something Smalltalk Powered instead of Python Powered for the list. I like to completely disagree. If you need to write every software in your own language before you can use it you won’t achieve much IMHO. There is pretty

Re: [Pharo-dev] Pharo-Business: a new mailing-list

2014-02-26 Thread Santiago Bragagnolo
Make a list where the main point is about industry issues, share knowledge and experience about general implications of pharo in a full project. Recommend frameworks for specific domains. And then also soft knowledge, know who is working with pharo in business to know to who ask for help in case

Re: [Pharo-dev] Pharo-Business: a new mailing-list

2014-02-26 Thread Santiago Bragagnolo
there is nothing already done for lists in any smalltalk?? 2014-02-26 21:41 GMT+01:00 Norbert Hartl norb...@hartl.name: Am 26.02.2014 um 21:33 schrieb askoh as...@askoh.com: We should use something Smalltalk Powered instead of Python Powered for the list. I like to completely

Re: [Pharo-dev] Pharo is cool

2014-02-26 Thread Norbert Hartl
Am 26.02.2014 um 21:37 schrieb Mariano Martinez Peck marianop...@gmail.com: On Wed, Feb 26, 2014 at 5:30 PM, Norbert Hartl norb...@hartl.name wrote: Am 26.02.2014 um 21:21 schrieb Mariano Martinez Peck marianop...@gmail.com: On Wed, Feb 26, 2014 at 3:53 PM, Norbert Hartl

Re: [Pharo-dev] Pharo is cool

2014-02-26 Thread Mariano Martinez Peck
On Wed, Feb 26, 2014 at 5:50 PM, Norbert Hartl norb...@hartl.name wrote: Am 26.02.2014 um 21:37 schrieb Mariano Martinez Peck marianop...@gmail.com: On Wed, Feb 26, 2014 at 5:30 PM, Norbert Hartl norb...@hartl.name wrote: Am 26.02.2014 um 21:21 schrieb Mariano Martinez Peck

[Pharo-dev] How to upload some version from the package-cache to a StHub project

2014-02-26 Thread Gabriel Cotelli
Hi, I have a whole package history in my local package cache and I want to upload it to a new SmalltalkHub project. I've tried using the Monticello browser but it insists in creating a new version of the package when I do the Save to the new repository. Is there some option to do something like

Re: [Pharo-dev] Pharo-Business: a new mailing-list

2014-02-26 Thread Esteban A. Maringolo
I don't see the point of having another list, I don't see many business related topics going on in the dev or users lists. In fact they have moderate traffic (and could even converge). However, if the idea is to foster business talk, maybe a separate list is okay. I'm in. Esteban A. Maringolo

Re: [Pharo-dev] [fun] Sparkline in Pharo

2014-02-26 Thread Max Leske
On 26.02.2014, at 21:40, Alexandre Bergel alexandre.ber...@me.com wrote: Hi! I am playing with unicode characters: -=-=-=-=-=-=-=-=-=-=-=-= Gofer new url: 'http://smalltalkhub.com/mc/abergel/Sparkline/main'; addPackage: 'Sparkline'; load.

Re: [Pharo-dev] Pharo is cool

2014-02-26 Thread Norbert Hartl
Am 26.02.2014 um 22:00 schrieb Mariano Martinez Peck marianop...@gmail.com: On Wed, Feb 26, 2014 at 5:50 PM, Norbert Hartl norb...@hartl.name wrote: Am 26.02.2014 um 21:37 schrieb Mariano Martinez Peck marianop...@gmail.com: On Wed, Feb 26, 2014 at 5:30 PM, Norbert Hartl

Re: [Pharo-dev] How to upload some version from the package-cache to a StHub project

2014-02-26 Thread Max Leske
On 26.02.2014, at 22:03, Gabriel Cotelli g.cote...@gmail.com wrote: Hi, I have a whole package history in my local package cache and I want to upload it to a new SmalltalkHub project. I've tried using the Monticello browser but it insists in creating a new version of the package when I do

Re: [Pharo-dev] How to upload some version from the package-cache to a StHub project

2014-02-26 Thread Gabriel Cotelli
Thank you Max, works like a charm! On Wed, Feb 26, 2014 at 6:20 PM, Max Leske maxle...@gmail.com wrote: On 26.02.2014, at 22:03, Gabriel Cotelli g.cote...@gmail.com wrote: Hi, I have a whole package history in my local package cache and I want to upload it to a new SmalltalkHub project.

[Pharo-dev] Floats problem with SIXX between Pharo and GemStone

2014-02-26 Thread Mariano Martinez Peck
Hi guys, When I export SmallDoubles with SIXX in GemStone it generates something like this: sixx.object sixx.id=15 sixx.name=close sixx.type=SmallDouble 1.E-02/sixx.object This is because 0.01 asString - '1.E-02' Then I want to load this in Pharo. So first

Re: [Pharo-dev] about dateAndTime and TimeStamp

2014-02-26 Thread Sven Van Caekenberghe
Everything is ready to do just that, see https://pharo.fogbugz.com/f/cases/12197/should-remove-TimeStamp we just decided not to do the actual removal for 3.0 On 26 Feb 2014, at 21:29, Pharo4Stef pharo4s...@free.fr wrote: one of these days we will have to remove TimeStamp because it just adds

Re: [Pharo-dev] How to upload some version from the package-cache to a StHub project

2014-02-26 Thread MartinW
Gabriel Cotelli-3 wrote I have a whole package history in my local package cache and I want to upload it to a new SmalltalkHub project. I've tried using the Monticello browser but it insists in creating a new version of the package when I do the Save to the new repository. Is there some

Re: [Pharo-dev] [fun] Sparkline in Pharo

2014-02-26 Thread Norbert Hartl
Can you tell what these sparklines have to do with unicode? Btw. I would like to attend this unicode workshop :) Norbert Am 26.02.2014 um 21:40 schrieb Alexandre Bergel alexandre.ber...@me.com: Hi! I am playing with unicode characters: -=-=-=-=-=-=-=-=-=-=-=-= Gofer new

Re: [Pharo-dev] about dateAndTime and TimeStamp

2014-02-26 Thread Esteban A. Maringolo
I share the same idiomatic feeling with Norbert. However it is completely counter-intuitive (and counter productive too) that you can't instantiate a DateAndTime using the class side builder #date:time:, it is available in Pharo 2.0, but #date:time: was removed in a 3.0 image I tried a month ago.

Re: [Pharo-dev] Floats problem with SIXX between Pharo and GemStone

2014-02-26 Thread Nicolas Cellier
That's exactly for this kind of reasons that I developped an ExtendedNumberParser connected to Number classreadFrom:, to allow a variety of formats used in the rest of the world. It would have been easy to allow upper letter exponents in this parser, but the class was considered superfluous and

Re: [Pharo-dev] Floats problem with SIXX between Pharo and GemStone

2014-02-26 Thread Nicolas Cellier
2014-02-26 23:08 GMT+01:00 Nicolas Cellier nicolas.cellier.aka.n...@gmail.com: That's exactly for this kind of reasons that I developped an ExtendedNumberParser connected to Number classreadFrom:, to allow a variety of formats used in the rest of the world. It would have been easy to allow

Re: [Pharo-dev] [Glass] Floats problem with SIXX between Pharo and GemStone

2014-02-26 Thread Martin McClure
On 02/26/2014 01:38 PM, Mariano Martinez Peck wrote: So, of course Float readFrom: '1.E-02'- 1.0 This is because Pharo only accepts lower-case letters for exponent ($e $d $q). So if you replace E with e Pharo will parse it as you wish. -Martin

[Pharo-dev] Pharo 3.0 on Mac OS X 10.9

2014-02-26 Thread Sven Van Caekenberghe
Pharo 3.0 on Mac OS X 10.9 The out of the box experience. Installing and running Pharo 3.0 on a blank Mac OS X 10.9 account in 40 seconds. https://www.youtube.com/watch?v=xxljgugI4c4 With 3 extra minutes to demo some networking and image manipulation interactions. Sven -- Sven Van

Re: [Pharo-dev] iPad version does not work ?[SEC=UNCLASSIFIED]

2014-02-26 Thread Stephen Taylor
On Wed, 2014-02-26 at 08:28 +0100, p...@highoctane.be wrote: You can make it work following the procedure: http://www.youtube.com/watch?v=7MNsUiCc5FQlist=UUul18dYQnhOVMfYFg6YSK4A Excellent - I'll watch. Phil Steve

Re: [Pharo-dev] hashMultiply

2014-02-26 Thread Andres Valloud
Hello... On 2/25/14 18:32 , Martin McClure wrote: Andres and I have an ongoing discussion on this topic. :-) :)... And #bitShift *should* be faster. Ok, but how much faster? 64x64 bit multiplication on modern x86 is just 8 cycles (!), and there will likely be parallelism done by the

Re: [Pharo-dev] hashMultiply

2014-02-26 Thread Andres Valloud
Hello again... For what occurs in modern CPUs, well, no. Surprising to see that a mul would be faster than a shr or shl. How comes? No, not faster. But definitely way faster than 30 cycles not so long ago. I used to be ok with these things when I was writing demoscene code a loong time ago

Re: [Pharo-dev] [Pharo-users] Pharo 3.0 on Mac OS X 10.9

2014-02-26 Thread Tudor Girba
Nice. Thanks! Doru On Wed, Feb 26, 2014 at 11:52 PM, Sven Van Caekenberghe s...@stfx.euwrote: Pharo 3.0 on Mac OS X 10.9 The out of the box experience. Installing and running Pharo 3.0 on a blank Mac OS X 10.9 account in 40 seconds. https://www.youtube.com/watch?v=xxljgugI4c4 With 3

Re: [Pharo-dev] Pharo-Business: a new mailing-list

2014-02-26 Thread Tudor Girba
Thanks Stef! Doru On Wed, Feb 26, 2014 at 8:05 PM, Pharo4Stef pharo4s...@free.fr wrote: Dear Pharoers and Smalltalkers from all over the world We would really like to push business in our community and we believe that it is important to create a community around business questions. We

Re: [Pharo-dev] Pharo-Business: a new mailing-list

2014-02-26 Thread Tudor Girba
Hi, You will not get people to send business ideas in a development list :). We need to start the conversation of what makes Pharo profitable as opposed to geeky cool. The mailing is an effort in this direction. Doru On Wed, Feb 26, 2014 at 10:13 PM, Esteban A. Maringolo emaring...@gmail.com

Re: [Pharo-dev] How to upload some version from the package-cache to a StHub project

2014-02-26 Thread Pharo4Stef
This is also explained in the gofer chapter in the deepintopharo book Stef On 26 Feb 2014, at 22:53, MartinW w...@fastmail.fm wrote: Gabriel Cotelli-3 wrote I have a whole package history in my local package cache and I want to upload it to a new SmalltalkHub project. I've tried using the

Re: [Pharo-dev] about dateAndTime and TimeStamp

2014-02-26 Thread Pharo4Stef
On 26 Feb 2014, at 23:03, Esteban A. Maringolo emaring...@gmail.com wrote: I share the same idiomatic feeling with Norbert. However it is completely counter-intuitive (and counter productive too) that you can't instantiate a DateAndTime using the class side builder #date:time:, it is

Re: [Pharo-dev] Floats problem with SIXX between Pharo and GemStone

2014-02-26 Thread Pharo4Stef
On 26 Feb 2014, at 23:08, Nicolas Cellier nicolas.cellier.aka.n...@gmail.com wrote: That's exactly for this kind of reasons that I developped an ExtendedNumberParser connected to Number classreadFrom:, to allow a variety of formats used in the rest of the world. It would have been easy

Re: [Pharo-dev] Pharo-Business: a new mailing-list

2014-02-26 Thread p...@highoctane.be
Exactly. But it is a step. In a polyglot IT environment (Java , CRuby, Python, Scala, Perl, R...) there is a place for Pharo I am sure. Especially for dealing with 'meta' things with a fast delivery cycle. Phil On Thursday, February 27, 2014, Tudor Girba tu...@tudorgirba.com wrote: Hi,

Re: [Pharo-dev] iPad version does not work ?

2014-02-26 Thread Luc Fabresse
Hi All, Are these steps written README file in the PharoVM repo? e.g. https://github.com/pharo-project/pharo-vm/blob/master/README.md Luc 2014-02-26 21:34 GMT+01:00 jannik laval jannik.la...@gmail.com: Yes, but a Pharo1.4 I tried with a Pharo2.0 but it freezes. Morover, for Pharo2.0 there