-
Notifications
You must be signed in to change notification settings - Fork 33
Meeting Notes
John Hu edited this page Apr 7, 2017
·
14 revisions
Discussion items:
- What's the correct Python syntax?
- space
# Sample of space for { }
# 1. We should leave a space after { and before }. If we have double }}, we don't need to add extra space between two }}.
self.__send({ "type": "workerLost",
"dataValue": { "worker": self.uuid }})
- max characters of a single line: 80
# If a line is too long, we should wrap the line at separator or operator, like:
self.__send({ "type": "workerLost",
"dataValue": { "worker": self.uuid }})
a = veryveryveryveryveryveryveryveryverylong +
veryveryveryveryveryshort
- single quote or double quote: single quote
- python doc syntax:
- Who and how to implement unfinished features?
- ark mode ==> John Hu
- replication mode ==> Kilik Kuo
- all features should export parameters to ocl_ga options.
- How to host UI source code and production code?
- source code should be moved to another repo.
- production code should be in OpenCLGA repo.
- Recently changes discussion
- python
- ui