-
Notifications
You must be signed in to change notification settings - Fork 1
/
coc.html
73 lines (65 loc) · 4.75 KB
/
coc.html
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
<!DOCTYPE html>
<html>
<head>
<meta charset="utf-8">
<meta http-equiv="X-UA-Compatible" content="IE=edge">
<title>RE.T3CH</title>
<meta name="viewport" content="width=device-width, initial-scale=1">
<meta name="description" content="A 12 hour unique college hackathon" />
<meta name="keywords" content="RE.T3CH, retech, iips, davv, hackathon, indore, college" />
<meta name="author" content="adeen-s" />
<link href="https://fonts.googleapis.com/css?family=Chakra+Petch" rel="stylesheet">
<link rel="stylesheet" href="css/main.css">
</head>
<body>
<canvas id="q"></canvas>
<div class="above">
<h1>Code of Conduct</h1>
<h2 id="our-pledge">Our Pledge</h2>
<p>In the interest of fostering an open and welcoming environment, we as organizers and volunteers pledge to making participation in our event, our projects and our community a harassment-free experience for everyone, regardless of age, body size, disability, ethnicity, gender identity and expression, level of experience, nationality, personal appearance, race, religion, or sexual identity and orientation.</p>
<h2 id="our-standards">Our Standards</h2>
<p><b>Examples of behavior that contributes to creating a positive environment include:</b></p>
<ul>
<li>Sportsmanship towards other participants<br /></li>
<li>Using welcoming and inclusive language<br /></li>
<li>Being respectful of differing viewpoints and experiences<br /></li>
<li>Gracefully accepting constructive criticism<br /></li>
<li>Focusing on what is best for the community<br /></li>
<li>Showing empathy towards other community members<br /></li>
</ul>
<p><b>Examples of unacceptable behavior by participants include:</b></p>
<ul>
<li>Disobeying the rules of the college or the event</li>
<li>The use of sexualized language or imagery and unwelcome sexual attention or advances<br /></li>
<li>Trolling, insulting/derogatory comments, and personal or political attacks<br /></li>
<li>Public or private harassment<br /></li>
<li>Publishing others' private information, such as a physical or electronic address, without explicit permission<br /></li>
<li>Other conduct which could reasonably be considered inappropriate in a professional setting</li>
</ul>
<h2>Our Responsibilities</h2>
<p>Organizers and Volunteers are responsible for clarifying the standards of acceptable behavior and are expected to take appropriate and fair corrective action in response to any instances of unacceptable behavior. They have the right and responsibility to remove, edit, or reject comments, commits, code, wiki edits, issues, and other contributions that are not aligned to this Code of Conduct, or to ban temporarily or permanently any contributor for other behaviors that they deem inappropriate, threatening, offensive, or harmful.</p>
<h2>Scope</h2>
<p>This Code of Conduct applies both within the event spaces and in public spaces when an individual is representing the event or its community. Examples of representing an event or community include communicating with an official project e-mail address, posting on an official social media account, or communicating with/as an appointed representative at an online or offline event. Representation of the event may be further defined and clarified by the Admin and Moderators.</p>
<h2>Enforcement</h2>
<p>Instances of abusive, harassing, or otherwise unacceptable behavior may be reported by contacting any of the Organizers or volunteers either through any of our communication channels or in person. All complaints will be reviewed and investigated and will result in a response that is deemed necessary and appropriate to the circumstances. The project team is obligated to maintain confidentiality with regard to the reporter of an incident. Further details of specific enforcement policies may be posted separately. Volunteers or organizers who do not follow or enforce the Code of Conduct in good faith may face temporary or permanent repercussions as determined by the members of the community and the event coordinators.</p>
</div>
<script type="text/javascript">
var s = window.screen;
var width = q.width = s.width;
var height = q.height = s.height;
var letters = Array(256).join(1).split('');
var draw = function () {
q.getContext('2d').fillStyle='rgba(0,0,0,.05)';
q.getContext('2d').fillRect(0,0,width,height);
q.getContext('2d').fillStyle='#0F0';
letters.map(function(y_pos, index){
text = String.fromCharCode(50+Math.random()*45);
x_pos = index * 10;
q.getContext('2d').fillText(text, x_pos, y_pos);
letters[index] = (y_pos > 758 + Math.random() * 1e4) ? 0 : y_pos + 10;
});
};
setInterval(draw, 33);
</script>
</body>
</html>