[Pharo-users] Writing files - Mac OS or Pharo change?

2016-10-27 Thread Arturo Zambrano
Hi All, I'm porting (no big changes) code from pharo 4 to pharo5. In (*) the resulting file handle is nil. Not sure why, may it be something related to the recent Mac OS X upgrade to Sierra? The same code was working with Pharo 4 on El Capitan. The calling code is a Fuel serialization. open

Re: [Pharo-users] The Ultimate Smalltalk Tutorial

2016-10-27 Thread Dimitris Chloupis
Oups sorry I forgot to add that I managed to install it via Package browser, so maybe is a configuration issue On Thu, Oct 27, 2016 at 8:09 PM Offray Vladimir Luna Cárdenas < offray.l...@mutabit.com> wrote: > Dimitris, Ben and Phil, > > Thanks for your interest in Grafoscopio. I need to solve the

Re: [Pharo-users] The Ultimate Smalltalk Tutorial

2016-10-27 Thread Offray Vladimir Luna Cárdenas
Thanks Ben. Hopefully this experiences will find broader context to be talked about (may be TED, but also ESUG and others). Cheers, Offray On 27/10/16 12:00, Ben Coman wrote: On Thu, Oct 27, 2016 at 11:40 PM, Offray Vladimir Luna Cárdenas mailto:offray.l...@mutabit.com>> wrote: [2]

[Pharo-users] Pharo contribution Jenkins broken?

2016-10-27 Thread Johan Fabry
Hi all, it seems that something is wrong with https://ci.inria.fr/pharo-contribution/ It’s failing a bunch of jobs with by running no tests, e.g. https://ci.inria.fr/pharo-contribution/job/LiveRobotProgramming/ Can this be fixed please? -- Does this mail seem too brief? Sorry for that, I don’

Re: [Pharo-users] The Ultimate Smalltalk Tutorial

2016-10-27 Thread Offray Vladimir Luna Cárdenas
Dimitris, Ben and Phil, Thanks for your interest in Grafoscopio. I need to solve the issue with installation at least on Pharo 5. I don't know what is working wrong and need to understand better the ConfigurationOf stuff. Once I have it (soon) I will be back with news about installing or quest

Re: [Pharo-users] The Ultimate Smalltalk Tutorial

2016-10-27 Thread Dimitris Chloupis
Absolutely , I am enjoying calling the way I work "parasitic coding" mainly because I love to use/ take advantage/canibalize existing libraries, languages and applications. Grafoscopio, Pillar, existing ProfStef, Morphic , whatever can help me open a link in a web browser and anything else will be

Re: [Pharo-users] The Ultimate Smalltalk Tutorial

2016-10-27 Thread Ben Coman
On Thu, Oct 27, 2016 at 11:40 PM, Offray Vladimir Luna Cárdenas < offray.l...@mutabit.com> wrote: > > > [2] http://mutabit.com/offray/blog/en/entry/dumb-hello-world > > Great article. For some reason I get the idea that mixing it with your Data Week experiences would make a great TED talk. cheers

Re: [Pharo-users] The Ultimate Smalltalk Tutorial

2016-10-27 Thread Offray Vladimir Luna Cárdenas
Hi Dimitris, Goals 1 to 6 overlap with the ones Grafoscopio. Could you test it please to see if we can work together in some way or Grafoscopio could work as a foundation for your work? In that way we could break the lonely developer reality for this one. Cheers, Offray On 27/10/16 09:00,

Re: [Pharo-users] DatePrinter

2016-10-27 Thread Sven Van Caekenberghe
> On 27 Oct 2016, at 14:37, stepharo wrote: > > French is already in and there are so great class comments that I'm crying > because of outshined by beauty. Please, don't cry ;-) > Excellent job of sven as usual. Thx. The ZTimestamp package also contains ZTimestampFormat (a by-example prin

Re: [Pharo-users] DatePrinter

2016-10-27 Thread stepharo
French is already in and there are so great class comments that I'm crying because of outshined by beauty. Excellent job of sven as usual. french self monthNames: #( 'Janvier' 'Février' 'Mars' 'Avril' 'Mai' 'Juin' 'Juillet' 'Août' 'Septembre' 'Octobre' 'Novembre' 'Décembre'

Re: [Pharo-users] DatePrinter

2016-10-27 Thread Denis Kudriashov
2016-10-27 14:22 GMT+02:00 stepharo : > (ZTimestampFormat fromString: 'SAT, FEB 03 2001 (16:05:06)') > french > #french is your addition? or it was already supported?

Re: [Pharo-users] DatePrinter

2016-10-27 Thread stepharo
Thanks Denis This is really a great package. I will use it and throw away what I started. (ZTimestampFormat fromString: 'SAT, FEB 03 2001 (16:05:06)') format: ZTimestamp now. > THU, OCT 27 2016 (12:20:20) (ZTimestampFormat fromString: 'SAT, FEB 03 2001 (16:05:06)')

Re: [Pharo-users] DatePrinter

2016-10-27 Thread Denis Kudriashov
I would suggest to look at ZTimestamp https://github.com/svenvc/docs/blob/master/neo/ztimestamp.md. Maybe it is not exactly what you want. But example based date/time formatting and parsing are really nice 2016-10-27 13:20 GMT+02:00 stepharo : > Hi > > for a little project I need to print date in

[Pharo-users] [ALERT] Pharo by Example version 5 is about to be released

2016-10-27 Thread Dimitris Chloupis
In case someone missed it I will be doing a release for version 5 (pharo version = pbe version) this weekend , since we had Pharo 7 initiated few days ago. Essentially that means that the repo will be tagged for version 5, which means a git commit is associated as a last commit for that version an

[Pharo-users] DatePrinter

2016-10-27 Thread stepharo
Hi for a little project I need to print date in a nice way (for example french) and I wonder if someone already did that. Right now I'm extracting behavior from Date and putting it in its own class so that I can write testAPI | datePrinter | datePrinter := DatePrinter new. date