Category Archives: Computers/Tech/Games

Retiring the CloudFTP

CloudFTP Device

I find it easier to throw away big things than small things. Small things can always be shoved into a drawer, placed on a shelf, or tossed into a closet. And when it comes to technical gadgets it’s often the small things cost big bucks, which makes some of these things more difficult to part with.

CloudFTP was a wireless device that launched on Kickstarter back in 2012. The small box served as a tiny web/FTP server that contained a USB port and was powered by a rechargeable battery. Any files stored on the attached USB stick could be accessed over WiFi.

For the CloudFTP to make sense, you’ll have to mentally time travel back to 2012. The iPhone 5 (released in September 2012) came with 16GB, 32GB, or 64GB, which was all-to-easy to fill with applications, pictures, and music files. The CloudFTP served two purposes: it allowed downloading/streaming files from the device, and served as an inexpensive way to expand a device’s storage space (USB storage was relatively inexpensive, even back then). The other thing to consider is that few people had unlimited data plans for their mobile devices in 2012. The CloudFTP used a wireless connection, which did not count against your mobile plan.

I purchased my CloudFTP from a friend who backed the original Kickstarter campaign. I don’t remember why that person didn’t want to keep it, but I had a use for it. The iPad I owned at the time did not have a cellular connection (wireless only), and the CloudFTP was a convenient way for me to play movies and easily expand my music storage.

At the Tulsa Oklahoma Video Game Expo in 2013, I attempted to use the CloudFTP as part of my marketing plan for my book Invading Spaces. I put the first chapter of the book, a bunch of pictures, some mp3s, and a few other files on the CloudFTP, and left the device turned on for the duration of the convention. I turned on anonymous access (so no one would need a password to access the data), and sprinkled small flyers around the convention (including out in the hallways and even the bathroom) advertising the device’s IP address and hinting that it contained “secret” files. The convention lasted eight hours, and by the end of the day I believe a total of three people accessed the device. That night I tossed the CloudFTP in the back of my desk drawer, where it’s been for the past seven years.

A lot has changed since 2012. The iPhone I own today has 256GB of storage — more than enough for all the pictures and music I need to store. (I have approximately 5,000 mp3s on my phone.) More than that, I now have an unlimited data plan on my phone; any movies or music I want to consume, I can do via online services. The USB storage on the CloudFTP is nothing compared to the storage on Netflix and Spotify.

About once a month while digging through my desk, I’ll fumble across the CloudFTP and try and come up with a use for it. The closest I’ve come is Raspberry Pi storage, but the Raspberry Pi has four USB ports — why would I need a fifth one?

When cleaning, I tend to hang on to the little things. Then again, I have several drawers full of little things. Maybe parting with a few that I no longer use will free up room for some new ones.

PosterPi (Raspberry Pi-based Digital Poster/Picture Display)

PosterPi is a solution I created for turning a flat screen television into a virtual poster display. The script was written in Bash for Linux and designed to run on a Raspberry Pi. Although I designed PosterPi to display pictures of movie posters, it could easily be modified to display digital pictures, digital signage, or just about anything else.

Once PosterPi is set up, it should automatically boot up, launch the script, read a list of posters (digital pictures) from a predetermined location, and begin displaying them in random order. My intention was for the entire process to begin without human interaction once the Raspberry Pi was powered on.

In this post, I will walk through how I created PosterPi. Feel free to use my solution exactly as it appears, or modify it any way you see fit. If you already have a Raspberry Pi loaded with Raspian Lite, you should be able to set up PosterPi in less than an hour.

01. WHY I CREATED POSTERPI
02. IT WOULD HAVE BEEN BETTER IF YOU HAD…
03. MATERIALS
04. RASPBERRY PI CONFIGURATION
05. CREATE A FOLDER FOR YOUR POSTERS
06. POSTERPI.SH
07. FINAL STEPS
08. RANDOM THOUGHTS

01. WHY I CREATED POSTERPI

When I began planning my home theater, I thought it would be neat to have movie posters hanging outside the room in a theater-quality poster frame. Some quick research revealed that theater-quality poster frames and authentic movie posters are pretty expensive. Additionally, the thought of buying, storing, and rotating physical posters in and out of the frame didn’t sound like much fun to me. Instead, I came up with the idea of using a flat screen television instead of a physical picture frame to display movie posters.

02. IT WOULD HAVE BEEN BETTER IF YOU HAD…

There are a bazillion different ways to display digital images on a television. In fact, most modern televisions have the ability to display pictures right from a USB stick, and some even have the ability to create slideshows from those pictures. Unfortunately not all televisions (and no computer monitors) have this feature built in, the features vary between models and manufacturers, and they usually aren’t very configurable. I wanted the ability to add and remove posters remotely from my desktop, control the speed at which the posters changed, and a solution that would work with any television. That is why I decided to use a Raspberry Pi to run PosterPi. I am not presenting this as the best solution or pretending that it is the only solution, merely as the solution I came up with.

03. MATERIALS

To get PosterPi up and running, all you need is a Raspberry Pi, a television, and some digital pictures.

— Raspberry Pi: I used a Raspberry Pi 3B for this project, because that was what I had available. PosterPi requires minimal processing power, and I’m sure older models or less expensive models like the Nano can handle running it.

— Television: The standard size of a poster is 24″ x 36″, which (according to Pythagoras) has a corner-to-corner measurement of 43.4″. One-Sheet movie posters are typically 27″ x 40″, with a diagonal stretch of 48.25″. If you are tying to display posters close to their actual size, you should use a 42″ to 50″ television. HD televisions in this range can be found new for $200 or less, and used models can be often be found for half that or less. Before purchasing a display, make sure that the model is designed to be mounted vertically (portrait mode). Some televisions, due to mounting holes and heating/venting issues, are not designed to be hung vertically. Additionally, make sure any wall television mount you purchase is designed to hold a television vertically, as not all are. I only wrote the code for PosterPi — safely mounting your television is your responsibility.

— Movie Posters: There are literally hundreds of websites where movie posters can be downloaded. The trick is finding poster images that aren’t watermarked and are large enough to display without distortion. I downloaded a lot of my posters from JoBlo.com and FFF Movie Posters, and found many others through Google Image Search by setting the desired image search to large. For those who torrent there are a few large collections of movie posters available in the usual places, although keep in mind that by downloading 50,000 movie posters in a single zip file, you’ll be spending several hours weeding out all the ones you don’t want.

04. RASPBERRY PI CONFIGURATION

01. Load Raspian (Lite). You do not need a GUI desktop environment for this project

02. Rename the password on the default Pi account (always a good idea)
— type sudo passwd pi to change the password for the default account named “pi”

03. Verify networking (either wired or wireless) is working

04. Enable auto login in raspi-config so PosterPi can automatically start
How to Enable Auto Login

05. To access the Pi remotely, enable SSH in raspi-config

06. Disable screen blanking so that the Raspberry Pi’s display doesn’t go to sleep
— type sudo nano /boot/cmdline.txt
— verify that the following line exists: consoleblank=0
— if the line does not exist, add it

07. Install FBI (a free command line picture viewer)
— type sudo apt-get install fbi

08. Rotate the display on the Raspberry Pi.
— type sudo nano /boot/config.txt
— Change display_rotate=0 to 1, 2, or 3 depending on which way your display is rotated
—- display_rotate=1 (this will rotate your display 90 degrees)
—- display_rotate=2 (this will rotate your display 180 degrees)
—- display_rotate=3 (this will rotate your display 270 degrees)
— If there is no entry for “display_rotate”, you can add it

05. CREATE A FOLDER FOR YOUR POSTERS

There are three location/sources I can think of for storing movie posters and/or images: locally (on the Raspberry Pi’s SD card), a network share, and on a USB stick. PosterPi is only designed to use one poster source, although it could be tweaked to support more than one.

01. Storing Images Locally on the Raspberry Pi’s SD card (easiest)

This is by far the simplest solution. Create a folder (mine is called Posters) in your home directory. Copy all your posters to this folder. The end. If you previously set up SSH, you should be able to use something like WinSCP to connect to your Raspberry Pi over the network and upload/update your posters remotely without having to remove the SD card. You can add or remove posters while the script is running. The list is updated each time the script runs.

02. Storing Images Remotely on a Windows Share (advanced)

If you want to stream your posters from a Windows server, you will need to create an account for the Raspberry Pi, share the folder, and grant the account permission to the share (I recommend read only permissions). The easiest way to connect to the share is by using your host’s IP address. This method assumes you have a working knowledge of your home network. After creating the share and account on your Windows machine:

— Install the necessary samba/smb tools
—- type sudo apt-get install samba-common smbclient samba-common-bin smbclient cifs-utils
— Create a mount point for your posters
—- type sudo mkdir /mnt/PosterPi
— Set up the mount point manually to make sure everything is working.
—- type sudo mount -t cifs -o username=USERNAME,password=PASSWORD //IP/SHARE /mnt/PosterPi
—— USERNAME is the name of the Windows account
—— PASSWORD is the password of the Windows account
—— IP is the IP address of the machine with the poster share
—— SHARE is the name of the share
— To mount the share automatically each time the Raspberry Pi boots
—- type sudo nano /etc/fstab and add the following line at the end:
—- //IP/SHARE /mnt/PosterPi cifs defaults,username=USERNAME,password=PASSWORD,domain=DOMAIN 0 0
—- As before, change IP, SHARE, USERNAME, PASSWORD, and DOMAIN to match your local network

03. Storing Images on a USB Stick

Images can also be stored on a USB stick. If the Raspberry Pi is not going to be connected to a network, this is a simple way to add and remove posters to PosterPi. I have not personally run PosterPi in this manner, but here is a general overview:
— Install usbmount (Instructions)
—- The link above includes instructions on creating a mount point that points to the USB stick. Create a mount point called PosterPi or Posters and remember what it is because you’ll need to point to it in PosterPi.sh

06. POSTERPI.SH

Here are the contents of the actual PosterPi.sh script. You can either cut and paste the contents of this script into a file on your workstation and copy the file over to your Raspberry Pi, or you can use NANO and either type or paste the contents of the script directly into the file and save it.

#!/bin/bash

#Start Loop Process
while true; do

#Delete old files
rm /home/pi/PosterPi.txt
rm /home/pi/PosterPi.tmp

#Find all files, inc subdirs, add to PosterPi.txt
find /home/pi/Posters -name "*.*" > /home/pi/PosterPi.txt

#Shuffle first 50k lines, write to PosterPi.tmp
shuf -n 50000 /home/pi/PosterPi.txt > PosterPi.tmp

#Launch FBI viewer, read from PosterPi.tmp
fbi -a -1 -t 5 --noverbose -l /home/pi/PosterPi.tmp

#When FBI reaches the end of the list, begin again.
clear
done

Walking through the script:
— PosterPi.sh begins with an infinite loop that reads through a text file full of images. When it reaches the end of the text file, the script restarts. Each time it restarts it regenerates and reshuffles the list of images
— The script removes two temporary files: PosterPi.txt and PosterPi.tmp
— The script uses FIND to search your poster folder for all files that contain a period (this is a cheap way to exclude lines that only folder names and no file names) and writes it to a file called PosterPi.txt
— The shuf command takes the first n amount of entries (I set it to 50,000) in PosterPi.txt, randomly shuffles them, and writes them to a temporary file (PosterPi.tmp). There are a lot of different ways to skin this cat; this is just the one I chose
— FBI reads the files from the temporary file (which should be all of your posters, now in random order) and displays them. FBI has a lot of different switches available so feel free to experiment. Note that in the above example I have set the time (-t) between pictures to be 5 seconds. This is a good setting to make sure the script is working and cycling through your pictures. Once you have everything working, you will probably want to increase this value.

