Re: [Pharo-users] Spur Cog vs VW

2016-06-06 Thread Gerry Weaver
Hi, I was reading about the VM stuff and assumed (wrongly) that the post applied to that. Sorry for the noise. Thanks, -G -Original Message- From: Pharo-users [mailto:pharo-users-boun...@lists.pharo.org] On Behalf Of stepharo Sent: Tuesday, June 7, 2016 12:48 AM To: Any question

Re: [Pharo-users] Spur Cog vs VW

2016-06-06 Thread stepharo
Not that one :) https://www.youtube.com/watch?v=7spEW4NLbH8 Stef

Re: [Pharo-users] OSProcess command with german umlaut does not work

2016-06-06 Thread David T. Lewis
On Mon, Jun 06, 2016 at 08:34:40PM +0200, Sven Van Caekenberghe wrote: > > > On 06 Jun 2016, at 17:22, Sabine Manaa wrote: > > > > why ByteArray? > > http://www.unicode.org/faq/utf_bom.html > > A Unicode transformation format (UTF) is an algorithmic mapping from every

Re: [Pharo-users] GUI Applications

2016-06-06 Thread Ben Coman
For general UI, use Spec. For browser** based UI, check Glamour. **Meaning like Pharo System Browser, not a web browser. Not sure if there another term that could avoid any confusion? cheers -ben On Tue, Jun 7, 2016 at 3:59 AM, sergio ruiz wrote: > is there one GUI

Re: [Pharo-users] GUI Applications

2016-06-06 Thread sergio ruiz
Great! Thanks! I will take a look at this.. > On Jun 6, 2016, at 4:12 PM, Johan Fabry wrote: > > the standard way to build UIs in Pharo is by using Spec. There is a video of > me presenting it at the Pharo Days 2015 that gives you a first overview >

Re: [Pharo-users] GUI Applications

2016-06-06 Thread Johan Fabry
Hi Sergio, the standard way to build UIs in Pharo is by using Spec. There is a video of me presenting it at the Pharo Days 2015 that gives you a first overview https://www.youtube.com/watch?v=OL23s9ZUIR0=youtu.be=PL4actYd6bfnz98ngrKALwwStl3C3odEKG There is also written documentation that is

Re: [Pharo-users] GUI Applications

2016-06-06 Thread Alexandre Bergel
Glamour and Spec :-) Alexandre -- _,.;:~^~:;._,.;:~^~:;._,.;:~^~:;._,.;:~^~:;._,.;: Alexandre Bergel http://www.bergel.eu ^~:;._,.;:~^~:;._,.;:~^~:;._,.;:~^~:;._,.;:~^~:;. > On Jun 6, 2016, at 3:59 PM, sergio ruiz wrote: > > is there one GUI framework that is being

Re: [Pharo-users] GUI Applications

2016-06-06 Thread sergio ruiz
yes, but i kind of want to avoid the web.. i just want something that works natively without the headaches of browser incompatibility. I also want an app to feel snappy and able to make OS calls.. > On Jun 6, 2016, at 3:51 PM, Alexandre Bergel wrote: > > Hi Sergio, >

Re: [Pharo-users] GUI Applications

2016-06-06 Thread sergio ruiz
is there one GUI framework that is being used more than the others, or that is more mature? Thanks! > On Jun 6, 2016, at 3:51 PM, Alexandre Bergel wrote: > > You are very right. Pharo offers several GUI framework, including Spec, > Glamour. > Check for Deep Into

Re: [Pharo-users] GUI Applications

2016-06-06 Thread p...@highoctane.be
I am using Seaside and the UI is web based. Even if Pharo runs locally. Maybe Bloc and a VM running on ARM/Android will change this but as most users are using mobile devices, well, that's the best I can target for now. Phil On Mon, Jun 6, 2016 at 8:56 PM, sergio ruiz

Re: [Pharo-users] GUI Applications

