-
Notifications
You must be signed in to change notification settings - Fork 32
Meeting Notes
John Hu edited this page Apr 8, 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?
- How to host UI source code and production code?
- Recently changes discussion
- python
- ui