diff --git a/about/index.html b/about/index.html index d9df8f8..6c4a633 100644 --- a/about/index.html +++ b/about/index.html @@ -43,9 +43,9 @@ Portrait

- I'm from Kennedale, a small suburb in the DFW area of Texas. It's here where I grew up and found my home in engineering. In high school, I played trumpet in our (UIL State finalist) marching band. In 2022, I graduated and said goodbye to my hometown, and now I'm in College Station studying what I love while doing some food serving work on the weekends. + I'm from Kennedale, a small suburb in the DFW area of Texas. It's here where I grew up and found my home in engineering. In high school, I played trumpet in our (UIL State finalist) marching band. In 2022, I graduated and said goodbye to my hometown, and now I'm in College Station studying what I love while doing some food serving work. - My favorite music genre is alternative rock/metal, and a shortlist of my favorite bands are Red, Starset, and My Chemical Romance! As a textbook 21st century young adult, my other hobbies include playing video games such as Elden Ring, reading Wikipedia pages, eating Chick-fil-A, and riding my bike. + My favorite music genre is alternative rock/metal, and a shortlist of my favorite bands are Starset, Red, and My Chemical Romance! As a textbook 21st century young adult, my other hobbies include playing video games such as Elden Ring, reading Wikipedia pages, eating Chick-fil-A, and riding my bike.

Contact

@@ -59,7 +59,7 @@ diff --git a/index.html b/index.html index a4dd9fe..3e9a62b 100644 --- a/index.html +++ b/index.html @@ -40,7 +40,7 @@

Grayson Riffe

- Hello! My name is Grayson Riffe, and I am an undergraduate at Texas A&M majoring in Electronic Systems Engineering Technology and minoring in Cybersecurity. + Hello! My name is Grayson Riffe, and I am an undergraduate at Texas A&M majoring in Electronic Systems Engineering Technology. Ever since I can remember, I've been interested in electronics, espcecially computers, and how to tell them what to do. I started my technical journey in 5th grade with learning Java programming. To truly understand what I was learning, I wrote tiny games such as tic-tac-toe, a number guessing game, and "Button Clicker" (a very bad knockoff of Cookie Clicker). As I started to get more competent, I then started looking into C++ on Windows with MSVC and Visual Studio. I have a strong background with compiled application development.

@@ -55,7 +55,7 @@

diff --git a/nf/index.html b/nf/index.html index 4a99298..154eb34 100644 --- a/nf/index.html +++ b/nf/index.html @@ -43,11 +43,11 @@

Nothin' Fancy

- Nothin' Fancy (or NF) is a 3D game engine / visualizer for Windows built with CMake and MSVC. I ultimately want to use my engine to create a game I can release on Steam for free. + Nothin' Fancy (NF) is a 3D game engine for Windows built with C++. I ultimately want to use my engine to create a game I can release on Steam for free.

- +

- The first revision was developed in 2021 as an experimental learning project. It has a number of cool features including a custom asset pack system complete with model cooking, an easy way to create a UI, material texture support including normal maps, and even a physics engine, but it is still missing a number of important features. + The first revision was developed in 2021 as an experimental learning project. It has a number of features including a custom asset pack system, an easy way to create a UI, material texture support including normal maps, and even a physics engine, but it is still missing a number of important features. I worked on this project during my senior year of high school, and it is the result of about 4 months of constant work. @@ -66,7 +66,7 @@

diff --git a/style.css b/style.css index 1a0a2c5..01d9f81 100644 --- a/style.css +++ b/style.css @@ -180,7 +180,7 @@ article { } .space { - padding: 1em; + padding: 0.5em; } h1 { @@ -192,7 +192,7 @@ p { white-space: pre-line; } -iframe.video { +iframe { display: block; width: 40%; aspect-ratio: 16 / 9; @@ -203,6 +203,16 @@ iframe.video { border-radius: 1em; } +.mainimage { + width: 30%; + margin: auto; +} + +.mainimage img { + border: 0.2em black solid; + border-radius: 1em; +} + .contact { padding: 0 2em; font-size: 1.2em; @@ -266,7 +276,11 @@ footer { margin: 0 auto; } - iframe.video { + iframe { width: 90%; } + + .mainimage { + width: 90% + } } \ No newline at end of file diff --git a/winchat/index.html b/winchat/index.html index 322b54b..f1aca93 100644 --- a/winchat/index.html +++ b/winchat/index.html @@ -43,18 +43,22 @@

WinChat

- WinChat is a simple chat application for Windows (hence the name). + WinChat is a simple chat application for Windows. +

+
+ Engine Logo +
+

I started this project to get a grasp of the network programming I would need to know if I were to add multiplayer support to Nothin' Fancy. The application has few features, but everything is done at a low level, only using old Win32 APIs to get the job done. You can download the current version (1.0.0) here. - As a side note, because I do not have a "code signing certificate," Windows Security and SmartScreen might not let you run the program without asking you if you are sure. The source can be found here.

diff --git a/winchat/screenshot.png b/winchat/screenshot.png new file mode 100644 index 0000000..37f71c8 Binary files /dev/null and b/winchat/screenshot.png differ