Re: [Pharo-users] Pharo IDE - change mouse cursor color/size

2018-01-29 Thread Animosity
VistaCursors worked great on windows. It also led me to the discovery of the Cursor class, the different cursor types (normal, resizing, etc.) and masks. Thank you for your help. PS: I also found out how to register custom settings to be added to the Settings dialog. That will come in handy at

Re: [Pharo-users] Pharo IDE - change mouse cursor color/size

2018-01-29 Thread p...@highoctane.be
I can relate to that. Phil On Jan 29, 2018 21:17, "Stephane Ducasse" wrote: > Hi phil > > Yes we want to kill all the VM logic related to events because IT GETS > ON OUR NERVES. > Kill them all. Esteban told me that he is super upset by all the event > / screen logic

Re: [Pharo-users] Problem with Traditional and Simplified Chinese parsing in Pharo

2018-01-29 Thread Guillermo Polito
Are you sure that the file is encoded in utf8? Can you try stream := ZnCharacterReadStream on: (File named: '...') readStream encoding: 'utf8'. stream upToEnd. ? If that does not work, it could mean that the file is in another encoding... 2018-01-29 18:49 GMT+01:00 Clément Bera

Re: [Pharo-users] Problem with Traditional and Simplified Chinese parsing in Pharo

2018-01-29 Thread Sven Van Caekenberghe
Your file is not in UTF-8 but in UTF-16 ! This will do: (FileLocator desktop / 'schinese.txt') readStreamDo: [ :in | (ZnCharacterReadStream on: in binary encoding: #utf16) upToEnd ]. BTW, this is not valid JSON. From Windows, for sure ... > On 29 Jan 2018, at 18:49, Clément Bera

Re: [Pharo-users] Pharo IDE - change mouse cursor color/size

2018-01-29 Thread Stephane Ducasse
Hi phil Yes we want to kill all the VM logic related to events because IT GETS ON OUR NERVES. Kill them all. Esteban told me that he is super upset by all the event / screen logic and that he is looking at ronie' changes. Stef On Mon, Jan 29, 2018 at 8:10 AM, p...@highoctane.be

[Pharo-users] Regex: copy with ignoreCase

2018-01-29 Thread Herbert Vojčík
Hi! String >> #asRegex return an instance of RxMatcher, as I tried. Now, I would like to get an object that behaves exactly as the one I got from asRegex, just that it ignores case (regardless whether it did or didn't in the original object). I understand it is not possible to get that

Re: [Pharo-users] Regex: copy with ignoreCase

2018-01-29 Thread Julien
Hello, Maybe what you’re looking for is String>>#asRegexIgnoringCase ? 'a+' asRegexIgnoringCase matches: ''. "true" 'a+' asRegexIgnoringCase matches: ''. "true" Cheers, Julien --- Julien Delplanque Doctorant à l’Université de Lille 1 http://juliendelplanque.be/phd.html Equipe Rmod,

Re: [Pharo-users] Regex: copy with ignoreCase

2018-01-29 Thread Herbert Vojčík
Julien wrote: Hello, Maybe what you’re looking for is String>>#asRegexIgnoringCase ? No, I am looking at what I described (#copyWithIgnoreCase). 'a+' asRegexIgnoringCase matches: ''. "true" 'a+' asRegexIgnoringCase matches: ''. "true" Cheers, Julien --- Julien Delplanque

Re: [Pharo-users] Sending notifications from Pharo to your Mobile via Pushover.net

2018-01-29 Thread Sven Van Caekenberghe
> On 29 Jan 2018, at 21:04, Stephane Ducasse wrote: > > Cool sven > Is is a problem that you send you token/user around? > Can I publish it on pharo weekly like that? These are not my real key ;-) > Stef > > On Mon, Jan 29, 2018 at 8:40 PM, Sven Van Caekenberghe

Re: [Pharo-users] Sending notifications from Pharo to your Mobile via Pushover.net

2018-01-29 Thread Sven Van Caekenberghe
> On 29 Jan 2018, at 21:34, Esteban A. Maringolo wrote: > > What is the difference between Pushover and other similar services? Do you > need a Pushover client in the phone to handle such notifications? Yes, you need to install their client, which then acts as a generic

Re: [Pharo-users] Sending notifications from Pharo to your Mobile via Pushover.net

2018-01-29 Thread Torsten Bergmann
If you need more than just a simple push notification you can try Discord to send text, pictures, ... into own discord server and channels. Or work with Bots. Code is here https://github.com/JurajKubelka/DiscordSt and techtalk video here:

Re: [Pharo-users] Pharo IDE - change mouse cursor color/size

2018-01-29 Thread Torsten Bergmann
@Phil: Maybe because I wrote the package back when I was on "Vista" and you should not use on Linux ;) To be serious: Yes - changing the cursor in Linux never worked (for me). And the windows VM had large cursor introduced as "experimental" in 2009:

