Uttarayan

Results 28 comments of Uttarayan

Oh I see. I'll try that. The 400 status code AFAIK is being sent by instagram. I think it's indicated in the their docs somewhere but I can't find it...

I seem to have found a workaround. ```rust #[derive(Debug, Insertable, Deserialize, JsonSchema)] #[serde(crate = "rocket::serde")] #[table_name = "contents"] pub struct InsertableContent { pub title: String, pub story: String, #[serde(deserialize_with =...

Definitely. I just added it here so that people can compile in the meantime.

> @PandaFoss Feel free to take a look around the code if you'd like to contribute, I cleaned it up and made it a lot more library-use friendly. > >...

I also wrote a crate to translate ansi color codes to tui::text::Text. ~~It doesn't have any dependency other that tui~~ It uses [nom](https://docs.rs/nom) parser to do the parsing. It also...

Hmm, I can't seem to compile it on windows now using master branch. Maybe I have some misconfigured msvc or something (prost-build's build script fails to build). I'll try on...

Thanks that fixed the compilation but now running on debug mode I got this. ![image](https://github.com/boxdot/gurk-rs/assets/18732700/e0ed5fb0-6719-4596-888b-b166e96ff016) Release mode runs but everyone of my keypresses are duplicated. Even backspace is duplicated ![image](https://github.com/boxdot/gurk-rs/assets/18732700/e7cf8b1c-d96c-4aba-9942-ff2e893c4d3f)

Thanks Also to confirm It works perfectly on both macos and linux.

I just checked out the pr. That does fix the double click issue. But now I can't seem to send a message ( atleast to self ) It was however...