Blog

JS - Run function when elements load

By: Isaac ― March 12, 2022


This post displays a JS snippet I wrote recently to watch for specific elements to be loaded into the DOM and then run a function (callBack) on them once they have loaded. This can be helpful when you are unable to directly edit the AJAX on-load function or simply want to separate your code from the AJAX code.

Tags: Basics, JavaScript

Category: General


How to send emails and texts for free with Python

By: Isaac ― December 12, 2021


A simple demonstration of how to send emails and text messages for free using python and a Gmail account.

Tags: Python, Basics

Category: General


HTACCESS Redirect Reference Guide

By: Isaac ― November 20, 2021


A reference guide for commonly used HTACCESS redirect rules on Apache servers.

Tags: Server

Category: Cheat Sheets


Making SQLite easy for Python

By: Isaac ― November 10, 2021


Learn how to create a database, insert data, and query it back out in only 7 lines of code!

Tags: Python, SQLITE3

Category: Database


Using SQLITE3 in Python

By: Isaac ― November 07, 2021


An intro to using SQLITE3 databases in python including creating databases, prepared statements, and querying data.

Tags: Python, Basics, SQLITE3

Category: Database