forked from BrianZasuwik/gitcollab-practical
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathRecordKeeping.html
More file actions
91 lines (84 loc) · 4.55 KB
/
RecordKeeping.html
File metadata and controls
91 lines (84 loc) · 4.55 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
<!DOCTYPE html>
<head>
<title>Record Keeping</title>
<meta charset="utf-8">
<meta name="viewport" content="width=device-width, initial-scale=1">
<link rel="stylesheet" href="mainStyle.css">
<link href="https://cdn.jsdelivr.net/npm/bootstrap@5.3.8/dist/css/bootstrap.min.css" rel="stylesheet" integrity="sha384-sRIl4kxILFvY47J16cr9ZwB07vP4J8+LH7qKQnuqkuIAvNWLzeN8tE5YBujZqJLB" crossorigin="anonymous">
</head>
<body>
</div> <!-- no div opened yet-->
<main>
<nav class="navbar navbar-expand-lg">
<div class="container-fluid">
<div class="collapse navbar-collapse" id="navbarSupportedContent">
<ul class="navbar-nav me-auto mb-2 mb-lg-0">
<li class="nav-item">
<a class="nav-link active" aria-current="page" href="index.html">Home</a>
</li>
<li class="nav-item">
<a class="nav-link" href="ai_industry.html">AI</a>
</li>
<li class="nav-item">
<a class="nav-link" href="disabilityaids.html">Disability Aids</a>
</li>
<li class="nav-item">
<a class="nav-link" href="computer_vision.html">Computer Vision</a>
</li>
<li class="nav-item">
<a class="nav-link" href="RecordKeeping.html">Record Keeping</a>
</li>
<li class="nav-item">
<a class="nav-link" href="nature.html">Environmental</a>
</li>
<li class="nav-item">
<a class="nav-link" href="Encryption.html">Encryption</a>
</li>
</ul>
</div>
</div>
</nav>
<div class="container mt-4">
<h1>How Technology Helps Society: Record Keeping</h1>
<p>
Record keeping has always been at the heart of human progress. From <a href="https://en.wikipedia.org/wiki/Clay_tablet">clay tablets</a> and scrolls to <a href="https://en.wikipedia.org/wiki/Database">digital databases</a> and <a href="https://en.wikipedia.org/wiki/Cloud_storage">cloud storage</a>, the way we preserve information defines how we learn, govern, trade, and connect. Technology has completely transformed this process — making records more accurate, accessible, and secure than ever before.
</p>
<h2>Preserving Knowledge and History</h2>
<p>
Before modern technology, records were handwritten, stored physically, and vulnerable to decay or loss. Today, <a href="https://archive.org/">digital archiving</a>
ensures vital information, from historical archives to scientific data, can be preserved for future generations. <a href="https://en.wikipedia.org/wiki/Digitization">Digitisation</a> projects
allow old documents to be scanned, restored, and shared globally, protecting knowledge from being lost to time.
</p>
<h2>Improving Accuracy and Efficiency </h2>
<p>
Technology reduces the risk of human error in record keeping. Automated systems, databases, and sensors can log and track information instantly, ensuring consistency and reliability. Whether in healthcare, finance, or education, accurate records help professionals make better decisions and provide better services.
</p>
<p> Examples of technology improving accuracy include:
</p>
<dl>
<dt> Electronic databases </dt>
<dd>that automatically update and cross-check data</dd>
<dt>Barcode and RFID systems</dt>
<dd> that track inventory and assets precisely</dd>
<dt>Automated logging tools</dt>
<dd> that record timestamps and user activity</dd>
<dt>Cloud-based collaboration platforms</dt>
<dd> that prevent version conflicts</dd>
<dt>AI data validation</dt>
<dd>that detects inconsistencies and reduces human error</dd>
</dl>
<div class="card mb-2">
<div class="card-body">
<h3>Authored by:</h3>
<p><img src="https://avatars.githubusercontent.com/u/237948113" class="rounded" height="64px"><b> Roshaan Hussain</b></p> <!-- px is invalid and no alt text-->
<p>Find me on GitHub:</p>
<p><a href="https://github.com/sqcp59" target="_blank" rel="noopener noreferrer" class="btn btn-primary">View GitHub profile</a></p>
</div>
</div>
</div>
</div> <!-- extra close tag-->
</main>
<!-- Add content before the JS link -->
<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>
<script type="text/javascript" src="javascript.js"></script>
</body>