Remember that the file list is built (and randomized) each time the script runs. If you want to add or remove images, just place them in your folder. The next time the script runs, it’ll add them to its list. If you want to force an update, reboot the Pi.

07. FINAL STEPS

With these final steps in place, every time your Raspberry Pi is turned on it should automatically log in and run PosterPi.

01. Make PosterPi.sh executable
— type sudo chmod 755 ./PosterPi.sh

02. Make PosterPi.sh run automatically
— Change to your home directory by typing cd ~
— type sudo nano .bashrc
— add a line to the end of the file that reads ./PosterPi.sh

08. RANDOM THOUGHTS

— There are lots of different ways to decorate your new digital poster frame. You could build a wooden frame to surround your television, or make one out of foam core. If you are going to add a frame, make sure that you cut holes for ventilation, especially in the top (heat rises). You could surround the frame with flashing lights, or add a strip of LED backlighting. I added LED backlights to mine, and plan to add a small “NOW PLAYING” sign mounted at the top.

— One thing I have considered doing is grouping my movie posters into different folders based on genre (sci-fi, horror, comedy) and then rotating them in and out as needed. You could store these in separate folders just above your media folder, and drop/drag then into the shared folder as desired.

— It is easier to mount a Raspberry Pi and sticky LED light strips when the television is off the wall. Just sayin’.

— On my first attempt, I added every poster I could find. Each time I walked past the television, I found myself waiting for “a good one.” I have since changed my approach. My personal setup now contains approximately 700 posters, and all of them are “good ones” to me, meaning every one is of a movie I enjoyed and have seen multiple times.

— Be sure to explore the settings on your television. I was able to greatly improve the overall effect by slightly turning down the brightness, for example. My television also contains setting to ensure pictures display in the proper aspect ratio, and centered in the screen.

— I played with the idea of changing the poster on the screen to whatever movie I was watching at the time. This was relatively easy to do when I was using Windows as my media player. (Find the matching movie poster, replace the list on PosterPi with only that picture, etc.) Kodi supports Python scripts and could potentially do this, but when I realized I would be inside the theater and never know if it worked or not, I gave up.

That’s it! If you set up your own PosterPi or have any feedback on this tutorial, please let me know!

The Joys of Arcade Ownership

So the lobby leading to my movie room is done, and by “done” I mean it’s an empty 10×20 room with carpet, waiting for me to fill it. The outside door is slightly off center, leaving about 7′ of space to the left and 10′ to the right. To the left, I plan to put a couple of arcade machines, a small snack bar, and a monitor that streams cartoons, music videos, and movie trailers. The vibe I’m going for is “80’s skating rink,” more or less.

On Sunday, Susan and I picked up one of my two remaining arcade games from our storage unit. We’ve been paying for a storage unit ever since we moved into this house, but are hoping to empty it out this month now that the workshop is done.

My old 60-in-1 multicade arcade cabinet was in worse condition than I remembered. The marquee light had burned out, the monitor I had used was too small (and off center), and worst of all, the bottom of the cabinet appears to have suffered some minor water damage while in storage. (Everything else in the unit is stored in Rubbermaid tubs, so no worries there.)

The first project I tackled was removing the old CRT computer monitor and replacing it with a 17″ flat panel monitor. In retrospect, chronologically, this is the last project I should have worked on. With a few L-brackets and a bit of ingenuity I was able to mount the new monitor in place. I thought this was going to be the most time consuming project, but ha ha. It was not.

Next, I decided to replace the burned-out fluorescent bulb in the top of the machine behind the marquee. While making a Walmart run for food, Susan picked up a replacement bulb for me. Replacing the bulb did not fix the problem. I was about to replace the ballast next when Susan noticed some of the wires running to the fixture looked burnt, so I decided to pull the whole thing out and replace it. Not only will that be the safer approach, but also the more economical. On Amazon, a replacement bulb is $19.99, a ballast is $16.99, and an entirely new fluorescent light fixture (with bulb) is only $14.99. So, that’s been ordered.

The light never worked before, so I didn’t let that stop me from moving the machine into the lobby. Using my old dolly, I wheeled the machine from the workshop back to the lobby. After moving arcade cabinets back and forth across a lumpy lawn for almost a decade at my old house, it was so nice to be able to have a straight shot across concrete for a change!

After moving the machine to the lobby, I scooted the machine across the carpet into place and that’s when I heard it — the sound of wood splintering off. A quick check of the floor confirmed that the cabinet was leaving a snail trail of splinters each time I moved it. This was when I noticed that the bottom of the cabinet appeared to have sustained some water damage while in storage. This discovery led to a side project where I built a pedestal out of 2x4s and slid it underneath the cabinet, in an attempt to get it up off the floor. This resulted in a cabinet that was too tall and a little wobbly. Things were going bad, and were about to get worse.

I wanted to check if the game felt too tall while playing it, so I plugged the machine into the wall, turned it on… and got nothing. I flipped the switch and checked all the connects, but there was no power. After quoting Q*Bert, I decided to move the whole cabinet back to the workshop and regroup.

I decided that laying the cabinet over on its side (on a bed of plastic milk crates) would make it easier to work on. I don’t know why I thought that. It’s not. All it did was cause 200 vintage tokens and random pieces of glass (?) to fall out.

Inside the cabinet I found a new(er) switching power supply mounted next to the cabinet’s original power supply from 1981. The original power supply was not being used, so I decided to remove and bypass it.

Next, I took an old power cord, cut and stripped the ends, and attached them to the newer power supply. After confirming that I was getting 110 volts to the power supply, I checked the output and found what we call in the business “a problem.”

Zero volts out across the board explains why the machine wouldn’t power up. Ironically, the original 39-year-old power supply down in the bottom of the cabinet had been working right all along. It was the newer one that had released its magic smoke and died.

My buddy Robb Sherwin is mailing me a spare power supply he had on hand, and I’ll patiently await the new fluorescent light fixture from Amazon. For the time being I’ll leave the thing laying on its side until the next round of repairs gets the machine both figuratively and literally back on its feet.

