-
Notifications
You must be signed in to change notification settings - Fork 4
/
open-source.html
99 lines (94 loc) · 4.56 KB
/
open-source.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
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<meta name="viewport" content="width=device-width, initial-scale=1">
<title>Open Source</title>
<link rel="icon" href="static/imgs/favico.ico" type="image/x-icon">
<link
href="https://cdn.jsdelivr.net/npm/bootstrap@5.1.3/dist/css/bootstrap.min.css"
rel="stylesheet"
integrity="sha384-1BmE4kWBq78iYhFldvKuhfTAU6auU8tT94WrHftjDbrCEXSU1oBoqyl2QvZ6jIW3"
crossorigin="anonymous">
</head>
<body>
<nav class="navbar navbar-light bg-light">
<div class="container-fluid">
<span class="navbar-brand mb-0 h1">Programming Black</span>
<a class="navbar-brand" href="index.html">Home</a>
<a class="navbar-brand" href="transport.html">Transport</a>
<a class="navbar-brand" href="medicine.html">Medicine</a>
<a class="navbar-brand" href="education.html">Education</a>
<a class="navbar-brand" href="open-source.html">Open Source</a>
</div>
</nav>
<main>
<div class="container mt-3">
<h1 class="display-3 text-center">Open Source</h1>
<div class="card my-4">
<div class="card-body">
<h3>Most contributed GitHub Repositories</h3>
<ul class="list-group list-group-flush">
<li class="list-group-item"><b>VS Code:</b> one of the most popular code editors for a multitude of reasons
including the use of extensions, version control and debugging
</li>
<li class="list-group-item"><b>Flutter:</b> technology to create native apps across devices</li>
<li class="list-group-item"><b>First-Contributions:</b> repository that helps other contribute to open source
projects
</li>
<li class="list-group-item"><b>TensorFlow:</b> library for machine learning and artificial intellgence</li>
<li class="list-group-item"><b>React-Native: </b>allows developers to use React to create truly native apps
</li>
<li class="list-group-item"><b>Kubernetes:</b> enables developers to store projects within cotainers for
consistent
development environments
</li>
<li class="list-group-item"><b>Home-Assistant:</b> central control system for smart home devices</li>
</ul>
</div>
</div>
<div class="card my-4">
<div class="card-body">
<h3>Impactful GitHub Repositories</h3>
<ul class="list-group list-group-flush">
<li class="list-group-item"><b>Bitcoin Core:</b> first cryptocurrency</li>
<li class="list-group-item"><b>React:</b> most popular js libary, helping with splitting sites up into
componenets
</li>
<li class="list-group-item"><b>Go:</b> new efficient programming language created by Google, popular for it's
ability for concurrency and the property of being statically typed
</li>
<li class="list-group-item"><b>PyTorch:</b> machine learning library which is commonly used for computer
vision and
natural language
</li>
<li class="list-group-item"><b>Electron:</b> enables developers to convert their web apps into desktop apps,
notable
technology user would be Discord (you can see discord is a web app by bringing up the inspect element by
clicking ctrl + shift + i)
</li>
<li class="list-group-item"><b>Laravel:</b> popular framework for PHP as ease of bootstrapping a project from
the
amount
</li>
<li class="list-group-item"><b>Brave Browser:</b> based on chromium browser and is privacy-focused</li>
<li class="list-group-item"><b>Python:</b> currently the most popular programming language for a manifold of
reasons
including the expanse of available libraries enabling the language to utilised in many ways
</li>
</ul>
</div>
</div>
<div class="card my-4">
<div class="card-body">
<h3>The Art of Open Source</h3>
<p>Open Source has enabled the shared production of many powerful technologies has enabled technology to
exponetially improve. Contributors contribute voluntarily without pay with the goal to improve a piece of
technology. Open Source enables source code to be viewed adding the attribute of transparency. Open Source has
made it easier for projects to be created especially within web development with the use frameworks and
libaries and with machine learning where developers don't need to start from fresh.</p>
</div>
</div>
</div>
</main>
</body>