- Set the git
autocrlf
config setting. See https://help.github.com/articles/dealing-with-line-endings/#global-settings-for-line-endings for instructions. - Avoid adding binary content to this repository. If it must be added, ensure git-lfs is tracking it.
- NEVER commit if the code does not build to the
master
branch - Try to work on branches if your code negatively affects production code
- Write code in American English. Documentation may be written in Australian English.
- Wherever possible use un-prefixed SI units for variables
- Variables with no unit MUST be standard units
var duration = 30
should always be 30 secondsvar bandwidth = 50
should always be hertz
- Never use imperial units
- Always include the full unit in the name if it does not follow our standard
- avoid this if possible, see first point
- e.g.
var minKiloHertz = 3.5
- e.g.
var limitHours = 6
- Do not abbreviate units
- It is recommended that full units be used in any user facing field name
- e.g.
EventEndSeconds
in a CSV file
- e.g.
- Variables with no unit MUST be standard units
- Dates and durations:
- ONLY format dates in an ISO8601 format
- a modified ISO8601 format with all punctuation removed is acceptable
for file/folder names. Example format string:
yyyyMMddTHHmmssZ
- a modified ISO8601 format with all punctuation removed is acceptable
for file/folder names. Example format string:
- ALWAYS format dates with UTC offset information if available
- PREFER formatting dates in the UTC timezone
- AVOID exposing
TimeSpan
s to user facing fields (use seconds instead)- if a
TimeSpan
needs to be formatted- in a log: the default formatting is acceptable
- in a filename: use ISO8601 duration formatting
- if a
- ONLY format dates in an ISO8601 format
- New code or bug fixes must be covered by unit tests.
Our project has a historically bad relationship with unit testing and we want to try
and improve on this.
The required software for developing new code (not running the program) includes:
You can install it from here: https://github.com/powershell/powershell#get-powershell
- We aim to use the latest stable version
- You can verify the version our project is using by looking in the global.json file
Alternately, you can download a SDK from here: https://dotnet.microsoft.com/download/dotnet-core/. Note: you want the Build apps - SDK download.
If you receive the following error message, you need to update your SDK:
Unable to locate the .NET Core SDK. Check that it is installed and that the version specified in global.json (if any) matches the installed version.
There are three options:
- Visual Studio 2019 (Windows only)
- Install features:
- C# Development
- .NET Core SDK for Visual Studio 2019
- If you're at a university that has an Office365 Subscription you can download software from https://azureforeducation.microsoft.com/devtools
- The community edition of Visual Studio should work fine and is totally free
- [Optional] Resharper Ultimate (Academic License)
- Install these plugins (ReSharper menu > Extension Manager)
- ReSpeller Free
- Install features:
- VS Code (recommended for Mac and Linux, works on Windows too)
- Install from here: https://code.visualstudio.com/
- Open the
ap.code-workspace
- Install the recommended workspace extensions
- JetBrains Rider (Windows only)
A recent version of the git
executable must be on your PATH
(the standard install should do this).
We use git-lfs to store BLOBs for testing audio file converters. If you want to run the unit tests you need to have git-lfs installed.
Not all BLOBs are stored in git-lfs. See the .gitattributes
file to list
what files are included.
You can check the status of LFS files with the command git lfs status
.
If you cloned the repository before LFS was installed you will need to:
- Install Git LFS
cd
to the audio-analysis directory- Run
git lfs install
to set up Git LFS - Run
git lfs pull
to download the LFS BLOBs - Use
git lfs ls-files
to verify the files have been restored.
An asterisk (
*
) after the OID indicates a full object, a minus (-
) indicates an LFS pointer.
Third party contributions should be made by:
- forking the repository
- making changes in a branch
- submitting a pull-request to merge those changes from your-fork and branch, to our copy and master branch
We mark the most straightforward issues as "up for grabs". This set of issues is the place to start if you are interested in contributing but new to the codebase.
Project maintainers will merge changes that improve the product significantly and broadly and that align with our roadmap.
Contributions must also satisfy the other published guidelines defined in this document.
We will gladly accept any documentation or script enhancements.
Please do:
- DO follow our style (enforced by StyleCop)
- DO give priority to the current style of the project or file you're changing even if it diverges from the general guidelines.
- DO include tests when adding new features. When fixing bugs, start with adding a test that highlights how the current behavior is broken.
- DO keep the discussions focused. When a new or related topic comes up it's often better to create new issue than to side track the discussion.
- DO blog and tweet (or whatever) about your contributions, frequently!
Please do not:
- DON'T make PRs for style changes.
- DON'T surprise us with big pull requests. Instead, file an issue and start a discussion so we can agree on a direction before you invest a large amount of time.
- DON'T commit code that you didn't write. If you find code that you think is a good fit, file an issue and start a discussion before proceeding.
- DON'T submit PRs that alter licensing related files.
Please format commit messages as follows (based on A Note About Git Commit Messages):
Summarize change in 50 characters or less
Provide more detail after the first line. Leave one blank line below the
summary and wrap all lines at 72 characters or less.
If the change fixes an issue, leave another blank line after the final
paragraph and indicate which issue is fixed in the specific format
below.
Fixes #42
Also do your best to factor commits appropriately, not too large with unrelated things in the same commit, and not too small with the same small change applied N times in N different commits.
StyleCop automatically suggest an appropriate file header. Please use it at the top of all new files.
We sometimes use files from other projects, typically where a binary distribution does not exist or would be inconvenient.
The following rules must be followed for PRs that include files from another project:
- The license of the file is permissive.
- The license of the file is left in-tact.
There are many good algorithms implemented in other languages that would benefit our project. The rules for porting an R file to C#, for example, are the same as would be used for copying the same file, as described above.