PS: WordPress just reminded me that I already replace the power supply on this machine once back in 2014. They really don’t make ’em like they used to!

Setting up Movie Nights with a PowerShell Script

I love watching movies, but miss the theater experience — and by that I mean trailers and concession commercials, not gum on the floor, people talking, and kids kicking the back of my seat. I decided to write a script using PowerShell to try and enhance my home movie experience. The result, which I’ve named MovieNight.ps1, is pretty neat!

I’m splitting today’s blog post into two parts. The first half will be the fun half where I talk about what the script does. The first half won’t be technical at all. In the second half I’ll get into the technical details. If you’re not interested in all the nerdy behind-the-scenes stuff, that’ll be a good place to drop off.

Part One: What’s It Do?

I love all the little clips theaters show before the movie starts. I like the commercials, the trailers, and what theaters call their “policy” trailers (the clips that ask you not to smoke, talk, litter, or use your cell phone). My goal was to write a script that would randomly pick files from each of those categories and add them to a playlist. A playlist is a plain text file that simply tells whatever video player you use on your computer to show videos (or play music) in a specific order. The way I wanted the script to work was for me to tell it what movie I wanted to watch, and then have it quickly generate a playlist. One of the most important parts of the script was its ability to randomly pick the files. I want to be surprised by which trailers and commercials it adds to the playlist, otherwise it’s no fun!

Doing this required obtaining hundreds and hundreds of video clips off the internet, and sorting them into separate folders. A friend of mine sent me approximately 800 video clips to get me started; since then, I’ve acquired another 500. Most of the movie trailers and theater commercials were downloaded from YouTube. Once I had all of those files, I had to sort and resort them into folders that made sense so that the script could pull filenames from the different folders.

After all that sorting, I settled on the following folders: audio format promos, commercials, feature presentation, policy trailers, trailers, and welcome. Under commercials there are three additional folders: food and drink, intermission, and misc.

Lots of the commercials came from old drive-in clips. Here’s an example of one of the clips under the “food and drink” commercial folder.

And here’s one from the “Policy Trailers” folder. If you went to a Regal Cinema in the 90s, you might remember this roller coaster. Watch out for those giant Reese’s!

https://www.youtube.com/watch?v=H6o6ZlefvOo

Between those two videos, you can probably envision what I wanted to create. Based on the parameters you feed it, the script randomly plucks a few commercials, a few trailers, and whatever else you tell it to add. When it’s done, it creates a playlist that you only need to click on to sit back and enjoy the program! One other feature I added is that the movie trailers it selects are close to the same year as the movie I’m going to watch. I programmed in a tiny bit of leeway, but in general the trailers it picks will be from a year or two before or a year or two after the year the film was released.

It may seem odd to actually want to watch commercials and movie trailers, but having them presented in a random order really makes the home viewing experience much more theater-like. Plus, sometimes I find myself as nostalgic for the old commercials as I am for the old movies!

Part Two: How Does it Work?

Here we go.

Accompanying the script is a small text file (think of it like an old ini file) that contains the paths to all of my videos by category. It contains one additional variable (“YearVariance”) which tells the trailer portion how wide a bracket to pick trailers from. I currently have mine set on “2”, so if I pick a movie from 1984, it’ll randomly pick trailers for movies between 1982 and 1986.

The second half of the text file is the structure of the generated playlist. You can use commands like “add-commercial,” “add-trailer,” and “add-policy” to add those types of videos to the playlist. You can put them in any order you wish, and list them multiple times to get multiple videos added. Here’s the default setting:

Add-Required1
Add-Commercial
Add-Commercial
Add-Trailer
Add-Trailer
Add-Trailer
Add-Policy
Add-Feature

“Required1” is a hard coded link to a specific video (mine says “O’Hara Cinema”) that I want added to every single playlist. There’s a “Required2” slot as well, but I’m not currently using it.

Because cutting and pasting the entire path to my video files was more cumbersome than I had anticipated, the script also supports wildcards. I can run the script with a partial filename and it will find the first match and use it as the movie. It’s not perfect (I typed TRON and got “The STRONgest Man in the World) but if you put enough of the file name in there, it’ll usually find it.

To get age-appropriate trailers to work, I had to add the year to the filename of every single trailer (the ones I got from my friend already had the year; the ones I got from YouTube did not). I also have the year in my movie filenames, so it was just a matter of splitting filenames by parenthesis to pluck out the years, converting them to integers, and doing the math.

Here’s an example I just ran to generate a playlist for 1984’s Ghostbusters (with the real path edited out).

#EXTM3U
S:\(path)\Trailers\OHara_Cinemas.mp4
S:\(path)\Trailers\Commercials\Food and Drink\Hot Chocolate (1960s).mp4
S:\(path)\Trailers\Commercials\Intermission\Drive In Short Film Intermission Promo 12.mpg
S:\(path)\Trailers\Trailers\1982 – The Toy Trailer.mp4
S:\(path)\Trailers\Trailers\1985 – Rocky IV Trailer.m4v
S:\(path)\Trailers\Trailers\1984 – Gremlins Reissue Trailer.m4v
S:\(path)\Trailers\Policy_Trailers\Marcus Theatres Policy Trailer.m4v
S:\(path)\Trailers\Feature_Presentation\AMC Theatres Feature Presentation (1996 – 2002).mp4
S:\(path)\Ghostbusters 1 (1984).avi

As you can see, the generated playlist matches the format of the command list from before (required video, two commercials, three trailers, one policy, and one feature presentation video). The selected movie is automatically appended to the end of the playlist.

I’m planning on running either Kodi or Plex in my real movie room once construction ends, and I’ll need to change the output of the files to indirect patches instead of hard coded direct paths. This should be an easy change. I know Kodi has a folder for playlists, which I’m assuming this can be slipped directly into.

If anybody wants to play with it now, shoot me an email and I will send you the files, although unless your files and folders are set up like mine, it may take considerable modification to work in your environment.