Re: [Pharo-users] Pharo IDE - change mouse cursor color/size

2018-01-29 Thread Sven Van Caekenberghe
Repeat [ More on the image side where we can all see it and work on it in a proper language, with proper design, using proper tools ] > On 29 Jan 2018, at 21:17, Stephane Ducasse wrote: > > Hi phil > > Yes we want to kill all the VM logic related to events because IT

Re: [Pharo-users] Problem with Traditional and Simplified Chinese parsing in Pharo

2018-01-29 Thread Clément Béra
Thanks all, Sven solution works. Yes this is not JSON it's some kind of JSON-like format (Is it yml ? I don't know it might be proprietary). I was naive and thought there was some metadata in files precising the encoding used, and that #readStream on FileReference was able to pick automatically

Re: [Pharo-users] Sending notifications from Pharo to your Mobile via Pushover.net

2018-01-29 Thread Todd Blanchard
Based on the icon and my mobile dev experience ... Either you need the Pushover app (hence the 'P' icon) to get a push notification or you can make your mobile app the recipient of the push notification (like UrbanAirship does) by including a library in your mobile app. For SMS I generally use

Re: [Pharo-users] Problem with Traditional and Simplified Chinese parsing in Pharo

2018-01-29 Thread Cyril Ferlicot D.
Le 29/01/2018 à 18:49, Clément Bera a écrit : > Hi, > > I am currently parsing lua and JSON-like file in Pharo. They contain > both Simplified and Traditional Chinese characters for comments and for > strings displayed in the UI. Lua files are parsed correctly. However the > JSON-like files

Re: [Pharo-users] Iceberg and resource files

2018-01-29 Thread Stephane Ducasse
Guille shows me a filesystem git accessed and browsed from Pharo. Soon to be public. On Mon, Jan 29, 2018 at 10:14 AM, Christophe Demarey wrote: > Hi Ken, > >> Le 27 janv. 2018 à 15:38, kmo a écrit : >> >> I don't understand how iceberg handles

[Pharo-users] Problem with Traditional and Simplified Chinese parsing in Pharo

2018-01-29 Thread Clément Bera
Hi, I am currently parsing lua and JSON-like file in Pharo. They contain both Simplified and Traditional Chinese characters for comments and for strings displayed in the UI. Lua files are parsed correctly. However the JSON-like files aren't. In attachment I put one of the problematic file with

Re: [Pharo-users] Iceberg and resource files

2018-01-29 Thread Christophe Demarey
Hi Ken, > Le 27 janv. 2018 à 15:38, kmo a écrit : > > I don't understand how iceberg handles resource files that you might also > like to version along with the pharo code. For now, Iceberg do not really handle these files but it is planned in a next future. > Say I have an

[Pharo-users] [JOB][PhD] Infrastructure and Language Kernels for IoT Systems

2018-01-29 Thread Marcus Denker
[JOB][PhD] Infrastructure and Language Kernels for IoT Systems The RMOD team of INRIA Lille and the CAR theme of IMT Lille Douai have an open position for a PhD student on Infrastructure and language kernels for IoT Systems. Description == Over the last years, the RMOD team of INRIA

Re: [Pharo-users] Download pillar image -> Error 403: Forbidden

