[Pharo-users] Deprecation guide for methods, classes and packages

2018-09-21 Thread Torsten Bergmann
Hi, >From Bug #20900/ PR 1818 it looked like it is not really clear on how to >"deprecate" correctly. Therefore I summarized and wrote a short guide following what we contributors used as best practice so far. Also read [1], [2] and [3] and check some of the deprecation settings in the Pharo se

[Pharo-users] MIDI IO

2018-09-21 Thread Manuel Leuenberger
Hi, I am currently investigating how to work with audio in Pharo, especially how to hook up Pharo to my synths or DAW using MIDI. I found that there is an old MIDI plugin for the VM, but apparently it has been discontinued due to OS changes (http://forum.world.st/Mac-OS-Cocoa-MIDI-Plugin-td4893

Re: [Pharo-users] MIDI IO

2018-09-21 Thread Guillermo Polito
Hi Manuel, I don't know the state of the Midi Plugin, but for sure it would not be difficult to make some bindings to an existing library with uFFI. Check for example http://jedi.ks.uiuc.edu/~johns/projects/midid/ Guille On Fri, Sep 21, 2018 at 1:34 PM Manuel Leuenberger wrote: > Hi, > > I am

Re: [Pharo-users] TextEditor

2018-09-21 Thread Hilaire
Hello Hernán, Thanks to point Rubric which I did not know until now. Any doc/pointer about this new boy in town? What is the differences with the TextEditor? Can the text contains arbitrary Morph? I am exploring the idea of an infinite roll with text, code and morph. Hilaire Le 21/09/2018 à

Re: [Pharo-users] Deprecation guide for methods, classes and packages

2018-09-21 Thread brackendev
Torsten, this is extremely helpful, thank you. There's a new commit for PR 1818. I'd appreciate any additional feedback. -- Sent from: http://forum.world.st/Pharo-Smalltalk-Users-f1310670.html

Re: [Pharo-users] TextEditor

2018-09-21 Thread Peter Uhnak
Hi, depending on your use-case you might also consider Spec or Playground http://forum.world.st/Using-Playgrounds-as-a-notepad-tp4869129p4869227.html Peter On Fri, Sep 21, 2018 at 5:06 PM Hilaire wrote: > Hello Hernán, > > Thanks to point Rubric which I did not know until now. Any doc/pointer

[Pharo-users] What are the biggest myths about Smalltalk?

2018-09-21 Thread horrido
I published What are the biggest myths about Smalltalk? earlier this week. FYI, this person gave an account of his experience with Pharo

Re: [Pharo-users] TextEditor

2018-09-21 Thread serge . stinckwich
Sent from my iPhone > On 21 Sep 2018, at 16:05, Hilaire wrote: > > Hello Hernán, > > Thanks to point Rubric which I did not know until now. Any doc/pointer > about this new boy in town? > > What is the differences with the TextEditor? > > Can the text contains arbitrary Morph? > > I am ex

Re: [Pharo-users] A mentoring course ComplexCondition implementation

2018-09-21 Thread Andres Valloud
For a different take, check out the '::' chain syntax in Cuis. It's not exactly the same as complex conditions, but it accomplishes some of the same goals. For example, [a], [b], [c] ifAllTrue: [z] becomes [a] :: and: [b] :: and: [c]

Re: [Pharo-users] A mentoring course ComplexCondition implementation

2018-09-21 Thread Vitor Medina Cruz
Why? I found your take excelent. :) I was thinking of implementing it and put on a lib if it was not implemented anywhere yet. On Fri, Sep 21, 2018 at 1:36 PM Andres Valloud < avall...@smalltalk.comcastbiz.net> wrote: > For a different take, check out the '::' chain syntax in Cuis. It's not > e

Re: [Pharo-users] A mentoring course ComplexCondition implementation

2018-09-21 Thread Sean P. DeNigris
Vitor Medina Cruz wrote > I found your take excelent. :) +100 :) Vitor Medina Cruz wrote > I was thinking of implementing it and put on a lib if it was not > implemented anywhere yet. http://www.squeaksource.com/ComplexCondition.html I've used it before, but not recently. IIRC it worked fine.