fbpx

Delete All Database Table Records and Reset Increment

In order to delete all rows, or records, from a Database table and reset the incrementing field, typically the id field, back to 0, you need to run the simple function below: So, if I had 100 users in my users table, and then I ran the TRUNCATE users command above, I would have 0…

Get HTML Element Width Using Raw JavaScript

Sometimes you don’t want to add the jQuery library to your project and just want to use raw JavaScript. In this case, you will use the following commands to get the HTML element width using raw JavaScript. We’ll show you how to get the width of an element with a certain id, how to get…

Make a Phaser Game Responsive

I got the majority of the code below from a great Stack Overflow post that I can no longer find. I adjusted it a bit to make the calculations based on the width of the parent container, rather than the width of the window. STEP 1: Update the create function You need to add the…

Client Can’t Access Google Analytics Property

I recently ran into an issue where I shared access to a Google Analytics account with a client but the client said that she was unable to access the website/property that was shared. So, my client can’t access Google Analytics Property, what do I do? I went through the following process to diagnose the issue…

Intrinsic Motivation Autonomy Game

In this game, collect the books named after concepts that have been shown to help organizations encourage autonomy. The bombs signify the challenges that may distract you from your goal of moving towards autonomy. If you choose the wrong book or get hit by a bomb, you will suffer a set back and will have…

Intrinsic Motivation Purpose Game

In this game, collect the books named after concepts that have been shown to help organizations encourage purpose. The bombs signify the challenges that may distract you from your goal of moving towards purpose. If you choose the wrong book or get hit by a bomb, you will suffer a setback and will have to…

Intrinsic Motivation Mastery Game

In this game, collect the books named after concepts that have been shown to help organizations encourage mastery. The bombs signify the challenges that may distract you from your goal of moving towards mastery. If you choose the wrong book or get hit by a bomb, you will suffer a set back and will have…

Intrinsic and Extrinsic Motivation

Here at WPLauncher, we like to do everything we can to use scientifically proven best practices in our development projects, in building out our products, and in running our business. We spend a significant amount of time researching prior to the development and implementation of a new technology or a new business principle or strategy….

Add Custom Font to Your WordPress Site

We love the impact that various fonts can have in expressing a certain aesthetic or in aiding in the delivery of a message. It feels great when a certain font perfectly fits the style that you are aiming for. Sometimes theme providers give you font options that are exactly what you need, but alas, sometimes…

.env Changes Aren’t Updating in Laravel

I just had an issue where I updated a value in a Laravel install’s .env file. I tried just running the following command, per suggestions from other sites, but it didn’t work: Instead, the following commands fixed the issue and actually allowed the config values in production to be changed: