fbpx

How to Vectorize an Image in Inkscape?

Using Inkscape to vectorize an image takes 3 simple steps. Step 1: Open PNG Image in Inkscape Open image in Inkscape or drag an image onto your Inkscape document. If you drag it into your document, you may see the following prompt (I used the default settings below): Click on your image to select it….

How to undo git add before commit?

There are two ways to undo git add prior to a commit. The first way allows you to remove all files that you added, while the second option allows you to remove one file that was added. We also include an example below to show when you would use this and what is happening. Option 1:…

INSERT INTO SQL

I often forget what the INSERT SQL statement format is when I’m adding fields to different MySQL tables. Use the command below to insert a record into your table: For example, let’s say you need to add a record to the users table. Simply use the following command and you will add a new user…

How to check if a string contains a substring in JavaScript?

There are two simple ways to check if a string contains a substring in JavaScript. One of the ways is done using the includes method for JavaScript 6 (ECMAScript 6) and the other is with the indexOf for JavaScript 5 (ECMAScript 5) or older. Option 1: Use the includes Method (ECMAScript 6) The code snippet…

How to Block Online Ads and Trackers?

Could you get more sick of online ads and trackers? I can tell you that I can’t. Ads suck up your bandwidth and make for worse user experiences on countless websites that I frequent. And, as a developer, I’m conscious of my privacy while browsing and want to limit the data that I provide to…

How do I change an existing Git commit message?

In order to change an existing Git commit message, the easiest way to do it is to simply run the following command (where New commit message is your new message): If you would like to be able to adjust a multi-line commit message, use the following command: After running this command, an editor will open…

What are the 16 Most Important SEO Tips for a Blog?

We found the process of generating organic traffic to our blog a little opaque and overwhelming despite the plethora of search engine optimization articles out there. There are a ton of different search engine optimization (SEO) tips that help you get more traffic to your blog but we compiled our list of the 16 most…

Delete a Column SQL

In order to delete a column from a table using SQL (Structured Query Language), you need to run the following SQL query: For example, let’s say that you have table name called users that has the following fields: If you would like to drop the middle_name field from the users table, you would run the…

Redirect to Another page using JavaScript

There are three ways to redirect to another page using JavaScript. Option 1: Use window.location.replace The JavaScript code below will redirect the user to the URL specified. According to Mozilla, the replace method “replaces the current resource with the one at the provided URL” (Source). Replace removes the current document’s URL from the user’s history,…

How to rename a local Git branch?

Renaming a Git repository’s local branch can be accomplished using the following command: For example, if you want to rename the branch called topic/wip to topic, run the command below: If you would like to rename the Git branch that you’re currently working on, use the command below: