forked from lugnitdgp/10-days-of-code
-
Notifications
You must be signed in to change notification settings - Fork 1
/
faq.html
298 lines (291 loc) · 15.5 KB
/
faq.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
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
271
272
273
274
275
276
277
278
279
280
281
282
283
284
285
286
287
288
289
290
291
292
293
294
295
296
297
298
<!DOCTYPE html>
<html>
<head>
<!-- Global site tag (gtag.js) - Google Analytics -->
<script async src="https://www.googletagmanager.com/gtag/js?id=UA-178760666-1"></script>
<script>
window.dataLayer = window.dataLayer || [];
function gtag() {
dataLayer.push(arguments);
}
gtag('js', new Date());
gtag('config', 'UA-178760666-1');
</script>
<title>10 Days of Code</title>
<link rel="stylesheet" type="text/css" href="assets/css/faq.css">
<meta name="viewport" content="width=device-width, initial-scale=1">
<link rel="stylesheet" type="text/css" href="https://cdnjs.cloudflare.com/ajax/libs/twitter-bootstrap/4.5.0/css/bootstrap.min.css">
<script src="https://code.jquery.com/jquery-3.5.1.min.js" integrity="sha256-9/aliU8dGd2tb6OSsuzixeV4y/faTqgFtohetphbbj0=" crossorigin="anonymous"></script>
<script src="https://cdnjs.cloudflare.com/ajax/libs/popper.js/2.4.4/umd/popper.min.js"></script>
<script src="https://cdnjs.cloudflare.com/ajax/libs/twitter-bootstrap/4.5.2/js/bootstrap.min.js"></script>
<script src="https://cdnjs.cloudflare.com/ajax/libs/scrollReveal.js/4.0.7/scrollreveal.min.js"></script>
<link rel="stylesheet" type="text/css" href="https://cdnjs.cloudflare.com/ajax/libs/font-awesome/5.10.0/css/all.min.css">
</head>
<body>
<div id="preloader">
<div id="status">
</div>
</div>
<nav class="navbar navbar-expand-lg navbar-light">
<div class="logo">
<img src="images/logo.png" alt="" width="50">
</div>
<a class="navbar-brand" id="texty" href="index.html"><strong>#10DaysOfCode</strong></a>
<button class="navbar-toggler" type="button" data-toggle="collapse" data-target="#navbarSupportedContent" aria-controls="navbarSupportedContent" aria-expanded="false" aria-label="Toggle navigation">
<span class="navbar-toggler-icon"></span>
</button>
<div class="collapse navbar-collapse" id="navbarSupportedContent">
<ul class="navbar-nav ml-auto d-flex justify-content-between m-0 p-0 w-50 mr-5 pl-md-5">
<li class="nav-item mt-2 mt-md-0">
<a href="index.html">Home</a>
</li>
<li class="nav-item mt-2 mt-md-0">
<a href="timeline.html">Timeline</a>
</li>
<li class="nav-item mt-2 mt-md-0">
<a href="projects.html">Projects</a>
</li>
<!-- <li class="nav-item mt-2 mt-md-0">
<a href="https://docs.google.com/forms/d/e/1FAIpQLSdi8hl3biNPzca7hAUifYdsusA17IC0rdDh055OKSxh5-hP3A/viewform">Register</a>
</li> -->
<li class="nav-item mt-2 mt-md-0">
<a href="trending.html">Trending</a>
</li>
<li class="nav-item mt-2 mt-md-0">
<a href="faq.html">FAQs</a>
</li>
</ul>
</div>
</nav>
<h1 class="text-center mt-5">
Frequently Asked Questions(FAQs)
</h1>
<br>
<div class="container-fluid mt-2 mb-5" id="questions">
<div class="container">
<div class="row question">
<div class="col-1 mt-3 mt-sm-1 mt-md-1 mt-l-1 mt-xl-1 q-span">
Q.
</div>
<div class="col-11 question-text mt-4 mb-4 q-text">What is the last date for registration for this event?</div>
</div>
<div class="row answer">
<div class="col-1 mt-1 a-span">
A.
</div>
<div class="col-11 mt-3 mb-2 a-text">
The last date to register for the event is 30th September, 2020 12:00 pm. No more responses will be accepted after that.
</div>
</div>
</div>
<br>
<br>
<div class="container">
<div class="row question">
<div class="col-1 mt-3 mt-sm-1 mt-md-1 mt-l-1 mt-xl-1 q-span">
Q.
</div>
<div class="col-11 question-text mt-4 mb-4 q-text">What if I am completely new to coding? Can I still participate?</div>
</div>
<div class="row answer">
<div class="col-1 mt-3 mt-sm-5 mt-md-4 mt-lg-3 mt-xl-3 a-span">
A.
</div>
<div class="col-11 mt-2 mb-2 a-text">
Absolutely, everyone is a beginner once in their life and this is the chance to actually begin your journey into coding. If not now then when? You will be provided with beginner friendly resources at every step to ensure you can make the project successfully.
All we ask is your time and willingness to learn !
</div>
</div>
</div>
<br>
<br>
<div class="container">
<div class="row question">
<div class="col-1 mt-3 mt-sm-1 mt-md-1 mt-xl-1 q-span">
Q.
</div>
<div class="col-11 mt-4 mb-4 q-text">What are the prerequisites for a project? </div>
</div>
<div class="row answer">
<div class="col-1 mt-3 mt-sm-5 mt-md-4 mt-lg-3 mt-xl-3 a-span">
A.
</div>
<div class="col-11 mt-2 mb-2 a-text">
The projects do not have major prerequisites as such. Basic knowledge of the language and some basic requirements for your PC is all that are required. You will be emailed all the resources to get through with these with ease. Still, in case of doubts,
they will be cleared early on in the event.
</div>
</div>
</div>
<br>
<br>
<div class="container">
<div class="row question">
<div class="col-1 mt-3 mt-sm-1 mt-md-1 mt-l-1 mt-xl-1 q-span">
Q.
</div>
<div class="col-11 question-text mt-4 mb-4 q-text">What should I do if I am allotted a project based in a language I do not know? </div>
</div>
<div class="row answer">
<div class="col-1 mt-3 mt-sm-5 mt-md-5 mt-lg-4 mt-xl-3 a-span">
A.
</div>
<div class="col-11 mt-2 mb-2 a-text">
We will be providing you with the tutorial links to learn the basics of the language which will be needed to make the project. There will also be a “Getting Started” session in the beginning to help you feel comfortable. Feel free to build the project
in any language of your choice. If a time comes where we might use language specific libraries, you have the option to explore for the similar library in your language.
</div>
</div>
</div>
<br>
<br>
<div class="container">
<div class="row question">
<div class="col-1 mt-3 mt-sm-1 mt-md-2 mt-l-1 mt-xl-1 q-span">
Q.
</div>
<div class="col-11 question-text mt-4 mb-4 q-text">I know language X but the difficulty of the project is high for me to pursue it, what should I do?</div>
</div>
<div class="row answer">
<div class="col-1 mt-3 mt-sm-5 mt-md-4 mt-lg-3 mt-xl-3 a-span">
A.
</div>
<div class="col-11 mt-2 mb-2 a-text">
If you do not feel confident about your knowledge in language X, we suggest that you should prefer a project according to the difficulty level you can manage, if you do not know the language refer to the above question. Also if you know one language,
it is not that difficult to explore another one, and knowing more is no harm anyways, right?
</div>
</div>
</div>
<br>
<br>
<div class="container">
<div class="row question">
<div class="col-1 mt-3 mt-sm-1 mt-md-1 mt-l-1 mt-xl-1 q-span">
Q.
</div>
<div class="col-11 question-text mt-4 mb-4 q-text">What is Hacktoberfest?</div>
</div>
<div class="row answer">
<div class="col-1 mt-3 mt-sm-5 mt-md-4 mt-lg-3 mt-xl-3 a-span">
A.
</div>
<div class="col-11 mt-2 mb-2 a-text">
Hacktoberfest is a month-long celebration of open source software run by DigitalOcean in partnership with GitHub. Hacktoberfest is open to everyone in the global community! Five quality pull requests must be submitted to public GitHub repositories. You
can sign up anytime between October 1 and October 31. On completion you get many perks up for grabs.
</div>
</div>
</div>
<br>
<br>
<div class="container">
<div class="row question">
<div class="col-1 mt-3 mt-sm-1 mt-md-1 mt-l-1 mt-xl-1 q-span">
Q.
</div>
<div class="col-11 question-text mt-4 mb-4 q-text">How will HacktoberFest goals be achieved?</div>
</div>
<div class="row answer">
<div class="col-1 mt-3 mt-sm-5 mt-md-4 mt-lg-2 mt-xl-3 a-span">
A.
</div>
<div class="col-11 mt-2 mb-2 a-text">
Each project will have a repository and you can create a folder by your name there. Every 2 days, you can create a Pull Request on the repository. Over a period of 10 days, you can create 5 PRs with genuine code and thereby complete HacktoberFest 2020.
</div>
</div>
</div>
</div>
<div class="questions-collapse mb-5">
<div id="more-button" onclick="growDiv('grow0')">
<div class="q-collapse pt-2 text-center">What is the last date for registration for this event?
<div class="pt-2"><i class="fas fa-angle-down"></i></div>
</div>
</div>
<div id="grow0" class="g">
<div class='measuringWrapper0 text-center a-collapse ml-2 mr-2'>
<div class="text">
The last date to register for the event is 30th September, 2020 12:00 pm. No more responses will be accepted after that.
</div>
</div>
</div>
<br>
<div id="more-button" onclick="growDiv('grow1')">
<div class="q-collapse pt-2 text-center">What if I am completely new to coding? Can I still participate?
<div class="pt-2"><i class="fas fa-angle-down"></i></div>
</div>
</div>
<div id="grow1" class="g">
<div class='measuringWrapper1 text-center a-collapse ml-2 mr-2'>
<div class="text">Absolutely, everyone is a beginner once in their life and this is the chance to actually begin your journey into coding. If not now then when? You will be provided with beginner friendly resources at every step to ensure you can make the
project successfully. All we ask is your time and willingness to learn !
</div>
</div>
</div>
<br>
<div id="more-button" onclick="growDiv('grow2')">
<div class="q-collapse pt-3 text-center">What are the prerequisites for a project?
<div class="pt-2"><i class="fas fa-angle-down"></i></div>
</div>
</div>
<div id="grow2" class="g">
<div class='measuringWrapper2 text-center a-collapse ml-2 mr-2'>
<div class="text">The projects do not have major prerequisites as such. Basic knowledge of the language and some basic requirements for your PC is all that are required. You will be emailed all the resources to get through with these with ease. Still, in
case of doubts, they will be cleared early on in the event.
</div>
</div>
</div>
<br>
<div id="more-button" onclick="growDiv('grow3')">
<div class="q-collapse pt-2 text-center">What should I do if I am allotted a project based in a language I do not know?
<div class="pt-2"><i class="fas fa-angle-down"></i></div>
</div>
</div>
<div id="grow3" class="g">
<div class='measuringWrapper3 text-center a-collapse ml-2 mr-2'>
<div class="text"> We will be providing you with the tutorial links to learn the basics of the language which will be needed to make the project. There will also be a “Getting Started” session in the beginning to help you feel comfortable. Feel free to build
the project in any language of your choice. If a time comes where we might use language specific libraries, you have the option to explore for the similar library in your language.
</div>
</div>
</div>
<br>
<div id="more-button" onclick="growDiv('grow4')">
<div class="q-collapse pt-2 text-center">I know language X but the difficulty of the project is high for me to pursue it, what should I do?
<div class="pt-2"><i class="fas fa-angle-down"></i></div>
</div>
</div>
<div id="grow4" class="g">
<div class='measuringWrapper4 text-center a-collapse ml-2 mr-2'>
<div class="text"> If you do not feel confident about your knowledge in language X, we suggest that you should prefer a project according to the difficulty level you can manage, if you do not know the language refer to the above question. Also if you know
one language, it is not that difficult to explore another one, and knowing more is no harm anyways, right?
</div>
</div>
</div>
<br>
<div id="more-button" onclick="growDiv('grow6')">
<div class="q-collapse pt-2 text-center">What is Hacktoberfest?
<div class="pt-2"><i class="fas fa-angle-down"></i></div>
</div>
</div>
<div id="grow6" class="g">
<div class='measuringWrapper6 text-center a-collapse ml-2 mr-2'>
<div class="text"> Hacktoberfest is a month-long celebration of open source software run by DigitalOcean in partnership with GitHub. Hacktoberfest is open to everyone in the global community! Five quality pull requests must be submitted to public GitHub
repositories. You can sign up anytime between October 1 and October 31. On completion you get many perks up for grabs.
</div>
</div>
</div>
<br>
<div id="more-button" onclick="growDiv('grow5')">
<div class="q-collapse pt-2 text-center">How will HacktoberFest goals be achieved?
<div class="pt-2"><i class="fas fa-angle-down"></i></div>
</div>
</div>
<div id="grow5" class="g">
<div class='measuringWrapper5 text-center a-collapse ml-2 mr-2'>
<div class="text">Each project will have a repository and you can create a folder by your name there. Every 2 days, you can create a Pull Request on the repository. Over a period of 10 days, you can create 5 PRs with genuine code and thereby complete HacktoberFest
2020.
</div>
</div>
</div>
</div>
</div>
<script src="assets/js/preloader.js"></script>
<script src="assets/js/faq.js"></script>
</body>
</html>