📖 Read: Fake news writer: If people are stupid enough to believe this stuff… (Naked Security)

“…then maybe they deserve this drivel, says a Macedonian copy-paste/turn-it-into-clickbait-bile writer who says it’s all about the money.”

Naked Security

… it’s all about the clicks. It’s all about the ad revenue. It doesn’t matter how preposterous the content is: what matters is that somebody – or many somebodies – open the articles and generate ad impressions.

đź“– Read: The kid from "David After Dentist" is headed to college (Vox)

“Here’s how going viral changed his life.”

Vox

The type of internet fame that David experienced — mostly supportive, humorous, and even sweet — is emblematic of the 2000s. This was the cusp of the social media era, when people regularly posted their earnest feelings on Facebook and being in someone’s Top Eight on MySpace still connoted close friendship. But the online conversation has soured since then, and blowback can be crueler. Now, in the age of doxing, trolls, and brutal Twitter takedowns, is it possible to escape viral fame so unscathed?

That cool little “Coder for Raspberry Pi” project from Google which I linked to earlier doesn’t just run on Raspberry Pi. You can run it on any old Linux PC (Mac works too, but the instructions are slightly different).

I set it up in less than 2 minutes using these commands (note that I’m running Debian Sid):

sudo useradd -M pi
sudo apt-get install redis-server
cd ~/projects
git clone https://github.com/googlecreativelab/coder.git
cd coder/coder-base
npm install
npm start

Node.js is also a requirement, so if you don’t have that, you’ll need to install that at step 2 as well.

Once everything is up and running, point your browser at https://localhost:8081/. You’ll need to specify a password the first time you run Coder, after which you’ll be able to try the environment out. It’s pretty neat, and the sample clone of Asteroids is quite addictive!