-
Notifications
You must be signed in to change notification settings - Fork 0
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Enabled GladOs and created last lab LaTeX files. OS seems to be worki…
…ng correctly, and I was able to implement some of the challenges. I think I have enough extra credit, so I will save some time with the other challenges. I had fun making this. It was a bit difficult juggling this with capping and work, but I got through it and learned a lot. I think I may make the front-end of it look better and more fancy later before I make it public. For now though, I think it is all done. Just gonna run one more test pulling from master and hopefully it won't break.
- Loading branch information
Eric Stenton
committed
Dec 9, 2019
1 parent
c04a94b
commit 13b2eae
Showing
12 changed files
with
303 additions
and
8 deletions.
There are no files selected for viewing
Binary file not shown.
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,97 @@ | ||
%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%% | ||
% | ||
% CMPT 424N-111 | ||
% Fall 2019 | ||
% Lab Eight | ||
% | ||
%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%% | ||
|
||
%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%% | ||
% Short Sectioned Assignment | ||
% LaTeX Template | ||
% Version 1.0 (5/5/12) | ||
% | ||
% This template has been downloaded from: http://www.LaTeXTemplates.com | ||
% Original author: % Frits Wenneker (http://www.howtotex.com) | ||
% License: CC BY-NC-SA 3.0 (http://creativecommons.org/licenses/by-nc-sa/3.0/) | ||
% Modified by Alan G. Labouseur - [email protected] | ||
% | ||
%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%% | ||
|
||
%---------------------------------------------------------------------------------------- | ||
% PACKAGES AND OTHER DOCUMENT CONFIGURATIONS | ||
%---------------------------------------------------------------------------------------- | ||
|
||
\documentclass[letterpaper, 10pt,DIV=13]{scrartcl} | ||
|
||
\usepackage[T1]{fontenc} % Use 8-bit encoding that has 256 glyphs | ||
\usepackage[english]{babel} % English language/hyphenation | ||
\usepackage{amsmath,amsfonts,amsthm,xfrac} % Math packages | ||
\usepackage{sectsty} % Allows customizing section commands | ||
\usepackage{graphicx} | ||
\graphicspath{ {./} } | ||
\usepackage[lined,linesnumbered,commentsnumbered]{algorithm2e} | ||
\usepackage{listings} | ||
\usepackage{parskip} | ||
\usepackage{lastpage} | ||
|
||
\allsectionsfont{\normalfont\scshape} % Make all section titles in default font and small caps. | ||
|
||
\usepackage{fancyhdr} % Custom headers and footers | ||
\pagestyle{fancyplain} % Makes all pages in the document conform to the custom headers and footers | ||
|
||
\fancyhead{} % No page header - if you want one, create it in the same way as the footers below | ||
\fancyfoot[L]{} % Empty left footer | ||
\fancyfoot[C]{} % Empty center footer | ||
\fancyfoot[R]{page \thepage\ of \pageref{LastPage}} % Page numbering for right footer | ||
|
||
\renewcommand{\headrulewidth}{0pt} % Remove header underlines | ||
\renewcommand{\footrulewidth}{0pt} % Remove footer underlines | ||
\setlength{\headheight}{13.6pt} % Customize the height of the header | ||
|
||
\numberwithin{equation}{section} % Number equations within sections (i.e. 1.1, 1.2, 2.1, 2.2 instead of 1, 2, 3, 4) | ||
\numberwithin{figure}{section} % Number figures within sections (i.e. 1.1, 1.2, 2.1, 2.2 instead of 1, 2, 3, 4) | ||
\numberwithin{table}{section} % Number tables within sections (i.e. 1.1, 1.2, 2.1, 2.2 instead of 1, 2, 3, 4) | ||
|
||
\setlength\parindent{0pt} % Removes all indentation from paragraphs. | ||
|
||
\binoppenalty=3000 | ||
\relpenalty=3000 | ||
|
||
%---------------------------------------------------------------------------------------- | ||
% TITLE SECTION | ||
%---------------------------------------------------------------------------------------- | ||
|
||
\newcommand{\horrule}[1]{\rule{\linewidth}{#1}} % Create horizontal rule command with 1 argument of height | ||
|
||
\title{ | ||
\normalfont \normalsize | ||
\textsc{CMPT 424N-111 - Fall 2019 - Dr. Labouseur} \\[10pt] % Header stuff. | ||
\horrule{0.5pt} \\[0.25cm] % Top horizontal rule | ||
\huge Lab Eight \\ % Assignment title | ||
\horrule{0.5pt} \\[0.25cm] % Bottom horizontal rule | ||
} | ||
|
||
\author{Eric Stenton \\ \normalsize [email protected]} | ||
|
||
\date{\normalsize\today} % Today's date. | ||
|
||
\begin{document} | ||
\maketitle % Print the title | ||
|
||
%---------------------------------------------------------------------------------------- | ||
% start PROBLEM ONE | ||
%---------------------------------------------------------------------------------------- | ||
\section{Problem One} | ||
|
||
\textbf{\emph{Question:}} | ||
Have you had enough of this yet? | ||
|
||
\textbf{\emph{Answer:}} | ||
Yes. Yes I have. It's been fun, but I am ready to be done with these projects and this semester. | ||
|
||
%---------------------------------------------------------------------------------------- | ||
% end PROBLEM ONE | ||
%---------------------------------------------------------------------------------------- | ||
|
||
\end{document} |
Binary file not shown.
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,97 @@ | ||
%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%% | ||
% | ||
% CMPT 424N-111 | ||
% Fall 2019 | ||
% Lab Nine | ||
% | ||
%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%% | ||
|
||
%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%% | ||
% Short Sectioned Assignment | ||
% LaTeX Template | ||
% Version 1.0 (5/5/12) | ||
% | ||
% This template has been downloaded from: http://www.LaTeXTemplates.com | ||
% Original author: % Frits Wenneker (http://www.howtotex.com) | ||
% License: CC BY-NC-SA 3.0 (http://creativecommons.org/licenses/by-nc-sa/3.0/) | ||
% Modified by Alan G. Labouseur - [email protected] | ||
% | ||
%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%% | ||
|
||
%---------------------------------------------------------------------------------------- | ||
% PACKAGES AND OTHER DOCUMENT CONFIGURATIONS | ||
%---------------------------------------------------------------------------------------- | ||
|
||
\documentclass[letterpaper, 10pt,DIV=13]{scrartcl} | ||
|
||
\usepackage[T1]{fontenc} % Use 8-bit encoding that has 256 glyphs | ||
\usepackage[english]{babel} % English language/hyphenation | ||
\usepackage{amsmath,amsfonts,amsthm,xfrac} % Math packages | ||
\usepackage{sectsty} % Allows customizing section commands | ||
\usepackage{graphicx} | ||
\graphicspath{ {./} } | ||
\usepackage[lined,linesnumbered,commentsnumbered]{algorithm2e} | ||
\usepackage{listings} | ||
\usepackage{parskip} | ||
\usepackage{lastpage} | ||
|
||
\allsectionsfont{\normalfont\scshape} % Make all section titles in default font and small caps. | ||
|
||
\usepackage{fancyhdr} % Custom headers and footers | ||
\pagestyle{fancyplain} % Makes all pages in the document conform to the custom headers and footers | ||
|
||
\fancyhead{} % No page header - if you want one, create it in the same way as the footers below | ||
\fancyfoot[L]{} % Empty left footer | ||
\fancyfoot[C]{} % Empty center footer | ||
\fancyfoot[R]{page \thepage\ of \pageref{LastPage}} % Page numbering for right footer | ||
|
||
\renewcommand{\headrulewidth}{0pt} % Remove header underlines | ||
\renewcommand{\footrulewidth}{0pt} % Remove footer underlines | ||
\setlength{\headheight}{13.6pt} % Customize the height of the header | ||
|
||
\numberwithin{equation}{section} % Number equations within sections (i.e. 1.1, 1.2, 2.1, 2.2 instead of 1, 2, 3, 4) | ||
\numberwithin{figure}{section} % Number figures within sections (i.e. 1.1, 1.2, 2.1, 2.2 instead of 1, 2, 3, 4) | ||
\numberwithin{table}{section} % Number tables within sections (i.e. 1.1, 1.2, 2.1, 2.2 instead of 1, 2, 3, 4) | ||
|
||
\setlength\parindent{0pt} % Removes all indentation from paragraphs. | ||
|
||
\binoppenalty=3000 | ||
\relpenalty=3000 | ||
|
||
%---------------------------------------------------------------------------------------- | ||
% TITLE SECTION | ||
%---------------------------------------------------------------------------------------- | ||
|
||
\newcommand{\horrule}[1]{\rule{\linewidth}{#1}} % Create horizontal rule command with 1 argument of height | ||
|
||
\title{ | ||
\normalfont \normalsize | ||
\textsc{CMPT 424N-111 - Fall 2019 - Dr. Labouseur} \\[10pt] % Header stuff. | ||
\horrule{0.5pt} \\[0.25cm] % Top horizontal rule | ||
\huge Lab Nine \\ % Assignment title | ||
\horrule{0.5pt} \\[0.25cm] % Bottom horizontal rule | ||
} | ||
|
||
\author{Eric Stenton \\ \normalsize [email protected]} | ||
|
||
\date{\normalsize\today} % Today's date. | ||
|
||
\begin{document} | ||
\maketitle % Print the title | ||
|
||
%---------------------------------------------------------------------------------------- | ||
% start PROBLEM ONE | ||
%---------------------------------------------------------------------------------------- | ||
\section{Problem One} | ||
|
||
\textbf{\emph{Question:}} | ||
What now? | ||
|
||
\textbf{\emph{Answer:}} | ||
In the past, the answer would have been to implement swapping with the scheduler. Since I already did that and am filling this out after I've finished, it is now time to prepare for finals and sleep. | ||
|
||
%---------------------------------------------------------------------------------------- | ||
% end PROBLEM ONE | ||
%---------------------------------------------------------------------------------------- | ||
|
||
\end{document} |
Binary file not shown.
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,97 @@ | ||
%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%% | ||
% | ||
% CMPT 424N-111 | ||
% Fall 2019 | ||
% Lab A | ||
% | ||
%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%% | ||
|
||
%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%% | ||
% Short Sectioned Assignment | ||
% LaTeX Template | ||
% Version 1.0 (5/5/12) | ||
% | ||
% This template has been downloaded from: http://www.LaTeXTemplates.com | ||
% Original author: % Frits Wenneker (http://www.howtotex.com) | ||
% License: CC BY-NC-SA 3.0 (http://creativecommons.org/licenses/by-nc-sa/3.0/) | ||
% Modified by Alan G. Labouseur - [email protected] | ||
% | ||
%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%% | ||
|
||
%---------------------------------------------------------------------------------------- | ||
% PACKAGES AND OTHER DOCUMENT CONFIGURATIONS | ||
%---------------------------------------------------------------------------------------- | ||
|
||
\documentclass[letterpaper, 10pt,DIV=13]{scrartcl} | ||
|
||
\usepackage[T1]{fontenc} % Use 8-bit encoding that has 256 glyphs | ||
\usepackage[english]{babel} % English language/hyphenation | ||
\usepackage{amsmath,amsfonts,amsthm,xfrac} % Math packages | ||
\usepackage{sectsty} % Allows customizing section commands | ||
\usepackage{graphicx} | ||
\graphicspath{ {./} } | ||
\usepackage[lined,linesnumbered,commentsnumbered]{algorithm2e} | ||
\usepackage{listings} | ||
\usepackage{parskip} | ||
\usepackage{lastpage} | ||
|
||
\allsectionsfont{\normalfont\scshape} % Make all section titles in default font and small caps. | ||
|
||
\usepackage{fancyhdr} % Custom headers and footers | ||
\pagestyle{fancyplain} % Makes all pages in the document conform to the custom headers and footers | ||
|
||
\fancyhead{} % No page header - if you want one, create it in the same way as the footers below | ||
\fancyfoot[L]{} % Empty left footer | ||
\fancyfoot[C]{} % Empty center footer | ||
\fancyfoot[R]{page \thepage\ of \pageref{LastPage}} % Page numbering for right footer | ||
|
||
\renewcommand{\headrulewidth}{0pt} % Remove header underlines | ||
\renewcommand{\footrulewidth}{0pt} % Remove footer underlines | ||
\setlength{\headheight}{13.6pt} % Customize the height of the header | ||
|
||
\numberwithin{equation}{section} % Number equations within sections (i.e. 1.1, 1.2, 2.1, 2.2 instead of 1, 2, 3, 4) | ||
\numberwithin{figure}{section} % Number figures within sections (i.e. 1.1, 1.2, 2.1, 2.2 instead of 1, 2, 3, 4) | ||
\numberwithin{table}{section} % Number tables within sections (i.e. 1.1, 1.2, 2.1, 2.2 instead of 1, 2, 3, 4) | ||
|
||
\setlength\parindent{0pt} % Removes all indentation from paragraphs. | ||
|
||
\binoppenalty=3000 | ||
\relpenalty=3000 | ||
|
||
%---------------------------------------------------------------------------------------- | ||
% TITLE SECTION | ||
%---------------------------------------------------------------------------------------- | ||
|
||
\newcommand{\horrule}[1]{\rule{\linewidth}{#1}} % Create horizontal rule command with 1 argument of height | ||
|
||
\title{ | ||
\normalfont \normalsize | ||
\textsc{CMPT 424N-111 - Fall 2019 - Dr. Labouseur} \\[10pt] % Header stuff. | ||
\horrule{0.5pt} \\[0.25cm] % Top horizontal rule | ||
\huge Lab A \\ % Assignment title | ||
\horrule{0.5pt} \\[0.25cm] % Bottom horizontal rule | ||
} | ||
|
||
\author{Eric Stenton \\ \normalsize [email protected]} | ||
|
||
\date{\normalsize\today} % Today's date. | ||
|
||
\begin{document} | ||
\maketitle % Print the title | ||
|
||
%---------------------------------------------------------------------------------------- | ||
% start PROBLEM ONE | ||
%---------------------------------------------------------------------------------------- | ||
\section{Problem One} | ||
|
||
\textbf{\emph{Question:}} | ||
How well does your operating system work? | ||
|
||
\textbf{\emph{Answer:}} | ||
It works decently. I'm not getting anymore errors, and I haven't run into any more bugs. I implemented some of the challenges, so it's pretty fancy now. I look forward to making it public later on and talking about it on interviews. | ||
|
||
%---------------------------------------------------------------------------------------- | ||
% end PROBLEM ONE | ||
%---------------------------------------------------------------------------------------- | ||
|
||
\end{document} |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters