Re: [Pharo-users] ZnURL and parsing URL with diacritics

2019-03-23 Thread PBKResearch
I recall seeing this trick when Sven published it, but I have never tried it. Trying it now, I get strange results. I entered: 'https://fr.wiktionary.org/wiki/péripétie' asFileReference asUrl. And when I inspect the result, it is the address of a non-existent file in my image directory. I am usin

[Pharo-users] How cn I improve this code

2019-03-23 Thread Roelof Wobben
Hello, As a challenge I had to write some code that makes ranks from a competition. Im still busy trying to find out how to model this problem. Right now I have made the code I included and I wonder how I can improve this code before I go on with this way. Roelof Object subclass: #Team

[Pharo-users] [CfP] DLS 2019 - 15th Dynamic Languages Symposium, co-located with SPLASH 2019

2019-03-23 Thread Nick Papoylias
Call for Papers DLS 2019 - 15th Dynamic Languages Symposium Co-located with SPLASH 2019, October 22, Athens, Greece https://conf.researchr.org/home/dls-2019

[Pharo-users] FFI to UFFI

2019-03-23 Thread Tomaž Turk
I started to play with ODBC package upgrade from Pharo 4.0 to 7.0 (http://smalltalkhub.com/mc/PharoExtras/ODBC), more or less as an exercise. As a smalltalk novice I stubmled to the challenge of, as it seems, an old FFI syntax. When I try to load the package into Pharo 7.02 on Windows, I get th

[Pharo-users] Text presenter autosave features

2019-03-23 Thread Offray Vladimir Luna Cárdenas
Hi, While migrating Grafoscopio from Pharo 6.x to Pharo 7.x., I noticed that auto save for text fields is not enabled. Previously, when I wrote something in a text field, the dirty mark in the upper right corner appeared and if autoAccept was enabled, the text was automatically saved. Now wit

Re: [Pharo-users] ZnURL and parsing URL with diacritics

2019-03-23 Thread Sean P. DeNigris
Peter Kenny wrote > And when I inspect the result, it is the address of a non-existent file in > my image directory. Ah, no. I see the same result. By "worked" I meant that it created a URL that safari accepted, but I see now it's not the same as correctly parsing it. Peter Kenny wrote > Inciden

Re: [Pharo-users] How cn I improve this code

2019-03-23 Thread Sean P. DeNigris
Roelof Wobben wrote > how I can improve > this code before I go on with this way. You might get better feedback hosting the code somewhere. Ideally on GH or similar with a load script. - Cheers, Sean -- Sent from: http://forum.world.st/Pharo-Smalltalk-Users-f1310670.html

Re: [Pharo-users] ZnURL and parsing URL with diacritics

2019-03-23 Thread Sven Van Caekenberghe
> On 23 Mar 2019, at 20:53, Sean P. DeNigris wrote: > > Peter Kenny wrote >> And when I inspect the result, it is the address of a non-existent file in >> my image directory. > > Ah, no. I see the same result. By "worked" I meant that it created a URL > that safari accepted, but I see now it'

[Pharo-users] eval from the linux commandline

2019-03-23 Thread test email
i need to eval an object from my linux commandline. I understand that clap-st is able to do this, but I can't seem to import it into pharo7, I suppose because of compatability reasons. Someone sent me this, but I can't seem to replicate the help screen. Is it because I'm on linux and he's on mac?

Re: [Pharo-users] FFI to UFFI

2019-03-23 Thread Pierce Ng
On Sat, Mar 23, 2019 at 05:22:32PM +, Tomaž Turk wrote: > - Is there any elegant way to successfuly load the package into Pharo 7 to > get started with the code adaptation? Elegantly, dunno. Manually, open Monticello browser, right click on the repo (if you have loaded the ConfigOf then the

Re: [Pharo-users] FFI to UFFI

2019-03-23 Thread Esteban Lorenzano
Hi, One way: 1) load the old compiler from here: https://github.com/pharo-project/OldCompiler 2) Activate it: SmalltalkImage compilerClass: Compiler. 3) load ODBC 4) restore OpalCompiler SmalltalkImage compilerClass: OpalCompiler. This *shou