-
Notifications
You must be signed in to change notification settings - Fork 4
Expand file tree
/
Copy pathautomation.html
More file actions
102 lines (97 loc) · 5.15 KB
/
Copy pathautomation.html
File metadata and controls
102 lines (97 loc) · 5.15 KB
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
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<title>Automation</title>
<!-- Bootstrap -->
<link href="https://cdn.jsdelivr.net/npm/bootstrap@5.3.8/dist/css/bootstrap.min.css" rel="stylesheet" integrity="sha384-sRIl4kxILFvY47J16cr9ZwB07vP4J8+LH7qKQnuqkuIAvNWLzeN8tE5YBujZqJLB" crossorigin="anonymous">
<script src="https://cdn.jsdelivr.net/npm/bootstrap@5.3.8/dist/js/bootstrap.bundle.min.js" integrity="sha384-FKyoEForCGlyvwx9Hj09JcYn3nv7wiPVlz7YYwJrWVcXK/BmnVDxM+D2scQbITxI" crossorigin="anonymous"></script>
</head>
<body>
<!-- Navbar -->
<nav class="nav bg-body-secondary mb-3">
<div class="container-fluid mx-auto">
<ul class="nav me-auto">
<li class="nav-item col-3">
<a class="nav-link" href="index.html">Index</a>
</li>
<li class="nav-item col-3">
<a class="nav-link" href="medicine.html">Medicine</a>
</li>
<li class="nav-item col-3">
<a class="nav-link active" aria-current="page" href="automation.html">Automation</a>
</li>
<li class="nav-item col-3">
<a class="nav-link" href="education.html">Education</a>
</li>
</ul>
</div>
</nav>
<!-- Page content -->
<div class="container-fluid ms-2">
<div class="row mb-3">
<h2>What is Automation?</h2>
</div>
<div class = "ms-3">
<div class="row">
<ul class = "list-unstyled">
<li>Automation is the utilisation of computing technology to perform a task in a consistent and (generally) efficient manner.</li>
<li>Utilising automations has many benefits, such as
<a href = "#Saving_Time">saving time</a>, or
<a href = "#Reducing_Danger">reducing danger</a>.</li>
</ul>
</div>
</div>
<div class="row mb-3">
<h2 id = "Saving_Time">Saving Time</h2>
</div>
<div class = "ms-3">
<div class="row">
<ul class = "list-unstyled">
<li>Computers are much faster than humans at solving many problems, such as:</li>
<ul>
<li>Sorting Lists</li>
<li>Searching for Items</li>
<li>Solving Mathematical Equations</li>
</ul>
<li>Similarly, computers are perfectly consistent, returning the same action for a given input.</li>
<li>As a result, an automation can be used to repeatedly perform a task in seconds what might take a human hours.</li>
<li>This cumulatively saved time is then able to be used in other endeavours, or potentially result in more free-time.</li>
</ul>
</div>
</div>
<div class="row mb-3">
<h2>Examples of saving time</h2>
</div>
<div class = "ms-3">
<div class="row">
<ul class = "list-unstyled">
<li>Automations may seem like something that only benefit large organisations with lots of menial tasks to perform on loop.</li>
<li>However, almost everything we do in our day-to-day lives has benefitted from automation.</li>
<li>Take Google Maps for example.</li>
<li>Google Maps uses an automation to finding the "best" route from A to B.</li>
<li>This automation can find such a route in moments, a task which could take you a much longer time to just find A SINGLE route.</li>
<li>For another example, consider phone calls.</li>
<li>Years ago, to make a phone call you'd have to dial the phone number then ask someone to physically connect your phone line to that person.</li>
<li>Nowadays, you only have to press a button or two on your phone and you will be connected to someone else in no time.</li>
<li>What your phone is doing to connect you with your friend is an automation. One which saves you a lot of time.</li>
</ul>
</div>
</div>
<div class="row mb-3">
<h2 id = "Reducing_Danger">Reducing Danger</h2>
</div>
<div class = "ms-3">
<div class="row">
<ul class = "list-unstyled">
<li>Automations present opportunities to reduce the danger in heavy industries</li>
<li>The primary automation improving safety is robotics, according to
<a href = "https://www.getac.com/en/blog/safety-technologies-for-heavy-industries/">getac</a></li>
<li>By performing certain tasks, such as moving components around a warehouse, or putting components into place during manufacturing, </li>
<li>automations remove humans from potentially dangerous situations, allowing them to perform tasks from a safe distance.</li>
</ul>
</div>
</div>
</div>
</body>
</html>