-
Notifications
You must be signed in to change notification settings - Fork 80
/
Copy pathblog.html
435 lines (427 loc) · 18.5 KB
/
blog.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
354
355
356
357
358
359
360
361
362
363
364
365
366
367
368
369
370
371
372
373
374
375
376
377
378
379
380
381
382
383
384
385
386
387
388
389
390
391
392
393
394
395
396
397
398
399
400
401
402
403
404
405
406
407
408
409
410
411
412
413
414
415
416
417
418
419
420
421
422
423
424
425
426
427
428
429
430
431
432
433
434
435
<!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>E-school blog</title>
<link rel="icon" type="image/x-icon" href="./images/favicon/favicon.ico" />
<link
rel="stylesheet"
href="https://stackpath.bootstrapcdn.com/bootstrap/4.5.0/css/bootstrap.min.css"
integrity="sha384-9aIt2nRpC12Uk9gS9baDl411NQApFmC26EwAOH8WgZl5MYYxFfc+NcPb1dKGj7Sk"
crossorigin="anonymous"
/>
<link rel="stylesheet" href="blog.css" />
<link
href="http://cdnjs.cloudflare.com/ajax/libs/font-awesome/4.3.0/css/font-awesome.css"
rel="stylesheet"
type="text/css"
/>
<script src="https://ajax.googleapis.com/ajax/libs/jquery/1.12.4/jquery.min.js"></script>
</head>
<body style="background-color: #f0fff0">
<div id="preloader">
<div id="status"></div>
</div>
<header class="nav-scroll mh-xss-mobile-nav">
<div class="container">
<nav class="navbar navbar-expand-lg navbar-light">
<a class="navbar-brand mt-1" href="./index.html">
<img src="images/logo.svg" alt="" />
</a>
<!--------HAMBURGER MENU -------->
<a href="javascript:void(0);" class="icon" onclick="myFunction()">
<i class="fa fa-bars"></i>
</a>
<div class="collapse navbar-collapse" id="navbarNav">
<ul class="navbar-nav ml-auto">
<li class="nav-item">
<a
class="nav-link mt-1"
href="https://github.com/EbookFoundation/free-programming-books"
target="_blank"
>Books</a
>
</li>
<li class="nav-item">
<a
class="nav-link mt-1"
href="https://sahityaroy.hashnode.dev/"
target="_blank"
>Blog</a
>
</li>
<li class="nav-item">
<a
class="btn btn-success mr-2 mt-1"
href="https://forms.gle/XRqaRiaLdNxh7Ykk6"
target="_blank"
>Register</a
>
</li>
<li class="nav-item">
<a
class="btn btn-success mr-2 mt-1"
href="https://www.buymeacoffee.com/sahityaroy"
target="_blank"
>Support</a
>
</li>
</ul>
</div>
</nav>
</div>
</header>
<section>
<div class="container">
<div class="text-center mt-8">
<h1>BLOG</h1>
</div>
<div class="container">
<div class="card-columns"><div class="card">
<a href="https://www.atlassian.com/devops">
<img
class="card-img-top"
src="https://wac-cdn.atlassian.com/dam/jcr:ef9fe684-c6dc-4ba0-a636-4ef7bcfa11f1/New%20DevOps%20Loop%20image.png?cdnVersion=580 "
alt="Card image cap"
/>
<div class="card-body">
<h5 class="card-title">
What is Devops ?
</h5>
<p class="card-text">
DevOps is a set of practices, tools, and a cultural philosophy that automate and integrate the processes between software development and IT teams. It emphasizes team empowerment, cross-team communication and collaboration, and technology automation.
The DevOps movement began around 2007 when the software development and IT operations communities raised concerns about the traditional software development model, where developers who wrote code worked apart from operations who deployed and supported the code. The term DevOps, a combination of the words development and operations, reflects the process of integrating these disciplines into one, continuous process.
</p>
<p class="card-text">
<small class="text-muted"
><i class="fa fa-eye"></i>27<i class="fa fa-user"></i
>admin<i class="fa fa-calendar-alt"></i>Oct 14,2022
</small
>
</p>
</div>
</a>
</div>
<div class="card">
<a href="./blogs/blog1.html">
<img
class="card-img-top"
src="https://www.dataquest.io/wp-content/uploads/2019/05/what-is-data-science-1.jpg"
alt="Card image cap"
/>
<div class="card-body">
<h5 class="card-title">
Do you know how the web developer teams are organised.
</h5>
<p class="card-text">
Data science combines math and statistics, specialized programming, advanced analytics, artificial intelligence (AI), and machine learning with specific subject matter expertise to uncover actionable insights hidden in an organization’s data. These insights can be used to guide decision making and strategic planning.
</p>
<p class="card-text">
<small class="text-muted"
><i class="fa fa-eye"></i>123<i class="fa fa-user"></i
>Nitin<i class="fa fa-calendar-alt"></i>Jan 20,
2022</small
>
</p>
</div>
</a>
</div>
<div class="card">
<a href="./blogs/blog1.html">
<img
class="card-img-top"
src="./images/blogimages/austin-distel-wD1LRb9OeEo-unsplash.jpg "
alt="Card image cap"
/>
<div class="card-body">
<h5 class="card-title">
Do you know how the web developer teams are organised.
</h5>
<p class="card-text">
A web developer may work with technology, but working with
people is also an important feature for this professional
profiles. Did you know that “teamwork” is in the TOP 5 of
the most valued soft skills? And that in 2020 it will be
even more relevant than it is today? The Future Work
</p>
<p class="card-text">
<small class="text-muted"
><i class="fa fa-eye"></i>123<i class="fa fa-user"></i
>admin<i class="fa fa-calendar-alt"></i>Jan 20,
2018</small
>
</p>
</div>
</a>
</div>
<div class="card">
<a href="">
<img
class="card-img-top"
src="./images/blogimages/fotis-fotopoulos-DuHKoV44prg-unsplash.jpg"
alt="Card image cap"
/>
<div class="card-body">
<h5 class="card-title">
Modern client-side routing: the App History API
</h5>
<p class="card-text">
Single-page applications, or SPAs, are defined by a core
feature: dynamically rewriting their content as the user
interacts with the site, instead of the default method of
loading entirely new pages from the server.
</p>
<p class="card-text">
<small class="text-muted"
><i class="fa fa-eye"></i>12430<i class="fa fa-user"></i
>admin<i class="fa fa-calendar-alt"></i>Jan 20,
2018</small
>
</p>
</div>
</a>
</div>
<div class="card">
<a href="./blogs/blog2.html">
<img
class="card-img-top"
src="./images/blogimages/nathan-da-silva-k-rKfqSm4L4-unsplash.jpg"
alt="Card image cap"
/>
<div class="card-body">
<h5 class="card-title">
Using CSS Module Scripts to import stylesheets.
</h5>
<p class="card-text">
With the new CSS module scripts feature, you can load CSS
style sheets with import statements, just like JavaScript
modules. The style sheets
</p>
<p class="card-text">
<small class="text-muted"
><i class="fa fa-eye"></i>153<i class="fa fa-user"></i
>admin<i class="fa fa-calendar-alt"></i>Jan 20,
2018</small
>
</p>
</div>
</a>
</div>
<div class="card">
<a href="./blogs/blog6.html">
<img
class="card-img-top"
src="./images/blogimages/h-heyerlein-ndja2LJ4IcM-unsplash.jpg"
alt="Card image cap"
/>
<div class="card-body">
<h5 class="card-title">
A performance-focused workflow based on Google tools
</h5>
<p class="card-text">
With the Core Web Vitals (CWV) metrics now incorporated into
Page experience signals, user experience optimization has
increasingly become top of mind for website owners.
</p>
<p class="card-text">
<small class="text-muted"
><i class="fa fa-eye"></i>43<i class="fa fa-user"></i
>admin<i class="fa fa-calendar-alt"></i>Jan 20,
2018</small
>
</p>
</div>
</a>
</div>
<div class="card">
<a href="./blogs/blog4.html">
<img
class="card-img-top"
src="./images/blogimages/photo-1498050108023-c5249f4df085.jpg"
alt="Card image cap"
/>
<div class="card-body">
<h5 class="card-title">
How to choose a tech-stack in web development?
</h5>
<p class="card-text">
The world has changed to a mobile-first era but even today,
none of the applications could emerge as effective as the
web-based apps. Surfacing on top of this is the prevalence
of progressive web apps that perform functions identical to
mobile apps.
</p>
<p class="card-text">
<small class="text-muted"
><i class="fa fa-eye"></i>43<i class="fa fa-user"></i
>Rudramadhaba Mishra<i class="fa fa-calendar-alt"></i>Oct
22, 2021</small
>
</p>
</div>
</a>
</div>
<div class="card">
<a href="./blogs/blog5.html">
<img
class="card-img-top"
src="./images/blogimages/blog5.jpg"
alt="Card image cap"
/>
<div class="card-body">
<h5 class="card-title">How to Learn ReactJS in 2021?</h5>
<p class="card-text">
let’s talk about the developers who are already in the
industry and working on some frontend part of the project.
How do you feel when you are asked to write the same line of
code at multiple places? How do you feel when you’re asked
to add the same button on multiple pages?
</p>
<p class="card-text">
<small class="text-muted"
><i class="fa fa-eye"></i>12430<i class="fa fa-user"></i
>Rudramadhaba Mishra<i class="fa fa-calendar-alt"></i>Oct
22, 2021</small
>
</p>
</div>
</a>
</div>
<div class="card">
<a href="./blogs/blog5.html">
<img
class="card-img-top"
src="./images/blogimages/blog5.jpg"
alt="Card image cap"
/>
<div class="card-body">
<h5 class="card-title">Importance of blockchain</h5>
<p class="card-text">
Blockchain facilitates the verification and traceability of multistep transactions that require verification and traceability. It can ensure secure transactions, lower compliance expenses, and accelerate data transfer processing. Blockchain technology can aid in contract administration and product auditing.
Public blockchains are accessible to anybody; private blockchains are only accessible to a limited number of users; and permissioned blockchains are a hybrid of public and private blockchains that anyone may access as long as they have permission from the administrators.
</p>
<p class="card-text">
<small class="text-muted"
><i class="fa fa-eye"></i>12430<i class="fa fa-user"></i
>Rudramadhaba Mishra<i class="fa fa-calendar-alt"></i>Oct
22, 2021</small
>
</p>
</div>
</a>
</div>
<div class="card">
<a href="">
<img
class="card-img-top"
src="./images/blogimages/h-heyerlein-ndja2LJ4IcM-unsplash.jpg"
alt="Card image cap"
/>
<div class="card-body">
<h5 class="card-title">How to Become GFG Campus Mantri</h5>
<p class="card-text">
You’ll be recognized as the nominated “Mantri” of your
campus and your duty will be to help the proletarians
(Students) of your Constituency (College campus).
Opportunity to work in proximity with one of the most
dynamic digital Ed-tech platforms. Career counseling
opportunity with the Head of the Parliament Mr. Sandeep Jain
and other top Ministers (Mentors) of the Cabinet. Get a
chance to be a part of Law making (idea originating and
decision making policy for the company and get featured).
Since you’ll be joining us in the Parliament, your opinion
matters to us. You’ll get an opportunity to review the bill
(upcoming online courses) and suggest the amendments
required. You get early access to new online courses being
launched by GeeksforGeeks. We are all ears for your review,
feedback and suggestions.
</p>
<p class="card-text">
<small class="text-muted"
><i class="fa fa-eye"></i>43<i class="fa fa-user"></i
>admin<i class="fa fa-calendar-alt"></i>Oct 21,
2021</small
>
</p>
</div>
</a>
</div>
<div class="card">
<a href="./blogs/blog3.html">
<img
class="card-img-top"
src="./images/blogimages/markus-spiske-iar-afB0QQw-unsplash.jpg"
alt="Card image cap"
/>
<div class="card-body">
<h5 class="card-title">Building a breadcrumbs component</h5>
<p class="card-text">
A foundational overview of how to build a responsive and
accessible breadcrumbs component for users to navigate your
site.
</p>
<p class="card-text">
<small class="text-muted"
><i class="fa fa-eye"></i>100<i class="fa fa-user"></i
>admin<i class="fa fa-calendar-alt"></i>Jan 20,
2018</small
>
</p>
</div>
</a>
</div>
<div class="card">
<a href="">
<img
class="card-img-top"
src="./images/blogimages/ray-rui-SyzQ5aByJnE-unsplash.jpg"
alt="Card image cap"
/>
<div class="card-body">
<h5 class="card-title">
JavaScript: What is the meaning of this?
</h5>
<p class="card-text">
JavaScript's this is the butt of many jokes, and that's
because, well, it's pretty complicated. However, I've seen
developers do much-more-
</p>
<p class="card-text">
<small class="text-muted"
><i class="fa fa-eye"></i>600<i class="fa fa-user"></i
>admin<i class="fa fa-calendar"></i>Jan 20, 2018</small
>
</p>
</div>
</a>
</div>
</div>
</div>
</div>
</section>
</body>
</html>
<script>
function myFunction() {
var x = document.getElementById("navbarNav");
if (x.style.display === "block") {
x.style.display = "none";
} else {
x.style.display = "block";
}
}
</script>
<script
src="https://code.jquery.com/jquery-1.12.4.min.js"
type="text/javascript"
></script>
<script type="text/javascript">
$(window).load(function () {
// makes sure the whole site is loaded
$("#status").fadeOut(); // will first fade out the loading animation
$("#preloader").delay(50).fadeOut(100); // will fade out the white DIV that covers the website.
$("body").delay(50).css({ overflow: "visible" });
});
</script>