Two Weeks with Amazon’s Ring 2 Doorbell

Murderers. Rapists. Thieves. These are the people I have captured on video after owning a Ring video doorbell for two weeks.

Just kidding. So far I’ve captured video of trucks driving past my house, three visitors, construction workers across the street using the Porta-Potty, two Amazon deliveries, and several videos of Susan and I trying out the doorbell.

Like most gadgets, I bought a Ring doorbell not because I needed one, but because I thought it would be neat. If reporters are to be believed, our homes (and cars) are constantly being probed by scary criminals, checking to see if we are home. And, as an Amazon Prime member who orders more than his fair share of stuff, I am acutely aware of the threat of “Porch Pirates,” thieves who steal delivered packages from front porches. The Ring doorbell seemed like a good defense against all of those things. Additionally, the front door of our new house came with no peephole or window. Our front windows offer a clear view of the front porch, but it works both ways, and peeking through the blinds is pretty obvious. My hope was that the video feed from the Ring doorbell might work as an alternative solution.

Up until recently, there were three models of Ring doorbells — the original Ring ($99), the Ring 2 ($199), and the Ring Pro ($249). Amazon recently put the Ring 2 on sale for $139, which made my decision easier. According to reviews, the Ring 2 corrects several of the original’s shortcomings. (From this point forward, any reference to “the Ring” refers to the Ring 2, the model I purchased.)

Installing the Ring 2 doorbell took 20-30 minutes, and I could do it a second time in about 10. Inside the box, customers will find everything needed to install the Ring. Along with the device itself, there are two additional mounting brackets (one that angles to the side, another that angles downward), a screwdriver, a drill bit (for those installing the Ring on brick), and a bevy of screws and wall anchors.

Both the Ring and Ring 2 run off of batteries. The Ring 2’s battery is better than the original, and can be constantly charged by the wires that ran to your previous doorbell, which means you should never have to remove your battery to recharge the device. A fully charged battery claims to run the unit for an entire year, so temporary power outages should not affect the device. (That being said, the Ring requires an internet connection, so if your wireless network and/or internet connection go down, all video capabilities go away.)

Using the Ring requires the Ring app. Connecting the doorbell to my wireless network was quick and easy. Ring recently issued an update that stops the doorbell from passing your wireless password in plain text when joining your network. The odds of anyone actually exploiting this in reality is pretty low, but it’s bad practice regardless, and I’m glad they fixed it.

Once wired into your original doorbell wires, pressing the button on the front of the Ring will cause your original doorbell to ring. (The Ring is also compatible with “digital chimes,” but the installation is slightly more complex.) The real magic comes in the Ring’s alerts, and there are two: “someone rang your doorbell” and “Ring has detected movement.”

When someone rings the Ring doorbell, an alert immediately pops up on your phone. After opening the app, you are able to see through the Ring’s camera. The fisheye lens offers a complete view of my entire porch. Using buttons on the screen, you are able to turn on/off a microphone on the porch, and turn on/off the microphone on your handset, allowing you to chat with anyone on your front porch. The video is automatically saved to your Ring cloud storage account. (First month’s free; it’s $30/year after that.)

Now’s as good a time as any to talk about the Ring’s WiFi signal requirements. Ring says that you’ll want to place your Ring doorbell as close as possible to your wireless router. They’re not kidding. My Ring is on the outside of my house (obviously), which means the signal has to travel through a layer of brick before hitting my router, which is literally 10′ away. In that configuration, my Ring barely meets the minimum signal requirements. Suggested solutions included moving my wireless router, removing obstacles between the Ring and the router (there are none), or adding additional wireless signal boosters near the Ring doorbell. My signal is good enough for it to work, but if your wireless router is in the rear of your home, I can see signal strength being an issue.

I’m not the type of guy who always has his phone in his hand, which means each time someone rings my doorbell I have to (a) find my phone, (b) open the app, and (c) connect to the Ring doorbell. Each of these steps takes several seconds, and when you know someone is waiting on your front porch, those seconds seem like hours.

The other alert users can set up is motion detection. The Ring app does a decent job of guessing how sensitive to set its motion detection based on a few questions it asks you during installation. “Does your house face a busy street?” was one of the questions. For the most part I haven’t experienced a lot of false alarms, although it seems large slow-moving trucks are enough to trigger the motion detection while cars passing by at a normal clip do not. That being said, there is no way anyone walking up my sidewalk or standing on my front porch would not trigger the device, at which point it begins recording, and continues to do so until no more motion is detected.

In the past two weeks I have captured three separate visitors. The first of which were two kids raising money for their basketball team. The second were two members of our home owner’s association stopping by. Part of the “fun” (I suppose) is being able to see what happens on the other side of your closed door. For two whole minutes before they rang my bell, those two kids took a load off their feet by resting on my porch furniture. No harm, no foul. As for the other men, you can clearly hear them rehearsing our names (“Rob and Susan, Rob and Susan”) before knocking on the door. I suspect that most people assume the device isn’t activated until they press the button.

The third visitor was a stranger. I don’t know who he was, or what he wanted. He knocked, stood around for a bit, and left. Was he there to steal my Amazon packages? To ask for donations? To invite me to church? I don’t know. Does it matter that I know this man stopped by my house and rang the doorbell while I was away at work? I don’t know that, either.

Hang on to your Big Brother hats, because now I’m going to talk about Ring’s videos.

The Ring app has another feature, called Neighborhood. When I installed the app, it used my phone’s GPS to pull up a map of my neighborhood and the location of my house. After confirming where I live (it didn’t seem to be optional), Ring showed me some of its additional options. If I determined something was “suspicious” (like the stranger who rang my doorbell) I can flag it as such and send a notification (including the video) to every Ring user within my neighborhood’s radius (the default setting I believe was five miles). I haven’t flagged any videos, but some of my neighbors have. I’ve received two notifications since installing the Ring. “Someone was checking my car doors at 4:45 a.m.,” said one alert, complete with night-vision video. The other was of a man standing on someone’s front porch. “This guy rang my doorbell and stood there for a long time,” says the post. Others have commented. “Looks like he’s on drugs,” said one.

