From d9ee25f035dca8359567341b9fc91622ee877ae1 Mon Sep 17 00:00:00 2001 From: Dave Thaler Date: Fri, 21 May 2021 11:32:50 -0700 Subject: [PATCH] Add info on slack channel and zoom meeting (#209) Signed-off-by: Dave Thaler Co-authored-by: Alan Jowett --- README.md | 4 ++++ docs/DevelopmentGuide.md | 2 +- 2 files changed, 5 insertions(+), 1 deletion(-) diff --git a/README.md b/README.md index 0f418a671..91aa9a078 100644 --- a/README.md +++ b/README.md @@ -45,6 +45,10 @@ To try out this project, see our [Getting Started Guide](docs/GettingStarted.md) Want to help? We welcome contributions! See our [Contributing guidelines](CONTRIBUTING.md). +Want to chat with us? We have a: +* [Slack channel](https://slack.com/app_redirect?channel=ebpf-for-windows) +* Zoom meeting for github issue triage: see [meeting info](https://github.com/microsoft/ebpf-for-windows/issues/162) + ## Frequently Asked Questions ### 1. Is this a fork of eBPF? diff --git a/docs/DevelopmentGuide.md b/docs/DevelopmentGuide.md index 9e3c8e4a7..c1c4aa2af 100644 --- a/docs/DevelopmentGuide.md +++ b/docs/DevelopmentGuide.md @@ -40,7 +40,7 @@ Header Files in alphabetical order where possible. This helps ensure there are not duplicate includes, and also helps ensure that headers are usable directly. -* Use `#pragma once` in all header files, rather than using ifdefs to test for duplicate inclusion. +* **DO** use `#pragma once` in all header files, rather than using ifdefs to test for duplicate inclusion. Style Guide -----------