Rick-rolling people looking for free WiFi using an inexpensive ESP8266-chip

(If you are here because you were tricked, you can throw some words my way on rickroll@kaspergrubbe.com or by sending a tweet to @kaspergrubbe)

I found a project on Github named mobile-rr, by a user called idolpx. His project includes a little wifi-chip that includes a piezo buzzer, and when people connect they are promised free wifi, but instead of getting access to the internet, they are shown a video of Rick Astley singing “Never gonna give you up”.

This is a so called Rickrolling prank, and if you have been living under a rock the past decade, the prank involves bait-and-switch where a link on a webpage promises to bring the user to some unrelated material, and bam! they are now listening to the tunes of Rick Astley and they can consider themselves rickrolled.

The original project only beeped when a person was tricked, and if you wanted to know the score, you had to connect to the device, and go to the right webpage. I decided to improve the project by adding a screen:

mobile-rr.png

You can find my code here: https://github.com/kaspergrubbe/mobile-rr, and here you can see a list of components (unaffiliated links):

 
26
Kudos
 
26
Kudos

Now read this

Giving your servers fun pet names with Terraform

You are probably aware that that Terraform have a random number module that works like this: resource "random_integer" "server-id" { min = 100 max = 999 } However, this isn’t very helpful as is, because it would regenerate new numbers... Continue →