C. Knoll

Results 42 comments of C. Knoll

I used a similar trick: ```python import ipykernel import re kernel_id = re.search('kernel-(.*).json', ipykernel.connect.get_connection_file()).group(1) ``` However, I think there should be a cleaner solution.

To add another use case: **education**. Students create and maintain their code in a repo and the supervisor wants to comment on specific lines of code. Usually their is no...