In Fall 2018, my grad school life began. I was accepted to Penn State with teaching assistantship offer for my first two semesters. I had experience as a TA from Sabanci University (bachelor’s) and I loved helping students. TAship would cover my tuition and my stipend, it was a wonderful opportunity. I became a TA for CMPSC461 Programming Language Concepts in Fall 2018.
Those two semesters have passed and I am going to admit that it was not always a breeze. I gave lectures frequently to a class of ~150 students. Tried to be available outside of my office hours for every kind of help students want. I have helped students’ questions in my office hours, prepared homework, held additional review recitations before midterms, and graded students’ papers.
One thing I had no idea before my time at Penn State is Piazza. You probably know what Piazza is, but simply put:
Piazza is a Q&A website where students and instructors share questions, answers, and general notes for classes.
It definitely helped me as a TA. Almost half of the questions we get from students are similar in one way or the other and being able to redirect students to previous questions eliminates copy pasting same answers to several students and creating an isolated communication. Having questions and answers visible to everyone encourages students to participate in the discussion.
Another advantage of Piazza is the anonymity. You can allow two levels of anonymity in a Piazza class. Anonymous to Classmates
and Anonymous to everyone
. Anonymity increases student participation. Students ask questions without hesitation and try to write answers on their own without being scared of getting it wrong. And contrary to popular rumor around school, Anonymous to everyone
really makes posts anonymous even for instructors.
But with great anonymity comes uncivil and/or troll posts. Whenever the class I was an instructor for gets an inappropriate anonymous post I wonder who wrote it.
Another feature of Piazza is that instructors can see the participation statistics of students. These statistics are extremely detailed real-time information for students. They are probably extremely useful for instructors who grade participation. For example, the statistics page for CMPSC461 Spring 2019 looks like the following:
This table made me wonder, Is it possible to find the anonymous owner of the posts using the statistics? The answer is YES.
So what keeps an instructor from keeping track of user statistics and posts data to deanonymize anonymous users? Technically, if we have the user statistics data before and after every new post on Piazza (new question, followup discussion, answer), there would be only a single difference between the before and after statistics: the contributions count for the user who made the anonymous post.
User statistics data that Piazza has, is actually more detailed than the table above shows. Piazza does not have an official API but searching on GitHub I encountered hfaran’s Piazza API.
I created a Piazza instance by following the README in the repository and using get_statistics()
on the instance, Piazza API returns a list of user dict1 in the following structure:
{
"user_id": "jw14z1uv4ik2jo",
"name": "User 1",
"email": "eralp@example.com",
"lti_ids": [],
"days": 2,
"posts": 52,
"asks": 11,
"answers": 16,
"views": 12
}
views
, days
, lti_ids
, and user_id
are not required to deanonymize posts, so we can get rid of those fields. Everything we need is in the remaining dict.
I created a CLI application called Unravel as a proof of concept. Check out the README to see how to execute or check out the source code.
It can successfully deanonymize users for all kinds of posts a student can make on Piazza.
Unravel uses TinyDB2 for storing each statistics records retrieved from Piazza.
It compares user statistics every ~15 seconds, if a user creates an anonymous post while Unravel is tracking the class, it will find a difference between two user statistics. Then it retrieves the latest posts data and searches for the added/modified post by comparing the latest posts data with the one retrieved before the user made a post. After it finds the post that has been added/modified, it displays the changes to the user.
Check out the demo video in a class with 3 students. Accounts in top left, bottom left, and bottom right windows post anonymous questions, answers, followups and followup answers. You can see the findings of Unravel in the terminal.