Compare commits
3 Commits
| Author | SHA1 | Date | |
|---|---|---|---|
| 5fee996a61 | |||
| 987cbe792f | |||
| c887d058f0 |
@@ -0,0 +1 @@
|
||||
_site
|
||||
@@ -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:
|
||||
- Repo for projects and
|
||||
thoughts
|
||||
Hosting music! important function
|
||||
- Should look flashy for employers
|
||||
- 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.
|
||||
- Hosting music! important function
|
||||
- Learning Jekyll-based static site generation.
|
||||
|
||||
# FOLDERS
|
||||
- css: holds the main stylesheets.
|
||||
- javascript: holds the main javascript.
|
||||
- php: holds main php.
|
||||
- content: holds main text content for the site.
|
||||
|
||||
@@ -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
|
||||
@@ -0,0 +1,3 @@
|
||||
<div id='footbar'>
|
||||
<a href='mailto:me@jameswitzeman.net'>me@jameswitzeman.net</a>
|
||||
</div>
|
||||
@@ -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>
|
||||
|
||||
@@ -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>
|
||||
|
||||
@@ -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>
|
||||
@@ -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>
|
||||
<div id="body">
|
||||
<h1>LEARNING NEURAL NETWORKING IN C</h1>
|
||||
<h6>10/19/2023</h6>
|
||||
---
|
||||
layout: post
|
||||
author: james
|
||||
title: LEARNING NEURAL NETWORKING IN C
|
||||
---
|
||||
<p>
|
||||
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
|
||||
@@ -13,7 +13,8 @@
|
||||
it would be nice to have a machine learning library in C for any of those who didn't want to use
|
||||
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.
|
||||
</p>
|
||||
</p>
|
||||
|
||||
<h3>DOING MY RESEARCH</h3>
|
||||
<p>
|
||||
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
|
||||
themselves.
|
||||
</p>
|
||||
</div>
|
||||
</body>
|
||||
@@ -1,3 +1,8 @@
|
||||
---
|
||||
layout: default
|
||||
title: ABOUT JAMES
|
||||
---
|
||||
|
||||
<h1>|= ABOUT JAMES</h1>
|
||||
<p>
|
||||
Caden James Witzeman is a programmer and jazz musician
|
||||
@@ -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);
|
||||
font-weight: bold;
|
||||
}
|
||||
#subhead a {
|
||||
.hnav a {
|
||||
text-decoration: none;
|
||||
padding: 0 0.5em 0 0.5em;
|
||||
margin: 0 0.5em 0 0.5em;
|
||||
color: var(--cyan);
|
||||
}
|
||||
#subhead a:hover {
|
||||
.hnav a:hover {
|
||||
/*text-decoration: underline;*/
|
||||
background-color: var(--bg-secondary);
|
||||
color: var(--orange);
|
||||
}
|
||||
#subhead ul {
|
||||
.hnav {
|
||||
border-bottom: 2px dashed var(--red);
|
||||
}
|
||||
.hnav .current {
|
||||
color: var(--orange);
|
||||
}
|
||||
|
||||
.content p {
|
||||
text-indent: 2em;
|
||||
Some files were not shown because too many files have changed in this diff Show More
Reference in New Issue
Block a user