-
-
Notifications
You must be signed in to change notification settings - Fork 73
/
resource.html
339 lines (322 loc) · 15.7 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
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8" />
<meta http-equiv="X-UA-Compatible" content="IE=edge" />
<meta name="viewport" content="width=device-width, initial-scale=1.0" />
<title>Resources - GirlScript Asansol</title>
<link rel="stylesheet" href="resource.css" />
<script src="https://kit.fontawesome.com/cad7156e83.js"></script>
<link rel="icon" type="image/x-icon" href="/Assets/asn-logo-modified.png">
</head>
<body>
<div class="loader"></div>
<div id="web-contents">
<!-- <<<<<Template code (copied from index.html)>>>> -->
<!--Navbar section goes here-->
<nav class="gs-navbar">
<!--logo-->
<img src="https://avatars.githubusercontent.com/u/104223990?v=4" alt="logo" onclick="location.href='index.html'" style="cursor:pointer;">
<!--name of the community added beside the logo-->
<div class="name" onclick="location.href='index.html'" style="cursor:pointer;">
<p>GirlScript Asansol</p>
<!--GirlScript Asansol in one line instead of 2 seperate lines-->
</div>
<!--toggle bar for small screens-->
<div class="toggle">
<a href="#"><svg xmlns="http://www.w3.org/2000/svg" width="40" height="40" fill="black"
class="bi bi-list" viewBox="0 0 16 16">
<path fill-rule="evenodd"
d="M2.5 12a.5.5 0 0 1 .5-.5h10a.5.5 0 0 1 0 1H3a.5.5 0 0 1-.5-.5zm0-4a.5.5 0 0 1 .5-.5h10a.5.5 0 0 1 0 1H3a.5.5 0 0 1-.5-.5zm0-4a.5.5 0 0 1 .5-.5h10a.5.5 0 0 1 0 1H3a.5.5 0 0 1-.5-.5z" />
</svg></i></a>
</div>
<!--the other items of navbar is added below-->
<div class="options">
<a href="../index.html">Home</a>
<a href="../index.html#about">About Us</a>
<a href="./Resources/resource.html">Resources</a>
<a href="../index.html#pastevents">Past Events</a>
<a href="../team.html">Our Team</a>
<a href="../index.html#faq">FAQ</a>
<a href="../index.html#contact-us">Contact Us</a>
<!-- Follow us section -->
<div class="dropdown">
<button class="dropbtn">Follow Us
<i class="fa fa-caret-down"></i>
</button>
<div class="social">
<a href="https://github.com/gsasansol" target="_blank" class="github"><i class="fa fa-github"> <span>GirlScript Asansol</span></i></a>
<a href="https://twitter.com/GSAsansol" target="_blank" class="twitter"><i class="fa fa-twitter"><span>GSAsansol</span></i></a>
<a href="https://www.instagram.com/gsasansol/" target="_blank" class="Instagram"><i class="fa fa-instagram"> <span> gsasansol</span></i></a>
<a href="https://www.linkedin.com/company/gsasansol/" target="_blank" class="linkedin"><i class="fa fa-linkedin"> <span>gsasansol</span></i></a>
</div>
</div>
</div>
<!--dark mode button is now outside the option class-->
<button onclick="darkMode()" class="toggleButton">
<i class='fas fa-sun'></i>
</button>
</nav>
<!--added jQuery Event Methods for toggle bar to open and close-->
<script src="https://cdnjs.cloudflare.com/ajax/libs/jquery/3.6.1/jquery.min.js"></script>
<script>
$(function () {
$(".toggle").on("click", function () {
if ($(".options").hasClass("active")) {
$(".options").removeClass("active");
$(this).find("a").html(`<svg xmlns="http://www.w3.org/2000/svg" width="40" height="40" fill="black" class="bi bi-list" viewBox="0 0 16 16"><path fill-rule="evenodd" d="M2.5 12a.5.5 0 0 1 .5-.5h10a.5.5 0 0 1 0 1H3a.5.5 0 0 1-.5-.5zm0-4a.5.5 0 0 1 .5-.5h10a.5.5 0 0 1 0 1H3a.5.5 0 0 1-.5-.5zm0-4a.5.5 0 0 1 .5-.5h10a.5.5 0 0 1 0 1H3a.5.5 0 0 1-.5-.5z"/></svg>`);
}
else {
$(".options").addClass("active");
$(this).find("a").html(`<svg xmlns="http://www.w3.org/2000/svg" width="40" height="40" fill="black" class="bi bi-x-lg" viewBox="0 0 16 16"><path d="M2.146 2.854a.5.5 0 1 1 .708-.708L8 7.293l5.146-5.147a.5.5 0 0 1 .708.708L8.707 8l5.147 5.146a.5.5 0 0 1-.708.708L8 8.707l-5.146 5.147a.5.5 0 0 1-.708-.708L7.293 8 2.146 2.854Z"/></svg>`);
}
});
});
</script>
<!---Navbar ends here-->
<!--jQuery Event Methods for toggle bar to open and close-->
<script src="https://cdnjs.cloudflare.com/ajax/libs/jquery/3.6.1/jquery.min.js"></script>
<script>
$(function () {
$(".toggle").on("click", function () {
if ($(".options").hasClass("active")) {
$(".options").removeClass("active");
$(this)
.find("a")
.html(
`<svg xmlns="http://www.w3.org/2000/svg" width="40" height="40" fill="black" class="bi bi-list" viewBox="0 0 16 16"><path fill-rule="evenodd" d="M2.5 12a.5.5 0 0 1 .5-.5h10a.5.5 0 0 1 0 1H3a.5.5 0 0 1-.5-.5zm0-4a.5.5 0 0 1 .5-.5h10a.5.5 0 0 1 0 1H3a.5.5 0 0 1-.5-.5zm0-4a.5.5 0 0 1 .5-.5h10a.5.5 0 0 1 0 1H3a.5.5 0 0 1-.5-.5z"/></svg>`
);
} else {
$(".options").addClass("active");
$(this)
.find("a")
.html(
`<svg xmlns="http://www.w3.org/2000/svg" width="40" height="40" fill="black" class="bi bi-x-lg" viewBox="0 0 16 16"><path d="M2.146 2.854a.5.5 0 1 1 .708-.708L8 7.293l5.146-5.147a.5.5 0 0 1 .708.708L8.707 8l5.147 5.146a.5.5 0 0 1-.708.708L8 8.707l-5.146 5.147a.5.5 0 0 1-.708-.708L7.293 8 2.146 2.854Z"/></svg>`
);
}
});
});
</script>
<!--Code scpecific for resources page begins here-->
<div class="resources-header">
<h1 id="heading">RESOURCES AND ROADMAPS</h1>
<hr />
<p id="subheading">
Follow these unique roadmaps and resources to excel in your chosen
field
</p>
</div>
<section class="cards-section">
<div class="card">
<div class="card__header">
<img
src="../components/articles/Android Development/Assets/AndroidDevRoadMap.png"
alt="card__image"
class="card__image"
width="600"
/>
</div>
<div class="card__body">
<h4>Android Development</h4>
<p>
Android is an open-source operating system based on the Linux kernel and
used in mobile devices like smartphones, tablets, etc. Android has been
one of the best-selling OS for smartphones. Android OS was developed by
Android Inc. before Google bought the company in 2005. Various applications
like games, music players, cameras, etc. are built for these smartphones
which run on Android. Google Play Store features quite 3.3 million apps.
Today, Android remains dominant on a global scale. Approximately 75% of the
world population prefers using Android against iOS. It is an operating system
that has a huge market for apps.
</p>
</div>
<div class="card__footer">
<a href="./blogcard.html">
<div class="button-center">
<div class="readmore">
Read more <i class="fas fa-angle-right"></i>
</div>
</div>
</a>
</div>
</div>
<div class="card">
<div class="card__header">
<img
src="../components/articles/Blockchain-Development/assets/1.png"
alt="card__image"
class="card__image"
width="600"
/>
</div>
<div class="card__body">
<h4>Blockchain Guide</h4>
<p>
A guide covering Blockchain including the applications and tools that will make you a better and more efficient Blockchain developer.
The blockchain is an incorruptible digital ledger of economic transactions that can be programmed to record not just financial transactions but virtually everything of value (by [Debjit Purohit])
</p>
</div>
<div class="card__footer">
<a href="./blogcard.html">
<div class="button-center">
<div class="readmore">
Read more <i class="fas fa-angle-right"></i>
</div>
</div>
</a>
</div>
</div>
<div class="card">
<div class="card__header">
<img
src="../components/articles/Cryptography Roadmap/cryptography.jpg"
alt="card__image"
class="card__image"
width="600"
/>
</div>
<div class="card__body">
<h4>Cryptography Roadmap</h4>
<p>
*Cryptography* is technique of securing information and communications through use of codes so that only those person for whom the information is intended can understand it and process it. Thus preventing unauthorized access to information. The prefix “crypt” means “hidden” and suffix graphy means “writing”.
</p>
</div>
<div class="card__footer">
<a href="./blogcard.html">
<div class="button-center">
<div class="readmore">
Read more <i class="fas fa-angle-right"></i>
</div>
</div>
</a>
</div>
</div>
<div class="card">
<div class="card__header">
<img
src="../components/articles/dbms-sql/dbms.png"
alt="card__image"
class="card__image"
width="600"
/>
</div>
<div class="card__body">
<h4>DBMS-SQL</h4>
<p>
Database management system is a software which is used to manage the database. For example: MySQL, Oracle, etc are a very popular commercial database which is used in different applications.
DBMS provides an interface to perform various operations like database creation, storing data in it, updating data, creating a table in the database and a lot more.
It provides protection and security to the database. In the case of multiple users, it also maintains data consistency.
</p>
</div>
<div class="card__footer">
<a href="./blogcard.html">
<div class="button-center">
<div class="readmore">
Read more <i class="fas fa-angle-right"></i>
</div>
</div>
</a>
</div>
</div>
<div class="card">
<div class="card__header">
<img
src="../components/articles/DevOps Roadmap/DevOps-processes.png"
alt="card__image"
class="card__image"
width="600"
/>
</div>
<div class="card__body">
<h4>DevOps Roadmap</h4>
<p>
In the present-day scenario of IT organizations, DevOps Engineer is one of the most demanding job profiles with no signs of slowing down. Statistically, the demand for DevOps Professionals has increased by approximately 40-45% in the job market within the last 3-4 years and the number is growing rapidly. Meanwhile, DevOps is a challenging job that requires a vast skillset along with adequate experience and in-depth knowledge in the field. No wonder DevOps will rule the IT world in the upcoming times and if you’re looking forward to making a career as a DevOps Engineer, you can consider yourself on the right track!
</p>
</div>
<div class="card__footer">
<a href="./blogcard.html">
<div class="button-center">
<div class="readmore">
Read more <i class="fas fa-angle-right"></i>
</div>
</div>
</a>
</div>
</div>
<div class="card">
<div class="card__header">
<img
src="../components/articles/Web Development/Assets/WebDevRoadmap.jpg"
alt="card__image"
class="card__image"
width="600"
/>
</div>
<div class="card__body">
<h4>Web Development</h4>
<p>
Web development is the work involved in developing a website for the Internet (World Wide Web) or an intranet (a private network).[1] Web development can range from developing a simple single static page of plain text to complex web applications, electronic businesses, and social network services. A more comprehensive list of tasks to which Web development commonly refers, may include Web engineering, Web design, Web content development, client liaison, client-side/server-side scripting, Web server and network security configuration, and e-commerce development.</p>
</div>
<div class="card__footer">
<a href="./blogcard.html">
<div class="button-center">
<div class="readmore">
Read more <i class="fas fa-angle-right"></i>
</div>
</div>
</a>
</div>
</section>
<hr style="background-color:#fff">
<!---Footer section goes here-->
<footer class="footer">
<div class="container">
<div class="footer-col first">
<img src="https://cdn.discordapp.com/attachments/840314672179576917/1027519648947769424/asn-logo.png"
alt="logo" class="footer-logo">
<div class="social-links">
<a href="https://github.com/gsasansol"> <i class="fab fa-github"></i></a>
<a href="https://twitter.com/GSAsansol"> <i class="fab fa-twitter"></i></a>
<a href="https://www.instagram.com/gsasansol/"> <i class="fab fa-instagram"></i></a>
<a href="https://www.linkedin.com/company/gsasansol/"> <i class="fab fa-linkedin"></i></a>
<a href="https://discord.com/invite/aVRPbMYfFH"><i class="fab fa-discord"></i></a>
</div>
</div>
<div class="footer-col">
<h4>GirlScript Asansol</h4>
<p>
GirlScript Asansol is a non-profit student run community registered under girlscript foundation
on 23rd April, 2022. We aim to empower people and especially underrepresented groups in the
field of technology. GirlScript Asansol's mission is to create opportunity, learning, growth,
and diversity in technology academia and industry.
</p>
</div>
<div class="footer-col">
<h4>Quick links</h4>
<ul>
<li><a href="../index.html">home</a></li>
<li><a href="../index.html">about us</a></li>
<li><a href="#">resources</a></li>
<li><a href="../index.html">Past events</a></li>
<li><a href="../index.html">achievements</a></li>
<li><a href="../index.html">Team</a></li>
<li><a href="../index.html">FAQ</a></li>
<li><a href="../index.html">Contact Us</a></li>
</ul>
</div>
</div>
<hr>
<p class="footer-credit">Copyright © 2022 GirlScript Foundation: Asansol Chapter, All Rights Reserved </p>
</footer>
</div>
<script src="resource.js"></script>
<script src="https://cdnjs.cloudflare.com/ajax/libs/jquery/3.5.1/jquery.min.js"></script>
<script>
document.getElementById("web-contents").style.display = "none";
setTimeout(function () {
$(".loader").fadeToggle();
document.getElementById("web-contents").style.display = "block";
}, 2500);
</script>
</body>
</html>