Jessica Hamilton
Jessica Hamilton
I'm seeing this with ssl_client as well... ``` jessica@homecloud:~$ ps -axl | grep defunct 0 0 1042 1941 20 0 0 0 - Z ? 0:00 [ssl_client] 0 0 1050...
Might be possible with the following Spotify endpoint: https://developer.spotify.com/documentation/web-api/reference/library/get-users-saved-tracks/. Will need a user-specific API key.
@dacowan do you know if your domain is Windows AD, or a Samba domain? I'm running into the exact same issue. My machine was previously working whilst joined to a...
Rejoining the Windows AD domain, and the permissions are now working, and the fsptool output is better: ``` O:S-1-5-21-95318837-410984162-318601546-611467G:DUD:P(A;;FA;;;S-1-5-21-95318837-410984162-318601546-611467)(A;;0x1201ef;;;DU)(A;;0x1200a9;;;WD) (perm=1660043:1049089:0775) ``` And `id S-1-5-21-95318837-410984162-318601546-611467` generating correct reverse lookup: ``` S-1-5-21-95318837-410984162-318601546-611467(MASSEY\jlhamilt)...
If it helps, this happened for me with discourse/base for a repro, but my machine is also memory constrained (4gig total)
I've created a docker-compose example for supporting RTMPS: https://github.com/jessicah/nginx-rtmp-stunnel Can probably use the env variables this container uses rather than specifying an nginx.conf file explicitly, but it was easier for...
I think the first step is getting the bootstrap process running well again. Probably the best way to do this is to use a container (e.g. docker) to run bootstrap...
It would also be useful for attributes like `areaStyle`.
It seems like perhaps MyST-Parser's `DocutilsRenderer` is the culprit, using a fixed list of renderers? See: https://github.com/executablebooks/MyST-Parser/blob/master/myst_parser/mdit_to_docutils/base.py#L102-L106 This might also explain what was going wrong in my WIP patch in...
Ohh, I see, it's because the overridden render methods produces docutils AST nodes, correct? And the plugins produce HTML strings, which is why all the currently supported plugins have their...