Oleksandr Zaitsev
Oleksandr Zaitsev
Example to reproduce ```Smalltalk presenter := SpPresenter new. presenter application: (app := SpApplication new). presenter layout: (SpBoxLayout newTopToBottom add: (label := presenter newLabel); yourself). label label: 'Hello Moose people!'. label...
This gets parsed ``` {{{ Some LaTeX code }}} ``` But this does not ``` {{{ Some LaTeX code :) }}} ``` Maybe there is some way of escaping the...
I understand that this is a very tricky topic and handling math in Pillar is not easy (especially because we don't know how to compile it to HTML). And I...
At this moment, README.md instructs you to ``` git checkout v7.4.1 ``` That version has several issues: 1. It loads the 32-bit VM which doesn't work on new MacOS Catalina...
We create a new instance of `CMPointOfView` every time we call one of the `pov` methods: ```st ECECVegetationUnit >> povBiomass ^ CMPointOfView color: (self colorAttribute: #biomass min: 0 max: self...
It's very hard to understand the logic of this method. First of all, better variable names should be used. Then, it's also possible that the implementation can be simplified and...
We have a button _"Save to Excel"_ which currently does nothing. When clicked, it should open a file dialog and save the data to a specified file. To do that,...