JMJeremy Morganinjeremymorgan.dev·Jun 16, 2025 · 2 min readI attended POST/CON 2025. Here are my thoughtsI just returned from POST/CON 25, and I’m left with one big impression: Postman gets it. They get that we’re not just managing APIs. We’re building complex systems, and increasingly, those systems involve AI. And as AI technologies race ahead Postman...00
JMJeremy Morganinjeremymorgan.dev·Dec 26, 2024 · 4 min readReview: The New NVIDIA Jetson Orin NanoHello, friends! If you’re a reader of this blog you’ve probably heard about NVIDIA’s Jetson. It’s a great platform for prototyping apps and putting AI at the edge. I got lucky and got my hands on the newest, very affordable Jetson, the Jetson Orin Na...00
JMJeremy Morganinjeremymorgan.dev·Dec 22, 2024 · 3 min readHow to Make a Retro 2D JavaScript Game Part 3Note: If you'd rather have a video tutorial, here it is: Let’s make the game more fun with scoring and difficulty progression. 1. Adding a Score Modify the create function to display a score: this.score = 0; this.scoreText = this.add.text(16, 16, '...00Z
JMJeremy Morganinjeremymorgan.dev·Dec 22, 2024 · 2 min readHow to Make a Retro 2D JavaScript Game Part 2Let’s make this game interactive! We’ll add a player, movement controls, and falling items. Note: If you'd rather have a video tutorial, here it is: The full source code is here. Here’s a playable version of the final game. 1. Adding Placeholder Gr...00
JMJeremy Morganinjeremymorgan.dev·Dec 22, 2024 · 4 min readHow to Make a Retro 2D JavaScript Game Part 1Welcome, aspiring game developers! 🚀 In this beginner-friendly guide, we’ll build a simple, retro-themed "Catch the Items" game using Phaser 3, a powerful JavaScript game development framework. This series of tutorials is designed for absolute begin...00