Blog

Post Featured Image

Control An RC Car With A Raspberry Pi And Gamepad

I thought it would be fun to connect a Raspberry Pi to an RC car to control it programmatically.

This project takes an off-the-shelf RC car and controls it with a Raspberry Pi 3 B+ and a Dualshock 4 wireless controller via Bluetooth.

The finished project has excellent …

Read More
Post Featured Image

Django Unique Slug Generator

For my blog posts, I wanted to use a slug based on the post's title as its URL. The post's slug needs to be unique so that Django knows which object to return.

What I wanted to happen was, if the title of a post happens to be the …

Read More
Post Featured Image

Fizz Buzz Python

Here's my solution to the classic fizz buzz question written in Python.

Print out numbers 1 through 100.
When a number is divisible by 3 replace it with "fizz".
When a number is divisible by 5 replace it with "buzz".
When a number is divisible by both 3 and …

Read More