|
| 1 | +import React from "react"; |
| 2 | +import Img from "gatsby-image"; |
| 3 | +import { graphql, useStaticQuery } from "gatsby"; |
| 4 | +import { Article } from "../components/common"; |
| 5 | +import { Helmet } from "react-helmet"; |
| 6 | +import Cta from "../components/Cta"; |
| 7 | + |
| 8 | +import config from "../utils/siteConfig"; |
| 9 | + |
| 10 | +const ResourcesPage = () => { |
| 11 | + const data = useStaticQuery(graphql` |
| 12 | + query { |
| 13 | + placeholderImage: file( |
| 14 | + relativePath: { eq: "Slack-conversation-example.png" } |
| 15 | + ) { |
| 16 | + childImageSharp { |
| 17 | + fluid(maxWidth: 1200) { |
| 18 | + ...GatsbyImageSharpFluid_noBase64 |
| 19 | + } |
| 20 | + } |
| 21 | + } |
| 22 | + } |
| 23 | + `); |
| 24 | + |
| 25 | + return ( |
| 26 | + <Article hasMoreArticles={false}> |
| 27 | + <Helmet |
| 28 | + title="SDV Slack Community Guidelines" |
| 29 | + description="Welcome to the Synthetic Data Vault! Here, you will find a group of passionate creators and builders who want to put synthetic data to use." |
| 30 | + type="website" |
| 31 | + /> |
| 32 | + |
| 33 | + <div className=" pt-20"> |
| 34 | + <div |
| 35 | + className="bg-sdv-highlight w-full feature-image relative h-48" |
| 36 | + style={{ |
| 37 | + background: "linear-gradient(90deg, #03B0F2 1.57%, #01E0C9 100%)", |
| 38 | + }} |
| 39 | + > |
| 40 | + <div className="absolute inset-0 flex justify-center items-center"> |
| 41 | + <div className="container mx-auto"> |
| 42 | + <div className="flex flex-wrap -mx-6 justify-center items-center"> |
| 43 | + <div className="w-full lg:w-6/12 px-6 md:mt-0 text-white text-center"> |
| 44 | + <h1 className="leading-none text-white text-4xl lg:text-5xl mb-3"> |
| 45 | + SDV Slack Community Guidelines |
| 46 | + </h1> |
| 47 | + <p className="text-xl"> |
| 48 | + Last Update: <i>July 2022</i> |
| 49 | + </p> |
| 50 | + </div> |
| 51 | + </div> |
| 52 | + </div> |
| 53 | + </div> |
| 54 | + </div> |
| 55 | + </div> |
| 56 | + <div className="container"> |
| 57 | + <section className=" py-12"> |
| 58 | + <div className="text-lg my-10 post"> |
| 59 | + <p className="font-semibold">Dear SDV Community,</p> |
| 60 | + <p> |
| 61 | + Welcome to the Synthetic Data Vault! Here, you will find a group |
| 62 | + of passionate creators and builders who want to put synthetic data |
| 63 | + to use. |
| 64 | + </p> |
| 65 | + <p> |
| 66 | + Our goal at the SDV is to be the most comprehensive and trusted |
| 67 | + open source platform for synthetic data. Since we started the{" "} |
| 68 | + <a |
| 69 | + target={`_blank`} |
| 70 | + rel="noopener" |
| 71 | + href="https://bit.ly/sdv-slack-invite" |
| 72 | + > |
| 73 | + SDV Slack Community |
| 74 | + </a>{" "} |
| 75 | + in July 2020, we've seen unprecedented innovation and |
| 76 | + collaboration in this space. As we continue to improve the |
| 77 | + software and discover new insights about synthetic data, we want |
| 78 | + to make sure our community is set up for responsible growth. |
| 79 | + </p> |
| 80 | + <p> |
| 81 | + To that end, we are introducing some SDV Slack Community |
| 82 | + Guidelines, aimed to foster more of the great engagement we've |
| 83 | + been seeing. Below, you'll find 5 key principles that we expect |
| 84 | + all Slack Community members to follow. |
| 85 | + </p> |
| 86 | + </div> |
| 87 | + |
| 88 | + <div className="sm:pl-8 md:pl-16 xl:pl-24"> |
| 89 | + <div className="text-lg my-10 post"> |
| 90 | + <p className="text-3xl lg:text-4xl font-bold text-sdv-dark"> |
| 91 | + 1. Keep the workspace organized |
| 92 | + </p> |
| 93 | + <p> |
| 94 | + Before starting a discussion, check to see if there is already |
| 95 | + material that covers the topic. We have many resources including:{" "} |
| 96 | + <a |
| 97 | + target={`_blank`} |
| 98 | + rel="noopener" |
| 99 | + href="https://github.com/sdv-dev/SDV/issues" |
| 100 | + > |
| 101 | + GitHub Issues |
| 102 | + </a> |
| 103 | + ,{" "} |
| 104 | + <a |
| 105 | + target={`_blank`} |
| 106 | + rel="noopener" |
| 107 | + href="https://github.com/sdv-dev/SDV/discussions" |
| 108 | + > |
| 109 | + GitHub Discussions |
| 110 | + </a> |
| 111 | + ,{" "} |
| 112 | + <a |
| 113 | + target={`_blank`} |
| 114 | + rel="noopener" |
| 115 | + href="https://sdv.dev/SDV/user_guides/index.html" |
| 116 | + > |
| 117 | + SDV User Guides |
| 118 | + </a>{" "} |
| 119 | + and the{" "} |
| 120 | + <a target={`_blank`} rel="noopener" href="https://sdv.dev/blog/"> |
| 121 | + SDV Blog |
| 122 | + </a> |
| 123 | + . |
| 124 | + </p> |
| 125 | + <p> |
| 126 | + If you cannot find any related material, post your question in the |
| 127 | + appropriate channel depending on the use – for eg. #single-table, |
| 128 | + #multi-table, #timeseries, etc. For general questions, use |
| 129 | + #sdv-dev. We recommend you use only 1 block of text to write your |
| 130 | + initial question. The text will become the start of a new thread, |
| 131 | + and new replies will appear nested underneath it: |
| 132 | + </p> |
| 133 | + <div className="max-w-2xl"> |
| 134 | + <Img |
| 135 | + fluid={data.placeholderImage.childImageSharp.fluid} |
| 136 | + alt="join our community map" |
| 137 | + loading={`lazy`} |
| 138 | + /> |
| 139 | + </div> |
| 140 | + </div> |
| 141 | + <div className="text-lg my-10 post"> |
| 142 | + <p className="text-3xl lg:text-4xl font-bold text-sdv-dark"> |
| 143 | + 2. Discuss and participate openly |
| 144 | + </p> |
| 145 | + <p> |
| 146 | + Whether it's through asking questions, having detailed discussions |
| 147 | + or reacting to existing conversations, you are welcome to engage |
| 148 | + with the community in any way you feel comfortable. Feel free to |
| 149 | + answer questions by replying in a thread, especially if you've run |
| 150 | + into the same problems in the past or have workarounds. |
| 151 | + </p> |
| 152 | + <p> |
| 153 | + We encourage everyone to communicate in public channels instead of |
| 154 | + through private Direct Messages (DMs). When you keep discussions |
| 155 | + in the public space, everyone in the community can benefit from |
| 156 | + the solutions that you find, and others can also join in. This |
| 157 | + also applies to communicating with SDV team members — we try to |
| 158 | + respond to questions on a first-come, first-serve basis, and |
| 159 | + generally get to everything within a few business days. You will |
| 160 | + not receive a faster response by directly messaging individual |
| 161 | + members of the SDV team. |
| 162 | + </p> |
| 163 | + </div> |
| 164 | + <div className="text-lg my-10 post"> |
| 165 | + <p className="text-3xl lg:text-4xl font-bold text-sdv-dark"> |
| 166 | + 3. Continue with involved discussions on GitHub |
| 167 | + </p> |
| 168 | + <p> |
| 169 | + While Slack is a great place for initial connection and |
| 170 | + conversation, we are using GitHub for more involved topics, which |
| 171 | + require a more permanent location for tracking and updating. In |
| 172 | + certain scenarios, a member of the SDV team may ask you to |
| 173 | + continue a Slack discussion on GitHub instead: |
| 174 | + </p> |
| 175 | + <ul> |
| 176 | + <li> |
| 177 | + <a |
| 178 | + target={`_blank`} |
| 179 | + rel="noopener" |
| 180 | + href="https://github.com/sdv-dev/SDV/issues?q=is%3Aissue+is%3Aopen+label%3Abug" |
| 181 | + > |
| 182 | + Debugging problems |
| 183 | + </a>{" "} |
| 184 | + is easier on GitHub if there are many code samples or stack |
| 185 | + traces being shared. If the bug cannot easily be reproduced or |
| 186 | + fixed, we'll track its updates using GitHub too. |
| 187 | + </li> |
| 188 | + <li> |
| 189 | + We also use GitHub to keep track of{" "} |
| 190 | + <a |
| 191 | + target={`_blank`} |
| 192 | + rel="noopener" |
| 193 | + href="https://github.com/sdv-dev/SDV/issues?q=is%3Aissue+is%3Aopen+label%3A%22feature+request%22" |
| 194 | + > |
| 195 | + new feature requests |
| 196 | + </a> |
| 197 | + . We prioritize new features based on the demand and the utility |
| 198 | + for synthetic data use cases. If you'd like to call attention to |
| 199 | + a particular feature request, we encourage you to add more |
| 200 | + information about how you're planning to use the synthetic data, |
| 201 | + and why the feature would be helpful. |
| 202 | + </li> |
| 203 | + </ul> |
| 204 | + </div> |
| 205 | + <div className="text-lg my-10 post"> |
| 206 | + <p className="text-3xl lg:text-4xl font-bold text-sdv-dark"> |
| 207 | + 4. Be respectful |
| 208 | + </p> |
| 209 | + <p> |
| 210 | + We are thrilled to have a global community that represents many |
| 211 | + different industries, backgrounds and experiences. It is important |
| 212 | + for everyone to keep this diversity in mind while communicating. A |
| 213 | + question that might seem obvious to you may not be to someone |
| 214 | + else, and you may receive faster replies if you explain any |
| 215 | + industry-specific terms. While others may not share your |
| 216 | + understanding of physics, chemistry, finance, healthcare, etc., we |
| 217 | + all share a love for data! |
| 218 | + </p> |
| 219 | + <p> |
| 220 | + We ask that you also extend this respect to the SDV team. As the |
| 221 | + core maintainers of this project, we are a passionate but small |
| 222 | + team responding to a variety of requests and questions. Please be |
| 223 | + mindful of this as you communicate with and wait for responses |
| 224 | + from us. |
| 225 | + </p> |
| 226 | + </div> |
| 227 | + <div className="text-lg my-10 post"> |
| 228 | + <p className="text-3xl lg:text-4xl font-bold text-sdv-dark"> |
| 229 | + 5. Keep conversation focused |
| 230 | + </p> |
| 231 | + <p> |
| 232 | + The primary focus of the SDV Slack is discussing the open source |
| 233 | + SDV software for creating and evaluating synthetic data. However, |
| 234 | + we recognize that synthetic data can be useful in a variety of |
| 235 | + applications. Feel free to use the #random channel for general |
| 236 | + industry news about synthetic data. (The SDV team will not be |
| 237 | + actively participating in this channel.) |
| 238 | + </p> |
| 239 | + <p> |
| 240 | + Please refrain from advertising or soliciting anywhere in the SDV |
| 241 | + Slack, as this creates a bad experience for the community. |
| 242 | + Promotion of a specific business or research may result in your |
| 243 | + expulsion from the Slack space. If you are receiving solicitation |
| 244 | + or spam from someone else, please get in touch with the SDV team |
| 245 | + at info@sdv.dev for a resolution. |
| 246 | + </p> |
| 247 | + </div> |
| 248 | + </div> |
| 249 | + |
| 250 | + <div className="text-lg my-10 post"> |
| 251 | + <p> |
| 252 | + Thank you for taking the time to read our community guidelines. |
| 253 | + With these in mind, we hope the SDV Slack will continue to grow as |
| 254 | + an open space for discussion and collaboration around synthetic |
| 255 | + data solutions. |
| 256 | + </p> |
| 257 | + <p> |
| 258 | + Happy synthesizing! <br /> |
| 259 | + <i className="text-sdv-dark font-bold">- The SDV Team</i> |
| 260 | + </p> |
| 261 | + </div> |
| 262 | + </section> |
| 263 | + </div> |
| 264 | + |
| 265 | + <Cta /> |
| 266 | + </Article> |
| 267 | + ); |
| 268 | +}; |
| 269 | + |
| 270 | +export default ResourcesPage; |
0 commit comments