Ulisse Mini

Results 9 comments of Ulisse Mini

> Here testing a Vento 1.0.27, both GPT or MBR formated, with or without SecureBoot enabled on an updated (Catalina 10.15.7 firmware) MacbookPro11,3: Same problem verified, using different images I...

@diamondburned If you don't specify a field then it will be set to its zero value, exactly what we want. for example, not specifying the `Bot` field would leave it...

I agree with @bwmarrin, it would also make the API much simpler, something like ```go func New(token string) (*Session, error) ``` would be desirable

I had the same issue and I'm using @rebpdx's solution in my fork, I think this should get fixed with the hack unless we need the data (which seems unlikely,...

`/dev/shm` is always a ramdisk on linux

Just to add an example solution with `WebSocketEndpoint` (starlette) for people who find this via ~~google~~ duckduckgo I'm relaying all messages on an `asyncio.Queue` to a connected client ```py class...

I'm not using this project, but I get the crash immediately when there's a port conflict (I run two servers on the same host). Fixed it by making the ports...

I had the same problem, changing ```py data = await response.data.read() return json.loads(json.dumps(data)) ``` to ```py data = await response.content() return json.loads(data.decode('utf-8')) ``` [Here](https://github.com/googleapis/google-auth-library-python/blob/main/google/oauth2/_id_token_async.py#L96) fixes it, this is because `auth/transport/_aiohttp_requests.py`'s...

I don't know how/can't add labels so can someone add the feature/idea/proposal label? also i'm sorry if this is a silly idea! i just thought it might be nice for...