-
Notifications
You must be signed in to change notification settings - Fork 29
/
blogs.html
645 lines (608 loc) Β· 19.6 KB
/
blogs.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
436
437
438
439
440
441
442
443
444
445
446
447
448
449
450
451
452
453
454
455
456
457
458
459
460
461
462
463
464
465
466
467
468
469
470
471
472
473
474
475
476
477
478
479
480
481
482
483
484
485
486
487
488
489
490
491
492
493
494
495
496
497
498
499
500
501
502
503
504
505
506
507
508
509
510
511
512
513
514
515
516
517
518
519
520
521
522
523
524
525
526
527
528
529
530
531
532
533
534
535
536
537
538
539
540
541
542
543
544
545
546
547
548
549
550
551
552
553
554
555
556
557
558
559
560
561
562
563
564
565
566
567
568
569
570
571
572
573
574
575
576
577
578
579
580
581
582
583
584
585
586
587
588
589
590
591
592
593
594
595
596
597
598
599
600
601
602
603
604
605
606
607
608
609
610
611
612
613
614
615
616
617
618
619
620
621
622
623
624
625
626
627
628
629
630
631
632
633
634
635
636
637
638
639
640
641
642
643
644
645
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8" />
<meta name="viewport" content="width=device-width, initial-scale=1.0" />
<link
rel="icon"
href="images/website-logos/index-logo.jpg"
type="image/jpg"
/>
<script
src="https://kit.fontawesome.com/d683a774d2.js"
crossorigin="anonymous"
></script>
<link rel="preconnect" href="https://fonts.googleapis.com" />
<link rel="preconnect" href="https://fonts.gstatic.com" crossorigin />
<link
rel="stylesheet"
href="https://cdnjs.cloudflare.com/ajax/libs/font-awesome/6.0.0-beta3/css/all.min.css"
/>
<link
rel="stylesheet"
href="https://unicons.iconscout.com/release/v4.0.8/css/line.css"
/>
<link
href="https://fonts.googleapis.com/css2?family=Bentham&display=swap"
rel="stylesheet"
/>
<link rel="stylesheet" href="css/events.css" />
<link rel="stylesheet" href="css/blogs.css" />
<!-- <link rel="stylesheet" href="https://unicons.iconscout.com/release/v4.0.8/css/line.css"> -->
<title>Sharing Our Stories, Through Writing</title>
<style></style>
</head>
<body>
<!--nav bar -->
<!-- linear gradient -->
<div class="header-background"></div>
<!-- NAVIGATION BAR GOES HERE!!!! -->
<header>
<div class="responsiveness">
<div class="logo">
<img src="./images/website-logos/logo.svg" alt="" />
<span>Algorithmia SE π</span>
</div>
<!-- For responsiveness -->
<div>
<i id="menu-bar" class="fas fa-bars"></i>
</div>
</div>
<nav class="nav-container">
<ul>
<li class="nav-list"><a href="./index.html">Home</a></li>
<li class="nav-list">
<a href="./index.html#About_us">About Us</a>
</li>
<li class="nav-list">
<a href="./index.html#Contact_us">Contact Us</a>
</li>
<li class="nav-list">
<a href="./projects.html">Projects</a>
</li>
<li class="nav-list dropdown">
<a href="./events.html">Events</a>
<ul class="dropdown-content">
<li>
<a href="./events.html#upcoming-events">Upcoming Events</a>
</li>
<li><a href="./events.html#latest-events">Latest Events</a></li>
<li><a href="./events.html#past-events">Past Events</a></li>
</ul>
</li>
<li class="nav-list">
<a href="./blogs.html" id="blog"><span>Blogs</span></a>
</li>
<button id="join_us">Join Us</button>
</ul>
</nav>
</header>
<!-- NAVIGATION BAR ENDS HERE!!!! -->
<!-- Start of Evance & Akos -->
<section id="blog-section" class="container">
<!-- <h1>BLOGS</h1> -->
<nav class="blog-nav">
<ul>
<li>
<a
href="https://algorithmiasecollaborators.hashnode.dev/"
class="current"
>All</a
>
</li>
<li>
<a href="https://algorithmiasecollaborators.hashnode.dev/"
>Open Source</a
>
</li>
<li>
<a href="https://algorithmiasecollaborators.hashnode.dev/"
>Software Engineering</a
>
</li>
<li>
<a href="https://algorithmiasecollaborators.hashnode.dev/"
>Latest</a
>
</li>
<li>
<a href="https://algorithmiasecollaborators.hashnode.dev/"
>Startups</a
>
</li>
<li>
<a href="https://algorithmiasecollaborators.hashnode.dev/">AI</a>
</li>
<li>
<a href="https://algorithmiasecollaborators.hashnode.dev/"
>Cybercaster</a
>
</li>
<li>
<a href="https://algorithmiasecollaborators.hashnode.dev/"
>Crypto</a
>
</li>
</ul>
</nav>
</section>
<!-- End of Evance & Akos -->
<!-- Section contains content and link to the article "Beginner's Guide to open source" -->
<section id="article_open_source" class="container">
<div class="content">
<h2>Demystifying Open Source: A Beginner's Guide</h2>
<p>
Explore the world of open-source software, its significance, and how
beginners can get involved in open-source projects.
</p>
<a
href="https://algorithmiasecollaborators.hashnode.dev/"
target="_blank">
<div class="article_link">
<div><i class="fa-solid fa-arrow-right"></i></div>
Read full article
</div>
</a>
</div>
<div class="image">
<img src="./images/blogs/open_source.png" alt="open source" />
</div>
</section>
<!-- Start of Samuel & Judith -->
<section id="articles" class="container">
<div class="card_a">
<img src="./images/blogs/algorithmia.jpg" />
<div class="date_article_type">
<div class="tag"><p>Algorithmia SE π</p></div>
<div class="date">
<p>Oct 28, 2023</p>
</div>
</div>
<p class="article_desc">
<a
href="https://algorithmiasecollaborators.hashnode.dev/algorithmia-se-building-an-open-source-community-through-collaboration"
target="_blank"
>Algorithmia SE π</a
>
</p>
<!-- Replace with an image -->
<p>
<span class="author_pic"></span
><a
href="https://hashnode.com/@gidambayiantony"
target="_blank"
class="author_name"
>Antony Gidambayi
</a>
</p>
</div>
<div class="card_a">
<img src="./images/blogs/genesis.jpg" />
<div class="date_article_type">
<div class="tag"><p>Algorithmia SE π</p></div>
<div class="date">
<p>Coming Soon</p>
</div>
</div>
<p class="article_desc">
<a
href="https://algorithmiasecollaborators.hashnode.dev/"
target="_blank"
>The Genesis Of Algorithmia SE π</a
>
</p>
<!-- Replace with an image -->
<p>
<span class="author_pic"></span
><a
href="https://hashnode.com/@hunterxcobby"
target="_blank"
class="author_name"
>Cobby Solomon</a
>
</p>
</div>
<div class="card_a">
<img src="./images/blogs/spotlight.jpg" />
<div class="date_article_type">
<div class="tag"><p>Spotlight</p></div>
<div class="date"><p>Coming Soon</p></div>
</div>
<p class="article_desc">
<a
href="https://algorithmiasecollaborators.hashnode.dev/"
target="_blank"
>Community Spotlight: Celebrating Algorithmia SE's Core Team</a
>
</p>
<!-- Replace with an image -->
<p>
<span class="author_pic"></span
><a
href="https://hashnode.com/@DohouDaniel"
target="_blank"
class="author_name"
>Daniel Dohou</a
>
</p>
</div>
<div class="card_a">
<img src="./images/blogs/calculator.jpg" />
<div class="date_article_type">
<div class="tag"><p>Projects</p></div>
<div class="date">
<p>Coming Soon</p>
</div>
</div>
<p class="article_desc">
<a
href="https://algorithmiasecollaborators.hashnode.dev/"
target="_blank"
>Behind The Scene: Demo Project</a
>
</p>
<!-- Replace with an image -->
<p>
<span class="author_pic"></span
><a
href="https://hashnode.com/@dennisgabriel"
target="_blank"
class="author_name"
>Gabriel Onen
</a>
</p>
</div>
<div class="card_a">
<img src="./images/blogs/website.png" />
<div class="date_article_type">
<div class="tag"><p>Projects</p></div>
<div class="date">
<p>Coming Soon</p>
</div>
</div>
<p class="article_desc">
<a
href="https://algorithmiasecollaborators.hashnode.dev/"
target="_blank"
>Behind The Scenes: Static Web Project</a
>
</p>
<!-- Replace with an image -->
<p>
<span class="author_pic"></span
><a
href="https://hashnode.com/@spicam"
target="_blank"
class="author_name"
>Mubarak Adesina</a
>
</p>
</div>
<div class="card_a">
<img src="./images/blogs/collaborate.jpg" />
<div class="date_article_type">
<div class="tag"><p>Algorithmia SE π</p></div>
<div class="date">
<p>Coming Soon</p>
</div>
</div>
<p class="article_desc">
<a
href="https://algorithmiasecollaborators.hashnode.dev/"
target="_blank"
>Collaboration in Tech: The Power of Team Projects</a
>
</p>
<!-- Replace with an image -->
<p>
<span class="author_pic"></span
><a
href="https://hashnode.com/@Yayra91"
target="_blank"
class="author_name"
>Ruth Yayra</a
>
<span class="author_pic"></span
> and <a
href="https://hashnode.com/@khairat"
target="_blank"
class="author_name"
>Khairat Adesina</a
>
</p>
</div>
<div class="card_a">
<img src="./images/blogs/code-review.jpg" />
<div class="date_article_type">
<div class="tag"><p>Open Source</p></div>
<div class="date">
<p>Coming Soon</p>
</div>
</div>
<p class="article_desc">
<a
href="https://algorithmiasecollaborators.hashnode.dev/"
target="_blank"
>Mastering the Art of Code Review: Best Practices</a
>
</p>
<!-- Replace with an image -->
<p>
<span class="author_pic"></span
><a
href="https://hashnode.com/@martyofmca"
target="_blank"
class="author_name"
>Martin Amankwaa</a
>
</p>
</div>
<div class="card_a">
<img src="./images/blogs/none_code.jpg" />
<div class="date_article_type">
<div class="tag"><p>Open Source</p></div>
<div class="date">
<p>Coming Soon</p>
</div>
</div>
<p class="article_desc">
<a
href="https://algorithmiasecollaborators.hashnode.dev/"
target="_blank"
>Contributing to Open Source with Non-code Skills</a
>
</p>
<!-- Replace with an image -->
<p>
<span class="author_pic"></span
><a
href="https://hashnode.com/@"
target="_blank"
class="author_name"
>Dawnellar</a
>
</p>
</div>
<div class="card_a">
<img src="./images/blogs/trends.jpg" />
<div class="date_article_type">
<div class="tag"><p>Tech Trends</p></div>
<div class="date">
<p>Coming Soon</p>
</div>
</div>
<p class="article_desc">
<a
href="https://algorithmiasecollaborators.hashnode.dev/"
target="_blank"
>Tech Trends of the year 2023: A Sight of 2024</a
>
</p>
<!-- Replace with an image -->
<p>
<span class="author_pic"></span
><a
href="https://hashnode.com/@Huclark"
target="_blank"
class="author_name"
>Huclark Vanderpuye</a
>
</p>
</div>
<div class="card_a">
<img src="./images/blogs/sdg.jpg" />
<div class="date_article_type">
<div class="tag"><p>SDGs</p></div>
<div class="date">
<p>Coming Soon</p>
</div>
</div>
<p class="article_desc">
<a
href="https://algorithmiasecollaborators.hashnode.dev/"
target="_blank"
>Harnessing Technology for Sustainable Developments</a
>
</p>
<!-- Replace with an image -->
<p>
<span class="author_pic"></span
><a
href="https://hashnode.com/@Prisca4Tech"
target="_blank"
class="author_name"
>Prisca Ekhaguere</a
>
</p>
</div>
<div class="card_a">
<img src="./images/blogs/problem.jpg" />
<div class="date_article_type">
<div class="tag"><p>SE</p></div>
<div class="date"><p>Coming Soon</p></div>
</div>
<p class="article_desc">
<a
href="https://algorithmiasecollaborators.hashnode.dev/"
target="_blank"
>Problem Solving 101</a
>
</p>
<!-- Replace with an image -->
<p>
<span class="author_pic"></span
><a
href="https://hashnode.com/@DevNathaniel"
target="_blank"
class="author_name"
>Nathaniel Awosanmi</a
>
</p>
</div>
<div class="card_a">
<img src="./images/blogs/women.jpg" />
<div class="date_article_type">
<div class="tag"><p>Women In Tech</p></div>
<div class="date"><p>Coming Soon</p></div>
</div>
<p class="article_desc">
<a
href="https://algorithmiasecollaborators.hashnode.dev/"
target="_blank"
>Women in Tech: Empowering the Next Generation</a
>
</p>
<!-- Replace with an image -->
<p>
<span class="author_pic"></span
><a
href="https://hashnode.com/@Tkcodes"
target="_blank"
class="author_name"
>Tracey Kaburu</a
>
</p>
</div>
</section>
<!-- End of Samuel & Judith's contribution -->
<div class="scrolltotop" onclick="scrolltop()">
<i class="fa fa-arrow-up"></i>
</div>
<footer>
<!--footer style="position: fixed;bottom: 0;"-->
<div class="top">
<div class="left">
<img
src="./images/website-logos/logo.svg"
width="50px"
alt="Algorithmia SE logo"
/>
<p>
Algorithmia SE π represents an inspiring convergence of innovation,
collaboration, and transformation impact. It illuminates the path
for ALX Software Engineering students, and the wider tech community,
fostering a culture of continuous learning, problem-solving, and
positive change.
</p>
<br />
<p><a href="tel:+2348139720259">+234-81-3972-0259</a></p>
<p>
<a href="mailto:[email protected]"
>
</p>
</div>
<div class="right">
<h3>Quick Links</h3>
<div class="links">
<ul style="list-style-type: none">
<li><a href="./index.html">Home</a></li>
<li><a href="./events.html">Events</a></li>
<li><a href="./index.html#Contact_us">Contact Us</a></li>
</ul>
<ul style="list-style-type: none">
<li><a href="./index.html#About_us">About Us</a></li>
<li><a href="./projects.html">Projects</a></li>
<li><a href="./blogs.html">Blogs</a></li>
</ul>
</div>
</div>
</div>
<hr />
<div class="under">
<ul style="list-style: none">
<li>
<a href="https://github.com/Algorithmia-SE" target="_blank">
<i class="uil uil-github"></i>
</a>
<a href="https://twitter.com/Algorithmia_SE" target="_blank">
<i class="uil uil-twitter"></i>
</a>
<a
href="https://www.linkedin.com/in/algorithmia-se-0743b9283/"
target="_blank"
>
<i class="uil uil-linkedin"></i>
</a>
<a href="https://discord.gg/xgEsBQBRp3" target="_blank">
<i class="uil uil-discord"></i>
</a>
<a
href="https://whatsapp.com/channel/0029Va5SC3G9sBIFUjjzNl1c"
target="_blank"
>
<i class="uil uil-whatsapp"></i>
</a>
<a
href="mailto:[email protected]"
target="_blank"
>
<i class="uil uil-envelope"></i>
</a>
<a href="https://www.youtube.com/@Algorithmia_SE" target="_blank">
<i class="uil uil-youtube"></i>
</a>
</li>
</ul>
<div class="footer_product">
A product of
<img
src="./images/website-logos/logo.svg"
width="30px"
height="auto"
alt="Algorithmia SE logo"
/>
</div>
<div class="copyright">
© 2023 Algorithmia SE π. All Rights Reserved
</div>
</div>
</footer>
<!-- JavaScript -->
<script>
// menu responsiveness
let menu = document.getElementById("menu-bar");
let navbar = document.querySelector(".nav-container");
window.onscroll = function () {
menu.classList.remove("fa-times");
navbar.classList.remove("active");
};
menu.addEventListener("click", function () {
menu.classList.toggle("fa-times");
navbar.classList.toggle("active");
});
// menu responsiveness ends
// Card visibility
function scrolltop() {
window.scrollTo(0, 0);
}
// Intersection observer for the navbar
const header = document.querySelector("header");
const section = document.querySelector(".container");
const sectionOptions = {
rootMargin: "-200px 0px 0px 0px",
};
const sectionObserver = new IntersectionObserver(function (
entries,
sectionObserver
) {
entries.forEach((entry) => {
if (!entry.isIntersecting) {
header.classList.add("nav-scrolled");
} else {
header.classList.remove("nav-scrolled");
}
});
},
sectionOptions);
sectionObserver.observe(section);
// Join us link
var button = document.getElementById("join_us");
// Add a click event listener to the button
button.addEventListener("click", function () {
var targetURL = "https://forms.gle/ojo9Yi3xM8mbaZ4HA";
window.location.href = targetURL;
});
</script>
</body>
</html>