3 Commits

Author SHA1 Message Date
Lao Tzu 5fee996a61 removed ignored files 2026-06-11 16:44:15 -07:00
Lao Tzu 987cbe792f half-working version 1 2026-06-11 16:41:45 -07:00
Lao Tzu c887d058f0 Changed filesystem for static site 2026-06-11 13:53:59 -07:00
208 changed files with 108 additions and 1555 deletions
+1
View File
@@ -0,0 +1 @@
_site
+4 -17
View File
@@ -1,24 +1,11 @@
Webroot for James' blog! # JEKYLL MODE ENABLED
Webroot for James' blog, in Jekyll-based static site mode!
Goals for this page: Goals for this page:
- Repo for projects and - Repo for projects and
thoughts thoughts
Hosting music! important function - Hosting music! important function
- Should look flashy for employers - Learning Jekyll-based static site generation.
- Place to fuck around with programming
The plan for the PHP layout is as such:
1. index.php loads in header.php
2. index.php loads in some content
3. index.php loads in footer.php
Based on the URI, the PHP scripts will serve
text content. My fun little goal here is to
have PHP interpret the content as HTML, Markdown,
and raw text AT THE SAME TIME. This may not work.
# FOLDERS # FOLDERS
- css: holds the main stylesheets. - css: holds the main stylesheets.
- javascript: holds the main javascript.
- php: holds main php.
- content: holds main text content for the site.
+14
View File
@@ -0,0 +1,14 @@
- name: home
link: /
- name: about
link: /about.html
- name: services
link: /services.html
- name: contact
link: /contact.html
- name: articles
link: /articles.html
+3
View File
@@ -0,0 +1,3 @@
<div id='footbar'>
<a href='mailto:me@jameswitzeman.net'>me@jameswitzeman.net</a>
</div>
+9
View File
@@ -0,0 +1,9 @@
<div id='titlebar'>
<div class='item1'><h1>world-wide-witzeman</h1></div>
<div class='item2'></div>
</div>
<div id='subhead'>
<div id='motd'>content/home</div>
{% include nav.html %}
</div>
+8
View File
@@ -0,0 +1,8 @@
<nav class='hnav'>
{% for item in site.data.navigation %}
<a href="{{ item.link }}" {% if page.url == item.link %}class="current"{% endif %}>
{{ item.name }}
</a>
{% endfor %}
</nav>
+16
View File
@@ -0,0 +1,16 @@
<!DOCTYPE html>
<html>
<head>
<meta charset="utf-8">
<title>{{ page.title }}</title>
<link rel="stylesheet" href="/assets/css/styles.css">
</head>
<div id='head'>
{% include header.html %}
</div>
<div class='content'>{{ content }}</div>
<div id='foot'>
{% include footer.html %}
</div>
</html>
+7
View File
@@ -0,0 +1,7 @@
---
layout: default
---
<h1>{{ page.title }}</h1>
<p>{{ page.date | date_to_string }} - {{ page.author }}</p>
{{ content }}
@@ -1,8 +1,8 @@
<title>MACHINE LEARNING IN C</title> ---
<body> layout: post
<div id="body"> author: james
<h1>LEARNING NEURAL NETWORKING IN C</h1> title: LEARNING NEURAL NETWORKING IN C
<h6>10/19/2023</h6> ---
<p> <p>
To keep myself entertained between classes this fall semester (2023), I decided to try to learn a To keep myself entertained between classes this fall semester (2023), I decided to try to learn a
little about machine learning mathematics. I've heard of the Python library TensorFlow, which does little about machine learning mathematics. I've heard of the Python library TensorFlow, which does
@@ -14,6 +14,7 @@
python for whatever reason. I realize now that this was foolish. My code probably doesn't have much python for whatever reason. I realize now that this was foolish. My code probably doesn't have much
utility for anyone else, but it was a very good learning experience for me. utility for anyone else, but it was a very good learning experience for me.
</p> </p>
<h3>DOING MY RESEARCH</h3> <h3>DOING MY RESEARCH</h3>
<p> <p>
I started my journey by scouring a I started my journey by scouring a
@@ -136,5 +137,3 @@
that any software engineer with some spare time and hunger for learning and challenge try this that any software engineer with some spare time and hunger for learning and challenge try this
themselves. themselves.
</p> </p>
</div>
</body>
+5
View File
@@ -1,3 +1,8 @@
---
layout: default
title: ABOUT JAMES
---
<h1>|= ABOUT JAMES</h1> <h1>|= ABOUT JAMES</h1>
<p> <p>
Caden James Witzeman is a programmer and jazz musician Caden James Witzeman is a programmer and jazz musician
+9
View File
@@ -0,0 +1,9 @@
---
layout: default
title: JAUFHEBEN
---
{% for post in site.posts %}
<a href="{{ post.url }}">{{ post.title }}</a>
{{ post.excerpt | truncate: site.excerpt_length }}
{% endfor %}
@@ -23,20 +23,23 @@ body {
color: var(--cyan); color: var(--cyan);
font-weight: bold; font-weight: bold;
} }
#subhead a { .hnav a {
text-decoration: none; text-decoration: none;
padding: 0 0.5em 0 0.5em; padding: 0 0.5em 0 0.5em;
margin: 0 0.5em 0 0.5em; margin: 0 0.5em 0 0.5em;
color: var(--cyan); color: var(--cyan);
} }
#subhead a:hover { .hnav a:hover {
/*text-decoration: underline;*/ /*text-decoration: underline;*/
background-color: var(--bg-secondary); background-color: var(--bg-secondary);
color: var(--orange); color: var(--orange);
} }
#subhead ul { .hnav {
border-bottom: 2px dashed var(--red); border-bottom: 2px dashed var(--red);
} }
.hnav .current {
color: var(--orange);
}
.content p { .content p {
text-indent: 2em; text-indent: 2em;

Some files were not shown because too many files have changed in this diff Show More