2016-06-06 Thread Alexandre Bergel
Hi Sergio, You are very right. Pharo offers several GUI framework, including Spec, Glamour. Check for Deep Into Pharo, a book which talk about theses. Cheers, Alexandre -- _,.;:~^~:;._,.;:~^~:;._,.;:~^~:;._,.;:~^~:;._,.;: Alexandre Bergel http://www.bergel.eu

Re: [Pharo-users] OSProcess command with german umlaut does not work

2016-06-06 Thread Sabine Manaa
Hi Sven, thank you very much for your explanation. I will read the pharo book chapter again tomorrow morning. Each time I have to do with encoding, I have to start again with reading;-( I was not asking for the reason of encoding but because OSProcess command: needs a String and not a Byte

[Pharo-users] GUI Applications

2016-06-06 Thread sergio ruiz
It would seem to me that in order for an ecosystem to really take hold on the part of the users, it’s really important that it’s efficient and easy to create a GUI based application. Can anyone comment on the current state of libraries for creating and distributing GUI applications? Thanks!

[Pharo-users] How much abuse can Teapot take?

2016-06-06 Thread sergio ruiz
I am currently planning a mobile (iOS) app that will rely on a REST server for handling offline tasks (sending emails, processing reports, etc). I would LOVE to use Pharo/Teapot for this, but I want to make sure that this configuration would be up to the task. I can’t really guess how much

Re: [Pharo-users] OSProcess command with german umlaut does not work

2016-06-06 Thread Sven Van Caekenberghe
> On 06 Jun 2016, at 17:22, Sabine Manaa wrote: > > why ByteArray? http://www.unicode.org/faq/utf_bom.html A Unicode transformation format (UTF) is an algorithmic mapping from every Unicode code point (except surrogate code points) to a unique byte sequence.

Re: [Pharo-users] OSProcess command with german umlaut does not work

2016-06-06 Thread Sabine Manaa
Sorry, I did a mistake. I reversed it by mistake. asString is needed. does work : OSProcess command: ('cp /Library/WebServer/Documents/reports/bär.pdf /Library/WebServer/Documents/reports/test-a.pdf' utf8Encoded asString). does not work (Improper store into indexable object): OSProcess

Re: [Pharo-users] OSProcess command with german umlaut does not work

2016-06-06 Thread Mariano Martinez Peck
Hi Dave, Sabine, Norbert et all, Few weeks (months?) ago I was also reviewing this topic of encoding a OS(Sub)Process. After surfing a bit the web, I found out the most simple and accurate answer/solution was indeed to set the correct locale and/or text encoding in the computer in question.

Re: [Pharo-users] OSProcess command with german umlaut does not work

2016-06-06 Thread David T. Lewis
Norbert, You are probably right. I'm not sure the best way to handle it. Dave > Dave, > >> Am 06.06.2016 um 18:13 schrieb David T. Lewis : >> >> Hi Sabine, >> >> That's great that #utf8Encoded is working, thanks for confirming. >> >> I'll look and see if I can add that to

[Pharo-users] magma for pharo 5.

2016-06-06 Thread francescoagati
Hi, someone know the state of Magma for pharo5? there is a port of magma for pharo 5? -- View this message in context: http://forum.world.st/magma-for-pharo-5-tp4899426.html Sent from the Pharo Smalltalk Users mailing list archive at Nabble.com.

Re: [Pharo-users] OSProcess command with german umlaut does not work

2016-06-06 Thread Norbert Hartl
Dave, > Am 06.06.2016 um 18:13 schrieb David T. Lewis : > > Hi Sabine, > > That's great that #utf8Encoded is working, thanks for confirming. > > I'll look and see if I can add that to OSProcess (I'm traveling and cannot > look at it right now). > > Mariano - this thread

Re: [Pharo-users] OSProcess command with german umlaut does not work

2016-06-06 Thread David T. Lewis
Hi Sabine, That's great that #utf8Encoded is working, thanks for confirming. I'll look and see if I can add that to OSProcess (I'm traveling and cannot look at it right now). Mariano - this thread probably applies to OSSubProcess also. Dave > Hi Sven, > > why ByteArray? > > does not work

Re: [Pharo-users] OSProcess command with german umlaut does not work

2016-06-06 Thread Sabine Manaa
Hi Sven, why ByteArray? does not work (Improper store into indexable object): OSProcess command: ('cp /Library/WebServer/Documents/reports/bär.pdf /Library/WebServer/Documents/reports/test-a.pdf' utf8Encoded asString). works: OSProcess command: ('cp

Re: [Pharo-users] One comment to new Pharo5 debugger

2016-06-06 Thread Johan Fabry
That looks really great ! It solves the practical problem and, for me, also addresses the conceptual issues that Doru has. Doru, what do you think of this solution? The buttons are still connected to the stack, they are just below the stack instead of on top. I also don’t see why a ‘Stack’

Re: [Pharo-users] Pharo 5 accented chars bug/regression

2016-06-06 Thread Milan Vavra via Pharo-users
--- Begin Message --- Hi I have a solution for the problem you mentioned. I know what needs to be done to be able to type those pesky e with caron, c with caron and uppercase C with caron characters on Pharo 3, 4 and 5 on Windows. But I want you to do something for me in return. I want you to go

Re: [Pharo-users] [ANN] Glorp-SQLite3 for Pharo 5

2016-06-06 Thread Pierce Ng
On Sun, Jun 05, 2016 at 03:38:17PM -0700, francescoagati wrote: > NBSQLite3DatabaseAccessor isn't present. i have substitute with > DatabaseAccessor. > but i have this error unable to connect Try this: | login accessor | login := Login new database: UDBCSQLite3Platform new; host:

Re: [Pharo-users] Is lazy evaluation of infinite series possible?

2016-06-06 Thread Werner Kassens
Hi Erisa, one solution, using your notation, could eg be * aPowerSeries ^ PowerSeries on: [ :generator | |a b| a:=OrderedCollection new. b:=OrderedCollection new. [ a add: self next. b add: aPowerSeries

Re: [Pharo-users] Pharo Catalog broken?

2016-06-06 Thread Esteban Lorenzano
Yes is broken, and I'm traveling so I will not be able to fix it until this afternoon :( Esteban > On 6 Jun 2016, at 13:50, Tommaso Dal Sasso wrote: > > Hello everybody, > > it looks like the pharo catalog has a problem with the database: if I query > the web

[Pharo-users] Pharo Catalog broken?

2016-06-06 Thread Tommaso Dal Sasso
Hello everybody, it looks like the pharo catalog has a problem with the database: if I query the web service, or browse the page http://catalog.pharo.org/, I get the following error. VOMongoError: Lazy reference not found CatalogRepository: OID(67173037322134959457277313026) Maybe some

Re: [Pharo-users] One comment to new Pharo5 debugger

2016-06-06 Thread Christophe Demarey
Hi Doru, I think most people understand the great value of moldable tools. Maybe not all will use moldability but is a big plus to have. So, keep pushing! I just think we miss time to make the GT Debugger dealt view as productive as the spec debugger. There are users that do not use shortcuts

[Pharo-users] Spur Cog vs VW

2016-06-06 Thread Gerry Weaver
Hi, I saw a post with the title "Spur Cog vs VW". Has anyone done this yet? Is there some code available somewhere that I could run? I have been searching on Google, but I haven't found much. A pointer in the right direction would be much appreciated. I'm really curious ;-) Thanks, -G

Re: [Pharo-users] OSProcess command with german umlaut does not work

2016-06-06 Thread Sabine Manaa
Hi Dave, I get the german ä with: (Character value: 228) asString Do you want me to go in it and suggest a solution or do you want to try to fix it and I test it? Thanks for helping! Regards Sabine 2016-06-05 23:08 GMT+02:00 David T. Lewis [via Smalltalk] <