Raul E Rangel
Raul E Rangel
It would be nice to have this GPL2 or BSD licensed. This way it could be included in other projects.
Get the list of commits before detaching. This allows: git test-sequence --force @{u}.. ./test-build.sh I switched the script to bash so we could use arrays. I also moved the detach...
I'm trying to edit the contents of a volume, but I need uid = 100 and gid = nobody It would be nice if the container somehow respected docker run...
Samba uses the avahi-client/D-Bus to [announce](https://github.com/samba-team/samba/blob/09effcb53a97a935f3281a6c770f3608bc21f992/source3/smbd/avahi_register.c#L142) to `avahi` that a the server is available. WSDD currently relies on the `rc` system to ensure samba is started before `wsdd`. `wsdd` could...
I normally start my tmux server with a script because I don't have a .tmux.config. i.e., tmux set -g @plugin 'tmux-plugins/tmux-resurrect' \; ... This change makes it so that `@plugin`...
[Gerrit](https://www.gerritcodereview.com/) is a self hosted code review system. It offers an alternative to GitHub/Gitlab hosting. It would be great if `Package Control` could have first class support for Gerrit. It...
https://github.com/SublimeText/CTags/blob/development/ctagsplugin.py#L590 causes the `NavigateToDefinition` command to not run. Ideally `get_alternate_tags_paths` would loop over setting('tag_file') + setting('extra_tag_files') calling `find_tags_relative_to`, and then the check in L590 could be removed. I can put...
Defining a child struct pointer in a struct should not be treated as a struct declaration.  ```C struct child_t { int foo; }; struct parent_t {...
Same thing as `help-path` and `mod-path` but for language files.
bison doesn't actually require gettext. The reason the dependency was added unconditionally was because the configure script was automagically adding the dependency if it was present at build time. This...