All projects and experiences are put in; projects are not entirely where I want it but it's also more complicated. It looks nice tho.
This commit is contained in:
parent
a4a22ed586
commit
498bda2cf4
|
@ -0,0 +1,17 @@
|
||||||
|
using System;
|
||||||
|
using System.Collections.Generic;
|
||||||
|
using System.Linq;
|
||||||
|
using System.Text;
|
||||||
|
using System.Threading.Tasks;
|
||||||
|
|
||||||
|
namespace Portfolio.Domain.Features.Portfolio
|
||||||
|
{
|
||||||
|
public class WorkExperience
|
||||||
|
{
|
||||||
|
public string Title { get; set; }
|
||||||
|
public string Company { get; set; }
|
||||||
|
public int StartYear { get; set; }
|
||||||
|
public int EndYear { get; set; }
|
||||||
|
public string Details { get; set; }
|
||||||
|
}
|
||||||
|
}
|
|
@ -127,8 +127,8 @@
|
||||||
<div class="row ">
|
<div class="row ">
|
||||||
<div class="col card border-0 rounded rounded-4 pt-3 pb-3">
|
<div class="col card border-0 rounded rounded-4 pt-3 pb-3">
|
||||||
<!-- Button Bay-->
|
<!-- Button Bay-->
|
||||||
<div class="row ">
|
<div class="row mt-2">
|
||||||
<div class="d-grid gap-2 d-md-flex justify-content-md-around">
|
<div class="d-grid gap-2 d-md-flex justify-content-around">
|
||||||
<button class="btn rounded-4 w-25 @(isExperience ? "btn-primary" : "btn-outline-primary")" type="button" @onclick="() => ToggleExperience()">Experience</button>
|
<button class="btn rounded-4 w-25 @(isExperience ? "btn-primary" : "btn-outline-primary")" type="button" @onclick="() => ToggleExperience()">Experience</button>
|
||||||
<button class="btn rounded-4 w-25 @(isProjects ? "btn-primary" : "btn-outline-primary")" type="button" @onclick="() => ToggleProjects()">Projects</button>
|
<button class="btn rounded-4 w-25 @(isProjects ? "btn-primary" : "btn-outline-primary")" type="button" @onclick="() => ToggleProjects()">Projects</button>
|
||||||
</div>
|
</div>
|
||||||
|
@ -137,16 +137,119 @@
|
||||||
<div class="col">
|
<div class="col">
|
||||||
@if (isExperience)
|
@if (isExperience)
|
||||||
{
|
{
|
||||||
<div class="row justify-content-md-center fst-italic fs-1">Experience</div>
|
<div class="row justify-content-md-center fst-italic fs-1 mb-2">
|
||||||
<div class="row card">
|
Experience
|
||||||
<div>Stuff</div>
|
|
||||||
</div>
|
</div>
|
||||||
|
@if (experiences == null)
|
||||||
|
{
|
||||||
|
<div>Loading...</div>
|
||||||
|
}
|
||||||
|
else
|
||||||
|
{
|
||||||
|
@foreach (var experience in experiences)
|
||||||
|
{
|
||||||
|
<div class="row justify-content-md-center mb-3">
|
||||||
|
<div class="card w-75 p-3 ps-4 pe-4 rounded">
|
||||||
|
<p class="fs-6 fw-lighter card-subtitle p-0"> @experience.StartYear – @experience.EndYear</p>
|
||||||
|
<p class="fs-5 card-title m-0">@experience.Title - @experience.Company</p>
|
||||||
|
<p class="fs-6 fw-lighter card-text">@experience.Details</p>
|
||||||
|
</div>
|
||||||
|
</div>
|
||||||
|
}
|
||||||
|
}
|
||||||
|
|
||||||
}
|
}
|
||||||
else if (isProjects)
|
else if (isProjects)
|
||||||
{
|
{
|
||||||
<div class="row justify-content-md-center fst-italic fs-1">Projects</div>
|
<div class="row justify-content-md-center fst-italic fs-1 mb-2">Projects</div>
|
||||||
<div class="row card">
|
|
||||||
<div>Stuff</div>
|
<div class="row justify-content-md-center mb-3">
|
||||||
|
<div class="card w-75 p-3 ps-4 pe-4 rounded">
|
||||||
|
<p class="fs-5 card-title m-0">Temperature Blanket Visualizer</p>
|
||||||
|
<p class="fs-6 fw-lighter card-text">Useful tool to help visualize and refine blanket planning for crochet temperature blankets.
|
||||||
|
</p>
|
||||||
|
<p class="fs-6 fw-lighter card-text">A personal project, but a fun one.
|
||||||
|
</p>
|
||||||
|
<a class="mt-2" href="https://localhost:7189/pokemonsleep">
|
||||||
|
<svg xmlns="http://www.w3.org/2000/svg" width="32" height="32" fill="currentColor" class="bi bi-file-code" viewBox="0 0 16 16">
|
||||||
|
<path d="M6.646 5.646a.5.5 0 1 1 .708.708L5.707 8l1.647 1.646a.5.5 0 0 1-.708.708l-2-2a.5.5 0 0 1 0-.708zm2.708 0a.5.5 0 1 0-.708.708L10.293 8 8.646 9.646a.5.5 0 0 0 .708.708l2-2a.5.5 0 0 0 0-.708z"/>
|
||||||
|
<path d="M2 2a2 2 0 0 1 2-2h8a2 2 0 0 1 2 2v12a2 2 0 0 1-2 2H4a2 2 0 0 1-2-2zm10-1H4a1 1 0 0 0-1 1v12a1 1 0 0 0 1 1h8a1 1 0 0 0 1-1V2a1 1 0 0 0-1-1"/>
|
||||||
|
</svg>
|
||||||
|
</a>
|
||||||
|
</div>
|
||||||
|
</div>
|
||||||
|
|
||||||
|
<div class="row justify-content-md-center mb-3">
|
||||||
|
<div class="card w-75 p-3 ps-4 pe-4 rounded">
|
||||||
|
<p class="fs-5 card-title m-0">PokemonSleep Toolset</p>
|
||||||
|
<p class="fs-6 fw-lighter card-text">A webpage constructed for the purposes of assisting players in the mobile game, Pokemon Sleep. Featuring a Pokemon Rater that derives ratings utilizing <a href="https://docs.google.com/spreadsheets/d/14nzQ--k4XhpFHI0qhgNRQlpWswh6WAxBCfq_QvIVZyI/edit?gid=339317073#gid=339317073">this</a> publically available spreadsheet constructed by other fans of the game.
|
||||||
|
</p>
|
||||||
|
<p class="fs-6 fw-lighter card-text">A personal project, but a fun one.
|
||||||
|
</p>
|
||||||
|
<a class="mt-2" href="https://localhost:7189/pokemonsleep">
|
||||||
|
<svg xmlns="http://www.w3.org/2000/svg" width="32" height="32" fill="currentColor" class="bi bi-file-code" viewBox="0 0 16 16">
|
||||||
|
<path d="M6.646 5.646a.5.5 0 1 1 .708.708L5.707 8l1.647 1.646a.5.5 0 0 1-.708.708l-2-2a.5.5 0 0 1 0-.708zm2.708 0a.5.5 0 1 0-.708.708L10.293 8 8.646 9.646a.5.5 0 0 0 .708.708l2-2a.5.5 0 0 0 0-.708z"/>
|
||||||
|
<path d="M2 2a2 2 0 0 1 2-2h8a2 2 0 0 1 2 2v12a2 2 0 0 1-2 2H4a2 2 0 0 1-2-2zm10-1H4a1 1 0 0 0-1 1v12a1 1 0 0 0 1 1h8a1 1 0 0 0 1-1V2a1 1 0 0 0-1-1"/>
|
||||||
|
</svg>
|
||||||
|
</a>
|
||||||
|
</div>
|
||||||
|
</div>
|
||||||
|
|
||||||
|
<div class="row justify-content-md-center mb-3">
|
||||||
|
<div class="card w-75 p-3 ps-4 pe-4 rounded">
|
||||||
|
<p class="fs-5 card-title m-0">AI-Driven D&D 5E Character Generator with React, Next.js, and OpenAI GPT-3 Engine</p>
|
||||||
|
<p class="fs-6 fw-lighter card-text">Creates a credible D&D 5E character sheet, including backstory, based on user input. Ex."I would like to play a magical elf." Or "I want to smash things with a big hammer." Would result in the AI choosing the best character to play with given the limitations and rules of the game (class, race, etc). The user would still be able to customize their character afterwards, and be prompted if they happen to “break” the rules of character generation; i.e. too many skill points assigned.
|
||||||
|
</p>
|
||||||
|
<p class="fs-6 fw-lighter card-text">Lead development in core functionality, including front and back-end development. Developed all JavaScript components and pages including the deterministic logic depending on decisions made by the AI, and the styling using the emotion library.
|
||||||
|
</p>
|
||||||
|
<a class="" href="https://web.engr.oregonstate.edu/~hessro/teaching/hof/cs494#w22">CS 494 Hall of Fame recipient.</a>
|
||||||
|
<a class="mt-2" href="https://github.com/tylertitsworth/ai-character-generator">
|
||||||
|
<svg xmlns="http://www.w3.org/2000/svg" width="32" height="32" fill="currentColor" class="bi bi-github" viewBox="0 0 16 16">
|
||||||
|
<path d="M8 0C3.58 0 0 3.58 0 8c0 3.54 2.29 6.53 5.47 7.59.4.07.55-.17.55-.38 0-.19-.01-.82-.01-1.49-2.01.37-2.53-.49-2.69-.94-.09-.23-.48-.94-.82-1.13-.28-.15-.68-.52-.01-.53.63-.01 1.08.58 1.23.82.72 1.21 1.87.87 2.33.66.07-.52.28-.87.51-1.07-1.78-.2-3.64-.89-3.64-3.95 0-.87.31-1.59.82-2.15-.08-.2-.36-1.02.08-2.12 0 0 .67-.21 2.2.82.64-.18 1.32-.27 2-.27s1.36.09 2 .27c1.53-1.04 2.2-.82 2.2-.82.44 1.1.16 1.92.08 2.12.51.56.82 1.27.82 2.15 0 3.07-1.87 3.75-3.65 3.95.29.25.54.73.54 1.48 0 1.07-.01 1.93-.01 2.2 0 .21.15.46.55.38A8.01 8.01 0 0 0 16 8c0-4.42-3.58-8-8-8"/>
|
||||||
|
</svg>
|
||||||
|
</a>
|
||||||
|
</div>
|
||||||
|
</div>
|
||||||
|
|
||||||
|
<div class="row justify-content-md-center mb-3">
|
||||||
|
<div class="card w-75 p-3 ps-4 pe-4 rounded">
|
||||||
|
<p class="fs-5 card-title m-0">iOS Gesture Alphabet with Swift and CoreML</p>
|
||||||
|
<p class="fs-6 fw-lighter card-text">iOS keyboard extension that translates movements made by the user’s phone to corresponding letters. The model used has been trained with Apple’s CoreML to follow the user’s movements as though they were writing them in the air, through the detection of the device’s sensors, primarily through roll/pitch/yaw. Developed as a means of accessibility for users who may not be able to use a traditional phone keyboard effectively.
|
||||||
|
</p>
|
||||||
|
<p class="fs-6 fw-lighter card-text">SCRUM team lead and lead developer during each phase of project lifecycle. Collected, cleaned, trained and tested model with data personally collected and collected by other users. Developed core functionality, including keyboard extension interface and translation of motion to letter.
|
||||||
|
</p>
|
||||||
|
<a class="mt-2" href="https://github.com/kjiroux/iOS-Gesture-Alphabet">
|
||||||
|
<svg xmlns="http://www.w3.org/2000/svg" width="32" height="32" fill="currentColor" class="bi bi-github" viewBox="0 0 16 16">
|
||||||
|
<path d="M8 0C3.58 0 0 3.58 0 8c0 3.54 2.29 6.53 5.47 7.59.4.07.55-.17.55-.38 0-.19-.01-.82-.01-1.49-2.01.37-2.53-.49-2.69-.94-.09-.23-.48-.94-.82-1.13-.28-.15-.68-.52-.01-.53.63-.01 1.08.58 1.23.82.72 1.21 1.87.87 2.33.66.07-.52.28-.87.51-1.07-1.78-.2-3.64-.89-3.64-3.95 0-.87.31-1.59.82-2.15-.08-.2-.36-1.02.08-2.12 0 0 .67-.21 2.2.82.64-.18 1.32-.27 2-.27s1.36.09 2 .27c1.53-1.04 2.2-.82 2.2-.82.44 1.1.16 1.92.08 2.12.51.56.82 1.27.82 2.15 0 3.07-1.87 3.75-3.65 3.95.29.25.54.73.54 1.48 0 1.07-.01 1.93-.01 2.2 0 .21.15.46.55.38A8.01 8.01 0 0 0 16 8c0-4.42-3.58-8-8-8"/>
|
||||||
|
</svg>
|
||||||
|
</a>
|
||||||
|
</div>
|
||||||
|
</div>
|
||||||
|
|
||||||
|
<div class="row justify-content-md-center mb-3">
|
||||||
|
<div class="card w-75 p-3 ps-4 pe-4 rounded">
|
||||||
|
<p class="fs-5 card-title m-0">Android Mobile App with Backend PokeAPI and Java</p>
|
||||||
|
<p class="fs-6 fw-lighter card-text">Using the PokeAPI, created the app “UltimateDex”, which acts as a complete Pokedex from the series Pokemon. Accesses all possible Pokemon, allows the user to search, filter their searches, and save entries to their personal repository for easy retrieval. Each entry when selected comes with its own page which displays all relevant information regarding the entry, including the image associated with the Pokemon, and styled similarly to that of the series.
|
||||||
|
</p>
|
||||||
|
<a class="mt-2" href="https://github.com/osu-cs492-w20/final-project-tamagucci/">
|
||||||
|
<svg xmlns="http://www.w3.org/2000/svg" width="32" height="32" fill="currentColor" class="bi bi-github" viewBox="0 0 16 16">
|
||||||
|
<path d="M8 0C3.58 0 0 3.58 0 8c0 3.54 2.29 6.53 5.47 7.59.4.07.55-.17.55-.38 0-.19-.01-.82-.01-1.49-2.01.37-2.53-.49-2.69-.94-.09-.23-.48-.94-.82-1.13-.28-.15-.68-.52-.01-.53.63-.01 1.08.58 1.23.82.72 1.21 1.87.87 2.33.66.07-.52.28-.87.51-1.07-1.78-.2-3.64-.89-3.64-3.95 0-.87.31-1.59.82-2.15-.08-.2-.36-1.02.08-2.12 0 0 .67-.21 2.2.82.64-.18 1.32-.27 2-.27s1.36.09 2 .27c1.53-1.04 2.2-.82 2.2-.82.44 1.1.16 1.92.08 2.12.51.56.82 1.27.82 2.15 0 3.07-1.87 3.75-3.65 3.95.29.25.54.73.54 1.48 0 1.07-.01 1.93-.01 2.2 0 .21.15.46.55.38A8.01 8.01 0 0 0 16 8c0-4.42-3.58-8-8-8"/>
|
||||||
|
</svg>
|
||||||
|
</a>
|
||||||
|
</div>
|
||||||
|
</div>
|
||||||
|
|
||||||
|
<div class="row justify-content-md-center mb-3">
|
||||||
|
<div class="card w-75 p-3 ps-4 pe-4 rounded">
|
||||||
|
<p class="fs-5 card-title m-0">NodeJS WebApp with MYSQL Database and Handlebars</p>
|
||||||
|
<p class="fs-6 fw-lighter card-text">Fantasy task-assignment system. Utilizes MYSQL to organize and contain guilds, “quests” posted to the forum/board, and guild members whose accounts are associated with the webapp. Handlebars template to display contents, NodeJS to serve.
|
||||||
|
</p>
|
||||||
|
<a class="mt-2" href="https://github.com/yanyan2019/cs340_project/">
|
||||||
|
<svg xmlns="http://www.w3.org/2000/svg" width="32" height="32" fill="currentColor" class="bi bi-github" viewBox="0 0 16 16">
|
||||||
|
<path d="M8 0C3.58 0 0 3.58 0 8c0 3.54 2.29 6.53 5.47 7.59.4.07.55-.17.55-.38 0-.19-.01-.82-.01-1.49-2.01.37-2.53-.49-2.69-.94-.09-.23-.48-.94-.82-1.13-.28-.15-.68-.52-.01-.53.63-.01 1.08.58 1.23.82.72 1.21 1.87.87 2.33.66.07-.52.28-.87.51-1.07-1.78-.2-3.64-.89-3.64-3.95 0-.87.31-1.59.82-2.15-.08-.2-.36-1.02.08-2.12 0 0 .67-.21 2.2.82.64-.18 1.32-.27 2-.27s1.36.09 2 .27c1.53-1.04 2.2-.82 2.2-.82.44 1.1.16 1.92.08 2.12.51.56.82 1.27.82 2.15 0 3.07-1.87 3.75-3.65 3.95.29.25.54.73.54 1.48 0 1.07-.01 1.93-.01 2.2 0 .21.15.46.55.38A8.01 8.01 0 0 0 16 8c0-4.42-3.58-8-8-8"/>
|
||||||
|
</svg>
|
||||||
|
</a>
|
||||||
|
</div>
|
||||||
</div>
|
</div>
|
||||||
|
|
||||||
}
|
}
|
||||||
|
|
|
@ -1,10 +1,13 @@
|
||||||
namespace Portfolio.WebUI.Server.Components.Pages
|
using Portfolio.Domain.Features.Portfolio;
|
||||||
|
|
||||||
|
namespace Portfolio.WebUI.Server.Components.Pages
|
||||||
{
|
{
|
||||||
partial class Home
|
partial class Home
|
||||||
{
|
{
|
||||||
private List<string> skills;
|
private List<string> skills;
|
||||||
private List<string> tools;
|
private List<string> tools;
|
||||||
private List<string> courses;
|
private List<string> courses;
|
||||||
|
private List<WorkExperience> experiences;
|
||||||
|
|
||||||
private bool isExperience = true;
|
private bool isExperience = true;
|
||||||
private bool isProjects = false;
|
private bool isProjects = false;
|
||||||
|
@ -15,6 +18,7 @@
|
||||||
skills = await http.GetFromJsonAsync<List<string>>("data/skills.json");
|
skills = await http.GetFromJsonAsync<List<string>>("data/skills.json");
|
||||||
tools = await http.GetFromJsonAsync<List<string>>("data/tools.json");
|
tools = await http.GetFromJsonAsync<List<string>>("data/tools.json");
|
||||||
courses = await http.GetFromJsonAsync<List<string>>("data/courses.json");
|
courses = await http.GetFromJsonAsync<List<string>>("data/courses.json");
|
||||||
|
experiences = await http.GetFromJsonAsync<List<WorkExperience>>("data/workexperiences.json");
|
||||||
}
|
}
|
||||||
|
|
||||||
private void ToggleExperience()
|
private void ToggleExperience()
|
||||||
|
|
|
@ -12,6 +12,7 @@
|
||||||
@using Portfolio.WebUI.Server.Components.Component.Pokemon_Components
|
@using Portfolio.WebUI.Server.Components.Component.Pokemon_Components
|
||||||
@using Portfolio.WebUI.Server.Components.Component.Crochet_Components
|
@using Portfolio.WebUI.Server.Components.Component.Crochet_Components
|
||||||
@using Portfolio.Domain.Features.Articles
|
@using Portfolio.Domain.Features.Articles
|
||||||
|
@using Portfolio.Domain.Features.Portfolio;
|
||||||
@using Portfolio.Domain.Features.Pokemon
|
@using Portfolio.Domain.Features.Pokemon
|
||||||
@using Portfolio.Domain.Features.Pokemon_Natures
|
@using Portfolio.Domain.Features.Pokemon_Natures
|
||||||
@using Portfolio.Domain.Features.Pokemon_Subskills
|
@using Portfolio.Domain.Features.Pokemon_Subskills
|
||||||
|
|
|
@ -0,0 +1,7 @@
|
||||||
|
[
|
||||||
|
{
|
||||||
|
"title": "AI-Driven D&D 5E Character Generator with React, Next.js, and OpenAI GPT-3 Engine",
|
||||||
|
"description": "Creates a credible D&D 5E character sheet, including backstory, based on user input. Ex.’I would like to play a magical elf.’ Or ‘I want to smash things with a big hammer.’ Would result in the AI choosing the best character to play with given the limitations and rules of the game (class, race, etc). The user would still be able to customize their character afterwards, and be prompted if they happen to “break” the rules of character generation; i.e. too many skill points assigned.",
|
||||||
|
"responsibilities": "Lead development in core functionality, including front and back-end development. Developed all JavaScript components and pages including the deterministic logic depending on decisions made by the AI, and the styling using the emotion library."
|
||||||
|
},
|
||||||
|
]
|
|
@ -0,0 +1,24 @@
|
||||||
|
[
|
||||||
|
{
|
||||||
|
"title": "Junior Web Developer",
|
||||||
|
"company": "Universal Flight Concepts",
|
||||||
|
"startYear": 2022,
|
||||||
|
"endYear": 2024,
|
||||||
|
"details": "Part of a development team that worked on a full rewrite of a 'Secure Area' used by Admin, Students, Instructors and University coordinators to schedule flight and ground instruction, and took the application from ASP.Net 4.0/SQL Server 2016 to a stand-alone C# .Net Core 8, with Blazor WASM (Web Assembly) Microservices API, Identity Server integration, SQL Server 2019, Code-First Entity Framework & DB Migrations, Auto-Scaling Cloud Application"
|
||||||
|
},
|
||||||
|
{
|
||||||
|
"title": "Web Development & Cybersecurity Teaching Assistant",
|
||||||
|
"company": "Oregon State University",
|
||||||
|
"startYear": 2019,
|
||||||
|
"endYear": 2020,
|
||||||
|
"details": "Interacted with and mentored students with relation to their area of study; created solutions to development projects before being assigned to students to ensure guidance and engrain best coding practices; held personal office hours to assist students mwith needs. HTML/CSS, C++, JavaScript, JSON, Node.js, RESTFUL API, MYSQL; public/private keys, key exchange, modern encryption methods, cyberattacks, TOR."
|
||||||
|
},
|
||||||
|
{
|
||||||
|
"title": "Junior Web Developer",
|
||||||
|
"company": "DzyneFX",
|
||||||
|
"startYear": 2018,
|
||||||
|
"endYear": 2018,
|
||||||
|
"details": "Developed front-end UI and code for websites, as well as back-end code, data access layers, web services and RESTful APIs. Worked with symmetric and asymmetric data schemas. Request, register and configure SSL and TLS certificates. C#, PHP, MSSQL and MYSQL."
|
||||||
|
}
|
||||||
|
|
||||||
|
]
|
Loading…
Reference in New Issue