Skip to content

Commit 8ab9866

Browse files
committed
guidelines slack
1 parent 8f0b44f commit 8ab9866

3 files changed

Lines changed: 278 additions & 9 deletions

File tree

87.1 KB
Loading
Lines changed: 270 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,270 @@
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;

src/pages/resources.js

Lines changed: 8 additions & 9 deletions
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,4 @@
11
import React from "react";
2-
import { Link } from "gatsby";
32
import { Article } from "../components/common";
43
import { Helmet } from 'react-helmet'
54

@@ -46,7 +45,7 @@ const ResourcesPage = () => (
4645
rel="noopener"
4746
target={`_blank`}
4847
className="text-sdv-secondary underline hover:no-underline hover:opacity-80"
49-
to="https://arxiv.org/pdf/2207.14406.pdf"
48+
href="https://arxiv.org/pdf/2207.14406.pdf"
5049
>
5150
Sequential Models in the Synthetic Data Vault
5251
</a>
@@ -59,7 +58,7 @@ const ResourcesPage = () => (
5958
rel="noopener"
6059
target={`_blank`}
6160
className="text-sdv-secondary underline hover:no-underline hover:opacity-80"
62-
to="https://dai.lids.mit.edu/wp-content/uploads/2020/02/Lei_SMThesis_neo.pdf"
61+
href="https://dai.lids.mit.edu/wp-content/uploads/2020/02/Lei_SMThesis_neo.pdf"
6362
>
6463
Synthesizing Tabular Data using Conditional GAN
6564
</a>
@@ -72,7 +71,7 @@ const ResourcesPage = () => (
7271
rel="noopener"
7372
target={`_blank`}
7473
className="text-sdv-secondary underline hover:no-underline hover:opacity-80"
75-
to="https://arxiv.org/pdf/1907.00503.pdf"
74+
href="https://arxiv.org/pdf/1907.00503.pdf"
7675
>
7776
Modeling Tabular data using Conditional GAN (CTGAN)
7877
</a>
@@ -91,7 +90,7 @@ const ResourcesPage = () => (
9190
rel="noopener"
9291
target={`_blank`}
9392
className="text-sdv-secondary underline hover:no-underline hover:opacity-80"
94-
to="https://dai.lids.mit.edu/wp-content/uploads/2019/01/1812.01226.pdf"
93+
href="https://dai.lids.mit.edu/wp-content/uploads/2019/01/1812.01226.pdf"
9594
>
9695
Learning Vine Copula Models For Synthetic Data Generation
9796
</a>
@@ -107,7 +106,7 @@ const ResourcesPage = () => (
107106
rel="noopener"
108107
target={`_blank`}
109108
className="text-sdv-secondary underline hover:no-underline hover:opacity-80"
110-
to="https://arxiv.org/pdf/1811.11264.pdf"
109+
href="https://arxiv.org/pdf/1811.11264.pdf"
111110
>
112111
Synthesizing Tabular Data using Generative Adversarial Networks
113112
(TGAN)
@@ -121,7 +120,7 @@ const ResourcesPage = () => (
121120
rel="noopener"
122121
target={`_blank`}
123122
className="text-sdv-secondary underline hover:no-underline hover:opacity-80"
124-
to="https://dai.lids.mit.edu/wp-content/uploads/2018/12/Andrew_MEng.pdf"
123+
href="https://dai.lids.mit.edu/wp-content/uploads/2018/12/Andrew_MEng.pdf"
125124
>
126125
SDV: An Open Source Library for Synthetic Data Generation
127126
</a>
@@ -134,7 +133,7 @@ const ResourcesPage = () => (
134133
rel="noopener"
135134
target={`_blank`}
136135
className="text-sdv-secondary underline hover:no-underline hover:opacity-80"
137-
to="https://dai.lids.mit.edu/wp-content/uploads/2018/03/SDV.pdf"
136+
href="https://dai.lids.mit.edu/wp-content/uploads/2018/03/SDV.pdf"
138137
>
139138
The synthetic data vault
140139
</a>
@@ -150,7 +149,7 @@ const ResourcesPage = () => (
150149
rel="noopener"
151150
target={`_blank`}
152151
className="text-sdv-secondary underline hover:no-underline hover:opacity-80"
153-
to="https://dspace.mit.edu/handle/1721.1/109616"
152+
href="https://dspace.mit.edu/handle/1721.1/109616"
154153
>
155154
The Synthetic Data Vault: Generative Modeling for Relational
156155
Databases.

0 commit comments

Comments
 (0)