-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathdesktop.html
165 lines (159 loc) · 10.2 KB
/
desktop.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
<!DOCTYPE html>
<html>
<head>
<meta charset="utf-8">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<link rel="stylesheet" href="styles/desktop.css">
<script src="scripts/desktop.js"></script>
<!-- google fonts import -->
<link rel="preconnect" href="https://fonts.googleapis.com">
<link rel="preconnect" href="https://fonts.gstatic.com" crossorigin>
<link href="https://fonts.googleapis.com/css2?family=Patrick+Hand+SC&family=VT323&display=swap" rel="stylesheet">
<title>Desktop</title>
</head>
<body id="body">
<!-- TOP TITLE BAR-->
<div id="titleBar">
<div class="titleBar_drop_container">
<p class="titleBar_title" id="titleBar_title_1" onClick="toggleDropdown('titleBar_drop_content_1')">logo</p>
<div id="titleBar_drop_content_1" class="titleBar_drop_content window">
<p onClick="openPopup('aboutMacPopup')">About This Mac</p>
<p onClick="openPopup('systemSettings')">System Settings</p>
<p onClick="newPage()">Log out</p>
</div>
<p class="titleBar_title" id="titleBar_title_2" onClick="toggleDropdown('titleBar_drop_content_2')">File</p>
<div id="titleBar_drop_content_2" class="titleBar_drop_content window">
<p onClick="openPopup('credits')">Credits</p>
<p onClick="openPopup('fileOpen')">Open Recent</p>
</div>
<p class="titleBar_title" id="titleBar_title_3" onClick="toggleDropdown('titleBar_drop_content_3')">Edit</p>
<div id="titleBar_drop_content_3" class="titleBar_drop_content window">
<p>Please login to a user account to edit files.</p>
</div>
<p class="titleBar_title" id="titleBar_title_4" onClick="toggleDropdown('titleBar_drop_content_4')">Help</p>
<div id="titleBar_drop_content_4" class="titleBar_drop_content window">
<p onClick="openPopup('tipsPopup')">Tips For Your Mac</p>
<p onClick="openPopup('MacHelp')">MacOS Help</p>
</div>
</div>
<span id="date"></span>
</div>
<!-- WELCOME ERROR MESSAGE -->
<div id="welcomePopup" class="window">
<div class="popupHeader"><p onClick="closePopup('welcomePopup')">x</p></div>
<div class="popupContainer">
<h1>Welcome to Macintosh</h1>
</div>
</div>
<!-- POPUPS -->
<!-- credits -->
<div id="credits" class="closedPopup window">
<div class="popupHeader"><p onClick="closePopup('credits')">x</p></div>
<div class="popupContainer">
<h1 id="creditsHeader">Credits</h1>
</div>
</div>
<!-- About Mac -->
<div id="aboutMacPopup" class="closedPopup window">
<div class="popupHeader"><p onClick="closePopup('aboutMacPopup')">x</p></div>
<div class="popupContainer">
<h1 id="aboutMacHeader">Macintosh 128K</h1>
<p id="aboutMacInfo">9-in, 1983</p>
</div>
</div>
<!-- System settings : decade input -->
<div id="systemSettings" class="closedPopup window">
<div class="popupHeader"><p onClick="closePopup('systemSettings')">x</p></div>
<div class="popupContainer">
<h1>System Settings</h1>
<h3>Which decade would you like to view?</h2>
<input type="radio" id="80s" value="80s" name="decade">80s
<input type="radio" id="90s" value="90s" name="decade">90s
<input type="radio" id="00s" value="00s" name="decade">00s
<input type="radio" id="20s" value="20s" name="decade">20s
<br><br>
<button id="button" type="button" onClick="radioValue()">Save Settings</button>
<p>Note: Logging out will revert the system back to Macintosh 128K</p>
</div>
</div>
<div id="tipsPopup" class="closedPopup window">
<div class="popupHeader"><p onClick="closePopup('tipsPopup')">x</p></div>
<div class="popupContainer">
<h1>Tips For Your Mac</h1>
<p>i. Looking for a new look? Head to System Settings to discover more!</p>
<p>ii. Discover new music, only one click from the desktop. Don't forget to turn up your volume!</p>
<p>iii. Tired of this website? Log out!</p>
</div>
</div>
<div id="MacHelp" class="closedPopup window">
<div class="popupHeader"><p onClick="closePopup('MacHelp')">x</p></div>
<div class="popupContainer">
<h1>MacOS Help</h1>
<p>Want to learn more about Creative Computing & Network Culture?</p>
<p onClick="openResponses()">Click here!</p>
</div>
</div>
<!-- APPS -->
<!-- Music Player -->
<div id="musicPlayer" class="app" ondblclick="openPopup('musicPlayerOpen')">
<div id="musicPlayerIcon" class="appIcon"></div>
<p id="musicPlayerName" class="appName">MUSIC</p>
</div>
<div id="musicPlayerOpen" class="appOpen window">
<div class="popupHeader"><p onClick="closePopup('musicPlayerOpen')">x</p></div>
<div class="popupContainer musicContainer">
<div id="disk"></div>
<div id="needle"></div>
<div class="musicButtons">
<div id="play" class="musicButton" onClick="playMusic()"></div>
<div id="pause" class="musicButton" onClick="pauseMusic()"></div>
<div id="next" class="musicButton" onClick="nextTrack()"></div>
<div id="prev" class="musicButton" onClick="prevTrack()"></div>
</div>
<div id="songInfo">
<h2>Now Playing</h2>
<p id="songName"></p>
<p id="artistName"></p>
</div>
</div>
</div>
<!-- File -->
<div id="file" class="app" ondblclick="openPopup('fileOpen')">
<div id="fileIcon" class="appIcon"></div>
<p id="fileName" class="appName">Open_letter_to<br>_hobbyists.pdf</p>
</div>
<div id="fileOpen" class="appOpen window">
<div class="popupHeader"><p onClick="closePopup('fileOpen')">x</p></div>
<div class="popupContainer">
<h1>AN OPEN LETTER TO HOBBYISTS</h1>
<p>February 3, 1976</p>
<h6>By William Henry Gates III</h6>
<p>To me, the most critical thing in the hobby market right now is the lack of good software courses, books and software itself. Without good software and an owner who understands programming, a hobby computer is wasted. Will quality software be written for the hobby market?<br><br>
Almost a year ago, Paul Allen and myself, expecting the hobby market to expand, hired Monte Davidoff and developed Altair BASIC. Though the initial work took only two months, the three of us have spent most of the last year documenting, improving and adding features to BASIC. Now we have 4K, 8K, EXTENDED, ROM and DISK BASIC. The value of the computer time we have used exceeds $40,000.
<br><br>
The feedback we have gotten from the hundreds of people who say they are using BASIC has all been positive. Two surprising things are apparent, however, 1) Most of these "users" never bought BASIC (less thank 10% of all Altair owners have bought BASIC), and 2) The amount of royalties we have received from sales to hobbyists makes the time spent on Altair BASIC worth less than $2 an hour.
<br><br>
Why is this? As the majority of hobbyists must be aware, most of you steal your software. Hardware must be paid for, but software is something to share. Who cares if the people who worked on it get paid?
<br><br>
Is this fair? One thing you don't do by stealing software is get back at MITS for some problem you may have had. MITS doesn't make money selling software. The royalty paid to us, the manual, the tape and the overhead make it a break-even operation. One thing you do do is prevent good software from being written. Who can afford to do professional work for nothing? What hobbyist can put 3-man years into programming, finding all bugs, documenting his product and distribute for free? The fact is, no one besides us has invested a lot of money in hobby software. We have written 6800 BASIC, and are writing 8080 APL and 6800 APL, but there is very little incentive to make this software available to hobbyists. Most directly, the thing you do is theft.
<br><br>
What about the guys who re-sell Altair BASIC, aren't they making money on hobby software? Yes, but those who have been reported to us may lose in the end. They are the ones who give hobbyists a bad name, and should be kicked out of any club meeting they show up at.
<br><br>
I would appreciate letters from any one who wants to pay up, or has a suggestion or comment. Just write to me at 1180 Alvarado SE, #114, Albuquerque, New Mexico, 87108. Nothing would please me more than being able to hire ten programmers and deluge the hobby market with good software.
<br><br>
Bill Gates<br>General Partner, Micro-Soft</p>
<a href="https://archive.nytimes.com/www.nytimes.com/library/cyber/surf/072397mind-letter.html">View Original</a><br><br>
</div>
</div>
<!-- Reading Responses -->
<div id="folder" class="app" ondblclick="openResponses()">
<div id="folderIcon" class="appIcon"></div>
<p id="folderName" class="appName">Reading Responses</p>
</div>
<div id="folderOpen" class="appOpen window">
<div class="popupHeader"><p onClick="closePopup('folderOpen')">x</p></div>
<div class="popupContainer">
</div>
</div>
</body>
</html>