Ross Smith II

Results 115 issues of Ross Smith II

https://github.com/juan131/bash-libraries/blob/637c5a5a7290397c4ac2efdea032da3e4ecb1cc1/lib/libos.bash#L75-L81 can be simplified to: ``` am_i_root() { [[ "$(id -u)" = "0" ]] } ``` or even better: ``` am_i_root() { (($(id -u) == 0)) } ``` or ever...

https://git.savannah.gnu.org/cgit/nano.git/tag/?h=v8.0 was released 7 days ago. If you need some help, lemme know...

https://hyperupcall.github.io/woof is this project's URL. Change it to https://version-manager.github.io/woof/ .

**To Reproduce** With only the GitHub Actions extension enabled, If I paste in the following .yaml file: ```yaml --- name: Example # rest of file ``` the editor immediately reformats...

bug

Typos: arent -> aren't eachothers -> each others simulatenously -> simultaneously No other content changes.

### What happened? `go run build.go integration` fails. See log below. This patch fixes the issue: ```diff --- a/lib/config/wrapper.go +++ b/lib/config/wrapper.go @@ -121,6 +121,8 @@ type Wrapper interface { Subscribe(c...

bug
needs-triage

# Sync reserved characters proposal v2.1 ## 1. Preamble This proposal is authored by [@rasa](https://github.com/rasa) and [@JanKanis](https://github.com/JanKanis), and was inspired by JanKanis' comments [here](https://github.com/syncthing/syncthing/pull/7876#issuecomment-2080435103). It was last updated on 03-Jun-24....

enhancement
needs-triage

I was using https://github.com/skanga/BashWin/blob/0e8513adc554d6787f03b2544e96aeef815b20b2/runbash.bat#L20 in all my scripts, but came across an instance where it failed to produce the proper result. I don't recall the specifics now, but the solution...

## Platform Info Any/all ## Description I would love to see command line support for changing a setting. Something super simple, like: ``` vmr set go 1.23 ```