iTUTOR

Results 4 issues of iTUTOR

Add plugins Select All and Select None Button for handy selection :) ![image](https://user-images.githubusercontent.com/5821937/138263607-6a3921ef-5d69-41a7-b07f-ea8d2663f21e.png)

After parsing for a while at 5Hz, I found that after a short period of time the node console was shown these errors. 944243 ms: Mark-sweep 1378.5 (1435.0) -> 1378.5...

Fix by getting the attribute which not begin with "_" as the result - Fixes 209:

while I've been working with custom action client I found that in function to_string (in "action_client.py") https://github.com/ros/actionlib/blob/noetic-devel/actionlib/src/actionlib/action_client.py#L64 ```python def get_name_of_constant(C, n): for k, v in C.__dict__.items(): if isinstance(v, int) and...