Re: [Pharo-users] Pharo and Pi

2015-03-18 Thread Mircea
Count me in too. Just bought two Pi 2s and rand the PharoS VM on top or Raspbian OS (linux). Quick conclusion. Running apps is fine, but optimizations seem lacking somehow as it took 30 minutes to install and compile Seaside and it only ever used one processor of the Pi 2’s four (quad-core). T

Re: [Pharo-users] Pharo and Pi - FastBltBit

2015-03-18 Thread Mircea
Also here: https://ci.inria.fr/pharo-contribution/view/ARM-Raspberry/job/RaspberryPi-Cross-Compilation-FastBltBit/ What does FastBltBit mean? Google turns up some results but they are inco

Re: [Pharo-users] Wiki system for Pharo (smalltalk)?

2014-05-29 Thread Mircea
Already knew about Pier CMS as it's used to write the Seaside and Pharo book. Do you have a link for Marina? Pe 30.05.2014, la 00:23, stepharo a scris: > you mean wiki implemented in Pharo? >pier >marina > > Stef >> On 29/5/14 19:57, Mircea S. wrote: >

Re: [Pharo-users] Mac VM - developer unidentified

2014-09-24 Thread Mircea S.
Right click on the app and click Open. This time around it will bring up the same screen but with a second button that says Open. After you click that it will never ask again. Trimis de pe iPhone-ul meu Pe 24.09.2014, la 12:13, Usman Bhatti a scris: > Hi, > > Today I downloaded Pharo vm

[Pharo-users] NBSQLite3 on OS X - Pharo 3

2015-01-18 Thread Mircea S.
Hello everyone, I was looking into NBSQLite3 using the guide on smalltalkhub, pasted it below. 1. NBSQLite3 seems to be missing from "Tools" -> "Configuration Browser" so I had to use the Gopher script. 2. I can't seem to get the around to installing the sqlite engine on my mac. What is the d

Re: [Pharo-users] NBSQLite3 on OS X - Pharo 3

2015-01-19 Thread Mircea S.
Forgot to mention I want to use a relative path if at all possible. Pe 19 ian. 2015, la 00:46, Mircea S. a scris: > Hello everyone, > > I was looking into NBSQLite3 using the guide on smalltalkhub, pasted it below. > > 1. NBSQLite3 seems to be missing from "Tools"

Re: [Pharo-users] NBSQLite3 on OS X - Pharo 3

2015-01-19 Thread Mircea S.
bfounded as to where this file is created, searching for produces no results. Maybe it's created inside the image itself somewhere? Pe 19 ian. 2015, la 11:12, Guillermo Polito a scris: > Hi Mircea, > > - About the library: > You can either install the sqlite library close

Re: [Pharo-users] NBSQLite3 on OS X - Pharo 3j

2015-01-24 Thread Mircea S.
27;t a permission issue. This is on a Pharo 3.0 image with NBSqlite3 installed via the Gopher script on github. Pe 24 ian. 2015, la 07:27, Pierce Ng a scris: >> On Mon, Jan 19, 2015 at 07:26:28PM +0200, Mircea S. wrote: >> NBSQLite3Connection on: 'myfile.db'. > > W

Re: [Pharo-users] NBSQLite3 on OS X - Pharo 3j

2015-01-24 Thread Mircea S.
On Mac OS X 10.10 Pe 25 ian. 2015, la 00:57, Mircea S. a scris: > Hmm. Both "(NBSQLite3Connection on: 'test.db') open". or "NBSQLite3Connection > openOn: 'test.db' " produce an "unable to open database file" error and no > file gets

[Pharo-users] Pointer Detective - Inspecting an Object (instance) and Doing a "PointerDetective openOn: self." leads to a System Error in Pharo?

2015-01-29 Thread Mircea S.
The object is a WhateverRoot instance (subclass of WAComponent) that has "canBeRoot ^true." Am I doing something wrong? PS. My "eagle eye" caught a typo on line 9 of the error. "'Orginal error:' ,title asString.". Maybe, just maybe... More info and an printscreen here: http://stackoverflow.co

[Pharo-users] Seaside - How do I install Scriptaculous on a clean Seaside install (via Configuration Browser) on Pharo?

2015-01-31 Thread Mircea S.
I used the method described here to install Seaside3 on Pharo. All is well, but Scriptaculous doesn't come preinstalled. How do I get it? Seaside3 : 1: Go to the configuration manager 2: Select the Seaside 3 configuration. Click on Install. 3: Wait while it loads. Takes a couple of minutes on

Re: [Pharo-users] Seaside - How do I install Scriptaculous on a clean Seaside install (via Configuration Browser) on Pharo?

2015-01-31 Thread Mircea S.
ototype-Core'; load. Gofer new url:'http://www.smalltalkhub.com/mc/Seaside/Seaside31/main'; package: 'Scriptaculous-Core'; load. Gofer new url:'http://www.smalltalkhub.com/mc/Seaside/Seaside31/main'; package: 'Scriptaculous-Components'; load.

