Skip to content

Commit

Permalink
Been working for a bit on my laptop
Browse files Browse the repository at this point in the history
  • Loading branch information
GrizzlyEnglish committed Apr 20, 2020
0 parents commit 22b2c9c
Show file tree
Hide file tree
Showing 367 changed files with 72,064 additions and 0 deletions.
10 changes: 10 additions & 0 deletions App.razor
Original file line number Diff line number Diff line change
@@ -0,0 +1,10 @@
<Router AppAssembly="@typeof(Program).Assembly">
<Found Context="routeData">
<RouteView RouteData="@routeData" DefaultLayout="@typeof(MainLayout)" />
</Found>
<NotFound>
<LayoutView Layout="@typeof(MainLayout)">
<p>Sorry, there's nothing at this address.</p>
</LayoutView>
</NotFound>
</Router>
3 changes: 3 additions & 0 deletions Pages/Blog.razor
Original file line number Diff line number Diff line change
@@ -0,0 +1,3 @@
@page "/blog"

<h1>Hello, world Blog!</h1>
28 changes: 28 additions & 0 deletions Pages/Index.razor
Original file line number Diff line number Diff line change
@@ -0,0 +1,28 @@
@page "/"

<div class="c-intro-container">

<div class="side">
<div class="c-title-container">
<h1>Grizzly</h1>
<h1>English</h1>
<p>A software engineers potfolio</p>
</div>
</div>

<div class="c-gradient"></div>

<div class="c-gradient-background"></div>

</div>

<div class="container c-info-container">
<About />
<Skills />
<Projects />
<Work />

<footer>
<p>Icons Provided by <a href="https://fontawesome.com">Font Awesome</a> and <a href="https://icons8.com">Icons8</a></p>
</footer>
</div>
22 changes: 22 additions & 0 deletions Program.cs
Original file line number Diff line number Diff line change
@@ -0,0 +1,22 @@
using System;
using System.Collections.Generic;
using System.Threading.Tasks;
using System.Text;
using Microsoft.AspNetCore.Components.WebAssembly.Hosting;
using Microsoft.Extensions.DependencyInjection;

namespace project_grizz
{
public class Program
{
public static async Task Main(string[] args)
{
var builder = WebAssemblyHostBuilder.CreateDefault(args);
builder.RootComponents.Add<App>("app");

builder.Services.AddBaseAddressHttpClient();

await builder.Build().RunAsync();
}
}
}
29 changes: 29 additions & 0 deletions Properties/launchSettings.json
Original file line number Diff line number Diff line change
@@ -0,0 +1,29 @@
{
"iisSettings": {
"windowsAuthentication": false,
"anonymousAuthentication": true,
"iisExpress": {
"applicationUrl": "http://localhost:57204",
"sslPort": 44373
}
},
"profiles": {
"IIS Express": {
"commandName": "IISExpress",
"launchBrowser": true,
"inspectUri": "{wsProtocol}://{url.hostname}:{url.port}/_framework/debug/ws-proxy?browser={browserInspectUri}",
"environmentVariables": {
"ASPNETCORE_ENVIRONMENT": "Development"
}
},
"project-grizz": {
"commandName": "Project",
"launchBrowser": true,
"inspectUri": "{wsProtocol}://{url.hostname}:{url.port}/_framework/debug/ws-proxy?browser={browserInspectUri}",
"applicationUrl": "https://localhost:5001;http://localhost:5000",
"environmentVariables": {
"ASPNETCORE_ENVIRONMENT": "Development"
}
}
}
}
26 changes: 26 additions & 0 deletions Shared/About.razor
Original file line number Diff line number Diff line change
@@ -0,0 +1,26 @@
<div class="row">
<div class="col-md-12">
<h2>About Me</h2>
</div>

