Ritvik Nag
Ritvik Nag
I'm using `cargo-zigbuild` and unable to cross-compile to a linux (**aarch64-unknown-linux-gnu**) target using a Windows 11 x64 machine. I've also confirmed that I get same error if I run `cargo...
* Cookiecutter version: 1.7.3 * Python version: 3.9 * Operating System: Mac OS Catalina (10.15.7) ### Description: I've been using Travis CI to run automated tests (only occasionally) for my...
Just curious. Basically, in the context of this line: https://github.com/kevinheavey/pyheck/blob/28fa3d995c73e4931421a361748a588ec1774ebf/Cargo.toml#L17 I'm not too sure about what the `unicode` feature is myself, reading up on it in the `heck` docs now....
I unable to get `asciinema-edit` (v0.0.6) to work on a Mac OS environment - can provide more details if needed. ```console cat ~/Downloads/483363.cast | \ asciinema-edit cut \ --start=0.0 --end=5.0...
using `NamedTuple` from the `typing` module don't seem to be supported. I also tried `collections.namedtuple` variant, but running into the same issue. **dataclasses-json version**: 0.5.5 example: ``` from collections import...
This might be a silly question, but I was wondering if it's possible to sort an input list of choices alphabetically using `sk` currently. for example: ```console echo 'abc\ntwo\none' |...
I want to create an empty branch but not connected to master (like orphan branch), where the first commit is unrelated to commits in master branch. These are the git...
I was surprised that this doesn't seem to be supported... In command line i can simply do: ``` git add ``` but in go-git I guess i would need to...
Currently i have been using : ``` // Check the remote commit history for a Git repository func repoHasRemoteCommits(r *git.Repository) bool { var hasRemoteCommits bool revision := "origin/master" _, err...
first of all, this is an excellent library, so thank you! I have found that when it works, it works really well. I'm currently running into an issue when calling...