some1and2
some1and2
This seems like more of an implementation issue than a library issue. This being said here is how I would approach this. 1. Get the newest commit. 2. Look for...
This would be cool but seems very hard
Hey, Its hard to make assumptions as you haven't given any error codes or anything that hasn't worked for you. I would imagine however that using [this section](https://docs.rs/git2/latest/git2/build/struct.RepoBuilder.html) from the...
Its pretty simple, this is the line where the example code finds your ssh keys. `std::path::Path::new(&format!("{}/.ssh/id_rsa", env::var("HOME").unwrap())),` Basically its looking at `~/.ssh/id_rsa` while you're initializing `~/.ssh/authorized_keys` to have your ssh...
Yeah, I was more so referring to errors in other sections of the application, specifically a long running application that does compression. I want to be able to recreate the...
Okay, sounds great! I'll see what I can do.
@sstadick sorry it took so long. I've had lots of other things to focus on. Here is a [link to the diff between my fork and the current repo](https://github.com/sstadick/gzp/compare/main...Some1and2-XC:gzp:main). I've...
@sstadick The idea is that you can start/stop compression jobs. I built a [proof-of-concept compression utility](https://github.com/Some1and2-XC/cancellable-compression) that you can ctrl+c half way through compression and continue from where you left...
> This looks like to be working as expected? > > The output is correct if the input is "color: red;". > > What are you expecting? The style name...
> Personal reminder for later: Might be a problem with the `Style` going out of scope and the component being called multiple times. I'm a bit hazy on the internal...