Skip to content

Blog

Page 3 of 71 - keep going...

Showing UTC in the Users Timezone Easily

In most of my applications, time is reflected in the UTC timezone. This is great for logic and math, but not so great when showing the date to the regular user.

Now, it’s pretty easy to show the UTC dates in the user’s timezone, without even asking them what it is.

Let’s see how to do this with a little bit of HTML and Javascript.

Jun 18, 2025 3 min read #html #javascript

PhpStorm Docker Not Starting Fix

Recently, I had an issue with PhpStorm not detecting my Docker configuration. I was using Docker Compose and everything worked fine with docker cli and Orbstack. Why wouldn’t PhpStorm recognize this? It’s a simple fix, actually. It has to do with the name of your project. Let me explain.

May 31, 2025 2 min read #docker #phpstorm

How I Launch a Laravel Testbed

Sometimes I need to spin up a quick Laravel instance on my Mac to test something out. With just a couple keystrokes, I can get a brand new Laravel instance running in a Docker container, ready for my IDE and testing. Here’s how.

Jan 16, 2025 2 min read #laravel