Re: [Pharo-users] Timespan translateToUTC problematic

2017-11-17 Thread Sven Van Caekenberghe
Hmm, in Pharo 7 I see this: TimeZone local. => a LocalTimeZone(LT1:00) { Date today. Date today translateToUTC. Month month: 6 year: 2015. (Month month: 6 year: 2015) translateToUTC } collect: [ :each | each printString -> each start ]. => an Array( '17 November 2017'->2017-11-17T00:00

Re: [Pharo-users] Pharo-Chrome (was: Soup bug(fix))

2017-11-17 Thread Stephane Ducasse
> > Well, in general the idea is to use the "upstream" project and not personal > forks. As far as I am aware of, I have merged all PR from Guille into > `master`. Ok so this is good > So unless he has recent commits that were not yet made available via a PR, > then my upstream project should be

Re: [Pharo-users] Pharo-Chrome (was: Soup bug(fix))

2017-11-17 Thread Guillermo Polito
Yes, everything is on official's Mariano repository. On Fri, Nov 17, 2017 at 10:29 AM, Stephane Ducasse wrote: > > > > Well, in general the idea is to use the "upstream" project and not > personal > > forks. As far as I am aware of, I have merged all PR from Guille into > > `master`. > > Ok so t

Re: [Pharo-users] Pharo 6.1-64 on Ubuntu 17.10 (Artful Aardvark)

2017-11-17 Thread Pavel Krivanek
https://github.com/pharo-project/pharo/pull/488 Thank you for reporting -- Pavel 2017-11-17 2:21 GMT+01:00 Richard A. O'Keefe : > The "Welcome to Pharo6.1" window has a navbar on > the left starting with "Welcome to Pharo 6.1" and > ending with "Getting Help". 3rd to last is > "Using Eternal P

Re: [Pharo-users] Timespan translateToUTC problematic

2017-11-17 Thread Prof. Andrew P. Black
> On 17 Nov 2017, at 08:49 , Peter Uhnák wrote: > > I find the concept of translating TZ of a Date silly. The real bug imho > should be that it prints both time and TZ this is Date, not DateAndTime. > I live in Oregon, and frequently work with people in New Zealand, which is (depending o

[Pharo-users] Catching EOF in SmaCC

2017-11-17 Thread Prof. Andrew P. Black
Is there a way, in SmaCC, or either - writing a grammar production that involves EOF (end of file) - or, writing a scanner action that is executed when EOF is read. Andrew

Re: [Pharo-users] Catching EOF in SmaCC

2017-11-17 Thread Thierry Goubier
Hi Andrew, there is an 'E O F' token generated by SmaCC; I haven't tried to use it in a parser yet. The second is used in the Python2 parser. See: https://github.com/ThierryGoubier/SmaCC/blob/master/SmaCC-Python.package/PythonScanner2.class/instance/scannerError.st Regards, Thierry Le 17/1

Re: [Pharo-users] Timespan translateToUTC problematic

2017-11-17 Thread Peter Uhnák
Because Date has, by definition, no concept of time. The only reason why you see it is because someone decided to save a bit of time and reuse implementation. If you want to move TZ, you need something that _has_ time. Such as DateAndTime. You can also read the comments ... Date > Instances of D

Re: [Pharo-users] Timespan translateToUTC problematic

2017-11-17 Thread Sven Van Caekenberghe
Both interpretation are correct and valid, it is just hard to capture them with one class. In normal human conversation and in the abstract, of course a date is just a year/month/date triple. But that is because most people only look at this from their own perspective. However, from an internat

Re: [Pharo-users] Network data exchange - Basys and Seamless usage questioning

2017-11-17 Thread henry
From my years of Squeaking, I only ever us Monticello Browser. As one new to our using github, Metacello and Pharo, could you explain how I would load Seamless? I think it is a Metacello command. I am very interested in seeing how it runs on ParrotTalk and thought I would explore this system. T

Re: [Pharo-users] Network data exchange - Basys and Seamless usage questioning

2017-11-17 Thread Denis Kudriashov
Hi, Henry. Just follow instructions on github page. Do you have any problem with them? (I ask because you probably noticed it). Also look at main application built on top of Seamless: TelePharo project https://github.com/dionisiydk/TelePharo, http://dionisiydk.blogspot.fr/2017/08/pharmide-is-rena

[Pharo-users] Using PharoCloud: 500 Internal Server Error (nginx)

2017-11-17 Thread Juraj Kubelka
Hi! I am playing for the first time with PharoCloud. I do the following steps: - download Pharo 6 image - open the image and execute `ZnServer startDefaultOn: 8080` - tests http://localhost:8080 (I see Zinc welcome message) - save and quit the image and compress the ima

Re: [Pharo-users] Network data exchange - Basys and Seamless usage questioning

2017-11-17 Thread henry
I did have trouble I just learned. I jumped into the full documentation and forgot to go back. The very next line answers my question! Sorry to waste your time .. Sent from ProtonMail Mobile On Fri, Nov 17, 2017 at 09:37, Denis Kudriashov wrote: > Hi, Henry. > > Just follow instructions on gi

Re: [Pharo-users] Anybody in this group in Bangalore or India

2017-11-17 Thread Stephane Ducasse
OKI On Thu, Nov 16, 2017 at 6:01 PM, Sanjay Minni wrote: > Thanks, > > I will reach out, > Will request for a post in the blog when I have got something up > > Sanjay > > > Stephane Ducasse-3 wrote >> Thanks for the information. Let us know how to help you. >> Do you want me to post this on the

Re: [Pharo-users] Network data exchange - Basys and Seamless usage questioning

2017-11-17 Thread Cédrick Béler
> > Have you seen ParrotTalk? > > http://www.squeaksource.com/Cryptography/ParrotTalk-HenryHouse.14.mcz > Nope. Seen it but didn’t try. I will. Cheers, Cédrick

Re: [Pharo-users] Network data exchange - Basys and Seamless usage questioning

2017-11-17 Thread Cédrick Béler
> > Lets say image A1, A2, A3 belongs to Alice. And image B1, B2, … to Bob. > > They exchange messages conveying information. So the aim of the network layer > is for me to keep messages synchronized betweens A(s) and B(s). I have inbox > and outbox for that. This is actually quite close to th

Re: [Pharo-users] Pharo-Chrome (was: Soup bug(fix))

2017-11-17 Thread Alistair Grant
An updated version is available including: * The fix for spaces in the executable name mentioned below. * Support for Chrome headless mode. * Improved screenshot capture (it now captures the entire page, see the README) * Extended documentation (README.md) Cheers, Alistair On 16 November 2017 a

Re: [Pharo-users] Catching EOF in SmaCC

2017-11-17 Thread Prof. Andrew P. Black
> On 17 Nov 2017, at 14:10 , Thierry Goubier wrote: > > > there is an 'E O F' token generated by SmaCC; I haven't tried to use it in a > parser yet. I tried patching the tokenActions table to trap on this, but the token id for E O F is outside of the range of the table. The Python example

Re: [Pharo-users] Catching EOF in SmaCC

2017-11-17 Thread Thierry Goubier
Hi Andrew, Le 17/11/2017 à 12:26, Prof. Andrew P. Black a écrit : On 17 Nov 2017, at 14:10 , Thierry Goubier wrote: there is an 'E O F' token generated by SmaCC; I haven't tried to use it in a parser yet. I tried patching the tokenActions table to trap on this, but the token id for E O

Re: [Pharo-users] New Pharo article at The Cohort

2017-11-17 Thread horrido
I appreciate all the feedback, even the negative comments. Let me address some of them... First of all, you need to understand that this article, like nearly all of my other articles, is about /marketing/. I've never made any bones about this. If you know anything about marketing, you know that i

Re: [Pharo-users] New Pharo article at The Cohort

2017-11-17 Thread Ben Coman
I'm not going to ask you to stop writing. I think its difficult to get the balance right, and I think you are improving every time. But there are some points to consider... On 18 November 2017 at 11:55, horrido wrote: > I appreciate all the feedback, even the negative comments. Let me address >