To see what your friends (and enemies?) wrote about you and your Demo project, log on to the Redis server on cpsc and select instance #49. Then look for the key that starts with “feedback:” and has your first name. This is a list, and so the lrange command applies.
All in one go:
cpsc$ redis-cli 127.0.0.1:6379> auth SuperSecretClassPassword OK 127.0.0.1:6379> select 49 OK 127.0.0.1:6379[49]> keys feedback:* 1) "feedback:ethan" 2) "feedback:dimitrie" 3) "feedback:caleb-with-a-c" . . and many others . . 127.0.0.1:6379[49]> lrange feedback:yourName 0 -1 1) "Your site totally sucked!" 2) "What a shameless rip-off of Wikipedia!" 3) "Consider Art History as a major!" . . more feedback . .
As you can see, there’s nothing stopping you from viewing (or even editing) other students’ feedback as well. This is another place that the “don’t be a jerk” rule comes into play.