UX, UI, and DX are all a part of experience engineering.
‘Did you remember the Trash?’… oh no, not again.

Dammit, why am I unable to get this under control!” I thought to myself as I ran, dragging two weeks worth of hot, stinking garbage toward the collection truck that was just about to drive past my house again.

It’s late August in Virginia in 2017, which isn’t great for storing garbage outside your house. My wife is newly pregnant and understandably losing her patience with me.

Hot and annoyed at myself, I reach for my pocket (and remember I’m still in my underpants), suddenly it dawns on me:

“Have you seen my phone?”

No, stop asking me! Use your beeper app,” said my wife.

But the beeper app didn’t work anymore.

I was running around the house for ten minutes, up and downstairs, no dice. I finally cave in and use ‘Find My Phone’ via the iCloud portal.

My phone was under the mower, in the shed.

“I need to solve these problems, once and for all,” I thought to myself. “I need something, that won’t let me forget to take out the trash AND will find my phone.”


image of an LCD screen with the words 'Take out the fucking trash' written on it
The sense of urgency was high.

The result: TrashBox

See trashbox in youtube in all of its poorly woodworked glory.


Trashbox lit up and sitting on a speaker in a living-room
Online, sitting underneath our TV
A top-down view of trashbox, a red and green button can be seen with an LCD screen
What it looks like from the top
Trashbox with a lifted up lid, looking inside. Red wires connect all the components
A peek inside

Starting at the beginning with ‘gobeepme.’

During the Christmas period of 2015, The urge to learn golang became strong. After reading ‘The Go Programming Language’, I wanted to build something to help cement my newly acquired knowledge.

I wanted to build an experience that was missing from the market; I wanted to trigger the real ‘Find My Phone’ feature built into iPhones via one of the Alexa nodes laying around my home.

I wanted to say “Alexa, where is Dave’s Phone?” and through the magic of technology, my phone would beep.

I would then be able to hunt it down.

A quick Q&A to help set some context

Why not just call your phone?
My phone is always on silent. Always.
Why not use an existing app?
None of them use ‘Find my Phone’; they call your phone.
Set a calendar reminder, set like - ten of them?
My phone is set to do-not-disturb at times I would need to remember; I ignore the constant buzzing.
Why not just use an existing library?
At the time, there wasn’t one. There still isn’t one.
Why are there so few options for libraries that do this?
The API is undocumented. Apple have not made it available to developers. It is public, however.

Reverse engineering the ‘Find My iPhone’ API

A combination of Wireshark, Charles Proxy, and Chrome Developer Tools made it pretty simple to determine what was going on with ‘Find My iPhone’ under the covers.

With the hard part (figuring out what APIs to call) complete, I wrote gobeepme.

It’s a multi-interface application. It runs as a CLI, interactively or via automation. It also runs as a RESTful API as a headless service. It comes with a web UI as well (if you choose to build it).

Try it out right now (as long as you have go installed). Open your terminal and run:

$ git clone https://github.com/daveshanley/gobeepme.git

Once cloned, build and run gobeepme.

$ go build gobeepme.go
$ ./gobeepme

There are more details available in the README.

As I mentioned, this was my first go app. Please excuse the construction of the code.

My wife and I used gobeepme regularly for a couple of years. My wife used it as much as I did with her phone until I forgot to renew SSL certs.

After our Alexa nodes stopped responding one day, I figured out that the SSL certs I was using had expired. We had a one-year-old taking up all our time, and my beeper code was a distant memory.

Back to the physical plane of interactivity

My new ’trash’ problem and recently re-emerged ’lost phone’ problem was now causing me constant, avoidable grief. I wanted to solve both problems with a single solution.

The experience requirements

  1. Must annoy me until forced into being reminded to take out the trash.
  2. Must annoy my wife, so she kicks my ass into taking out the trash.
  3. It will have a smaller button to allow us to select my phone or my wife’s phone.
  4. Must have a screen to show which phone is currently selected.
  5. Will have another more prominent button that will call the gobeepme service with the selected phone.
  6. Will have tiny control button at the back to toggle different modes.
  7. Makes fun noises for button feedback.
  8. It makes a terrible noise when it’s trash time.
  9. Must look like a prop from a cheap sci-fi show1.
  10. Must still (somehow) blend in with our home decoration.

Making it annoying

What is more annoying than super bright flashing red LEDs in your face?

animation of trash box lights, lighting up and flashing 'trash'
Is it annoying enough yet?

The familiar Original Star Trek whooping siren plays, and the front of the trashbox lights up and blinks, endlessly, on Tuesday night at 9 pm.

The only way to turn it off is to press the red control button at the back of the box.2

It means we physically have to get up and move to disable this most irritating device.


Grabbing all the electronics to make it work

I grabbed a Massive Arcade Button, Red push button and a Green arcade button for the controls.

I headed over to Phidgets to grab a Single Board Computer, VINT Hub, two LED Controllers and an LCD Screen for all the controllers.

I used Home Depot for the wood for the actual box, and I already had the tools.

Construction was messy. I also had no real experience (at the time) making anything with wood and nails, so the actual wooden box is pretty shoddy.

Red and black wires and LED lights
Creating the LED wiring
Soldering the components together, wires and controls
Soldering wires, connectors and controllers
LEDs inserted into a black wooden box
Putting LEDs into the case
Control buttons on a table, plank of wood with holes cut out in it
Building the box lid
Red lit up circular button
The control button

The code

Phidgets has some great official drivers. There is no official support for golang3, however.

The lack of golang support wasn’t going to be an issue, Java support is solid.

It just so happens that I also had another problem to solve, requiring Java

Transport needs a Java Version

Transport is an open-source, multi-language application event bus and micro-platform technology used in multiple VMware products. In both front-end and back-end systems.

At the time I was building trashbox, Transport only existed as TypeScript. We needed a Java version so that Spring applications could talk to UIs easily.

Trashbox was an opportunity.

" If I can prove that the bus design works on a single board computer controlling LCDs and LEDs, then I know it can power anything."

I added in some existing prototype code (that is now opensource) to a new project that would allow me to use the bus to carry commands from button events and LED events.

Running the code on the microcontroller helped me understand how to improve the performance of the bus. The single-threaded CPU slows things down.

The same code running Trashbox also powers the vSphere Client and VMware Cloud Console and others.

The final (and useless outside trashbox) code is here.

Watch a quick video of what Transport is.

The end of the story

Trashbox went out of service in 2020 after a few things happened:

  • My wife kept unplugging it, and I would not notice until I missed the trash repeatedly.
  • We moved, and our new home has no-where for it to go, without it looking awful.
  • Trash pickup occurs at the end of the day now; there is no morning rush.

Trashbox also did its job. We now both remember the trash, we don’t need it.

What about the ‘Find My Phone feature? Don’t you still use that?

No, Apple released the ‘Find My’ app on macOS X. I have this open all the time on my machine(s). It’s easy to open and ping a phone or AirTag quickly.


We no longer need Trashbox, but I hope this story inspires you to build your own ‘single experience for a multi-headed problem’ box someday.


  1. The holly hop drive was supposed to be a faster than light, instant transport device. It was so simple it only had two buttons on it, stop and go. It did not work; it was a dimensional drive. ↩︎

  2. You can also rip the power cable out of the wall, which is my wife’s preferred method. ↩︎

  3. I did find this attractive golang opensource binding for the C library called gophidgets; however, this was not available in 2017. ↩︎