About Me

Hi! 👋

My interest in technology has always been a theme in my life. Starting with programming books in eighth grade and evolving into building computers and interning at my school's IT department, my knack for technology led me to pursue an Information Technology degree at the University of Toledo. There, I gained exposure to various tech fields, but it was web development that resonated with me the most.

This interest grew into a passion as I taught myself advanced JavaScript and engaged in personal projects. Today, web development is more than a hobby; it's the path I want to take in my professional life. With a blend of formal education and self-directed learning, I'm ready to start my career in the tech industry as a web developer.


So, are you a front-end developer? Or are you full stack?

I am a front-end developer with back-end capabilities. Much of my knowledge resides in front-end technologies (React, TypeScript, Sass, etc.), but I also know Relational Database tech (SQL) very well. I can also create type-safe APIs using Node.js and Express.js, though my back-end knowledge doesn't extend too far past that currently. I'm also using a PostgreSQL and Auth provider, Supabase, for my Finance Tracker project, and I am loving it.

Education

Information Technology
Bachelor's Degree
The University of Toledo

Hobbies

ExerciseMusic ProductionMountain BikingHikingVideo GamesNutritionGeocaching

Skills

Front End
Back End
Other
HTML
CSS
JavaScript
TypeScript
React
React Router
Next
Sass
Lottie

HTML

HTML (Hypertext Markup Language) is the foundation of web development, used to structure and present content on the internet.

I have been working with HTML for years. I had mild exposure during high school, when I was loosely teaching myself about Python and Django. College classes have also taught me a lot, but much of my HTML experience comes from self-learning and project experience.

Projects

Finance Tracker

Technologies

NextTypeScriptReactSassSQLSupabase

This is my proudest accomplishment in web development.

If you look at my other projects, you can see that I'm slightly obsessed with creating tools to help people track their finances. This, right here, is the real deal version of all of that.

Complete will a fully customizable dashboard, OAuth, tutorial system, and a PostgreSQL database, this thing looks beautiful and has a pretty complex database. I've put a ton of thought and effort into this (27,000 lines non-boilerplate code!), and I've learned a ton about React throughout the process.

I think this project speaks for itself. I've included some images and description below, but I'd advise checking it out hands-on. You can create a temporary account, and use the application fully without entering any personal information, by using the "Sign in with Temporary Account" feature here. Or, you check check out this demo below. Try dragging things around and clicking stuff!

Note: this demo is a roughly cloned version of the real site, using pre-loaded data instead of a database. You may run into issues, and this is likely out-of-date. Once again I will plug the Full Site if you haven't checked it out yet.

The Design / UI Features

I think I really nailed the design here. I tried to keep it simple, sleek, and modern. A good example of that is the tutorial/walkthrough that plays when you create your account, to help the user get familiar with the UI:

When I'm designing the UI, I try to think of ways to break things as I go. Usually that ends with me spending hours on something that I thought would take 20 minutes, but the price is worth it (most of the time). I strive to make things flawless.

It's all in the small details for me. If the interface you're using looks like a grid, you should be able to navigate vertically using Enter and Shift + Enter, instead of just tab. If there's a popup, your keyboard focus should be moved to the popup, and the first and last focusable elements should exist in a loop. If there's a way to drag something into a different position, it should feel like you're actually grabbing and dragging the thing.

A animation of a transaction being dragged into a different position. When it is dragged, the fold collapses temporarily.
A animation of a category being dragged into a different position.

Robust Saving System

