Showing posts with label Facebook. Show all posts
Showing posts with label Facebook. Show all posts

Thursday, February 28, 2013

Facebook Friends

I listed a story last week on NPR concerning Facebook; more specifically the concept of ""Facebook Fatigue". The idea is that people have so many "friends" on Facebook that their newsfeed contains more information than can be reasonably processed. People spend so much time that they finally realize the only way to cope is just to leave Facebook, either temporarily or permanently. This story on NPR was about someone taking a different approach. Instead of deleting herself, the author deleted all of her friends. Thereby having zero newsfeed entries to watch.

Now, I fail to see the point in this. Deleting one's account and deleting all of one's friends has in the end the exact same effect. And it's really, really dumb. It's akin to someone who realizes, 'Woah, I eat too much food. What should I do? I know, I'll just eat NOTHING from now on." Anyone health expert (and anyone who isn't a complete moron) will tell you that literally starving yourself isn't a good idea.

The thing is, deleting everyone or just running away from Facebook is the lazy route. It's saying that yeah I have a problem, but I don't want to take the time to fix it so I'm just going to run away. An admission that one doesn't have the willpower to use this tool without abusing it.

The real fix is to just start using Facebook correctly. That starts by looking up the definition of friend. Merriam-Webster gives several definitions, such as "one attached to another by affection or esteem". My own definition of friend can be shown in the form of two questions:

  1. If John was walking down the street and saw me without me seeing him, would John come over and say hi.
  2. If I saw John walking down the street and saw him without him seeing me, would I come over and say hi. (Be honest!)

Now if the answer to both those questions isn't yes, then John isn't really my friend. He might be an acquaintance, or a classmate, or a co-worker. He's not a friend.

You can set your own definition of friend, the above is just mine. For less friends, go stricter; for more, maybe your definition is a little bit more lax. But when you come up with that definition, you stick with it. The solution to Facebook fatigue if you want to do it right, is to spend some time and go through your friends list. Go through person by person and decide if said person is really a friend by your definition.

Start with the easy stuff, delete anyone that you've never met. Maybe you added them to boost your numbers or because they added you. Either way, they certainly aren't really a friend. Next, start deleting the people you haven't seen in years. Your high school classmates, co-workers at a place you used to work, etc. See where that gets you in numbers. Finally start looking through people that you know currently. Maybe classmates, maybe co-workers. Just because you know someone vaguely doesn't make them a close friend.

One thing that will make this more rewarding is by keeping track of your numbers. Check how many you have before you start, and then check after you are finished. It'll probably feel pretty good looking at that second number and realizing how much unnecessary baggage you no longer have to see every day in your newsfeed. You could even set yourself a goal, or do this over time. Say you have 600 friends. Try to get down to 400, just remove the least connected people. Then wait a while and get used to it. Maybe you'll be okay right there, or maybe you want to go further and try to get to 200. (Even 200 is rather huge, how many people have 200 "real" friends?) Still, take your time. Eventually, you should try to get under 50. Anything under 50 means your Facebook friends list is approaching parity with your real life friends. If you can get there, you'll find yourself with no more Facebook fatigue. (Without having to give up Facebook entirely).



Of course as a side note, you can always change the formula. If you see one person that might not really be a friend but who is maybe useful for some other reason, keep 'em. Nothing is set in stone. Making your life better is the make goal, so if you have to bend the process, bend it.

Saturday, September 24, 2011

Don't Like The News Facebook Newsfeed?



Facebook launched some major changes to it’s Newsfeed in the past week, in preparation for their upcoming developers conference, and as usual, many people are frustrated. Normally I’m not one of them. I try to embrace the new changes because there’s not much that can be done to change them. This time however, the change really frustrates me. I don’t like Facebook’s algorithms deciding which of my friends are important and which aren’t, I want to see the entire Newsfeed with all status updates.

Read my full article at TekGoblin.com.
 

Tuesday, August 30, 2011

Fixing Facebook With Stylish

Facebook is a great website, and after Google, my main destination on the web. But there are some annoyances. People You May Know, as well as Sponsored Ads, for example. I've been looking for a way to fix that, and the only working method I'd found uses Greasemonkey to kill the entire right column. This removes Upcoming events as well, and leaves a large white space, which is almost as annoying as the Ads. What I wanted to do was remove just the People You May Know box, and the Ads box, and using the power of Stylish, I have done it.

Stylish is a Firefox addon that allows me to run custom CSS on top of a website's own. This lets me make any changes I desire to the look of the site. Hiding an element in CSS is simple. You set it's "display" to "none". The problem lies in finding what an element on a page is called, so that you can call it out in your code.

Fear not though, for we have the Page Source view on Firefox. And since the title rows of the sections we want to remove are plain text, I can search for that text in the source page, which gets me close. Facebook unfortunately uses minimized code, meaning that instead of single lines, spaced nicely for ease of reading, it's compressed. This allows for a faster page load, but a slower read. Which is also a benefit to them, since a site like Facebook doesn't WANT us messing around with their code. Understandable, but I'm out to please myself, not them.

So, looking around, I finally found what I'm looking for. The class of the container holding the unwanted items is "ego_column". So I pop up Stylish, and set up my document. First I place in a beginning line, which just tells Firefox what type of document this is.

@namespace url(http://www.w3.org/1999/xhtml);

I then place in my container, which specifies that the code only affects Facebook.com.

@namespace url(http://www.w3.org/1999/xhtml);
@-moz-document domain("facebook.com") {

}

Inside that then, I write my code.

@namespace url(http://www.w3.org/1999/xhtml);
@-moz-document domain("facebook.com") {

   .ego_column {display:none !important;}

}

The result is immediate. Here is a screenshot from before:



So, yay for Stylish!
 

Sunday, May 1, 2011

Don't Believe Everything You Read

Abraham Lincoln was a wise man. He once said: "The trouble with quotes on the internet is that you can never know if they are genuine" -Abraham Lincoln, 1863.

Or so a friend of mine posted as her Facebook status today a a joke. The funny part is, she fooled someone. Below is a screen cap of the conversation, Purple is my friend, Blue is me, the rest are friends of her's.