4 Matching Annotations
  1. Last 7 days
  2. social-media-ethics-automation.github.io social-media-ethics-automation.github.io
    1. Brian Whitaker. Oman's Sultan Qaboos: a classy despot. The Guardian, March 2011. URL: https://www.theguardian.com/commentisfree/2011/mar/04/oman-sultan-qaboos-despot (visited on 2023-11-17).

      I found myself interested in the image of a ruler posing to be benevolent and cultured while really being ignorant and dismissive towards their people. Specifically the detail of how difficult it is for the people of Oman to assemble and to speak out makes me understand the connection between the Sultan and social media bots. If social media congregation is the only reasonable way for people to speak out against a neglectful government, it makes the ethical question of automated bots a bit more complicated.

    1. # Go through the tweets to see which ones have curse words for mention in mentions.data: # check if the tweet has a curse word if(predict(mention.text))[0] == 1): # if it did have a curse word, put it in the cursing mentions list cursing_mentions.append(mention)

      I remember learning about some of this stuff in AP Comp Sci Principles. When we were hearing about automated bots that go through social media and take specific actions, and then further provided the steps to run code to make that happen, I started trying to put the steps of the code together in my mind. I figure you need to iterate through a list to look for particular phrases, which you'd set within another list, along with a for loop to detect your desired word in social media. When I start to get lost is when I think about scaling that to be bigger.

    1. Bots# Bots are computer programs that act through a social media account. We will talk about them more in the next (Chapter 3). There are also various applications that are made to help users interact with social media. For example, there are social media manager programs that help people schedule posts and let multiple people use the same account (particularly useful if you are something like a news organization).

      The kinds of bots we've used so far seem pretty simple. It's telling a computer to send a post to social media. But nowadays, we have an overwhelming amount of bots, to the point that a decent chunk of the content I see online is reposted stuff on a clear bot page that I just have to scroll through. Even though we as a class are a bot farm, it's obviously way less consequential. It gets really crazy when you think about the creators who have their content stolen, and reposted across dozens of different burner accounts, just to amass a following on at least one. I think nowadays it's gone too far.

    1. Actions are judged on the sum total of their consequences (utility calculus) The ends justify the means. Utilitarianism: “It is the greatest happiness of the greatest number that is the measure of right and wrong.” That is, What is moral is to do what makes the most people the most happy.

      I'd say of all of the different frameworks provided, Consequentialism has the most direct application and parallels with many of the ethical questions and debates we often have in regards to social media. Often the game that gets played when it comes to social media is the data and the numbers, and we see developers measure value, success, and popularity largely through the numbers they get fed. And just as one could argue this mindset is flawed, you could say the same flaws exist in Consequentialism. As much at looking at final outcomes can be a rational way to make decisions, it ultimately strips some of the humanity and nuance away from said decisions in the short term. I found the parallels between these two mindsets very interesting.