<div class="col-md-6">
<article>
<p>
My name is <span class="u-highlight">Ryan English</span>, and I am a self taught <span class="u-highlight">software engineer</span> and graduate of the University of Louisville School of Business.
I specialize in building business applications to fit the specific needs of the end users. My primary focus is .NET; but always find
myself learning and utilizing new technologies to tackle new problems.
My passion is solving challenging problems.
</p>
<p>
Outside of my profession; I also have interests in game development and table tennis. I also enjoy music (who doesn't) and some of my favorite artists
are <span class="u-highlight">the Supermen Lovers</span>, <span class="u-highlight">Daft Punk</span>, and <span class="u-highlight">the Gorrilaz</span>.
</p>
<iframe src="https://open.spotify.com/embed/track/50q0JdXpFIJlEW6KBnbIUR" width="100%" height="100" frameborder="0" allowtransparency="true" allow="encrypted-media"></iframe>
</article>
</div>

<div class="col-md-6">
<img class="c-me" src="/img/me.jpg" />
</div>

</div>
9 changes: 9 additions & 0 deletions Shared/MainLayout.razor
Original file line number Diff line number Diff line change
@@ -0,0 +1,9 @@
@inherits LayoutComponentBase

<div class="main">
<NavMenu />

<div class="content">
@Body
</div>
</div>
53 changes: 53 additions & 0 deletions Shared/NavMenu.razor
Original file line number Diff line number Diff line change
@@ -0,0 +1,53 @@
<nav class="navbar navbar-expand-lg">
<div class="collapse navbar-collapse @NavMenuCssClass" id="navbarSupportedContent">
<ul class="navbar-nav mr-auto">
<li class="nav-item active">
<a class="nav-link c-nav-link" href="#">About</a>
</li>
<li class="nav-item">
<a class="nav-link c-nav-link" href="#">Skills</a>
</li>
<li class="nav-item">
<a class="nav-link c-nav-link" href="#">Projects</a>
</li>
<li class="nav-item">
<a class="nav-link c-nav-link" href="#">Work History</a>
</li>
<li class="nav-item">
<a class="nav-link c-nav-link" href="#">Resume</a>
</li>
<li class="nav-item">
<a class="nav-link c-nav-link" href="/blog">Blog</a>
</li>
</ul>

<ul class="navbar-nav ml-auto">
<li class="nav-item c-logo-link -bg-highlight">
<a href="" class="">
<i class="fab fa-github"></i>
</a>
</li>
<li class="nav-item c-logo-link -bg-secondary">
<a href="" class="">
<i class="fab fa-linkedin"></i>
</a>
</li>
<li class="nav-item c-logo-link -bg-secondary-highlight">
<a href="" class="">
<i class="fab fa-hackerrank"></i>
</a>
</li>
</ul>
</div>
</nav>

@code {
private bool collapseNavMenu = false;

private string NavMenuCssClass => collapseNavMenu ? "show" : null;

private void ToggleNavMenu()
{
collapseNavMenu = !collapseNavMenu;
}
}
138 changes: 138 additions & 0 deletions Shared/Projects.razor
Original file line number Diff line number Diff line change
@@ -0,0 +1,138 @@
<div class="row">
<div class="col-md-12">
<h2>Projects</h2>
</div>
</div>

<div class="row">
<div class="col-md-12">
<h4>Bowles Delivery Counter</h4>
</div>
<div class="col-md-12">
<p>
Code available on request.
</p>
<p>
Designed and built specifically for Bowles Mattress to track and manage their delivery truck.
Written in JavaFX with websockets to allow for real time updates of events happening in the system.
</p>
<p>
Built in Java 7, JavaFX, and WebSockets.
</p>
</div>
</div>

<div class="row">
<div class="col-md-12">
<h4>
Grizzly English Website
</h4>
</div>

<div class="col-md-12">
<p>
A .NET Core Blazor web app.
</p>
</div>
</div>

<div class="row">
<div class="col-md-12">
<h4>
Project Space
</h4>
</div>

<div class="col-md-12">
<a href="https://github.com/GrizzlyEnglish/project-space">View code on github</a>
</div>

<div class="col-md-12">
<a href="/projectspace.html">Demo</a>
</div>

<div class="col-md-12">
<p>
Messing around with html canvas.
</p>
</div>
</div>

<div class="row">
<div class="col-md-12">
<h4>
ngEventScheduler
</h4>
</div>

<div class="col-md-12">
<a href="https://github.com/GrizzlyEnglish/ng-event-schedule">View code on github</a>
</div>

<div class="col-md-12">
<a href="https://grizzlyenglish.github.io/ng-event-schedule/">Demo</a>
</div>

<div class="col-md-12">
<p>
An daily event scheduler to keep track of all your daily tasks.
</p>
</div>
</div>

<div class="row">
<div class="col-md-12">
<h4>
Project Faavalevalea
</h4>
</div>

<div class="col-md-12">
<a href="https://github.com/GrizzlyEnglish/project-faavalevalea">View code on github</a>
</div>

<div class="col-md-12">
<p>
A tatical rougelike game built in Haxe. Working slowly in my free time.
</p>
</div>
</div>


<div class="row">
<div class="col-md-12">
<h4>
University of Louisville E-Commerce Website
</h4>
</div>

<div class="col-md-12">
<a href="https://github.com/GrizzlyEnglish/cis-420-ecommerce">View code on github</a>
</div>

<div class="col-md-12">
<a href="/files/projects/e-commerce/CreateOperatorUseCase.pdf">Create Operator Account Use Case</a>
</div>

<div class="col-md-12">
<a href="/files/projects/e-commerce/CreatePaymentUseCase.pdf">Create Payment Use Case</a>
</div>

<div class="col-md-12">
<a href="/files/projects/e-commerce/CreateMarketingCampaignUseCase.pdf">Create Marketing Campaign Use Case</a>
</div>

<div class="col-md-12">
<a href="/files/projects/e-commerce/EditOrderUseCase.pdf">Edit Order Use Case</a>
</div>

<div class="col-md-12">
<a href="/files/projects/e-commerce/Bracyl Prototypes_i5.pdf">Prototype Presentation</a>
</div>

<div class="col-md-12">
<p>
<strong>Not Maintained</strong>. My University capstone project for Karolie Cakes of Louisville. Simple E-Commerce web application.
</p>
</div>
</div>
Loading

0 comments on commit 22b2c9c

Please sign in to comment.