Category: Coding

Home / Coding
How to deploy a Laravel app
Post

How to deploy a Laravel app

As I promised in the most recent Laravel post, today we are going to talk about how to deploy a Laravel app to a production environment.  At the time that I write this, the most recent version of Laravel is 9.x but when you read this, there is a good chance that 10.x or 11.x...

What are koans and how can they help level up your dev game?
Post

What are koans and how can they help level up your dev game?

A koan is a story, dialogue, question, or statement which is used in Zen practice to provoke the “great doubt” and to practice or test a student’s progress in Zen.  In the Zen school of Rinzai, the use of koans (often a paradoxical statement) is used to initiate the internal socratic method in the students,...

Comparing and contrasting Bulma and Bootstrap
Post

Comparing and contrasting Bulma and Bootstrap

I haven’t been shy in the past about how I have really prefer Bulma over Bootstrap.  I wanted to use this week’s post to compare and contrast the two and hopefully reset my opinion of Bootstrap.  So, how am I going to do that?  I am going to create a webform using Bulma and then...

Learning Laravel: What is Laravel?
Post

Learning Laravel: What is Laravel?

In last week’s laravel post, I mentioned that Laravel is an open-source PHP framework that uses the model–view–controller (or MVC for short) architectural pattern.  This week, I want to drill down more on what that means.

Are you still working on the State Parks app?
Post

Are you still working on the State Parks app?

Yup, I am. Last year, I posted a lot about how I was building a state parks app to help with my goal of eventually visiting every park in the Wisconsin State Parks system.  The most recent post was around November, though.  Well, I am working on the app again and I am hoping to...

Learning Laravel:  Composer and The Laravel Installer
Post

Learning Laravel: Composer and The Laravel Installer

I spent years writing Laravel code at UWM but you might have noticed that I almost never wrote anything on this blog about it.  I am hoping to address that here and now.  If you don’t already know, Laravel is a free, open-source PHP web framework, intended for the development of web applications following the...

I’m speaking at That Conference Wisconsin, this year
Post

I’m speaking at That Conference Wisconsin, this year

Update (July 12, 2022): Well, heck. I just heard this morning that they are moving my talk to September 15’s THAT Online – September. The problem is that I land in Delhi, India at 1pm (local time) on Sept 15th.   So, I am speaking at That Conference.  I will be giving the talk “Locating your user...

Learning Tailwind: Borders, Shapes and Backgrounds
Post

Learning Tailwind: Borders, Shapes and Backgrounds

A few weeks ago, I started a series where I planned to cover Tailwind to the best of my ability.  Over the years, I have used Bootstrap and Bulma a heck of a lot but I wanted to branch out a little.  Today’s post is going to cover borders, shapes, and backgrounds.  Let’s get started.

How to use regex and vue to validate form input
Post

How to use regex and vue to validate form input

I haven’t talked about regular expressions much on this blog and that is mainly because I don’t feel like I understand the topic enough.  We are going to work on that, today.  Regular expressions (or regex) are patterns used to match character combinations in strings.  There are regex strings to test for valid phone numbers,...