shouya

Results 59 comments of shouya

> So I have to clone the fields in the implementation To avoid cloning, you can look into `Option::take` as well as `Vec::split_off`.

Alternatively, instead of storing the `Span`, it's also possible to store the `Path` in its original form. Then one can use `Error::new_spanned` on the `Path` to create an error message...

@mystica555 I stumbled across the same solution earlier. However, I'm using Debian, which does not have systemd compiled with the flag. And I'm not that interested in swapping out a...

I very much agree that Tailscale should offer this option to allow specifying a set of interfaces or subnets on which to perform discovery. I don't think this feature is...

Hi @raxod502, thanks for the fix. I've been using the fixed version for more than a week. So far the same problem still appears though probably less frequently. I can...

I just filed a small fix (#58) to the elixir 1.14 with otp-24 image, which may be related to this issue.

Here's a simple example to demonstrate the case: ```rust bot = Api::new("something").unwrap() let s = futures::stream::unfold((), move |init_n| { bot.send(requests::SendMessage::new(ChatId::new(42), "foo")) .map(|msg| (msg.id.into(), ())) }); ``` This piece of code...

I will consider a dark mode after the UI rewrite. The current UI code was written as a poc without considering much maintainability. I am planning to rewrite it fully...

Sure, let me think about how to do it. For the time being, have you tried modifying the resulting feed with `modify_feed`? Here's an example (suppose your feed format is...

As I did more research on the topic, I found that the feed image isn't the same as the feed icon. It turns out there is no standard in how...