Posts Tagged ‘digg’

Digg Traffic Peaked Last Summer

Wednesday, March 25th, 2009
Posted in Web · Tags:

I was checking out Alexa to see current trends and I noticed that Digg’s traffic peaked last summer. To be honest, I haven’t even bothered going to Digg or using their feeds for almost 2 months now. They simply wanted to be the all encompassing news site, but has turned into mostly hyped up stories, idiotic images and major blogs reblogging blogs.

Digg Traffic Dropping

Digg Traffic Dropping

Even on Google Trends Digg is dropping off and falling. For some reason, Fark jumped up last summer and is now surpassing Digg in Google’s search queries. Has the wisdom of the crowd now turned into the combined idiocy of the immature?

Digg on Google Trends

Digg on Google Trends

You may already know MySpace peaked last summer and has been dropping, while Facebook and Twitter having been growing.

MySpace traffic dropping

MySpace traffic dropping

Digg vs. Slashdot

Tuesday, September 9th, 2008
Posted in Web · Tags: ,

Digg

  • You hear about news much sooner
  • News promoted by users rather than editors
  • RSS feeds for everything (even search)
  • RSS feeds that include the proper categories (Slashdot only includes the first category and omits the rest)
  • API (this allows you to filter things or mashup the news how you want)
  • Contact form (Slashdot doesn’t have one)

Slashdot

  • Technology Focused
  • Just news (no funny videos or pictures, although some people want to see those)
  • Better comment filtering and ratings

The typical comparisons I’ve read state that Digg has more childish comments and that Slashdot’s comments are usually better. Slashdot does have several users that seem to be a expert in a given field by reading their comments, so that case maybe slightly true. However ou can find just as many poor comments on Slashdot as you do on Digg, but you probably won’t see much ASCII art on Slashdot get rated very high. And even though Slashdot’s Firehose gives users the chance to promote other user submitted stories they still must be approved by the editors. This may lead to some staleness in the site, as I got tired in seeing the same old discussions over and over on Slashdot. Any time the RIAA was mentioned the same old arguments came up and the same with Microsoft or Vista. Slashdot also doesn’t cover web design or web development very well either, if it ever comes up it’s because Google changed or released something. Slashdot seems to be more hardware, application development and operating system focused. Personally, I gave up on Slashdot well over a year ago, because I couldn’t filter the feeds good enough, the lack of web dev/design news and the repetitious arguments in the comments.

Yahoo Buzz and DZone

Friday, August 22nd, 2008
Posted in Web · Tags: , ,

There are so many web development blogs, tips and tricks coming out every week it’s hard to get around to it all. I use Digg’s API, feeds from CSS Beauty, CSS Vault and many others going through Yahoo! Pipes and then into Google Reader. This helps me get a lot of stuff, but at the same time filter much of the stuff I don’t want out. But I still miss a few good tidbits of information out there.

Yahoo! Buzz is another story promotion site along the same vein as Digg. Yahoo promises a API soon, but their feeds already send the original story link, category and thumbnail in it. They need to add more categories, however I think the site is too general already. Its great for the person that just wants quick general news in a wide range of interests but more categories or a tagging system is needed to filter out much of the same news all around the web.

Dzone is a developer’s focused Digg site. It’s a decent site, despite it doesn’t have enough users or enough high quality data coming in. They have a huge amount of categories which can help you filter out what you want or don’t want. Personally I’d like it if they added the original story link’s to their feeds.

You might think would decrease the number of people that go to the site, but it would increase the number of people that use the site’s feeds. In return the site might become popular enough to get a higher ranking on Google; Thus, advertising revenue would increase, more people would submit stories to get better SEO, more people would login to vote stories up or down to prevent spam and better control the quality of frontpage and to make comments. But of course this is all speculation, but maybe they should just take that chance to see what happens.

Since using Digg’s API, I’ve found myself going to Digg only when there is a good story that I want to read the comments on, when I get really bored and want to see stories in the categories I’m not using the API for. Digg still gets plenty of traffic, despite the fact their API has been released for well over year. Dzone has potential to pick up where Digg left off but for now I’ll think I’ll pass it up.

Digg Clones

Saturday, February 2nd, 2008
Posted in Web · Tags:

The following are some open source Digg clones I’ve found. I only knew of two before, but the list has now doubled.

  • Pligg – The most popular Digg clone. Pligg is based on code written for Meneame by Ricardo Galli. I’ve noticed the the Pligg website, license and source links no longer mention Meneame or Ricardo Galli, which is unfortunate. The code has undergone quite a overhaul, but chances Pligg would of never existed in the first place without Ricardo Galli releasing the code for Meneame. However, I’m sure someone else would of written a open source Digg clone eventually.
  • Drigg – A module for Drupal that can make your site work like Digg
  • PHPDug – I haven’t tried this one, but its interesting that someone else made a Digg Clone
  • diggClone – This project seems abandoned

SimplePie and Digg’s RSS Feeds

Thursday, July 26th, 2007
Posted in Web Development · Tags: , ,

Been playing with SimplePie some more and here is some code for dealing with Digg’s RSS feed. I included some stuff in comments that just shows how their namespaces look.


/*
<digg:diggCount>95</digg:diggCount>
<digg:submitter>
<digg:username>kilooneniner</digg:username>
<digg:userimage>http://digg.com/userimages/k/i/l/kilooneniner/medium9515.jpg</digg:userimage>
</digg:submitter>
<digg:category>Political News</digg:category>
<digg:commentCount>9</digg:commentCount>
*/
//DIGG NAMESPACES
$digg_count = $item->get_item_tags('http://digg.com/docs/diggrss/', 'diggCount');
$digg_comments = $item->get_item_tags('http://digg.com/docs/diggrss/', 'commentCount');
$digg_category = $item->get_item_tags('http://digg.com/docs/diggrss/', 'category');
$digg_submitter = $item->get_item_tags('http://digg.com/docs/diggrss/', 'submitter');
$digg_username = $digg_submitter[0]['child']['http://digg.com/docs/diggrss/']['username'];
$digg_userimage = $digg_submitter[0]['child']['http://digg.com/docs/diggrss/']['userimage'];
if (!empty($digg_count[0]['data']))
$data .= '<br /><span class="minor">' . $digg_count[0]['data'] . ' diggs &middot; ' . $digg_comments[0]['data'] . ' comments &middot; ' . $digg_category[0]['data'] . ' &middot; ' . $digg_username[0]['data'] . ' &middot; ' . $digg_userimage[0]['data'] . '</span>';

Using something like the following helps traverse the arrays to figure out how to get the data.

print_r($digg_submitter);//will show array to parse to get stuff