Introduction: Making Art by Judging Reddit

About: Hi, we’re Dane & Nicole, two makers that create stuff, which we happily share with you!

Is the Raspberry Pi 4 powerful enough to judge Reddit?

This project is all about answering the important questions

Below a quick overview of the content.

  • Introduction and showcase video
  • Fetching the latest Reddit comment
  • Scoring the comment
  • From score to colour
  • Result

Supplies

  • Screen
  • Picture Frame
  • Raspberry Pi 4 Model B
  • Microsoft Azure
  • Pushshift.io

Step 1: Introduction and Showcase Video

We've all heard about Reddit, and how powerful the new Raspberry Pi is.

Let's combine them to answer the age old question, "Can a Pi judge Reddit?"

Step 2: Fetching the Latest Reddit Comment

To start of we're going to fetch the latest Reddit comment.

Pushshift.io is exactly what we need.

With a simple API call we can fetch the latest comment.

url = "https://api.pushshift.io/reddit/search"
querystring = {"sort":"desc","sort_type":"retrieved_on","limit":"1","lang":"eng"}
response = requests.request("GET", url, params=querystring)
d = json.loads(response.text)
comment = str(d['data'][0]['body'])

And that's it for this part, we're fetching the latest comment and can watch them roll in.

Step 3: Scoring the Comment

We now want to know how positive or negative our comment is.
To make our lives easier we're going to use an Azure API, the sentiment analyses.
This API will receive a text and rate it with a number between 0 and 1.
A super positive text will get a score close to 1 and a very negative close to 0.
Before we can use any of this AI magic we need to do some mandatory setup.
With that, our cognitive services is all ready and we can start using it.
Here's the base call:

url = "https://westeurope.api.cognitive.microsoft.com/text/analytics/v2.0/sentiment"
payload = '{"documents": [{"text":"' + comment + '", "language": "en", "id":"1"}]}'
headers = { 'ocp-apim-subscription-key': "
XXXX", 'content-type': "text/json; charset=utf-8", '
cache-control': "no-cache"}
response = requests.request("POST", url, data=payload.encode('utf-8'), headers=headers)
d = json.loads(response.text)
score = float(d['documents'][0]['score'])

Step 4: From Score to Colour

Almost there, we can start creating some beautiful art.
To limit the API calls we divide the screen in 16 sub screens, each scored comment is represented in a pixel block of 30x30 per sub screen.
To get the colour right we start with red or RGB(255, colour, colour).
We calculate the colour placeholder by multiplying the score with 255.
Meaning a 1 (positive) will create RGB(255, 255, 255), or white.
A negative comment, or 0 will give us red, and that's RGB(255, 0, 0).
The last part is assigning this colour to the pixel block of each sub screen and moving to the next one, completing the logic.
You can find the complete code in de 'Code' section.

Step 5: Result

And that's it! We've got a very stylish piece of dynamic art, made by judging Reddit comments.
It also answers our question, the new Pi can judge Reddit, just not sure how well...

Step 6: Code

Attachments