Uttarayan
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...
Fixes #41 and #40
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.  Release mode runs but everyone of my keypresses are duplicated. Even backspace is duplicated 
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...