Antonin Peronnet
Antonin Peronnet
I found the config that worked for me with nginx: ``` server { listen 80; location /ssh/ { proxy_pass http://localhost:8888/; proxy_set_header Host $http_host; proxy_read_timeout 300; proxy_set_header Upgrade $http_upgrade; proxy_set_header Connection...
Same here: it is a must ! It is a deal-breaker for me
@ChrisSimeon In fact, it is a duplicate of https://github.com/lynchjames/note-refactor-obsidian/issues/45 The issue is fixed now, but the thing is that there has not been any release from this point :disappointed: I...
Ok I finally understand ! This error made me waste so much time :-( If you use a cargo workspace, you can have a global `Cargo.lock` AND a `Cargo.lock` for...
I found this explanation very helpfull: https://xenaproject.wordpress.com/2018/03/24/no-confusion-over-no_confusion/
this would be very valuable for me too: I already extended this crate without forking it, but it's quite hacky: https://github.com/rambip/pulldown-cmark-wikilink And indeed, the difficulty seems to keep a good...
What if the library gave an error like "the `mg!(image(...))` macro can only be used for matrix images. Svg is a vector image, so use `mg!(file())` instead" ?
I know exactly where the error comes from. When I replace this line: https://github.com/DioxusLabs/collect-assets/blob/c585779eaf615900f1a76f332905988da3922573/common/src/package.rs#L13 By: ```rust std::fs::remove_dir_all(dir).unwrap(); ``` I get this new error:  That means that there is a...
I have the same issue I think termix found a way to do it: https://github.com/termux/termux-app/issues/130