Mattermost - jniedzie/SVJanalysis_wiki GitHub Wiki
We use Mattermost to discuss on the analysis.
To use Mattermost, follow the instructions below:
- Install Mattermost: https://mattermost.com/apps/
- Request a CERN account (see with our administration)
- Open Mattermost, enter as the URL "https://mattermost.web.cern.ch/" and "CERN" as server.
- You will be then prompted to choose a team, choose CERN
Here are some guidelines to to format messages:
- You can write bullet points by starting the line with *
- You can write
variables
using ` on both side of the variable - You can write code writing ``` on a new line before and after the code.
- You can specify the code using ```python for python for instance
- You can mention specific people using @
E.g.
x = 1
print(x)
is written
```python
x = 1
print(x)
```