Hernán Morales Durand
                                            Hernán Morales Durand
                                        
                                    Instead of hardcoding PMGaussianGenerator it would be nice to have a configurable RNG randomGenerator method: ```smalltalk rows: rows columns: columns mean: mean standardDeviation: stdiv | a b | a :=...
Very interesting! I have not seen the code yet, but did you used http://rosettacode.org/wiki/Align_columns#Smalltalk to maybe allow different align options? Could this be used simply as: ```smalltalk df printString ```
Thanks for sharing @tinchodias. Without checking your version I wrote some bits too :) My version is inspired by the Ruby implementation, however Pharo 8 and 9 lack some methods...
@Ducasse the zip is similar in [Python](https://www.freecodecamp.org/news/the-zip-function-in-python-explained-with-examples/) and [Ruby](https://www.geeksforgeeks.org/ruby-array-zip-function/). For the simple case of Collections with the same size It would be like building a new collection with associations: ```smalltalk...
Thanks Milton. I tried and it works for Roassal3 canvas, however it doesn't work when the canvas is inside a Spec2 window, like for example a subclass of SpRoassalPresenter. I...
Hi Milton, Could you tell us a way to load Roassal 3 from a Baseline dependency to avoid the error "Instance of RSLabel did not understand #computeEncompassingRectangleFor:matrix:"? I tried with...
@akevalion I'm in the process of porting CORMAS to Pharo 10 so it will take a couple of days if the case it is reproducible. (AFAIK OpenPonk doesn't use Roassal...
It could be loaded by manually loading the Roassal 3 full version from the World menu, but it seems to be that the "full" group currently defined in the Baseline...
The MNU appears after opening a Roassal canvas in CORMAS (specifically the Space Interface). We have this in our Baseline: ```smalltalk spec baseline: 'Roassal3' with: [ spec repository: 'github://ObjectProfile/Roassal3'; loads:...
Thanks Dale! Yes, I remember the visualization, just wanted to check if it can be produced out of their box. Will try to use your script to see what I...