Re: [Pharo-users] Smalltalk Security Landscape - survey for ESUG 2018

2018-08-13 Thread Ben Coman
On 14 August 2018 at 01:50, Jerry Kott wrote: > Dear Smalltalkers and friends, > > I am planning to have a presentation titled ‘Smalltalk Security Landscape’ > at this year’s ESUG conference. In my presentation I hope to increase > cybersecurity awareness within the Smalltalk community and help s

[Pharo-users] Smalltalk Security Landscape - survey for ESUG 2018

2018-08-13 Thread Jerry Kott
Dear Smalltalkers and friends, I am planning to have a presentation titled ‘Smalltalk Security Landscape’ at this year’s ESUG conference. In my presentation I hope to increase cybersecurity awareness within the Smalltalk community and help shape the evolution of the language and its ecosystem.

Re: [Pharo-users] code completion - order classes suggested by match then package reference count?

2018-08-13 Thread Sean P. DeNigris
Paul DeBruicker wrote > I'm using the default E completion if it matters. I thought this was the very issue o-completion solves - Cheers, Sean -- Sent from: http://forum.world.st/Pharo-Smalltalk-Users-f1310670.html

[Pharo-users] code completion - order classes suggested by match then package reference count?

2018-08-13 Thread PAUL DEBRUICKER
Hi - When I want to use an OrderedCollection in Pharo 6.1 the code completion has me write "Ordere" before it is the one selected. If I have ever used an OrderPreservingDictionary (which comes up first) I've forgotten, but daily use OrderedCollections. Is there a way now to change the sort

Re: [Pharo-users] Jupyter notebooks / Dynabook / JupyterTalk

2018-08-13 Thread Jesús Marí
That worked for me Metacello new baseline: 'JupyterTalk'; repository: 'github://jmari/JupyterTalk:master/repository'; load:'all' I will correct the github readme page. -- Sent from: http://forum.world.st/Pharo-Smalltalk-Users-f1310670.html

Re: [Pharo-users] Jupyter notebooks / Dynabook / JupyterTalk

2018-08-13 Thread Jesús Marí
I found it...you just have to add the subdirectory to the repository path Metacello new baseline: 'JupyterTalk'; repository: 'github://jmari/JupyterTalk/repository/'; load:#all -- Sent from: http://forum.world.st/Pharo-Smalltalk-Users-f1310670.html

Re: [Pharo-users] Jupyter notebooks / Dynabook / JupyterTalk

2018-08-13 Thread Jesús Marí
Hi Hannes, I did not find a nice way to solve the problem but you will be able to load jupytertalk following these simple steps: - Try to load it executing Metacello new baseline: 'JupyterTalk'; repository: 'github://jmari/JupyterTalk'; load:'all' - It will fail...open Ice

Re: [Pharo-users] Deprecation rewrite introduces infinite recursion… how to prevent that?

2018-08-13 Thread Damien Pollet
Turns out it was pretty easy to implement: https://github.com/pharo-project/pharo/pull/1683 On Sat, 11 Aug 2018 at 15:59, Damien Pollet wrote: > I have a double-dispatch chain: > x generic: y → y firstDispatch: x → x secondDispatchFromY: y > > However this has been added after the fact, so there

Re: [Pharo-users] mustache bug?

2018-08-13 Thread Norbert Hartl
Hmmm. To easy for me to figure out :) https://github.com/noha/mustache/issues/2 Norbert > Am 13.08.2018 um 14:06 schrieb Sven Van Caekenberghe : > > > >> On 13 Aug 2018, at 13:59, Norbert Hartl wrote: >> >> Where did you read this about the pare

Re: [Pharo-users] mustache bug?

2018-08-13 Thread Sven Van Caekenberghe
> On 13 Aug 2018, at 13:59, Norbert Hartl wrote: > > Where did you read this about the parent context? Maybe I’m blind to see it. > That would explain why I didn’t see it when implementing it :) Search for parent in http://mustache.github.io/mustache.5.html Variables The most basic tag type

Re: [Pharo-users] mustache bug?

2018-08-13 Thread Norbert Hartl
Where did you read this about the parent context? Maybe I’m blind to see it. That would explain why I didn’t see it when implementing it :) Norbert > Am 13.08.2018 um 10:24 schrieb Peter Uhnák : > > Hi, > > I'm using Mustache for Pharo, and according to mustache docs ( > https://mustache.gith

[Pharo-users] mustache bug?

2018-08-13 Thread Peter Uhnák
Hi, I'm using Mustache for Pharo, and according to mustache docs ( https://mustache.github.io/mustache.5.html ), when a key is not found, it should look into parents contexts. However that does not seem to be the case: str := '{{root}} {{#items}} {{root}}.{{name}} {{/items}}'. data := { 'root'