Re: [Pharo-users] Seaside - How do I install Scriptaculous on a clean Seaside install (via Configuration Browser) on Pharo?

2015-01-31 Thread Mircea S.
y-Core'; load. Gofer new url:'http://www.smalltalkhub.com/mc/Seaside/Seaside31/main'; package: 'JQuery-UI'; load. "notice that there is no -Core on this last one, I don't know why" Pe 31 ian. 2015, la 16:23, Johan Brichau a scris: > Hi Mirce

[Pharo-users] Seaside on Pharo - Why the weird jQuery integration syntax compared to Scriptaculous?

2015-01-31 Thread Mircea S.
Seaside on Pharo - Why the weird jQuery integration syntax compared to Scriptaculous? Ex1: html scriptaculous sortable onUpdate: (html scriptaculous... etc). html jQuery new sortable onStop: (html jQuery... etc). Ex2: html scriptaculous effect id: helpId; toggleAppear. (html jQuery id: hel

Re: [Pharo-users] Seaside on Pharo - Why the weird jQuery integration syntax compared to Scriptaculous?

2015-01-31 Thread Mircea S.
Are there any Guides of any kind? The seaside book seems to have some jQuery parts but they are sketchy and commenting is disabled so I can't correct them. Pe 1 feb. 2015, la 00:10, "p...@highoctane.be" a scris: > > Le 31 janv. 2015 22:37, "Mircea S." a

Re: [Pharo-users] Pointer Detective - Inspecting an Object (instance) and Doing a "PointerDetective openOn: self." leads to a System Error in Pharo?

2015-02-01 Thread Mircea S.
> >> On Thu, Jan 29, 2015 at 5:16 PM, Mircea S. wrote: >> The object is a WhateverRoot instance (subclass of WAComponent) that has >> "canBeRoot ^true." >> >> Am I doing something wrong? >> >> PS. My "eagle eye" caught a typo on

Re: [Pharo-users] Seaside jQuery - Sorting a list with drag and drop and sending it back via Ajax causes OrderedCollection to turn into an Array?

2015-02-26 Thread Mircea S.
es (value subStrings: ',') which will return an array. > You could modify your setter accessor items: to modify the collection using > asOrderedCollection if you need this...? > > Kind Regards > Carlo > > > On 13 Feb 2015, at 11:26 AM, Mircea S. wrote: > &g

Re: [Pharo-users] Seaside jQuery - Sorting a list with drag and drop and sending it back via Ajax causes OrderedCollection to turn into an Array?

2015-02-26 Thread Mircea S.
Thank you for pointing me in the right direction, the source I was using is the Seaside book at: http://book.seaside.st/book/web-20/jquery/enhanced-todo-application/drag-and-drop I was using a heavily modified version of that example to figure out how it works. The code on that page is the culp

Re: [Pharo-users] roassal pixel rendering

2015-03-03 Thread Mircea S.
What is your host system? If you're on a mac is it Retina? If you're on windows, what dpi setting are you using? Pe 3 mar. 2015, la 00:31, Peter Uhnák a scris: > Hi, > > I've been experiencing weird behavior with pixel rendering... > > basically one pixel lines will get blurred for some re

Re: [Pharo-users] Pharo on bitnami

2015-06-08 Thread Mircea S.
Great!!! Contacted them myself too, with a contest entry for either Pharo stand-alone or Seaside on Pharo, since the contest mainly focuses on 'web frameworks'. For vanilla Pharo this was their response: "Thanks for your suggestion. Unfortunately we can not add Pharo in our Bitnami contest. We

Re: [Pharo-users] Pharo on bitnami

2015-06-09 Thread Mircea S.
/mc/Pharo/MetaRepoForPharo40/main > ConfigurationOfSeaside3 --install=#stable > > and this is how you run it: > > ./pharo Pharo.image eval "ZnZincServerAdaptor startOn: 8080” > > btw… I would like to add a command line handler for seaside to do this in a > much better way… maybe so

Re: [Pharo-users] Comment on www.amazon.com Pharo by example

2013-06-23 Thread Mircea Samoilă
Post a link. I didn't even know it existed. Pe 22.06.2013, la 18:38, Stéphane Ducasse a scris: > Hi guys > > I would be good if we would got more comments on the amazon version of Pharo > by example and Pharo par l'exemple. Any good soul that enjoyed the book > willing to add some comments?

Re: [Pharo-users] Comment on www.amazon.com Pharo by example

2013-06-23 Thread Mircea Samoilă
Amazon.com has the english paperback version Amazon.co.uk produces no relevant results when searching for "Pharo by Example" Amazon.fr has the english paperback version, "Pharo par l'exemple" produces no relevant results. None of the above have a kindle version available. Pe 22.06.2013, la 18:

[Pharo-users] Wiki system for Pharo (smalltalk)?

2014-05-29 Thread Mircea S.
What Wiki systems are still around for Pharo (smalltalk)? Thank you.