17 01, 2024

Creating an Azure SQL Server Instance

By |2024-01-17T03:49:07+00:00January 17th, 2024|Uncategorized|Comments Off on Creating an Azure SQL Server Instance

This post details the steps I took to create a new SQL Server instance on Azure and connect to it in Visual Studio. It was a very simple process and beats the heck out of installing a instance of SQL [...]

7 07, 2023

Why Do I Write Unit Tests

By |2023-07-16T03:25:46+00:00July 7th, 2023|Unit Tests|1 Comment

I've heard time and time again, "Unit tests are a waste of time" or "Unit tests are too much work for too little benefit." While I agree that poorly executed unit tests may not yield significant advantages, when done properly [...]

22 05, 2020

Adding Bootstrap to a New React Project

By |2020-05-22T12:58:18+00:00May 22nd, 2020|cmartcv, shell|Comments Off on Adding Bootstrap to a New React Project

Bootstrap is a very popular toolkit used by many to quickly build responsive, mobile friendly apps. Under the hood, Bootstrap relies heavily upon jQuery to perform direct DOM manipulation used to achieve that responsiveness but that runs counter to the [...]

25 04, 2020

Do I Already Have an npm Package Installed?

By |2020-04-25T14:23:27+00:00April 25th, 2020|cmartcv, npm, shell|Comments Off on Do I Already Have an npm Package Installed?

I've run through many tutorials and courses over the years that have me install an npm package or two so I often forget what I have installed. Recently I looked up how to use the create-react-app package and, in their [...]

16 01, 2020

Accepting User Input in Python

By |2020-01-16T05:55:07+00:00January 16th, 2020|Uncategorized|Comments Off on Accepting User Input in Python

Last night, I created a small python script that iterated over a list of files in a directory and removed a hard-coded set of strings from the beginning and end of the filenames. Today I want to add a few [...]

15 01, 2020

Modifying Filenames in a Directory with Python

By |2020-01-15T04:49:25+00:00January 15th, 2020|Uncategorized|Comments Off on Modifying Filenames in a Directory with Python

I found myself having to edit the filenames of several video files. Each video filename had the same leading and ending text that I wanted to remove. This seemed like a good candidate for my first DIY Python script. For [...]

12 09, 2019

Installing Python 3 on Windows 10

By |2019-09-12T04:38:19+00:00September 12th, 2019|Uncategorized|Comments Off on Installing Python 3 on Windows 10

Step 1: Go To Python.org Navigate your browser of choice to python.org/downloads Step 2: Download the latest version of Python 3 The website will automatically detect your [...]

Go to Top