Computer Engineer and Software developer.
Welcome To My Website.

View My Latest Blog Posts.

VB-Audio Setup For Interview Excelerator


March 24, 2024 • Audio

This guide is intended to help you setup VB-Audio so that you can use the audio going into your pc as the input device for the software I made called Interview Excelerator. This can also be a useful guide if you want to use computer output audio as input audio for other applications as well. ...

Deploying A Ready-To-Go Django Website On Heroku


May 26, 2023 • Django psycopg Heroku PostgreSQL

If you are like me you may have made your website fully on a dev branch with database entries and are looking to add it to production. I looked around a lot to try to narrow down the best host platform for my website and finally landed on Heroku. It made deployment very easy and learned how to us...

Setting Up A PostgreSQL Database For Discord Bots


May 3, 2023 • Discord Bots Discord.py SQL Python psycopg

If you make Discord bots and have any sort of data storage needs, I recommend using some kind of database. In my case I use a PostgreSQL database because it is fast, open source and satisfies all my needs. That being said if you prefer other databases like mysql or sqlite, those should easily sat...

Adding A Custom Slug In Django


May 3, 2023 • Python Django

There are a couple ways to setup custom slug for your webpages. One way you can do this is by using the title you store in your database as the custom slug. Another way is to just use the database id. My recommendation is to add a new field in your models.py file called slug. This helps avoid pot...