diff --git a/.gitmodules b/.gitmodules
new file mode 100644
index 0000000..ca5f1d8
--- /dev/null
+++ b/.gitmodules
@@ -0,0 +1,3 @@
+[submodule "website/themes/hermit"]
+ path = website/themes/hermit
+ url = https://github.com/Track3/hermit.git
diff --git a/website/config.toml b/website/config.toml
new file mode 100644
index 0000000..3b64427
--- /dev/null
+++ b/website/config.toml
@@ -0,0 +1,81 @@
+baseURL = "https://chrishayward.xyz/"
+theme = "hermit"
+
+defaultContentLanguage = "en"
+languageCode = "en-us"
+
+title = "Chris Hayward"
+copyright = "Licensed under Attribution 4.0 International (CC BY 4.0)"
+
+pygmentsCodefences = true
+pygmentsUseClasses = true
+
+[Author]
+ name = "Christopher James Hayward"
+
+[blackfriday]
+ nofollowLinks = true
+ noreferrerlinks = true
+
+[taxonomies]
+ tag = "tags"
+
+[params]
+ dateform = "Jan 2, 2006"
+ dateformShort = "Jan 2"
+ dateformNum = "2006-01-02"
+ dateformNumTime = "2006-01-02 15:04 -0700"
+
+ homeSubtitle = "IT, Logistics, Simulation"
+ footerCopyright = ' · CC BY 4.0'
+
+ [[params.social]]
+ name = "github"
+ url = "https://github.com/chayward1/"
+
+ [[params.social]]
+ name = "gitlab"
+ url = "https://gitlab.com/chayward1/"
+
+ [[params.social]]
+ name = "linkedin"
+ url = "https://linkedin.com/in/christopher-hayward-00b6a8197/"
+
+ # [[params.social]]
+ # name = "youtube"
+ # url = "https://youtube.com/channel/UCOOh07namjfzGwRuay1LqRQ"
+
+[privacy]
+ [privacy.disqus]
+ disable = true
+
+ [privacy.googleAnalytics]
+ disable = true
+
+ [privacy.instagram]
+ disable = true
+
+ [privacy.twitter]
+ disable = true
+
+ [privacy.vimeo]
+ disable = true
+
+ [privacy.youtube]
+ disable = true
+
+[menu]
+ [[menu.main]]
+ name = "Posts"
+ url = "posts/"
+ weight = 10
+
+ [[menu.main]]
+ name = "Notes"
+ url = "notes/"
+ weight = 20
+
+ [[menu.main]]
+ name = "Contact"
+ url = "mailto:chris@chrishayward.xyz"
+ weight = 30
diff --git a/website/content/notes/business-communication.md b/website/content/notes/business-communication.md
new file mode 100644
index 0000000..4220868
--- /dev/null
+++ b/website/content/notes/business-communication.md
@@ -0,0 +1,6 @@
++++
+title = "Business Communication"
+author = ["Christopher James Hayward"]
+lastmod = 2021-02-03T16:11:29-05:00
+draft = true
++++
diff --git a/website/content/notes/computer-science.md b/website/content/notes/computer-science.md
new file mode 100644
index 0000000..da7c0cb
--- /dev/null
+++ b/website/content/notes/computer-science.md
@@ -0,0 +1,6 @@
++++
+title = "Computer Science"
+author = ["Christopher James Hayward"]
+lastmod = 2021-02-03T16:11:45-05:00
+draft = true
++++
diff --git a/website/content/notes/finite-mathematics.md b/website/content/notes/finite-mathematics.md
new file mode 100644
index 0000000..0c2cbee
--- /dev/null
+++ b/website/content/notes/finite-mathematics.md
@@ -0,0 +1,6 @@
++++
+title = "Finite Mathematics"
+author = ["Christopher James Hayward"]
+lastmod = 2021-02-03T16:12:05-05:00
+draft = true
++++
diff --git a/website/content/notes/literate-programming.md b/website/content/notes/literate-programming.md
new file mode 100644
index 0000000..ab11aa0
--- /dev/null
+++ b/website/content/notes/literate-programming.md
@@ -0,0 +1,48 @@
++++
+title = "Literate Programming"
+author = ["Christopher James Hayward"]
+lastmod = 2021-02-01T16:14:03-05:00
+draft = false
++++
+
+- Programming paradigm
+- Programs expressed in natural language with code snippets
+- Produces machine readable code and human readable documentation
+
+
+## Introduction {#introduction}
+
+Described in its introduction[^fn:1] as a
+
+> Programming paradigm in which a computer program is given an explanation of its logic in a natural language, such as English, interspersed with snippets of macros and traditional source code, from which compilable source code can be generated.
+
+Knuth describes a **practitioner** in the introduction of his 1984 paper[^fn:1] as
+
+> An essayist concerned with exposition and excellence of style. Someone who carefully selects the name for each variable and describes their meaning. They will strive for a program that is comprehensible because concepts are introduced in a manner best for human understanding.
+
+
+## Concept {#concept}
+
+```text
+ _____
+ | | -> Send to Boss
+ _____ | doc | -> Copy to Team
+| | -> Weave -> |_____| -> Copy to Support
+| org | _____
+|_____| -> Tangle -> | | -> Test on CI
+ | src | -> Copy to CDN
+ |_____| -> Send to Customer
+```
+
+Illustrated above we see the process of **weaving** and **tangling** the literate source file, and how each of the produced components is handled respectively.
+
+| File | Description |
+|------|------------------------------|
+| org | Literate document / file |
+| src | Machine readable source code |
+| doc | Human readable documentation |
+
+
+## Resources {#resources}
+
+[^fn:1]: Knuth, D. E. (1984). Literate Programming. The Computer Journal, 27(2), 97–111.
diff --git a/website/content/notes/systems-analysis-design.md b/website/content/notes/systems-analysis-design.md
new file mode 100644
index 0000000..7ca9555
--- /dev/null
+++ b/website/content/notes/systems-analysis-design.md
@@ -0,0 +1,6 @@
++++
+title = "Systems Analysis & Design"
+author = ["Christopher James Hayward"]
+lastmod = 2021-02-03T16:12:26-05:00
+draft = true
++++
diff --git a/website/content/notes/thinking-in-cpp.md b/website/content/notes/thinking-in-cpp.md
new file mode 100644
index 0000000..38feaae
--- /dev/null
+++ b/website/content/notes/thinking-in-cpp.md
@@ -0,0 +1,112 @@
++++
+title = "Thinking in C++"
+author = ["Christopher James Hayward"]
+lastmod = 2021-02-03T14:08:28-05:00
+draft = false
++++
+
+## Coding Style {#coding-style}
+
+**Eckel** justifies the decisions about the coding styles in the text[^fn:1]:
+
+> All the decisions about coding style in this book have been deliberately considered and made, sometimes over a period of years.
+
+
+### General {#general}
+
+The coding style as described by **Eckel** is one that he came to after years of practice, and originates from Bjarne Stroustrup's style, the Author of `C++`[^fn:1]:
+
+> I use a particular coding style for the examples in this book. It was developed over a number of years, and was partially inspired by Bjarne Stroustrup's style in his original The C++ Programming Language.
+
+**Eckel** goes on to declare that it's more important to keep a consistent style, than to try to determine which is superior[^fn:1]:
+
+> Because C++ is a free-form programming language, you can continue to use whatever style you're comfortable with. That said, I will note that it is important to have a consistent formatting style within a project.
+
+
+### File names {#file-names}
+
+**Eckel** describes the history of the naming conventions for `C/C++` files[^fn:1]:
+
+> In C, it has been traditional to name header files (containing declarations) with an extension of .h and implementation files (that cause storage to be allocated and code to be generated) with an extension of .c.
+
+Depending on the type of operating system, some files had different extensions as well[^fn:1]:
+
+> DOS C++ vendors used extensions of hxx and cxx for header files and implementation files, respectively, or hpp and cpp. Later, someone figured out that the only reason you needed a different extension for a file was so the compiler could determine whether to compile it as a C or C++ file
+
+| Name | Extension | Description |
+|----------------|-----------|-----------------------------|
+| Header | .h | Header files for C/C++ |
+| Header | .hxx | Header file for C++ on DOS |
+| Implementation | .c | Implementation file for C |
+| Implementation | .cpp | Implementaiton file for C++ |
+
+
+### Begin and end comment tags {#begin-and-end-comment-tags}
+
+Most of the code examples in the text book have comment tags at the beginning and end, which is part of a system used by **Eckel** to verify all of the code examples[^fn:1]:
+
+> A very important issue with this book is that all code that you see in the book must be verified to be correct (with at least one compiler).
+
+**Eckel** further elaborates how each example has a custom `makefile` and some program information included in the tags[^fn:1]:
+
+> Because ExtractCode.cpp also creates a makefile for each subdirectory, information about how a program is made and the command-line used to test it is also incorporated into the listings.
+
+
+### Parentheses, braces, and indentation {#parentheses-braces-and-indentation}
+
+The section begins with, what is in my opinion, an accurate statement by **Eckel**, although not without irony[^fn:1]:
+
+> Of course, everyone thinks their own style is the most rational. However, the style used here has a simple logic behind it, which will be presented here mixed in with ideas on why some of the other styles developed.
+
+On addressing indentation[^fn:1]:
+
+> Everyone seems to agree that code inside braces should be indented.
+
+**Eckel** addresses braces in his coding style[^fn:1]:
+
+> ... the opening brace should always go on the same line as the "precursor" (by which I mean "whatever the body is about: a class, function, object definition, if statement, etc."). This is a single, consistent rule I apply to all of the code I write, and it makes formatting much simpler.
+
+
+### Identifier names {#identifier-names}
+
+**Eckel** explains the naming conventions of identifiers[^fn:1]:
+
+> Those familiar with Java will notice that I have switched to using the standard Java style for all identifier names. However, I cannot be completely consistent here because identifiers in the Standard C and C++ libraries do not follow this style
+
+| Type | Style |
+|---------------------|-------------|
+| Class | Pascal Case |
+| Function / Variable | Camel Case |
+| Const / Definition | Snake Case |
+
+```cpp
+class FrenchVanilla : public IceCream { }
+```
+
+```cpp
+const MAX_SCOOPS = 3;
+```
+
+```cpp
+FrenchVanilla myIceCreamCone(MAX_SCOOPS);
+```
+
+
+### Order of header inclusion {#order-of-header-inclusion}
+
+**Eckel** broadly defines the order of inclusion[^fn:1]:
+
+> Headers are included in order from "the most specific to the most general." That is, any header files in the local directory are included first, then any of my own "tool" headers, such as require.h, then any third-party library headers, then the Standard C++ Library headers, and finally the C library headers.
+
+```cpp
+#include // Local directory headers.
+#include // Personal tool headers.
+#include // Third party library headers.
+#include // C++ library headers.
+#include // C library headerts
+```
+
+
+## Resources {#resources}
+
+[^fn:1]: Eckel, Bruce. Thinking in C++. 2nd ed, Prentice Hall, 2000, .
diff --git a/website/content/posts/hello.md b/website/content/posts/hello.md
new file mode 100644
index 0000000..38e4cbc
--- /dev/null
+++ b/website/content/posts/hello.md
@@ -0,0 +1,16 @@
++++
+title = "Hello, world!"
+author = ["Christopher James Hayward"]
+date = 2021-01-17
+lastmod = 2021-02-01T16:10:18-05:00
+draft = false
++++
+
+```c
+#include
+
+int main() {
+ printf("Hello, world!");
+ return 0;
+}
+```
diff --git a/website/content/posts/immutable-emacs.md b/website/content/posts/immutable-emacs.md
new file mode 100644
index 0000000..b526110
--- /dev/null
+++ b/website/content/posts/immutable-emacs.md
@@ -0,0 +1,84 @@
++++
+title = "Immutable Emacs"
+author = ["Christopher James Hayward"]
+date = 2021-01-19
+lastmod = 2021-02-01T16:10:13-05:00
+draft = false
++++
+
+You can easily create an **Immutable** and **100% Reproducible** custom Emacs configuration with very little effort. My inspiration for this came from the `Emacs From Scratch` series by [System Crafters](https://youtube.com/c/SystemCrafters).
+
+
+## Getting started {#getting-started}
+
+Emacs created **lots** of files relative to `user-emacs-directory`, which are **not** part of this configuration and do not belong in the same directory.
+
+- Disable lockfiles
+- Disable backup files
+
+To acheive this functionality, before anything else happens we change this directory to `~/.cache/emacs`, while keeping the old value of `user-emacs-directory` in our own variable.
+
+```emacs-lisp
+(defvar dotfiles/home user-emacs-directory)
+(defvar dotfiles/cache "~/.cache/emacs")
+
+(setq create-lockfiles nil
+ make-backup-files nil
+ user-emacs-directory dotfiles/cache)
+```
+
+
+## Package management {#package-management}
+
+[Straight](https://github.com/raxod502/straight.el) is a 100% functional package manager for Emacs, with integration for `use-package`, a common way to download / configure / install Emacs packages.
+
+- Use the development branch
+- Integrate with `use-package`
+
+Apply the configurations prior to bootstrapping the package manager, by setting (writing) to the variables that `straight` will ultimately read from.
+
+```emacs-lisp
+(setq straight-repository-branch "develop"
+ straight-use-package-by-default t)
+```
+
+Bootstrap the package manager, downloading, installing, or configuring depending on the state of the configuration. All packages are downloaded and built from source, and can be pinned to specific git commit hashes.
+
+```emacs-lisp
+(defvar bootstrap-version)
+(let ((bootstrap-file
+ (expand-file-name "straight/repos/straight.el/bootstrap.el" user-emacs-directory))
+ (bootstrap-version 5))
+ (unless (file-exists-p bootstrap-file)
+ (with-current-buffer
+ (url-retrieve-synchronously
+ "https://raw.githubusercontent.com/raxod502/straight.el/develop/install.el"
+ 'silent 'inhibit-cookies)
+ (goto-char (point-max))
+ (eval-print-last-sexp)))
+ (load bootstrap-file nil 'nomessage))
+```
+
+Complete the integration with `use-package` by installing it with `straight-use-package`:
+
+```emacs-lisp
+(straight-use-package 'use-package)
+```
+
+
+## A E S T H E T I C S {#a-e-s-t-h-e-t-i-c-s}
+
+If you've ever looked at default Emacs, you know that it's one of the ugliest GUI applications out of the box. Including a few packages, cherry picked from `Doom` can bring Emacs out of the eightes!
+
+```emacs-lisp
+(use-package all-the-icons)
+(use-package doom-modeline :init (doom-modeline-mode 1))
+(use-package doom-themes :init (load-theme 'doom-one t))
+```
+
+
+## Conclusion {#conclusion}
+
+Now that the **stateful** and **immutable** files are seperated, and the default look has been improved **slightly** you're left with a clean, immutable, and reproducible Emacs configuration to continue hacking on.
+
+Enjoy it!
diff --git a/website/themes/hermit b/website/themes/hermit
new file mode 160000
index 0000000..2dc35c5
--- /dev/null
+++ b/website/themes/hermit
@@ -0,0 +1 @@
+Subproject commit 2dc35c5c6a52168a3a7b35c5ad51209f40a851cf