2018-01-29 Thread Guillermo Polito
On Sun, Jan 28, 2018 at 8:51 AM, Hernán Morales Durand < hernan.mora...@gmail.com> wrote: > Hi Stef, > > 2018-01-28 4:15 GMT-03:00 Stephane Ducasse : > > Ok I see. I think that I never tried this version of Pillar on windows. > > And I hate make because it is impossible

Re: [Pharo-users] Download pillar image -> Error 403: Forbidden

2018-01-29 Thread Guillermo Polito
On Mon, Jan 29, 2018 at 6:52 AM, Hernán Morales Durand < hernan.mora...@gmail.com> wrote: > 2018-01-28 18:55 GMT-03:00 Stephane Ducasse : > > Hernan > > > > what we can also do is the following: I set up the pillar project on > > github with travis and bintray and when

Re: [Pharo-users] P3 library - setting database in url?

2018-01-29 Thread Sven Van Caekenberghe
Ben, > On 29 Jan 2018, at 15:27, Ben Coman wrote: > > Hi Sven, > > I'm using your P3 library >https://github.com/svenvc/P3 > > to connect to TimescaleDB set up like this tutorial... >http://docs.timescale.com/v0.8/tutorials/tutorial-hello-nyc Cool. > but the

Re: [Pharo-users] P3 library - setting database in url?

2018-01-29 Thread Sven Van Caekenberghe
> On 29 Jan 2018, at 15:45, Ben Coman wrote: > > On 29 January 2018 at 22:40, Ben Coman wrote: >> On 29 January 2018 at 22:32, Sven Van Caekenberghe wrote: >>> Ben, >>> On 29 Jan 2018, at 15:27, Ben Coman

[Pharo-users] P3 library - setting database in url?

2018-01-29 Thread Ben Coman
Hi Sven, I'm using your P3 library https://github.com/svenvc/P3 to connect to TimescaleDB set up like this tutorial... http://docs.timescale.com/v0.8/tutorials/tutorial-hello-nyc but the following doesn't work unless I un-comment the second line... (P3Client new url:

Re: [Pharo-users] P3 library - setting database in url?

2018-01-29 Thread Ben Coman
On 29 January 2018 at 22:32, Sven Van Caekenberghe wrote: > Ben, > >> On 29 Jan 2018, at 15:27, Ben Coman wrote: >> >> Hi Sven, >> >> I'm using your P3 library >>https://github.com/svenvc/P3 >> >> to connect to TimescaleDB set up like this tutorial... >>

Re: [Pharo-users] P3 library - setting database in url?

2018-01-29 Thread Ben Coman
On 29 January 2018 at 22:40, Ben Coman wrote: > On 29 January 2018 at 22:32, Sven Van Caekenberghe wrote: >> Ben, >> >>> On 29 Jan 2018, at 15:27, Ben Coman wrote: >>> >>> Hi Sven, >>> >>> I'm using your P3 library >>>

Re: [Pharo-users] New booklets organisation and new booklet

2018-01-29 Thread Stephane Ducasse
Now I wonder if it makes sense to have all the docs of drGeo here. I can do it but I'm thinking about it. May be I could create another category. I "read" your handbook and I do not think that it should be listed among the pharo books. Now what I would love to have is a handbook: Pharo for the

Re: [Pharo-users] Pharo IDE - change mouse cursor color/size

2018-01-29 Thread p...@highoctane.be
On Tue, Jan 30, 2018 at 12:12 AM, Torsten Bergmann wrote: > @Phil: Maybe because I wrote the package back when I was on "Vista" and > you should not >use on Linux ;) > > :-p Cursor>>beCursor with Cursor being a Form makes a lot of sense on any platform. On this age of

Re: [Pharo-users] Pharo IDE - change mouse cursor color/size

2018-01-29 Thread Norbert Hartl
> Am 30.01.2018 um 08:26 schrieb "p...@highoctane.be" : > > > >> On Tue, Jan 30, 2018 at 12:12 AM, Torsten Bergmann wrote: >> @Phil: Maybe because I wrote the package back when I was on "Vista" and you >> should not >>use on Linux ;) >> > :-p >