- always go to new copy of the cloned repository after forking it
- always set the local repo user config after the fork
- always check for spelling mistakes in the forked repo readme files
just in case
- installed switchaudio-osx for managing macos sound devices
e.g : muting a device or switching to a device
- aliases/functions to switch/mute devices
- always mute speakers and switch to headset before running a zoom
session
- new aliases for starting timeboxed zoom meetings
- avoid showing useless results (e.g : alias found himself...)
- better handling of quotes/double quotes/dollars sign in searches, by
switching to fgrep (thanks to
https://unix.stackexchange.com/q/32018/220566 for the idea)
the purpose is to suggest refactoring opportunities in a given shellscript.
some features would be :
- Increase KISS / YAGNI
- Remove code duplication / repetition
- Improve code consistency / redability
- Reduce LOC :-) (lines of code)
- Encourage reuse of aliases
- Helper name is `invalid_file_refs` and can be used like this :
`invalid_file_refs README.*`
- Given a document (readme, manual...) containing file names, the script
will attempt to identify what file names are either not referenced in
the source code, or missing in the project, thus helping to detect
some potentials issues.
- Example of issue detected by this tool : the README.md
mentions a `config.yaml` while the application would search for `config.yml`.
Because of this mistake, the user might struggle to make the application work.