forked from DSC-JSS-NOIDA/QuickLearn
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathresource.html
353 lines (331 loc) · 13.3 KB
/
resource.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
299
300
301
302
303
304
305
306
307
308
309
310
311
312
313
314
315
316
317
318
319
320
321
322
323
324
325
326
327
328
329
330
331
332
333
334
335
336
337
338
339
340
341
342
343
344
345
346
347
348
349
350
351
352
353
<!DOCTYPE html>
<html lang="en">
<head>
<!-- Required meta tags -->
<meta charset="utf-8" />
<meta name="viewport" content="width=device-width, initial-scale=1" />
<!-- Bootstrap CSS -->
<link href="https://cdn.jsdelivr.net/npm/[email protected]/dist/css/bootstrap.min.css" rel="stylesheet"
integrity="sha384-EVSTQN3/azprG1Anm3QDgpJLIm9Nao0Yz1ztcQTwFspd3yD65VohhpuuCOmLASjC" crossorigin="anonymous" />
<!-- ---------------- FAVICON ------------------ -->
<link rel="shortcut icon" type="image/jpg" href="assets/images/favicon.png" />
<!-- Custom Stylesheet -->
<link rel="stylesheet" href="./css/styles.css" />
<!--Font Aswesome-->
<link href="https://maxcdn.bootstrapcdn.com/font-awesome/4.7.0/css/font-awesome.min.css" rel="stylesheet" />
<!--Bootstrap Icons -->
<link rel="stylesheet" href="https://cdn.jsdelivr.net/npm/[email protected]/font/bootstrap-icons.css" />
<!--Google Fonts -->
<link rel="preconnect" href="https://fonts.googleapis.com" />
<link rel="preconnect" href="https://fonts.gstatic.com" crossorigin />
<link href="https://fonts.googleapis.com/css2?family=Poppins&display=swap" rel="stylesheet" />
<title>Quick Learner</title>
<style>
.img-sz {
width: 10rem;
height: 8rem;
}
::-webkit-scrollbar{
width: 12px;
}
::-webkit-scrollbar-thumb{
background: #6f42c1;
border-radius: 30px;
}
</style>
</head>
<body id="resource">
<!--Navbar Section -->
<nav class="nav p-3">
<a href="./index.html" id="logo" class="navbar-brand font-weight-bold">
Quick Learn
</a>
<a class="nav-link btn" href="./index.html" id="navResourceBtn">Home</a>
<span class="btn" onclick="dark_mode()" style="display: block; margin-left: 2px; color: #6940d3;" href="#"><i
id="darkSwitch2" class="fas fa-moon"></i></span>
</nav>
<div class="container-fluid my-3" id="resourceContainer">
<div id="sidebar" class="d-flex flex-column flex-shrink-0 p-3 m-3 mx-4">
<h4 id="categoryText">Categories</h4>
<hr class="catHr" />
<ul id="categoryList" class="nav nav-pills flex-column mb-auto">
<li>
<button class="link-dark contribution-btn" id="contributeBtn">Contribution Button</button>
</li>
<li class="category">
<button class="link-dark btn-style">Programming</button>
<div class="select-option">
<button class="btn select-category-btn shadow-none" value="programming">
C++
</button>
<button class="btn select-category-btn shadow-none" value="programming">
Java
</button>
<button class="btn select-category-btn shadow-none" value="programming">
Python
</button>
<button class="btn select-category-btn shadow-none" value="programming">
Javascript
</button>
<button class="btn select-category-btn" value="programming">
PHP
</button>
</div>
</li>
<li class="category">
<button class="link-dark btn-style">Web Development</button>
<div class="select-option">
<button class="btn select-category-btn shadow-none" value="web">
Frontend
</button>
<button class="btn select-category-btn shadow-none" value="web">
Backend
</button>
<button class="btn select-category-btn shadow-none" value="web">
MEAN
</button>
<button class="btn select-category-btn shadow-none" value="web">
MERN
</button>
<button class="btn select-category-btn shadow-none" value="web">
MEVN
</button>
<button class="btn select-category-btn" value="web">
Ruby on Rails
</button>
</div>
</li>
<li class="category">
<button class="link-dark btn-style ">Mobile Development</button>
<div class="select-option">
<button class="btn select-category-btn shadow-none" value="android">
Android
</button>
<button class="btn select-category-btn shadow-none" value="android">
Flutter
</button>
<button class="btn select-category-btn shadow-none" value="android">
IOS
</button>
<button class="btn select-category-btn shadow-none" value="android">
React Native
</button>
</div>
</li>
<li class="category">
<button class="link-dark btn-style">Application Programming Interface</button>
<div class="select-option">
<button class="btn select-category-btn" value="api">
API
</button>
</div>
</li>
<li class="category">
<button class="link-dark btn-style">Designing</button>
<div class="select-option">
<button class="btn select-category-btn shadow-none" value="design">
General
</button>
<button class="btn select-category-btn shadow-none" value="design">
Illustrations
</button>
<button class="btn select-category-btn shadow-none" value="design">
Motion
</button>
<button class="btn select-category-btn shadow-none" value="design">
Photo
</button>
<button class="btn select-category-btn shadow-none" value="design">
Sound
</button>
<button class="btn select-category-btn shadow-none" value="design">
UI/UX
</button>
<button class="btn select-category-btn shadow-none" value="design">
Video
</button>
</div>
</li>
<li class="category">
<button class="link-dark btn-style">
Artificial Intelligience
</button>
<div class="select-option">
<button class="btn select-category-btn shadow-none" value="ai">AI</button>
<button class="btn select-category-btn shadow-none" value="ai">ML</button>
<button class="btn select-category-btn shadow-none" value="ai">
Computer Vision
</button>
<button class="btn select-category-btn shadow-none" value="ai">
Deep Learning
</button>
</div>
</li>
<li class="category">
<button class="link-dark btn-style">Data Science</button>
<div class="select-option">
<button class="btn select-category-btn shadow-none" value="data_science">
Statistics
</button>
<button class="btn select-category-btn shadow-none" value="data_science">
Big Data
</button>
</div>
</li>
<li class="category">
<button class="link-dark btn-style">Git and GitHub</button>
<div class="select-option">
<button class="btn select-category-btn" value="git">
Git and GitHub
</button>
</div>
</li>
<li class="category">
<button class="link-dark btn-style">Data Structures & Algorithms</button>
<div class="select-option">
<button class="btn select-category-btn" value="data_structure_&_algorithm">
Data structures & Algorithms
</button>
</div>
</li>
<li class="category">
<button class="link-dark btn-style">Database Management</button>
<div class="select-option">
<button class="btn select-category-btn" value="database_management">
Database Management
</button>
</div>
</li>
<li class="category">
<button class="link-dark btn-style">Blockchain Development</button>
<div class="select-option">
<button class="btn select-category-btn shadow-none" value="Blockchain">
Blockchain
</button>
</div>
</li>
<li class="category">
<button class="link-dark btn-style">Ethical Hacking</button>
<div class="select-option">
<button class="btn select-category-btn shadow-none" value="ethical_hacking">
Ethical Hacking
</button>
</div>
</li>
<li class="category">
<button class="link-dark btn-style">Game Development</button>
<div class="select-option">
<button class="btn select-category-btn shadow-none" value="Game_dev">
Game Development
</button>
</div>
</li>
<li class="category">
<button class="link-dark btn-style">Robotics</button>
<div class="select-option">
<button class="btn select-category-btn shadow-none" value="robotics">
Robotics
</button>
</div>
</li>
<li class="category">
<button class="link-dark btn-style">Linux Fundamentals</button>
<div class="select-option">
<button class="btn select-category-btn shadow-none" value="linux">
linux
</button>
</div>
</li>
<li class="category">
<button class="link-dark btn-style">CyberSecurity</button>
<div class="select-option">
<button class="btn select-category-btn shadow-none" value="CyberSecurity">
CyberSecurity
</button>
</div>
</li>
</ul>
<hr class="catHr" />
</div>
<!-- Sidebar Ends -->
<div class="container mt-3" id="contributionGuideline">
<h2 id="contriHead">Contribution Guidelines</h2>
<div class="contributionHead font my-2">
Follow the steps below to start contributing. We hope you have fun!
</div>
<li class="font">
Fork and clone the Repo by typing the following commands in the
terminal
</li>
<!-- To add code snippets in future put the code inside <div> with class as Code and give ID to the code as any number and give the button as ID number+b
Eg: (1,1b) , (2,2b) etc
-->
<div class="code">
<div class="mx-4 my-2 fc" id="1">
<div class="">$ git clone https://github.com/<your-github-username>/QuickLearn.git</div>
<div class="">$ cd QuickLearn</div>
</div>
<button class="copy-btn" id="1b" onclick="copy(this.id)">Copy</button>
</div>
<li class="font">
Now to add your resource to website, add an object with keys same as
listed in existing objects in the file.
</li>
<li class="font">Save and commit your code.</li>
<li class="font">
Push to your fork of the repository , navigate to original
repository and make a pull request.
</li>
<li class="font">Make changes to the code</li>
<li class="font">Stage your changes using:</li>
<div class="code">
<div class="mx-4 my-2 fc" id="2">$ git add .</div>
<button class="copy-btn" onclick="copy(this.id)" id="2b">Copy</button>
</div>
<li class="font">Commit your changes using:</li>
<div class="code">
<div class="mx-4 my-2 fc" id="3">$ git commit -m "add any comment"</div>
<button class="copy-btn" onclick="copy(this.id)" id="3b">Copy</button>
</div>
<li class="font">Push the changes to the forked repository using:</li>
<div class="code">
<div class="mx-4 my-2 fc" id="4">$ git push</div>
<button class="copy-btn" onclick="copy(this.id)" id="4b">Copy</button>
</div>
<li class="font">Navigate to the original repository and make a pull request</li>
</ol>
</div>
<div class="container mt-3" id="resourceBox">
<!--Beginner Resource Box-->
<h4 class="resource-heading">Beginner</h4>
<div class="row" id="beginnerResourceBox"></div>
<!--Intermediate Resource Box -->
<h4 class="resource-heading">Intermediate</h4>
<div class="row mt-2" id="intermediateResourceBox"></div>
<!--Advanced Resource Box -->
<h4 class="resource-heading">Advanced</h4>
<div class="row mt-2" id="advancedResourceBox"></div>
<h4 class="resource-heading"></h4>
<div class="row mt-2" id="projectsResourceBox"></div>
</div>
</div>
<footer>
<div class="footer d-flex flex-coloumn justify-content-center">
Made with ❤ By <a href="https://dscjss.in">DSC JSSATEN</a>
<a href="https://github.com/dsc-jss-noida" classname=" text-black github-footer" rel="noopener noreferrer"
target="_blank">
</a>
</div>
<img src="./assets/images/gdsc-logo.png" style="display: block; width: 250px; margin: 10px auto"
classname="m-5 img-logo" alt="gdsc_logo" />
</footer>
<!-- Footer Section Ends -->
<!-- Option 1: Bootstrap Bundle with Popper -->
<script src="https://cdn.jsdelivr.net/npm/[email protected]/dist/js/bootstrap.bundle.min.js"
integrity="sha384-MrcW6ZMFYlzcLA8Nl+NtUVF0sA7MsXsP1UyJoMp4YLEuNSfAP+JcXn/tWtIaxVXM"
crossorigin="anonymous"></script>
<script src="./js/index.js"></script>
<script src="./js/getResource.js"></script>
<script src="https://kit.fontawesome.com/d5f8b6c1a9.js" crossorigin="anonymous"></script>
</body>
</html>