Here’s where things get a little sketchy. The Ring doorbell itself does not store any of your video data. Instead, it is transferred through your wireless signal to Ring’s cloud storage. You can view it and you can download it… but I’m not sure who owns it. According to a Washington Post article, Ring has partnered with 400 police departments, offering them access to Ring data. According to the article, police departments are supposed to ask nicely to view your videos. My only knowledge comes through reality television programs, but I’m not sure I love a system that depends on me trusting (a) someone else owning my videos, (b) them not releasing them unless I say so, and (c) police departments asking nicely and taking “no” for an answer. Orwell would get a chuckle, for sure.

In a follow up article the number of police departments working with Ring rose to 600. In this article, Ring also claims that they do not knowingly collect videos of children or random people walking on public property (i.e. walking down the sidewalk). They say it is up to Ring owners to make sure the devices don’t collect those images — which, as an owner, I can tell you is 100% impossible. Installing the device so that it does not collect video of the street in front of your house is literally impossible. I suppose placing a sign at the end of my driveway warning children not to approach my house might stop the latter, although I suspect all it would really do is provide me with videos of kids egging my house in crystal clear 1080p resolution.

Even after buying and installing the Ring doorbell, I’m still morally on the fence. The ominous black box with the glowing blue LED ring will, I hope, dissuade Porch Pirates and other no-gooders from targeting my home. On the other hand, I can see how videos collected from devices like these could be (and probably is being) misused, and I don’t feel great that I paid $139 to contribute to that web.

Putting a Computer Keyboard in the Dishwasher

The longer you work on computers, the more weird tricks you learn. Over the years I’ve straightened the pins on IDE hard drives, made temporary jumpers out of paperclips, bypassed BIOS passwords by removing the CMOS battery, and used rubber bands to remove screws with stripped heads.

And then there are the really weird ones, like sticking a failing hard drive inside your freezer as a last ditch attempt to save it. While a lot of people (myself included) seemingly had success with this trick, more recent analysis has determined that there’s a much greater chance of this making the drive worse (best case scenario is that it doesn’t do anything at all).

Another trick I’d heard, but never personally tried, was running a computer keyboard through a dishwasher. Over the years I’ve heard of people trying this, many of them swearing it worked. Up until last Friday I’d never had a reason to try it myself. That was the day I dumped a bunch of salad dressing directly into my keyboard.

Once upon a time computers came with keyboards attached, and replacing a keyboard was so incredibly expensive that nobody — especially kids — were allowed to bring food or drink within five miles of a computer. Over time, the price of keyboards dropped — so much, in fact, that one time I accidently bought 300 of them. It happens. The point is, I have five spare USB keyboards out in my garage. With little to lose and knowledge to gain, I decided to try the ol’ “computer keyboard through the dishwasher trick” for myself.

Before putting the keyboard in the dishwasher I decided to rinse it off first. After letting the keyboard fill up with water, hair, a few fingernails, skin cells, and dandruff began washing out and into the sink. Once all the stuff that used to be a part of me stopped flowing out of the keyboard, I turned off the water, turned the keyboard upside down, and let it drain. Then I scrubbed the sink real good because… skin cells.

Surprisingly my dishwasher does not have a setting for “$10 USB Keyboard,” so following the advice of someone named MetalliHunk138, I put the keyboard in the top rack and let ‘er rip on a normal (not “pots ‘n pans”) cycle. I also turned off the drying cycle because I only wanted to wash the thing, not cook it.

When the dishwasher finished, I removed the keyboard and placed it outside on a table. Within ten minutes the keyboard seemed pretty dry, but I let it sit for about two hours, just to be sure.

The biggest problem with this entire experiment is that as I previously mentioned, I had five spare USB keyboards out in the garage. Now I have four. Instead of waiting for the keyboard to fully dry, I just went and got another keyboard from the garage and hooked it up. Still, I was curious what the outcome of the washed keyboard would be.

Two hours later, I connected the keyboard to my laptop. The end result was… a keyboard that constantly sends the dash key to the computer. (I wasn’t completely sure what it was doing until I opened Notepad.) Without the ability to add dots and spaces, it won’t even work to send Morse code.

Later that evening on Twitter someone suggested I should have let the keyboard dry for a full twelve hours before using it. By the time I read that tweet, the keyboard had been out of the dishwasher for two hours, and in our garbage can for four.

Verdict? Inconclusive. The next time I find myself eating a Wendy’s salad and I go a little crazy with the salad dressing, I’ll give the dishwasher trick another spin. I have four more spare keyboards to practice on.

Super Mario Bros. on the Commodore 64

In the world of computers and video games, “killer apps” are defined as programs or games so useful or desirable that it actually drives hardware sales. In other words, people want the application or game so bad that they will buy a computer or video game console just to play it. Two of the earliest examples of killer apps were VisiCalc, the first electronic spreadsheet that sent small business owners running to their nearest Apple computer dealership, and Space Invaders, a game that caused sales of the original Atari 2600 console to triple.

It’s hard to think of a bigger killer app in the 80s than Super Mario Bros., which came bundled with the Nintendo Entertainment System (NES). The home video game market had been circling the drain for a couple of years when an Italian plumber named Mario showed up and turned the gaming world upside-down.

By the time the NES arrived in North America, our family had already owned three home computers; around the time Nintendo-Mania really began to heat up, I had my own Commodore 64. While Nintendo cartridges cost $30-$40 each, computer games, thanks to disk-swappers and bulletin board systems, were free. For each game my Nintendo-owning friends purchased, I downloaded a hundred.

And yet, there was one game I didn’t have, and seemingly never would: Super Mario Bros. Each time I showed my computer system to a neighborhood kid or classmate, they always asked the same question. “You got Mario on this?” No matter how many disks I had or games I showed them, there was always one I would seemingly never have.

