-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathblogpage.html
83 lines (55 loc) · 4.45 KB
/
blogpage.html
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
<!DOCTYPE html>
<html lang="en">
<head>
<title>INVISIBLE CHAIR PROJECT - Blog</title>
<meta charset="UTF-8" />
<meta name="author" content="Erin Vasquez" />
<meta name="viewport" content="width=device-width, initial-scale=1.0" /> <!-- This makes it pretty on all screens apparently -->
<meta name="description" content="Home to wonders of the universe." />
<meta name="revised" content="Erin Vasquez, 8/16/2022" />
<meta http-equiv="Content-Script-Type" content="text/JavaScript" />
<!-- <link rel="stylesheet" href="/css/sourceStyle.css"> -->
<link rel="stylesheet" href="./css/sourceStyle.css">
<!--Fonts-->
<link rel="preconnect" href="https://fonts.gstatic.com">
<!--Another stylesheet?-->
<link href="https://fonts.googleapis.com/css2?family=Fraunces:ital,wght@0,200;0,300;0,400;1,200;1,300;1,400&family=Lato:ital,wght@0,300;0,400;0,700;1,300;1,400;1,700&family=Roboto:ital,wght@0,100;0,300;0,400;0,500;0,700;1,100;1,300;1,400;1,500;1,700&display=swap" rel="stylesheet">
<!--JS SCRIPTS
<script type="text/javascript" src="js/buttonclicks.js"></script> -->
</head>
<body>
<header id="title"><h1>INVISIBLE CHAIR PROJECT - BLOG</h1></header>
<div id="main_container">
<div id="nav_menu">
<ul id="nav">
<li><a href="./sourcepage.html">THE INVISIBLE CHAIR PROJECT</a></li>
<li><a href="./blogpage.html">Blog</a></li>
<li><a href="./resumepage.html">Resume</a></li>
<li><a href="./aboutpage.html">About this site</a></li>
</ul>
</div>
<div id="main_content">
<article>
<h2>Developer's Log - August 16th 2022 *** NEW ***</h2>
<p>More C# code has been committed to GitHub for my synthesizer. I've moved onto testing a console-based C# synthesizer instead of a C# Windows Form application. That repository will be up soon. In other news, I've uploaded a tech demo of my Visualizer work in the Unity 3D Engine. I've also managed to write a bash shell script on this server to update the site from the github repository. A success!</p>
<iframe width="560" height="315" src="https://www.youtube-nocookie.com/embed/8Kpb6JWflAU" title="YouTube video player" frameborder="0" allow="accelerometer; autoplay; clipboard-write; encrypted-media; gyroscope; picture-in-picture" allowfullscreen></iframe>
<h2>Developer's Log - August 8th 2022</h2>
<p>
I've been reached out to by a friend from University about making a maze for students in a thesis study would play. I recalled working on maze generation algorithms last year and have decided to pull up that old code that can be found on github here: https://github.com/erinvasquez/InvisibleChairProjectHDRP. I'm attempting to fix the maze generation outside of a debug environment, but I've made fantastic progress re-simulating maze generation with the pathing algorihtms I had studied before. Images are uploaded and will be featured in the future in this very blog post. Otherwise, wait for a link to appear below to a gallery of some sorts.
</p>
<image src="images/150am-demo1/capture7.jpg" width="40%">
</image>
<image src="images/150am-demo1/capture9.jpg" width="40%">
</image>
<h2>Developer's Log - August 5th 2022</h2>
<p>
In the month since starting this quote unquote blog, I've been maintaining some new C# Synthesizer code. With a combination of examples already on the internet in various languages, and a bit of my own
musical knowledge, I've translated some C# Physics Engine code for a previous VR Synthesizer/Instrument into a C# Framework Windows Forms application. Pictures and videos of the project will be available soon. I'm extremely excited to see this project grow. It's a great combination of science and music.
</p>
<h2>Developer's Log - July 6th 2022</h2>
<p>My website is finally up and running again. I plan on adding more logs about my progress in the future. I've managed to save enough funds to run a budget Google Cloud Virtual Machine to run this website. Time to focus energy on sprucing up this website and exploring more C#, ASP.net, JavaScript audio synthesis, and Python machine learning.</p>
</article>
</div>
</div>
</body>
</html>