Skip to content

Commit

Permalink
Add files via upload
Browse files Browse the repository at this point in the history
  • Loading branch information
flan7 authored Sep 29, 2023
0 parents commit adadc8b
Show file tree
Hide file tree
Showing 2 changed files with 120 additions and 0 deletions.
86 changes: 86 additions & 0 deletions index.html
Original file line number Diff line number Diff line change
@@ -0,0 +1,86 @@
<!DOCTYPE html>
<html>
<head>
<link rel="stylesheet" href="style.css">
<title>Tux is God</title>
</head>
<body background = "./images/tux.png">
<h1>Tux is God</h1>
<div class="headshot">
<img src="./images/headshot.jpg"/>
<p class="headshottext">Holden Salomon</p>
</div>
<table class=asstable>
<tr>
<th><a href="./index.html">Assignment 1</a></th>
<th><a href="./index.html">Project 1</a></th>
</tr>
<tr>
<th><a href="./index.html">Assignment 2</a></th>
<th><a href="./index.html">Project 2</a></th>
</tr>
<tr>
<th><a href="./index.html">Assignment 3</a></th>
</tr>
<tr>
<th><a href="./index.html">Assignment 4</a></th>
</tr>
</table>
<h1>Hobbies: </h1>
<ul>
<li><a href="https://forum.ih8mud.com/forums/60-series-wagons.27/">Working on cars</a></li>
<li>Linux stuff</li>
<li><a href="https://www.truenas.com/download-truenas-scale/">Selfhosting</a></li>
<li><a href="https://store.steampowered.com/app/113200/The_Binding_of_Isaac/">roguelikes</a></li>
</ul>

<h1>I use arch: </h1>
<ul>
<li>btw</li>
</ul>

<h2>More lists</h2>

<br>
<ul>
<li><h1>Education:</h1></li>
<ul>
<li>Woodward Academy</li>
<li><span class=gsu>Georgia State</span> University</li>
</ul>
<li><h1>Jobs:</h1></li>
<ul>
<li><span class=gsu>Castles</span> and Cottages</li>
<li><span class=gsu>Panoz</span></li>
</ul>
</ul>

<span class=gsu><p>computer science</p></span>
<div class=stallman>
<h1> Favorite Quote</h1>
<h2>Incorrect Quotation<h2>
<h3>by Richard Stallman</h3>

<a href="https://www.gnu.org/gnu/incorrect-quotation.en.html">A quotation circulates on the Internet, attributed to me, but it wasn't written by me.

Here's the text that is circulating. Most of it was copied from statements I have made, but the part italicized here is not from me. It makes points that are mistaken or confused.

I'd just like to interject for a moment. What you're referring to as Linux, is in fact, GNU/Linux, or as I've recently taken to calling it, GNU plus Linux. Linux is not an operating system unto itself, but rather another free component of a fully functioning GNU system made useful by the GNU corelibs, shell utilities and vital system components comprising a full OS as defined by POSIX. Many computer users run a modified version of the GNU system every day, without realizing it. Through a peculiar turn of events, the version of GNU which is widely used today is often called “Linux,” and many of its users are not aware that it is basically the GNU system, developed by the GNU Project. There really is a Linux, and these people are using it, but it is just a part of the system they use.

Linux is the kernel: the program in the system that allocates the machine's resources to the other programs that you run. The kernel is an essential part of an operating system, but useless by itself; it can only function in the context of a complete operating system. Linux is normally used in combination with the GNU operating system: the whole system is basically GNU with Linux added, or GNU/Linux. All the so-called “Linux” distributions are really distributions of GNU/Linux.

The main error is that Linux is not strictly speaking part of the GNU system—whose kernel is GNU Hurd. The version with Linux, we call “GNU/Linux.” It is OK to call it “GNU” when you want to be really short, but it is better to call it “GNU/Linux” so as to give Torvalds some credit.

We don't use the term “corelibs,” and I am not sure what that would mean, but
GNU is much more than the specific packages we developed for it. I set out in
1983 to develop an operating system, calling it GNU, and that job required
developing whichever important packages we could not find elsewhere.</a>
<br>
<br>
<a href="http://www.cs.gsu.edu/">http://www.cs.gsu.edu/</a>
<a href="./style.css"> | style.css</a>
<a href="https://lwn.net"> | LWN</a>
<a href="https://timecube.2enp.com/"> | Facts and Logic</a>

</body>
</html>
34 changes: 34 additions & 0 deletions style.css
Original file line number Diff line number Diff line change
@@ -0,0 +1,34 @@
body {
color: black;
/*makes text reable on background*/
text-shadow: 2px 0 #fff, -2px 0 #fff, 0 2px #fff, 0 -2px #fff,
1px 1px #fff, -1px -1px #fff, 1px -1px #fff, -1px 1px #fff;
}
.headshot{
margin-left: auto;
max-width: 120px;
display: flex;
flex-direction: column;
text-align: center;
}

.asstable {
border: 0px solid;
}

.asstable tr:nth-child(even) {
background-color: yellow;
}

* {
font-family: sans-serif;
}

a:hover {
color: purple;
}

.gsu {
color: red;
font-weight: bold;
}

0 comments on commit adadc8b

Please sign in to comment.