No. I didn’t have Mario.

I had things that were close, though. The most famous Super Mario Bros. clone for the Commodore 64 was the Great Giana Sisters, which was infamously modified by a cracking group named Abyss to resemble Super Mario Bros. It did, in the way those cheap knock-off sunglasses at the flea market resemble more expensive brands. It was Mario…ish. The main character kind of looked like Mario and you collected things that were round like coins, but… it wasn’t really Mario. Not really.

The good news was, everybody who owned an NES owned a copy of Super Mario Bros., so there were plenty of opportunities for me to play it… just not at my house. It bugged me so much that in 1991, I bought a used NES from a kid who was upgrading to a Super Nintendo just so I could play Super Mario Bros. (and its sequel, Super Mario Bros. 3) in my bedroom. I still owned my Commodore 64 and had acquired literally thousands of games by then, but next to it on my computer desk sat a used NES with a small collection of games.

It took almost 35 years, but finally, and out of the blue, the Commodore 64 has had its come-uppance.

Last week, a programmer named ZeroPaige announced they he was releasing a port of Super Mario Bros. for the Commodore 64. I’d heard rumors for years that this was in the works, but there are always things in the works — until they come out, I tend not to pay them much mind. Many of those projects never see the light of day, and some of the ones that do weren’t worth the wait.

This, however. Wow.

WOW.

It’s Super Mario Bros. For the Commodore 64. It’s really Super Mario Bros.!

There are few companies that protect their intellectual property as fiercely or aggressively as Nintedo (Star Wars would be a close second), and Mario’s parent company swooped in as quickly as a flying Goomba, issuing DCMA cease-and-desist (takedown) notices to every website they found hosting the ROM. Didn’t matter that it was free, didn’t matter that it was for a computer system that Super Mario Bros. was never sold for, didn’t matter that the game was 34 years old — when Nintendo’s lawyers speak, it’s a good idea to listen.

A few people have replied with snark. “What did you expect?” And, they have a point. Some have suggested using an original character instead of Nintendo’s mascot wouldn’t have attracted the big N’s attention. Then again, I say, those people missed the point. I, and lots of people who grew up using Commodore computers in the mid-80s, were led to believe that the Commodore 64 was simply incapable of running as complicated and advanced as Super Mario Bros.

You proved ’em wrong, ZeroPaige. You proved them all wrong.

Moving Files into Folders [PowerShell]

Lately I’ve been going back through some of my old DVDs and Blu-rays and re-ripping the ones where I missed commentary tracks or special features. The ultimate goal is to put each movie into its own folder (along with any associated files, like subtitle tracks or movie posters), but I tend to let them pile up for a while in one place which ends up in a big house cleaning mess when it’s time to organize them all.

I’ve been doing a lot of PowerShell scripting at work, and have started writing a few scripts for my home computer/network as well. This seemed like it would be a pretty helpful and easy script to write, which it was.

The first thing the script needs to do is scan a folder folder for all video files. I’m ripping most of my files to .mkv these days, but occasionally I still have some .mp4 and .avi files that sneak in there, so I created a for loop to search for all three.

Once the script has collected all the movie files, it creates a folder with that same name, and then moves all the files matching that name into the folder. For example, let’s say there are six files in my movie directory:

Movie One.mkv
Movie Two.mp4
Movie Two.jpg
Movie Three.avi
Movie Three.jpg
Movie Three.sub

The script scans the directory for all the movie files (Movie One.mkv, Movie Two.mp4, and Movie Three.avi). Then it creates three folders (Movie One, Movie Two, and Movie Three) and moves “Movie One.*” into the Movie One folder, etc. The most helpful part is that the script moves all the Movie Three files into the Movie Three folder.

As with all my scripts, there are probably shorter and possibly cleaner ways to achieve this same result, but this is what I came up with.

$extensions = "mkv","avi","mp4"
foreach ($extension in $extensions) {
$Folders = Get-ChildItem -Name *.$extension
foreach ($Folder in $Folders) {
$Folder = $Folder -replace ".$extension", ""
new-item $Folder -itemtype directory
Move-Item -Path .\$Folder*.??? -Destination .\$Folder
}
}

The script works like a champ!

Parting with Old Computers (It’s Dead, Jim)

Last weekend, I threw away a computer.

I threw away a computer that I’ve been hanging on to for at least a decade. And the funny thing is, I couldn’t even tell you why I kept it all this time.

From the outside, a Dell Dimension looks like a “modern” computer — and by modern I mean that if you passed by one sitting on a shelf, your first response probably wouldn’t be that it belonged in a museum. Instead, I’d expect you to say that you used to have a computer that looked just like it at work (or maybe still do). Even though the machine looked relatively modern sitting out in my garage, a closer inspection revealed its true age: hard to reach (and only two) USB ports, VGA video output, a CD-ROM drive (not DVD), and, perhaps most telling, a little silver sticker on the front declaring the computer “Windows XP Compatible.”

Ouch.

Back when I was building MAME arcade cabinets and dabbling in computer/networking projects, I picked up a few Dell Dimension and Optiplex computers through Craigslist. I like Dells because we’ve been using them at work for decades so I’m familiar with them, and my experience has been that they’re pretty solid for the price. At the time I bought them, these workstations seemed so modern and useful that I just couldn’t pass them up. Surely there was something I could do with them. I could stream movies with one, or build a retro gaming machine, or use one to play music on out in the garage, or… you know, something.

Whatever that ethereal “something” was never revealed itself. I might have used them once or twice over the years for testing purposes, but for the most part they’ve simply been collecting dust out in the garage for years and years. Whatever functionality those computers could have provided were replaced by Raspberry Pi computers — those mini $35 devices I talk about from time to time. A $35 Raspberry Pi can not only do all of those things I mentioned like streaming media and playing retro games, but frankly, they’ll outperform an old Dell while doing them. Windows machines and Raspberry Pis are so inherently different that it’s difficult to come up with a simple apples-to-apples speed comparison, but trust me, in any of those scenarios, a Raspberry Pi will run circles around a fifteen-year-old Dell computer — not to mention that the Pi is quieter, uses less power, has more storage, and has built in HDMI video and wireless networking.

