RSS

The New Digg And Why It Sucks

1 Comment | This entry was posted on Aug 27 2010

This morning, those of you who have had the blessing of not having access to the new Digg, are no punished. No, you didn’t do something wrong, Digg did. Let me note a few reasons below.

Note: This list has been going around Digg comments for a few days, with people adding more and more each time (It’s not very hard to find a new problem with the new Digg)

  • The Upcoming section is gone, requiring “following” of sites and users to see unpromoted content.
  • Mainstream media outlets and power users have been given even more power over the front page than regular users, which is the opposite of what needed to happen.
  • The default homepage is now this “My News” garbage, and cannot be changed.
  • All your favorites have been deleted.
  • Comments from you and your friends automatically pre-empt the main discussion.
  • The yellow/green highlighting of your and your friends’ comments is gone.
  • You can’t view all comments at once. If there are hundreds, you can’t view all of them, period.
  • The comment box is three lines high, not resizable, and types out light blue text on white.
  • Links to comments point the wrong way, and use longer, more confusing URLs.
  • Editing a comment with a truncated URL breaks the URL.
  • Timestamps have been removed from the main page and all search results.
  • The bury button is gone.
  • The report button is gone.
  • Historical submissions, like the Obama victory thread, the original iPhone announcement, the HD-DVD key scandal, etc., have had their digg counts reset and their comment sections mangled.
  • The color scheme has changed, junking the site’s characteristic blue/yellow/green navigation bar for almost pure white.
  • The iconic thumbs up/down have been replaced with generic arrows.
  • Browsing a user’s comment history, including your own, is frustratingly hard.
  • All usernames are now lower-case (except for mine, and only because I contacted support about it).
  • The RSS feeds no longer work.
  • All third-party tools that used the old Digg API are now broken.

Now to add a problem of my own; today when I went to Digg, I pressed “Load More” to presumably load more stories. Nope. Error. Ok, that’s fine, new site and all, sure there are a few bugs. Next, try to make a comment on a Digg post. Nope. Error. Ok, that’s silly. The message pops up to file a bug report this time; why yes Digg, I love filing bug reports. I fill out all of the forums (Along with a P.S. Bring back the old Digg, of course), and click send. Nope. Error: “You cannot send more than 50 messages per hour. Please try again later.”. Now Digg, I have never sent a message on your site, nor filed a bug report, please tell me how I’ve been sending too many messages? This led to this blog post. If you can’t get anything working, nor the community satisfied with the new Digg, switch back to the old Digg. (I would say until you do, but lets face it, no one wants that)

Discuss in the comments, on this site, they actually work.

Sample Code: UITabBar w/ UINavigationController – Code

3 Comments | This entry was posted on Jun 09 2010

Made this a while ago, figured i’d upload it for all to use. It provides the basic template for a UITabBarController with 4 tabs, and a UINavigationController and UITableViewController in each tab. Works nice, simple to use.
Read more »

Tutorial: UIPickerView Basics

9 Comments | This entry was posted on Jun 09 2010

In this short tutorial I will be showing you how to create a very basic, UIPickerView. It will teach you how to include one in your project, change the text/options inside the picker, and declare an action depending on which option is selected.
Read more »

Tutorial: Moving An Object Into View

3 Comments | This entry was posted on Jun 09 2010

In this short tutorial I will be showing you how to ‘scroll’ a UITextField into view when editing begins, so it is not hidden behind the keyboard. First off I will guess that you have already implemented a UITextField into your application, and all you are looking to know how to do is scroll it upwards.
Read more »

Sample Code: Custom Gradient UITableViewCells

4 Comments | This entry was posted on Jun 09 2010

Considering I haven’t made a post on here in forever, I figured I’d start to post up some sample code. In my opinion, you should always subclass UITableViewCell’s when working with large amounts of data. The full cell will draw at one time, causing faster load times! Anyways, here’s the code, it should be pretty simple to understand; all you need to do is change the colouring, maybe some positioning if you like your cells larger.
Read more »