Since I'm using Supabase's free tier for this project (and also because it's good UX), I created a clean way to collect changes that the user makes in the dashboard, and apply them once the user hits save.

Unsaved changes are indicated by the green color, which applies to value changes, sort order changes, and also when a user moves/resizes a tile or changes it's settings. Also, notice in the graphic below that the tiles showing account balances and category totals on the left are changing with the data as well.

A graphic showing that changed properties are marked with green, and return to the normal font color after saving.

Customizability

The main goal for this project is to create something that is as customizable as an Excel spreadsheet, but without all of the jankiness of Excel. That is quite an ambitious goal, and it takes a lot of hard thinking for me to come up with the features to accomplish that.

The dashboard is fully customizable, and the user can add tiles and configure them however they'd like. Right now, the only tile (besides the transaction manager) is one called the Simple Values tile, which shows current values for your categories or accounts. With these, you can exclude specific categories and accounts, as well as select the date period you would like the data to pull from.

For example, the configuration below will show me how much money I'm spending on each category since my last paycheck, excluding car payments:

A screenshot of a Simple Tiles configuration.
A screenshot of the rendered Simple Tile

The logic for this tile was a bit of a mental challenge, because there is a two-week limit on how far into the past transactions will be loaded on the client (unless the user intentionally loads more). Because of this, the tile fetches the values from the database, then subtracts the "default" values that the client has loaded, and adds the "current" values back. This way, the tile will always be accurate, and can reflect when the user's actions in the transaction manager changes those values.

The Client Directly Queries the Database

WHAAATT??

See, I really wanted to make this app very "modern". In my previous version of this idea, I built a fully functional backend myself, complete with a local SQL instance, type-checking middleware for API routes, and proper HTTP status codes. And while I recognize that a lot of companies like to keep reliable standards in place (which I don't mind), since this project is entirely new, I wanted to give bleeding-edge technology a try.

As for the backend, I decided to use a relatively new service called Supabase. Supabase uses PostgreSQL (also referred to as Postgres) as its database language, and provides its own OAuth integrations to make setting it up a breeze. Now here's the part that I think is crazy: Supabase and PostgreSQL are designed to be queried from the Front End. That sentence alone might send shivers down an InfoSec pro's spine.

See, PostgreSQL has a built in feature called Row-Level Security, which allows you to define policies on what actions a user can do in a database, and restrict the data that the user is returned. You can also implement triggers that check the type of data a table is receiving, and either accept or deny it based on some condition. You can define custom data types, check the structure of a JSON column input, you can even implement a system that allows users to share their data with eachother easily. If you set up your Postgres tables to strictly enforce access and schema validate all of your inputs, you take away the need for a server to exist between the client and the database.

Maybe this idea isn't that crazy or new, but I find it pretty exciting. Even if a bad actor digs around into the frontend code and wants to do some damage, they can't. Everything is enforced by the database, and since there's no middleman, submitting and fetching data is a lightning fast process.

Plans for this project going forward

What I have here is really cool, but there is still a lot of features that I'm working on implementing and refining.

For example, right now there is a custom history system in place that overrides the browser's default undo/redo process (Control+Z and Control+Alt+Z). This system keeps track of all of the changes you make within the transaction manager, meaning that you can undo/redo sort order changes, creating items, deleting items, as well as changing values. However, right now it is slightly janky. You can break it if you really try, by deleting/creating items and adjusting the values within them. I would like to fix that and expand this system to capture history for every interaction on the dashboard, including moving/resizing tiles.

I'm also going to add different types of tiles the users can customize, such as graphs/charts that show whatever data you'd like, budgeting tools, and even maybe a little AI tile that gives you tips on how to cut back spending.

And of course, I'd like to refactor some of the code. A lot of the stateful data and logic is abstracted into custom hooks, which is great, but those hooks are packed with a lot of somewhat confusing code that I'd like to organize.

I would also like to add formal JSDoc descriptions to all of the parts of each hook that can be interacted with from the components. That would provide helpful tooltips when hovering over objects and functions while working with my code, which helps other developers (and future me) understand what the code is doing.

Portfolio Site

Technologies

NextTypeScriptReactSass

Now that I'm searching for a career in web development, I figured it'd be a good idea to put together a portfolio site. The goal was to create a centralized place to view all of my qualifications and experience, without having to bounce around through my LinkedIn, GitHub, etc.

This site allows me to show off a bit of style, personality, and my competence with UI design. Also, I managed to snag a domain that is literally just my last name (silveo.us) for only $20 per year, which is awesome.

I also took this as an opportunity to use Next.js on a large project. This entire portfolio is a single-page application, so I didn't really use Next's router too much, but I got to take advantage of server-side rendering and some other Next.js features.

Everything on this site (besides most icons, provided by SVGRepo), is custom code. I put a lot of thought into the components here as well. Here's a couple examples of components I created for this site:

<FoldSwitcher />

These folding sections used under the Projects and Experience sections took a lot of thought to create.

To open one of these folds, I cannot just set the element's height to auto, because CSS cannot transition between 0px and auto. Instead, my code calculates what the height will be when open, sets the height px value to that number, then switches it to auto afterwards to allow proper page resizing.

On top of that, other folds are closed when one is opened to prevent cluttering the page. Also, each section is automatically opened when navigated to via <a /> tag.

Also, when you navigate to a fold using an <a /> tag, your browser scrolls to the position of the element with the matching id . However, since these folds open/close automatically, your browser may scroll you to the position of the id prior to an element above it closing, causing your position to be incorrect.
To prevent this, I implemented behavior that calculates where to top of the element with a matching id will be, after the animation, and it scrolls you to that position instead.

As you can see, a lot of detail work went into this component.

<TextWithIcon />

I like the functional/aesthetic purposes of these little icons, and I use them all over this site, so I created a component for it.

You just add the SVG icon as a prop, and the text/content as children to the component. You can also add a href property to turn it into a link, and use the inline and newWindow boolean properties to control those values.

For example, here's the code for a link to my LinkedIn page:

<TextWithIcon
   Icon={LinkedInIcon}
   href='https://www.linkedin.com/in/joshua-silveous/'
   inline
   newWindow

>
   LinkedIn
</TextWithIcon>

There are more components used in this site, like the <TabSwitcher /> component and the <Code /> component used to style these code sections, but I don't think all of that is necessary to explain here. I figured I'd just provide a couple of examples for those who are curious.

Guitar Visualizer

Technologies

TypeScriptReactSass

The First Implementation

When COVID-19 caused a national lockdown back in 2020, I decided to teach myself to play guitar. After a few months of my fingers hurting, I eventually got fairly good at it, and started diving into music theory. I find music theory quite interesting, as learning it really shows you that a ton of music concepts (scales, chords, progressions) are really all based in mathematic formulas. However, I really dreaded the idea of memorizing scales, so I decided to cheat, and build a calculator that would allow you to select any musical scale, and generate a fretboard that shows you all notes that fit within the scale (as well as list out chords).

This was around the time I was initially getting into web development, and the first implementation of this idea was rather... ugly.

A screenshot of my first fretboard visualizer. It looks amateurish, with wacky colors and default HTML styles

Despite that, it worked really well. Whenever I wanted to jam out to a song, I can just google what scale the song uses, plug that in here, and know exactly what notes would sound good to play alongside it. This tool wasn't for an assignment or anything, I just did it because I enjoyed it.

However, the code is a complete mess. I didn't really know anything about JavaScript (or high-level programming concepts) when I was creating this, so there's a lot of weird nesting and amateurish decisions in my code.

If you'd like to check this old version out, I've deployed it here, and the GitHub repository can be found here. Again, please don't judge.

The Second Implementation

During the summer of 2022, I spent a lot of time diving deeper into React. I decided to revisit my guitar visualization idea with a new project, titled MusiqTools.

A screenshot of my second fretboard visualizer.

I took a learn-as-you-go approach to this project, so it wasn't very well planned out. While it was a significant improvement over the first iteration, I ended up refactoring/rewriting code quite often, as I discovered better ways to accomplish certain things.

Eventually, I decided to axe this project. I decided it'd be better to start from scratch with all the insight I'd gained throughout this project. However, if you'd like to take a look, you can find the GitHub repository here, and the deployment here.

The Third (current) Implementation

This time around, there's a ton that has improved. For starters, I'm now using Sass for precise styling (instead of using inline styles, like the previous iteration). I also decided a file structure before beginning the project, making it much easier for me to jump back in and work on this.

A screenshot of my third fretboard visualizer.

Visually, it doesn't look too different from the previous iteration (besides the color scheme). However, the code itself is much more readable, efficient, and modular. Right now, I'm taking a hiatus from developing this to focus on back-end skills, but eventually I'd like to add different instruments, barre chord highlighting, and many other features.

The GitHub repository for this final version can be found here, and the deployment here.

Grading Application

Technologies

TypeScriptReactSassElectronNodeSQL

This application was created for my final project in my Comparative Programming Languages course. This desktop application allows you to manage grades for multiple classes with multiple students and multiple assignments. There are also extra features, such as exempting assignments and extra credit.

Data Structure

Using SQLite, the user can keep track of multiple classes. Students can be enrolled in multiple classes, and classes can contain multiple students. Each class can have multiple assignments, categorized by Homework and Tests. Those assignments can be Extra Credit, meaning that they don't negatively impact the final grade. Individual users can be made Exempt from grades on specific assignments, for cases such as missing class on the day of a test.

Interface

The UI is built using React and SCSS, with the main interface being a table, and a custom popup system used for detailed database insertions, such as creating a new class.

A screenshot of the UI for my Grading Application, featuring a table-oriented layout showing a class, it's students, and their grades.
A screenshot of the UI for my Grading Application, featuring a form for creating new assignments. The form contains the name, description, type, extra credit, and max points fields.
A screenshot of the UI for my Grading Application, featuring a menu for adding a student to a class.

Electron

This program was built with Electron, which allows me to build fully featured OS applications using Node.js for OS functions, such as writing data, and React for building the UI. No internet connection needed.

If you'd like more details on this project, check out the Report I wrote about this project, and the technologies used in it.

Advanced Lottie Viewer

Technologies

LottieJavaScriptHTMLCSS

A few years ago, I discovered a technology called Lottie, which supplies a way to create lightweight vector animations using Adobe After Effects. The effect is similar to a typical animated SVG, but Lottie gives you far more control over the animation.

In this project, I created a JavaScript function that allows you to customize Lottie animations by dividing a linear animation into different "segments" that have different entry/exit points. In the case of an animation that plays when a user hovers their mouse over the image, this function allows animators to change how the animation behaves when the user stops hovering.

Example

Below is an example of what I'm talking about.
Try hovering your mouse over this image and removing it. Notice that the different "segments" play different animations when you remove your mouse, depending on which segment you're in.
Below is an example of what I'm talking about, however this will not work correctly on your device. This is because you are using a touchscreen device, which doesn't allow for a mouse-hovering effect to occur. However, you can tap on the image to trigger the animation, and tap somewhere else to exit.
If you'd like to check out this effect properly, visit this website on a device with a mouse, and hover it over this image.

Frame out of , Segment

Blue: Animation Entry
Red: Animation Exit

This project is really old. I created it as I was first learning web development, so a lot of the code isn't exactly top notch. However, it's a prototype of an idea, and does what I need it to do successfully.

Check out the player here, it contains another example and some more controls. You can also find the code repository here.

Excel-lent Finance Tracker

Technologies

OfficeVBA

For years now, I've been keeping track of my finances with excel. I use it to track my checking and savings accounts, as well as my credit card, so that I can make sure I'm being responsible with my money.

One day, I discovered that Excel had scripting, using VBA (Visual Basic for Applications), and decided to automate all of the stuff I was doing manually, such as creating/removing different categories, displaying that data with graphs, creating new pages for each pay period, etc. I also wanted to make this "product" very customizable and user friendly, so that I could send this template to other people for their own usage.

All of the forms and code used in this project is custom.

Usage

When you launch my template file, you will be given a form to fill out, which allows you to customize how you want to track your finances.

First you select the interval length you would like to use, usually depending on how often you get paid, as well as the first date you would like to begin tracking.

A screenshot of my custom excel tracker form, prompting the user to select "Weekly", "Biweekly", or "Monthly"
A screenshot of my custom excel tracker form, prompting the user to select a date using a custom calendar widget


Then, you enter the Categories you would like to track, as well as the different Accounts you'd like to keep track of. Both of these can be easily changed later.

A screenshot of my custom excel tracker form, prompting the user to enter categories
A screenshot of my custom excel tracker form, prompting the user to enter accounts and their starting values


That's it! Now you can track your finances as you please. Each of the Date, Category, and Account cells have built-in autocomplete and drop-down menus, which makes entering information a breeze. You can also generate next interval's page with the click of a button, and see graphs showing where your money is going.

A screenshot of my custom excel trackers page, with an interface allowing you to enter data.


There is also a Control page, which can be used to edit Categories and Accounts. Any changes made will ripple through the spreadsheet automatically, you won't ever have to edit any formulas yourself.
You can also edit the theme of the page here, with some presets available, selected by myself.

A screenshot of my custom excel trackers page, with an interface allowing you to change categories, accounts, and theme.


Finally, there is also an Overview page, which graphs your data throughout the entire sheet, giving you a better glimpse of your overall money trends. Here is an image of the overview page, it's too large to reasonably fit here.

Wrapping up

Overall, this project was a ton of work. This took me 2-3 months of fairly consistent work to create, as I had never used VBA before. This language has a ton of quirks and odd behavior I had to work around, I don't think it was meant for a project of this scale.

It took a lot of code to implement all of the features I wanted (and circumvent all of the strange VBA bugs I encountered), but I ended up succeeding with this project. You can use it to create a custom excel experience, complete with graphs and dropdown menus. It is extremely easy to edit things like categories and accounts, and you can see those changes apply to the entire sheet. And you can do it all, without entering a single formula.

Is VBA a useful skill to have? Probably not.

Microsoft just implemented Python scripting into Excel, so I have a feeling VBA's dwindling relevance will disappear soon enough. Still, it was a neat learning experience, and many of my friends use this "product" themselves, which makes me happy.

Experience

Sorted by relevance

Web Developer

Freelance
Feb 2021
-
Present
  • Planning website structure and features based on needs of client
  • Gathering assets (such as images and text) for website
  • Handling domain purchase and necessary setup
  • Handling development of website (primarily WordPress with customized code when needed)
  • Providing post-deployment support as needed

IT Systems Admin

Freelance
Dec 2023
-
Present
  • Setting up and administrating Office 365 For Business for small businesses
  • Connecting owned domains to Office 365 Environment
  • Configuring Microsoft Teams and Outlook for communications
  • Setting up company devices and joining them to the company domain
  • Assisting users with setup and troubleshooting of company infrastructure
  • Administering policies and permissions for users

IT Support

Therma-Tru
May 2022
-
Present
  • Preparing new devices for organization usage
  • Troubleshooting various software and hardware issues
  • Administering database accounts
  • Managing multiple support requests simultaneously
  • Configuring Active Directory accounts and permissions
  • Working with teammates to solve technical issues

IT Support

Swanton Local Schools
Jun 2016
-
Aug 2019
  • Upgraded hardware
  • Distributed software on a massive scale
  • Installed CAT6 networking cables
  • Configured Windows and ChromeOS devices for domain use
  • Aided faculty with miscellaneous technical issues
  • Worked in a team environment with others to efficiently solve problems

Package Handler

FedEx Ground
Jun 2020
-
May 2022
  • Coordinated relocation of delicate and heavy objects
  • Assisted coworkers and provided a team ethic

Cashier

Loma Linda's Mexican Restaurant
Feb 2019
-
May 2020
  • Handled multiple responsibilities in a busy environment
  • Provided excellent customer service and troubleshooting

Contact Info

GitHub
-
JoshSilveous
Email
-
Joshua@silveo.us
LinkedIn
-
JoshSilveous
Phone
-
+1 (419) 708-9217

Note: I have been getting a lot of spam calls since registering this domain, so if I do not answer right away, please leave a message!