-
Notifications
You must be signed in to change notification settings - Fork 0
/
topic3.html
122 lines (103 loc) · 5.66 KB
/
topic3.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
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<title>Ch5: Information Privacy</title>
<link rel="stylesheet" href="style.css">
<style>
.paragraphs {
border: 3px solid #f0f0f0;
border-radius: 10px;
padding: 10px;
background-color: #f0f0f0;
max-width: 1600px; /* Adjust the max-width value as needed */
margin: 0 auto; /* Center the container horizontally */
}
.centered-content {
display: flex;
justify-content: center;
align-items: center;
}
nav {
border-radius: 15px;
}
.dropdown {
position: relative;
display: inline-block;
}
.dropdown-content {
display: none;
position: absolute;
background-color: #353132;
min-width: 160px;
box-shadow: 0px 8px 16px 0px rgba(0, 0, 0, 0.2);
z-index: 1;
}
.dropdown:hover .dropdown-content {
display: block;
}
.dropdown-content a {
color: rgb(241, 236, 236);
padding: 12px 16px;
text-decoration: none;
display: block;
}
.dropdown-content a:hover {
background-color: #3f94da;
}
p {
font-size: 21px;
}
p1 {
font-size: 15px;
}
</style>
<link rel="icon" href="images/favicon.png" type="image/x-icon">
</head>
<body>
<h1>Ch5: Information Privacy</h1>
<nav>
<a href = "index.html"> Home</a>
<a href="post-meeting-minutes.html">Post Meeting Minutes</a>
<a href="computing_tech.html">Computing Technologies</a>
<div class="dropdown">
<span>Course Topics▼ </span>
<div class="dropdown-content">
<a href="topic1.html">Ch3: Networked Communication</a>
<a href="topic2.html">Ch4: Intellectual Property</a>
<a href="topic3.html">Ch5: Information Privacy</a>
<a href="topic4.html">Ch6: Government Privacy</a>
<a href="topic5.html">Ch7: Computer and Network Security</a>
<a href="topic6.html">Ch8: Computer Reliability</a>
<a href="topic7.html">Ch10: Work and Wealth</a>
</div>
</div>
<a href="timeline.html">Plot Timeline of Computing Events</a>
<a href="movie-makers-intent.html">Movie Makers' Intent with Regards to Computing</a>
<a href="in-depth-analysis.html">Computing - Societal Conclusions</a>
</nav>
<br>
<section id="topic3">
<div class="paragraphs">
<p>It is possible for Jim, a none crew member, to use the surveillance system on the ship to watch Aurora while she exercises around the ship. There is practically no area that the cameras can't see, all the public areas, including dead ends are covered. There is no need for such a high level of surveillance on a ship where most people are sleeping most of the time. They only wake up in the last 4 months of the voltage, what are all those cameras watching? Robots?</p>
<p>When Jim wakes up and is guided to a classroom by his room’s AI, the AI in the classroom immediately recognizes him, meaning there must be some way the ship knows him in that room. Given this ship’s lack of use of facial recognition, the most plausible conclusion is the ship is using their ID to track Jim’s movement. The reason being an ID is required to enter rooms and use features like requesting food.</p>
<p>This ship is owned by a private company, and is not a government owned property, so I guess there are no police on the ship, at least not mentioned in the movie. This means all the cameras can only be used as a deterrent to prevent people from doing bad things. But if there are no law enforcement personnel on the ship, does the company have a justification to have so many cameras on the ship?[1] The usefulness of a deterrent in a limited space(the criminal can’t escape the ship as they will die in space) is questionable.</p>
<p>Jim first learned about Aurora through her own introduction video. I guess that they all made a recording of them introducing themself so that other people will get to know them, so it is understandable that Jim can access Aurora and other people’s videos. But will they understand the ship’s company is collecting information on what they do everyday after they wake up? The room they live in has an AI system that greets them once they wake up, and will guide them to their place on their schedule.
The ship also just has too many weaknesses in its hardware that a physical person can break into if there is no one else stopping them.</p>
</div>
<br>
<br>
<div class="centered-content">
<a href="https://docs.google.com/document/d/10g0U8Kxvgqe6kFqUYd3Be9FdehBUPqgTtrQWXtn46w4/edit#heading=h.z97psumyqkph">
<img src="images/google-docs.png" alt="" style="width:42px;height:42px;">
</a>
</div>
<p1>          Written by Simon Tong </p1>
</section>
<br>
<p1>   Sources:</p1>
<br>
<p1>   [1]Eric L. Piza, The Crime Prevention Effect of CCTV in Public Places a Propensity Score Analysis, (NIJ, 2018), https://nij.ojp.gov/library/publications/crime-prevention-effect-cctv-public-places-propensity-score-analysis (4/29/2024)</p1>
</body>
</html>