Almar Klein
Almar Klein
@Korijn commented on [Fri Sep 09 2016](https://github.com/flexxui/flexx/issues/201) To reduce JS size and increase page load times, you can use projects like UglifyJS to minify JS and let it output sourcemaps...
@almarklein commented on [Mon Nov 07 2016](https://github.com/flexxui/flexx/issues/259) It should be as easy as possible to tell a user what is supported by PyScript. Individual caveats like "`foo =bar or 3`...
@nathanielatom commented on [Sat Aug 26 2017](https://github.com/flexxui/flexx/issues/396) Firstly, I'd like to say thank you because PyScript is a wonderful package and has helped boost my productivity quite often. Observed behaviour:...
@almarklein commented on [Fri Sep 08 2017](https://github.com/flexxui/flexx/issues/399) This is sortof a spinoff from #377. If the transpiler knows all the types of the code, then generating the JavaScript for it...
Once the [site specific browser](https://www.maketecheasier.com/enable-site-specific-browser-firefox/) feature of FF rolls out, we may use that instead of XUL to launch apps with a Firefox runtime. (As suggested in #15)
If one wants to develop a desktop app, then having the two processes (Python process + webruntime) is annoying. Some issues: * You probably don't want to show a window...
Electron is nice, but it's heavy use of memory and multiple processes makes it less practical for small applications. Firefox is known to be much lighter in that respect. Some...
Chrome browser control that runs inside the Python process. Should make a few things simpler. https://github.com/cztomczak/cefpython
Some notes from discussions with Andrea Minuto: - Installation should be one step. - Avoid asking questions to the user; every question is a hurdle - "Take the tour" to...
Our materials (and a few other classes) have a lot of (settable) properties. We have made a point to make it possible to set each property at object instantiation, e.g....