Grace Petryk

Results 4 comments of Grace Petryk

@Witko I'm also having this issue, where when I run the NVIDIA openbox and try to switch back to the Intel KDE, the Intel tty is just a black screen...

Ker might not be what you want. take a look at [Telemauchus](http://forum.kerbalspaceprogram.com/threads/24594-1-0-4-%282015-07-04%29-Telemachus-%E2%80%93-Telemetry-and-Flight-Control-in-the-Web-Browser)

It is pretty easy to get data from telemachus all you have to do (in python) is ``` python import httplib import json conn = httplib.HTTPConnection("localhost:8085") conn.request("GET", "/telemachus/datalink?altitude=v.altitude") altitude =...

There's a note in [PEP-544](https://peps.python.org/pep-0544/#merging-and-extending-protocols) about this that to me sounds like marking all the non-protocol `collection.abc` classes as ABCs in the stubs would be a good solution. I'll submit...