Browse My Blogs Here.

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...

Adding A Text Editor To Your Admin Console (TinyMCE)


April 29, 2023 • Python Django HTML CSS Tailwind TinyMCE

Adding posts of any kind to your website can be done in many different ways. Assuming you use some for of database, in my case SQLite, to store data on your site, the best way to add new posts is through an admin console. My site uses Django and Tailwind for styling and I have implemented a light...

Changing Scrollbar Color Tailwind


April 29, 2023 • Python Tailwind

Most sites just use the browsers standard scrollbar but sometimes adding your own custom scrollbar can make your website feel much more custom and give a much better user experience. This tutorial is a quick tutorial on how to add a custom scrollbar to your Tailwind styled project that should cov...

Setting Up Dark Mode With Django


April 29, 2023 • Python Django

These days almost all websites have a toggle for light and dark mode. The option to switch makes webpages much more user friendly and not to mention easier on the eyes. If done correctly both dark and light modes can look great. The following goes over dark mode setup with Django.

 <...

Using jsDelivr on your website


April 27, 2023 • Python Django HTML CSS

Adding images to your website can be done in many ways. You can access locally stored images for your website, or you can use some form of Content Delivery Network (CDN).

 

When I was decid...

Utilizing SQL to Store Data for Discord Bots


April 1, 2023 • Discord.py Python

Up until less than a year ago I never used and sort of solid database to store my data. If needed I would just use a .txt file since I thought it would be more than enough. But as time went on my need to increasing collected data and just overall storing of data properly grew so I decided to try ...

Making an Automated Discord Bot in Python


April 1, 2023 • Discord Bots Discord.py Python

I have been making bots for years using discord.py. I have become more in tune with how to efficiently make bots and adapted to the constant improvements Discord makes. The one project that has seen the most change is Jarvis, an automated support ticket bot I made for the sneaker group I help run...