Yiannis Marangos

Results 81 comments of Yiannis Marangos

I understand the need but I don't like replacing characters or use special encoding. The main reason is because I want it to be very close to the low level...

@LucioFranco Can you show an example on how do you use it?

@isaacd9 This solution is indeed awkward and has the following problems: * You can always have a typo in the url string. * If a `message` is renamed or moved...

@vbkaisetsu Correct me if I'm wrong, but shouldn't `type.googleapis.com/` always be the prefix in type url?

I trace the problem and this exist because `(window-width)` does not take into account linum-mode when you're in terminal. I believe this is a bug in linum.el or window.el.

In general I was wrong about the `File` being able to be used with mio, because regular files do not support asynchronous IO by the OS (unless if io-uring is...

tokio 0.2.2 added `spawn_local` API. Their implementation is interesting: https://docs.rs/tokio/0.2.2/tokio/task/struct.LocalSet.html Example: ```rust use std::rc::Rc; use tokio::task; let unsend_data = Rc::new("my unsend data..."); let mut rt = Runtime::new().unwrap(); // Construct a...