I don’t like throwing things away, and I really hate throwing things away that work. A few years ago I listed one of the machines on Craigslist for $100. A guy offered me $50, and never showed up. About a month ago, I listed the same machine on Craigslist for $50. A guy offered me $20, and never showed up. My local Goodwill no longer accepts donated computers or monitors, so that was out. I asked my kids if either one wanted a computer older than they were and they both laughed at me. Eventually I set the machine next to the garage door and planned to recycle it at Best Buy. After two weeks of sitting on my garage floor, I said to hell with good intentions, and set the machine out by the curb on big trash day. Sorry, environment.

(The first person to say “I could have used that!” should keep in mind that I have another one. Be prepared to pick it up or pay shipping. Otherwise, to quote the Fonz, “sit on it.”)

There’a a fine line between throwing things away too quickly and hanging on to them far too long. Clearly, I err toward the latter. Someday I’ll master that sweet spot of getting rid of things after I’m done with them, but before all their value and usefulness has drained. In the meantime, if anyone’s interested in purchasing thousands of CDs and DVDs, holla.

The New House is Wired

If there’s a silver lining to a furlough, it’s that the combination of time off and no income makes it convenient to work on small home improvement projects. It’s a bad time to start an expensive project, but good for checking off all those little honey-do projects that take more time than money to complete — things like hanging pictures and setting up bookshelves.

One of the projects I’ve been wanting to tackle since purchasing our new home was running ethernet (network) cables down through the walls to all (or most) of the rooms. The people who originally planned to buy this home (but backed out for whatever reason) paid $750 for a “network package” that, as I inherited it, was unfinished. The package included wall jacks in four rooms (the master bedroom, the movie room, Mason’s bedroom, and the living room) with unterminated cables culminating in a utility closet. The problem this presented was two-fold: first, those four cables needed ends attached to them in the closet; and two, what I really needed was a network jack added to my office, and the one in the living room moved to where we had placed the television.

You might be asking why I don’t just use wireless, and we do. Morgan uses the WiFi for her Chromebook, Susan uses the WiFi for her laptop, Mason was using the WiFi for his computer, I was using the WiFi for all my computers and Raspberry Pis, and all of us were using the WiFi for all our phones and tablets and televisions. Our wireless router was straining to keep up with all the traffic, and when Mason would play online games while Susan and Morgan were watching Netflix and I was trying to download something, the whole network would come to a standstill.

The first thing I needed to do was terminate the cables that had already been run, and for that I called my old buddy Jeff. Jeff has been making network cables for half his life now, and is better at it than I’ll ever be. One day after he got off work, Jeff stopped by and the two of us made a trip to Home Depot to pick up supplies. I already had most of the required tools (like crimpers) so all we really needed was a small box of network ends. I picked up a cable tester too, just to make tracking down which cables went where easier (since none of them were labeled).

There’s an art to making network cables. Inside each cable are eight tiny wires. First, you have to strip off the outer shielding of the main cable. Then you have to arrange those eight tiny wires in the right order. Then you have to trim them, slide a connector over the end, and crimp it down without anything moving out of place. When I was good — and it’s been a while — I could probably do one in a minute or two. Five minutes had passed since Jeff had started working on the ends, and for a moment I began to wonder if he had lost his touch. I shouldn’t have. A moment later, he informed me that not just one, but all of the cables were done!

The next part of the project involved running around the house with the cable tester, since the builder/installer hadn’t labelled any of the wires or connections. It took us a few minutes walking around with the tester to figure out which cable went to which wall connection, but eventually we tracked them all down. Each time we found one, I made a label so I’d know in the future which cable went to which room. Part one was a complete success! Thanks, Jeff!

Part two of the project was a bit more tricky, because it involved running new cable across the attic and down through the walls. My buddy Tim volunteered to squirrel his way around our new attic, and so back to Home Depot it was. On Amazon you can buy 1,000′ of network cable for around $40 (which is why we all scoffed at that initial $750 charge), but we needed cable that day, and Home Depot had 100′ for $20. I also picked up a couple of wall terminators and face plates.

Tim only had a couple of hours to work on the project, so we split the work up over two days. For the network drop in the living room, we were able to move the existing one (installed over the fireplace) and reroute it back down behind the television. In the process, we accidentally drilled into the coax cable. Fortunately there was enough slack in the wall to pull a bit more down, and replacement ends were $1 at Home Depot. Getting a cable run to my office took a bit more work, but we were finally able to get it done. Thanks, Tim!

After Tim left, the only part left was to crimp an end on the new cable we ran, and attach the other ends to new wall jacks. I had just watched Jeff do four cables in five minutes — surely I could do one, right?

And I did (after three tries). The wall terminals were easy, but crimping new ends on… let’s just say it took me a couple of tries before it came back to me. I’ve made hundreds of network cables in my time, but I haven’t made any in at least ten years. Maybe fifteen.

Once everything was in place and pushed back into the wall, I tested everything one last time with the cable tester I bought before wiring everything up. I plugged my computer into the jack, heard the cable click, and saw the green light indicating a gigabit connection. Aw, yeah…

After a bit more wiring, all of my computers (my workstation, laptops, server, and Raspberry Pis), Mason’s computer, the living room television, the movie room television, and the master bedroom television are all now connected to the network over gigabit ethernet. Not only is that significantly faster than wireless, but removing all that traffic from the wireless router has sped it up, too.

The last part of this project that needs to be completed is to tuck, wrap, and clean up the wiring in the hall closet. I had planned on doing that on Monday, but then the furlough ended. You can always use one more day off!

All together I spent around $40 on this project (not including the cable tester). It was something I’ve been wanting to do since buying the house, and the furlough gave me enough time to finish it.

Thanks again to Jeff, Tim, and Home Depot!