Redisign and restructure of the book
For fuck's sake, latex is an absolute pain in the ass to work with. I'm sure even a faggot who shoves gigantic dildos into his asshole every single day wouldn't feel this much agony. Well, I've done a basic restructuring of the whole thing and I learned some latex while doing it, so maybe this is a good experience. I hope there are no typos. I feel sleepy. Anyways, xzntrc's vocabulary is so horrible I literally had to rewrite most sentences he wrote. I'm not sure what to feel about this, as he seems to have intended to write the book like casual aussie language. - Professional Necrophiliac Signed-off-by: Professional Necrophile <necrophiliac@fedora.email>
This commit is contained in:
@@ -0,0 +1,6 @@
|
||||
#!/bin/bash
|
||||
for((i=0;i<2;i++)); do
|
||||
# retarded latex somehow needs multiple compilations
|
||||
# in order to generate whole document
|
||||
xelatex templeos-ultimate-handbook.tex
|
||||
done
|
||||
Executable
+2
@@ -0,0 +1,2 @@
|
||||
#!/bin/sh
|
||||
rm *.aux *.toc *.dvi *.log *.out *.lot
|
||||
Binary file not shown.
@@ -6,20 +6,38 @@
|
||||
|
||||
\usepackage{type1cm}
|
||||
\usepackage{lettrine}
|
||||
\usepackage{parskip}
|
||||
\usepackage{fancyhdr}
|
||||
\pagestyle{fancy}
|
||||
\fancyhf{}
|
||||
\rhead{The Ultimate TempleOS Handbook}
|
||||
\lhead{\leftmark}
|
||||
\rfoot{Page \thepage}
|
||||
|
||||
|
||||
\usepackage{titlesec}
|
||||
|
||||
\titleformat{\chapter}[display]
|
||||
{\normalfont\bfseries}{}{0pt}{\Huge}
|
||||
\titleformat{\section}[display]
|
||||
{\normalfont\bfseries}{}{0pt}{\Huge}
|
||||
|
||||
\begin{document}
|
||||
\setlength{\parindent}{20pt}
|
||||
\setlength{\parskip}{8pt}
|
||||
\includepdf{templeos_cover.png}
|
||||
\section*{What's inside?}
|
||||
|
||||
\begin{minipage}{\textwidth}
|
||||
\vfill
|
||||
\chapter*{Acknowledgements}
|
||||
\chapter{Acknowledgements}
|
||||
|
||||
\lettrine{W}{ riting} a book is no simple task, especially when you're writing a book on programming. Therefore, it would be nearly impossible to write this book solely by myself, so I'd like to acknowledge a few people who helped get this book going.
|
||||
\lettrine{W}{ riting} a book is surely not a simple task, especially when writing a book on programming, let alone a whole operating system.
|
||||
Thus it would be nearly impossible to write this book solely by oneself, therefore an acknowledgement is necessary to credit the people who have helped this book to exist.
|
||||
\begin{itemize}
|
||||
%This acknowledgement will stay here until xzntrc adds my name on the cover
|
||||
\item \textbf{Professional Necrophiliac}: For fixing the author's atrocious and mediocre vocabulary insufficient to write a book, and for doing it for free
|
||||
\item \textbf{Someone}: for reason
|
||||
\item \textbf{Someone}: for reason
|
||||
\item \textbf{Terrence Andrew Davis}: this wouldn't be much of a "TempleOS" book if we didn't commemorate the man who inspired this book; the creator of TempleOS.
|
||||
\item \textbf{Terrence Andrew Davis}: this would not be much of a "TempleOS" book if this book does not commemorate the man who inspired this book, the creator of TempleOS
|
||||
\end{itemize}
|
||||
\end{minipage}
|
||||
\newpage
|
||||
@@ -28,8 +46,64 @@
|
||||
\tableofcontents
|
||||
\newpage
|
||||
|
||||
\chapter{Introduction}
|
||||
\chapter{Preface}
|
||||
|
||||
\lettrine{A}{ dvances} in the operating system development world has led us into an era of general-purpose computing and the accessibility of computers to the general public(which is often referred to as \textbf{niggercattle} by Terry Davis for their cattle-like obedient behavior), but has also resulted in a madness of unnecessary features, excess telemetry nobody asked for, and bloat which has been mostly
|
||||
unfixable due to the enterprise and proprietary nature of operating system development, since
|
||||
designing and programming a whole general-purpose operating system, complete with
|
||||
the userspace and kernel is not a task a single man can easily undergo.
|
||||
|
||||
TempleOS aims to be a single-user hobbyist operating system for the joy of programming which seems to have been forgotten since the rise of general-purpose operating systems. Terry Davis s et a limit on the Temple Operating System's line of source code to keep its simplicity and codebase disciplined.
|
||||
|
||||
This book is the first detailed and coherent account of Terry Davis and the Temple Operating System. It does not document about unorthodox forks of the operating system. It is divided into 4 major parts:
|
||||
\begin{itemize}
|
||||
\item Part One - an overview of the key concepts of the operating system
|
||||
\item Part Two - a detailed technical description of the TempleOS ecosystem, involving HolyC and the TempleOS graphics library
|
||||
\item Part Three - various annotated and illustrated examples of HolyC programs
|
||||
\item Part Four - a detailed log of Terry Davis' life and philosophy which was the key to developing TempleOS
|
||||
\end{itemize}
|
||||
|
||||
This book assumes the user has a basic understanding of:
|
||||
\begin{itemize}
|
||||
\item What an operating system is
|
||||
\item How to boot up a virtual machine
|
||||
\item What the command line is
|
||||
\item The C programming language
|
||||
\item Terry Davis' views and philosophy
|
||||
\end{itemize}
|
||||
The knowledge of these items do not necessarily have to be deep, however is the reader is not able to write a \textbf{for loop} or does not have an understanding of what a \textbf{pointer} is in the C programming language, he will have a very hard time understanding this book.
|
||||
|
||||
This book draws inspiration from \textbf{Smalltalk-80: The Language And Its Implementation}: the most well-organized and professional programming book ever written. The author would like to add special thanks to Adele Goldberg, David Robson and the rest of Xerox PARC for such a wonderful book.
|
||||
|
||||
\newpage
|
||||
|
||||
|
||||
\titleformat{\chapter}
|
||||
{\normalfont\Large\bfseries}{PART ONE}{1em}{\Huge}
|
||||
|
||||
\chapter*{PART ONE}
|
||||
\addcontentsline{toc}{chapter}{\protect\numberline{}PART ONE}%
|
||||
|
||||
Part One of this book provides an overview of the core concepts and aspects of the Temple Operating System. Chapter 3 introduces the basic concepts and vocabulary of the Temple Operating System. Chapter 4 describes the general usage and aspects of TempleOS which is radically different from mainstream operating systems.
|
||||
\newpage
|
||||
|
||||
\titleformat{\chapter}[display]
|
||||
{\normalfont\bfseries}{}{0pt}{\Huge}
|
||||
|
||||
\chapter{The Temple}
|
||||
%\addcontentsline{toc}{chapter}{\protect\numberline{}Introduction}
|
||||
|
||||
\lettrine{T}{ he} Temple Operating System is a ring-zero, multicore x86\_64 operating system that is a result of Terry Davis(1969 - 2018)' decades worth of work.
|
||||
It is not an easy task to explain all aspects of the very intricate network of features, quirks and surprises that is TempleOS, but the most profound and widely known are:
|
||||
\begin{itemize}
|
||||
\item The ability to talk to God using a random number generator which uses a timer as the seed for its algorithm
|
||||
\item A programming language which is an improved version of the C programming language called HolyC
|
||||
\item The operating system's shell(the software used to communicate with the operating system and launch other programs) which uses HolyC instead of a scripting language such as Bash/POSIX sh
|
||||
\item A JIT compiler which compiles the whole operating system's userspace on boot
|
||||
\end{itemize}
|
||||
|
||||
\noindent There is much more to this but they will later be elaborated while Part One advances.
|
||||
|
||||
|
||||
\lettrine{T}{ he} Temple Operating System
|
||||
|
||||
\end{document}
|
||||
|
||||
Reference in New Issue
Block a user