LoveIsGrief

Results 81 comments of LoveIsGrief

I create a new note directory, made one page, made it public and exported to get this stack ``` VM119 renderer_init:57 Uncaught (in promise) Error: Error invoking remote method 'export-publish-assets':...

@logseq-cldwalker The directory is initially empty and I can write to it. Logseq just fills it with the logseq base files and my assets, but none of the pages. It...

I think you're right! https://github.com/NixOS/nixpkgs/blob/nixos-22.05/pkgs/applications/misc/logseq/default.nix#L40 The AppImage is extracted and wrapped. The resources are indeed read-only. A solution in LogSeq would be to recursively make the copied directory writable, then...

I think this is where you can make changeshttps://github.com/logseq/logseq/blob/223b62de28855d5ac6d82a330aa3c16ec1165272/src/electron/electron/core.cljs#L171 It copies the files and probably around there the permissions have to be adjusted.

Is there any interface to add this using a plugin in a different language or does this have to be done in C? I can't find whether Transmission can have...

This would be a great feature to have as even the python client isn't being updated due to lack of time by the maintainer. It need not be this was...

@trwnh what do you mean by "represent a variable for the thousands of mastodon servers"? Generated client libraries will be able to target whichever domain they want, if that's what...

It's [optional](https://spec.openapis.org/oas/v3.1.0#oasObject), but it shouldn't be difficult to fill for the instance running it. For the generator, it doesn't matter since the generated client allow people to target whoever they...

@trwnh It can be implemented as a simple endpoint e.g `/v1/openapi.json`. That endpoint can generate the spec on-demand or point to a file generated by a `rake` command. I don't...

How could this be implemented? Wouldn't it require evaluating the python code with an `from module import SomeClass` and generating a rust struct that's then imported into rust? Or would...