Gökçe Aydos

Results 49 comments of Gökçe Aydos

could be related to https://github.com/takluyver/bash_kernel/issues/107 try with ``` bind 'set enable-bracketed-paste off' ``` Does someone know why this problem exists in `bash_kernel`? [more info on bracketed paste](https://cirw.in/blog/bracketed-paste)

My impression is `--xml` tries to output correct XML — that is why xidel always outputs a correct header, even it outputs useless whitespace. That is what you mean with...

`--xml` should probably continue to output correct XML. If XML can also contain simple text, that would be an option, but it would not be consistent with Xidel's behavior when...

Thanks @ghost ! In my case it was sufficient to create `requirements.txt` with: ``` nbgrader==0.6.2 jupyter-client==6.1.12 ```

I can also confirm @kennytrytek-wf on `virtualenv`: > 1. nodeenv must be installed in the virtual environment you want to use. It cannot exist only in the base Python environment...

After trying the helpful workarounds I spent more time understanding what is happening in Firefox: - After installing the extension I activated logging in the extension settings. - I restarted...

If you are looking for another PEP8 linter: https://github.com/jupyter-lsp/jupyterlab-lsp

Thanks, currently I am not working with bwa-mem. I will still keep the issue open for the developers.

@sjev docs for `create_subscription()` can be found in: [ROS2 docs: node](http://docs.ros2.org/foxy/api/rclpy/api/node.html) and for setting QoS: [ROS2 docs: QoSProfile](http://docs.ros2.org/foxy/api/rclpy/api/qos.html#rclpy.qos.QoSProfile) ```python import rclpy from rclpy.node import Node from rclpy.qos import ReliabilityPolicy, QoSProfile...

I found a more typing-friendly solution than the long option in my last post: `rclpy.qos` has already predefined QoS profiles: https://github.com/ros2/rclpy/blob/02fc987029c01c87676933cffa50bafb1f5a6d59/rclpy/rclpy/qos.py#L417-L430 Here is a minimal example using `qos_profile_sensor_data`: ```py import...