Web Development Portfolio
An experienced business owner + musician with a demonstrated history of management in the
Energy sector and an insatiable appetite for learning new and complex skills. Transitioning
from an ownership role & seeking employment in Web Development as a Jr Full Stack Developer.
Take a look at my Daily Coding Journal
I am a noob when it comes to investing, trusting the sage of advice of Warren Buffet to put 90% into an S&P 500 etf and 10% into bonds. That being said, the data for stocks is super interesting to me so I wanted to create something utilizing an API.
This was something I wanted to create as a challenge for myself right as I began to learn how to code. Unfortunately I had no idea where to begin. After 3 months of learning, this wasnt difficult it helped me to see the progress I have made since starting this journey.
I created this app as an exercise to create a Pomodoro Method timer with Javascript and React. The user can set how long his/her breaks and work sessions should be. As the sessions are completed, a series of “Pomodoros” are filled in, showing the user how close they are to the finish of their work session.
I created this app as an exercise in the Watch and Code Premium course. The goal was to create a Todo List app that could also create nested todos.
I created this calculator as an exercise in the FreeCodeCamp frameworks projects.
I redesigned this client's website to better cater to their market. Using HTML + CSS, I made use of image galleries, google maps integrations, and custom forms. We integrated google sheets and email for a reservation system allowed the client to save money by not using a pay per month reservation system.
Using squarespace and a base design as well as custom graphics, photos, and javascript, I created this website for visual artist and Illustrator, Hannah Gumbo.
Using Wordpress and a basic theme, I redesigned the Sirius Technologies website. Using custom HTML and CSS, I styled the site according to the company design specifications as well as used photoshop and adobe Illustrator to create custom graphics and art for the project.
Awhile back, a friend of mine suggested that to get deeper with my learning, I should attempt to build my own static site generator. I had this in the back of my head for the past couple of months and decided to take a break from my course work to dive into this project.
Read More...This morning I am going through chapter 18 of Eloquent Javascript. (almost done with this book!) The chapter focuses on HTTP requests, html forms, as well as javascript’s fetch function.
I’ve worked with fetch in a couple of my own projects, to make calls to me own API on routes being served up by Express. Let’s dive in.
Calling fetch
returns a promise that resolves to a response object containing information about the server’s response.
fetch("example/data.txt").then(response => {
console.log(response.status);
// → 200
console.log(response.headers.get("Content-Type"));
// → text/plain
});