200 OK is a standard successful HTTP server response. It means that the client’s request (e.g., from a browser) was successfully processed, and the server is delivering the requested data.
The user receives content without errors, and the page or application functions properly. If Code 200 is accompanied by data, the browser or program processes and displays it to the user.
GET / HTTP/1.1 Host: rss2.com Accept: */* User-Agent: Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; ClaudeBot/1.0; [email protected])
<!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Transitional//EN" "http://www.w3.org/TR/xhtml1/DTD/xhtml1-transitional.dtd"> <html xmlns="http://www.w3.org/1999/xhtml"> <head profile="http://gmpg.org/xfn/11"> <meta http-equiv="Content-Type" content="text/html; charset=utf-8" /> <title>RSS2.com - All the Best RSS Feeds For Your Guilt-Free Reading and Enjoyment</title> <link rel="apple-touch-icon" sizes="57x57" href="/apple-icon-57x57.png"> <link rel="apple-touch-icon" sizes="60x60" href="/apple-icon-60x60.png"> <link rel="apple-touch-icon" sizes="72x72" href="/apple-icon-72x72.png"> <link rel="apple-touch-icon" sizes="76x76" href="/apple-icon-76x76.png"> <link rel="apple-touch-icon" sizes="114x114" href="/apple-icon-114x114.png"> <link rel="apple-touch-icon" sizes="120x120" href="/apple-icon-120x120.png"> <link rel="apple-touch-icon" sizes="144x144" href="/apple-icon-144x144.png"> <link rel="apple-touch-icon" sizes="152x152" href="/apple-icon-152x152.png"> <link rel="apple-touch-icon" sizes="180x180" href="/apple-icon-180x180.png"> <link rel="icon" type="image/png" sizes="192x192" href="/android-icon-192x192.png"> <link rel="icon" type="image/png" sizes="32x32" href="/favicon-32x32.png"> <link rel="icon" type="image/png" sizes="96x96" href="/favicon-96x96.png"> <link rel="icon" type="image/png" sizes="16x16" href="/favicon-16x16.png"> <link rel="manifest" href="/manifest.json"> <meta name="msapplication-TileColor" content="#ffffff"> <meta name="msapplication-TileImage" content="/ms-icon-144x144.png"> <meta name="theme-color" content="#ffffff"> <meta name="keywords" content="iphone feed reader, ipad feed reader, mobile rss reader, rss2, rss2.0, aggregator, feed reader, explore feeds, rss feeds, news, blogs" /> <meta name="description" content="RSS2.com - All the Best RSS Feeds For Your Guilt-Free Reading and Enjoyment" /> <link rel="alternate" type="application/rss+xml" title="RSS feed for latest entries from RSS2.com" href="http://rss2.com/feed/all" /> <script type='text/javascript'> /* <![CDATA[ */ /** * Javascript functions for RSS2.com * * $Id: rss2_functions.js 7007 2010-03-05 19:04:39Z gserafini $ */ /*global escape*/ /*global unescape*/ // Prototype/script.aculo.us globals /*global $$*/ /*global Ajax*/ /*global Effect*/ /*global Event*/ // overlibmws globals /*global overlib*/ /*global cClick*/ /*global STICKY*/ /*global CAPTION*/ /*global CAPTIONPADDING*/ /*global TEXTPADDING*/ /*global CGCLASS*/ /*global CLOSETEXT*/ /*global CLOSECLICK*/ /*global CLOSETITLE*/ /*global CAPTIONFONTCLASS*/ /*global FGCLASS*/ /*global TEXTFONTCLASS*/ /*global MIDX*/ /*global MIDY*/ /*global WRAP*/ /*global BGCOLOR*/ /*global BASE*/ /*global SCROLL*/ /*global SHADOW*/ /*global SHADOWX*/ /*global SHADOWY*/ /*global SHADOWCOLOR*/ /*global STATUS*/ /*global MODAL*/ /*global MODALCOLOR*/ /*global MODALOPACITY*/ /*global DRAGGABLE*/ /*global DRAGCAP*/ /** * Append to any existing onload events, used from behaviour.js code */ function addLoadEvent(func) { var oldonload = window.onload; if ('function' !== typeof window.onload) { window.onload = func; } else { window.onload = function() { oldonload(); func(); }; } return; } /** * Set focus on a form element in * * @param array focus_fields - fields to set focus on in order */ function setFocus(focus_fields) { var focus_element = false; var i = 0; for (i = 0; i < focus_fields.length; i++) { var next_focus_element = document.getElementById(focus_fields[i]); if (!focus_element && next_focus_element && ('' === next_focus_element.value)) { focus_element = next_focus_element; } } // set focus on first element if all fields are filled in if (!focus_element) { focus_element = document.getElementById(focus_fields[0]); } if (focus_element) { focus_element.focus(); } return; } /** * Set focus for signin form. If the username is already filled in, set focus * on the password field. * */ function setSigninFocus() { var focus_fields = []; focus_fields[focus_fields.length] = "signin-username"; focus_fields[focus_fields.length] = "signin-password"; setFocus(focus_fields); return; } /** * Set focus for signup form. If the username is already filled in, set focus * on the password field. * */ function setSignupFocus() { var focus_fields = []; focus_fields[focus_fields.length] = "signup-username"; focus_fields[focus_fields.length] = "signup-password"; focus_fields[focus_fields.length] = "signup-password2"; focus_fields[focus_fields.length] = "signup-email"; setFocus(focus_fields); return; } /** * Set focus for change password page * */ function setChangePasswordFocus() { var focus_fields = []; focus_fields[focus_fields.length] = "signin-password"; focus_fields[focus_fields.length] = "signin-password2"; setFocus(focus_fields); return; } /** * Show or hide feeds marked as spam * */ function showSpamFeed() { var feed_container = document.getElementById("feeditems_container"); if ('none' === feed_container.style.display || '' === feed_container.style.display) { feed_container.style.display = "block"; } else { feed_container.style.display = "none"; } return; } /** * Validate signin form fields */ function validateSignupForm() { // disabling js validation - it's taken care of on the server side /* var is_valid = false; var signupPswd = document.getElementById("signin-password").value; var signupPswd2 = document.getElementById("signin-password2").value; if (signupPswd === signupPswd2) { is_valid = true; } return is_valid; */ return true; } /** * Return true if user clicks OK, otherwise return false */ function confirmDelete(message) { var answer = confirm(message); return answer; } /** * Cancel a form and go back one page */ function cancelForm(url) { if (undefined !== typeof(url)) { window.location = url; } else { history.go(-1); } return; } /* Script Name: Javascript Cookie Script Author: Public Domain, with some modifications Script Source URI: http://techpatterns.com/downloads/javascript_cookies.php Version 1.1.1 Last Update: 4 October 2007 Changes: 1.1.1 fixes a problem with getCookie that did not correctly handle case where cookie is initialized but it has no "=" and thus no value, the getCookie function generates a NULL exception. This was pointed out by olivier, thanks 1.1.0 fixes a problem with getCookie that did not correctly handle cases where multiple cookies might test as the same, like: site1, site This library is distributed in the hope that it will be useful, but WITHOUT ANY WARRANTY; without even the implied warranty of MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. */ // this fixes an issue with the old method, ambiguous values // with this test document.cookie.indexOf( name + "=" ); // To use, simple do: getCookie('cookie_name'); // replace cookie_name with the real cookie name, '' are required function getCookie(check_name) { // first we'll split this cookie up into name/value pairs // note: document.cookie only returns name=value, not the other components var a_all_cookies = document.cookie.split(';'); var a_temp_cookie = ''; var cookie_name = ''; var cookie_value = ''; var b_cookie_found = false; // set boolean t/f default f var rv = null; var i = 0; for (i = 0; i < a_all_cookies.length; i++) { // now we'll split apart each name=value pair a_temp_cookie = a_all_cookies[i].split('='); // and trim left/right whitespace while we're at it cookie_name = a_temp_cookie[0].replace(/^\s+|\s+$/g, ''); // if the extracted name matches passed check_name if (cookie_name === check_name) { b_cookie_found = true; // we need to handle case where cookie has no value but exists (no = sign, that is): if (a_temp_cookie.length > 1) { cookie_value = unescape(a_temp_cookie[1].replace(/^\s+|\s+$/g, '')); } // note that in cases where cookie is initialized but no value, null is returned rv = cookie_value; break; } a_temp_cookie = null; cookie_name = ''; } return rv; } /* only the first 2 parameters are required, the cookie name, the cookie value. Cookie time is in milliseconds, so the below expires will make the number you pass in the setCookie function call the number of days the cookie lasts, if you want it to be hours or minutes, just get rid of 24 and 60. Generally you don't need to worry about domain, path or secure for most applications so unless you need that, leave those parameters blank in the function call. */ function setCookie(name, value, expires, path, domain, secure) { // set time, it's in milliseconds var today = new Date(); today.setTime(today.getTime()); // if the expires variable is set, make the correct expires time, the // current script below will set it for x number of days, to make it // for hours, delete * 24, for minutes, delete * 60 * 24 if (expires) { //expires = expires * 1000 * 60 * 60 * 24; expires = expires * 1000; // get milliseconds out of unix timestamp seconds } //alert( 'today ' + today.toGMTString() );// this is for testing purpose only var expires_date = new Date(today.getTime() + (expires)); //alert('expires ' + expires_date.toGMTString());// this is for testing purposes only document.cookie = name + "=" + escape(value) + ((expires) ? ";expires=" + expires_date.toGMTString() : "") + //expires.toGMTString() ((path) ? ";path=" + path : "") + ((domain) ? ";domain=" + domain : "") + ((secure) ? ";secure" : ""); } // this deletes the cookie when called function deleteCookie(name, path, domain) { if (getCookie(name)) { document.cookie = name + "=" + ((path) ? ";path=" + path : "") + ((domain) ? ";domain=" + domain : "") + ";expires=Thu, 01-Jan-1970 00:00:01 GMT"; } } function rollover(imgName, element_id, action) { if (document.images) { var element = document.getElementById(element_id); element.src = eval(imgName + "_" + action + ".src"); } } /*global favorite_on*/ /*global favorite_off*/ /** * Preload rollover images */ function preloadImages() { if (document.images) { favorite_on = new Image(); favorite_on.src = "/images/icon_favorite_on.gif"; favorite_off = new Image(); favorite_off.src = "/images/icon_favorite_off.gif"; } } //preloadImages(); // -------------------- Collection Functionality -------------------- // /** * Pre-load the in-page popup graphics */ /*global myExit*/ /*global myExitBlue*/ /*global myRaisedBlue*/ /*global myExitMetallic*/ /*global myRaisedMetallic*/ /*global myInputText*/ function preloadPopupDialogImages() { myExit = new Image(); myExit.src = "/js/overlibmws/exit.gif"; myExitBlue = new Image(); myExitBlue.src = "/js/overlibmws/exit_blue.gif"; myRaisedBlue = new Image(); myRaisedBlue.src = "/js/overlibmws/raised_blue.gif"; myExitMetallic = new Image(); myExitMetallic.src = "/js/overlibmws/exit_metallic.gif"; myRaisedMetallic = new Image(); myRaisedMetallic.src = "/js/overlibmws/raised_metallic.gif"; myInputText = new Image(); myInputText.src = "/js/overlibmws/inputText.gif"; return; } /** * onkeypress event handler for the "Edit Collection" form. * * @return void */ function onAddCollectionKeypress(event) { if (Event.KEY_RETURN === event.keyCode) { var btn = document.getElementById('submit_cmd'); if (btn) { btn.click(); } } return; } /** * Sets up the JavaScript event for the "Edit Collection" form. * * @return void */ function setAddCollectionEvents() { document.getElementById('coll_name').focus(); Event.observe('coll_name', 'keypress', onAddCollectionKeypress); Event.observe('coll_desc', 'keypress', onAddCollectionKeypress); return; } /** * Pops up the "Add Collection" form. * * @param number feed_id * * @return void */ function getAddCollectionInfo(feed_id, slug) { var html = ''; html += '<div id="add_collection_status" class="status-text" style="visibility: hidden; display: none"></div>'; html += '<form id="add_collection_form" name="add_collection_form" method="post" action="/collections/">'; html += '<input type="hidden" name="cmd" value="addcoll" />'; html += '<input type="hidden" name="feed_id" value="' + feed_id + '" />'; html += '<table>'; html += '<tbody>'; html += '<tr>'; html += '<th>Name:</th>'; html += '<td><input type="text" name="coll_name" id="coll_name" '; html += 'value="" size="50" maxlength="50" '; html += 'onfocus="OLmEdit=1;" onblur="OLmEdit=0;" '; html += '/></td>'; html += '</tr>'; html += '<tr>'; html += '<th>Description:</th>'; html += '<td><input type="text" name="coll_desc" id="coll_desc" '; html += 'value="" size="50" maxlength="254" '; html += 'onfocus="OLmEdit=1;" onblur="OLmEdit=0;" '; html += '/></td>'; html += '</tr>'; html += '<tr>'; html += '<th> </th>'; html += '<td><input type="button" name="submit_cmd" id="submit_cmd" '; html += 'value="Do It!" '; html += 'onclick="submitAddCollectionForm(\'' + escape(slug) + '\'); return false;" />'; html += '</td>'; html += '</tr>'; html += '</tbody>'; html += '</table>'; html += '</form>'; // the "Close" image button var closeimgMetallic = '<img src="/js/overlibmws/exit_metallic.gif" ' + 'alt="Close" width="14" height="15" border="0" ' + 'name="metallicExit" id="metallicExit" ' + 'onmouseover="document.metallicExit.src=myExitBlue.src" ' + 'onmouseout="document.metallicExit.src=myExitMetallic.src">'; // "Popup" the add window preloadPopupDialogImages(); overlib(html, STICKY, CAPTION, 'Add New Collection', CAPTIONPADDING, 4, TEXTPADDING, 8, CGCLASS, 'olraisedMetallic', CLOSETEXT, closeimgMetallic, CLOSECLICK, CLOSETITLE, 'Close', CAPTIONFONTCLASS, 'olcapMetallic', FGCLASS, 'olfgMetallic', TEXTFONTCLASS, 'oltxt', MIDX, 0, MIDY, 0, WRAP, BGCOLOR,'#333333', BASE, 2, SCROLL, SHADOW, SHADOWX, 3, SHADOWY, 3, SHADOWCOLOR,'#000000', STATUS, 'Add New Collection', MODAL, MODALCOLOR, '#000000', MODALOPACITY, 80, DRAGGABLE, DRAGCAP); window.setTimeout(setAddCollectionEvents, 1000); return; } /** * onkeypress event handler for the "Edit Collection" form. * * @return void */ function onEditCollectionKeypress(event) { if (Event.KEY_RETURN === event.keyCode) { var btn = document.getElementById('submit_cmd'); if (btn) { btn.click(); } } return; } /** * Sets up the JavaScript event for the "Edit Collection" form. * * @return void */ function setEditCollectionEvents() { document.getElementById('coll_name').focus(); Event.observe('coll_name', 'keypress', onEditCollectionKeypress); Event.observe('coll_desc', 'keypress', onEditCollectionKeypress); return; } /** * Pops up the "Edit Collection" form. * * @param number coll_id ID of collection being edited * @param string coll_name Current name of collection * @param string coll_desc Current description of collection * * @return void */ function getEditCollectionInfo(coll_id, coll_name, coll_desc, slug) { var html = ''; html += '<div id="edit_collection_status" class="status-text" style="visibility: hidden; display: none"></div>'; html += '<form id="edit_collection_form" name="edit_collection_form" method="post" action="/collections/">'; html += '<input type="hidden" name="cmd" value="editcoll" />'; html += '<input type="hidden" name="coll_id" value="' + coll_id + '" />'; html += '<table>'; html += '<tbody>'; html += '<tr>'; html += '<th>Name:</th>'; html += '<td><input type="text" name="coll_name" id="coll_name" '; html += 'value="' + coll_name + '" size="50" maxlength="50" '; html += 'onfocus="OLmEdit=1;" onblur="OLmEdit=0;" '; html += '/></td>'; html += '</tr>'; html += '<tr>'; html += '<th>Description:</th>'; html += '<td><input type="text" name="coll_desc" id="coll_desc" '; html += 'value="' + coll_desc + '" size="50" maxlength="254" '; html += 'onfocus="OLmEdit=1;" onblur="OLmEdit=0;" '; html += '/></td>'; html += '</tr>'; html += '<tr>'; html += '<th> </th>'; html += '<td><input type="button" name="submit_cmd" id="submit_cmd" value="Do It!" onclick="submitEditCollectionForm(\'' + slug + '\'); return false;" /></td>'; html += '</tr>'; html += '</tbody>'; html += '</table>'; html += '</form>'; // the "Close" image button var closeimgMetallic = '<img src="/js/overlibmws/exit_metallic.gif" ' + 'alt="Close" width="14" height="15" border="0" ' + 'name="metallicExit" id="metallicExit" ' + 'onmouseover="document.metallicExit.src=myExitBlue.src" ' + 'onmouseout="document.metallicExit.src=myExitMetallic.src">'; // "Popup" the edit window preloadPopupDialogImages(); overlib(html, STICKY, CAPTION, 'Edit Collection', CAPTIONPADDING, 4, TEXTPADDING, 8, CGCLASS, 'olraisedMetallic', CLOSETEXT, closeimgMetallic, CLOSECLICK, CLOSETITLE, 'Close', CAPTIONFONTCLASS, 'olcapMetallic', FGCLASS, 'olfgMetallic', TEXTFONTCLASS, 'oltxt', MIDX, 0, MIDY, 0, WRAP, BGCOLOR,'#333333', BASE, 2, SCROLL, SHADOW, SHADOWX, 3, SHADOWY, 3, SHADOWCOLOR,'#000000', STATUS, 'Edit Collection', MODAL, MODALCOLOR, '#000000', MODALOPACITY, 80, DRAGGABLE, DRAGCAP); window.setTimeout(setEditCollectionEvents, 1000); return; } function hideActionFormSubmitButtons(feed_id) { var button = document.getElementById('submit_cmd_' + feed_id); if (button) { button.style.visibility = 'hidden'; button.style.display = 'none'; } return; } function onUpdateActionFormsSuccess(transport) { var json = transport.responseJSON; var elem = document.getElementById('action_form_container_' + json.value.feed_id); if (elem) { elem.innerHTML = json.value.actionform; hideActionFormSubmitButtons(json.value.feed_id); } return; } function onUpdateActionFormsFailure(transport) { return; } function updateActionForms() { // get the forms named action_form var actionForms = $$('form'); var i = 0; for (i = 0; i < actionForms.length; i++) { if (actionForms[i].id.match(/action_form_[\d]+/)) { var feed_id = actionForms[i].feed_id.value; var req = new Ajax.Request('/api/actionform/' + feed_id + '/', { method: 'post', asynchronous: false, onSuccess: onUpdateActionFormsSuccess, onFailure: onUpdateActionFormsFailure }); } } return; } function showFeedbackStatusMessage(msg) { var msgDiv = document.getElementById('feedback_message'); if (msgDiv) { msgDiv.innerHTML = msg; msgDiv.style.visibility = 'visible'; msgDiv.style.display = 'block'; Effect.Fade('feedback_message', { duration: 3.0}); } } function onAddFeedToCollectionSuccess(transport) { showFeedbackStatusMessage('Successfully added feed to collection'); // if we're on the collection page, re-load the page // otherwise, just the action forms if (window.location.href.match("/collections/")) { window.location.reload(); } else { updateActionForms(); } return; } function onAddFeedToCollectionFailure(transport) { showFeedbackStatusMessage('Failed to add feed to collection: ' + transport.responseJSON.value); return; } function submitAddFeedToCollection(coll_id, feed_id) { var req = new Ajax.Request('/api/collection/' + coll_id + '/addfeedtocoll/', { method: 'post', parameters: { feed_id: feed_id }, onSuccess: onAddFeedToCollectionSuccess, onFailure: onAddFeedToCollectionFailure }); return; } function onRemoveFeedFromCollectionSuccess(transport) { showFeedbackStatusMessage('Successfully removed feed from collection'); // if we're on the collection page, re-load the page // otherwise, just the action forms if (window.location.href.match("/collections/")) { window.location.reload(); } else { updateActionForms(); } return; } function onRemoveFeedFromCollectionFailure(transport) { showFeedbackStatusMessage('Failed to remove feed from collection: ' + transport.responseJSON.value); return; } function submitRemoveFeedFromCollection(coll_id, feed_id) { var req = new Ajax.Request('/api/collection/' + coll_id + '/remfeedfromcoll/', { method: 'post', parameters: { feed_id: feed_id }, onSuccess: onRemoveFeedFromCollectionSuccess, onFailure: onRemoveFeedFromCollectionFailure }); return; } function getUserFavorites(username) { var req = new Ajax.Request('/api/collection/favorites/' + username + '/', { method: 'post', onSuccess: function (transport) { var elem = document.getElementById('user_favorites'); if (elem) { elem.innerHTML = transport.responseJSON.value; } }, onFailure: function (transport) { showFeedbackStatusMessage('Failed to get user collections:\n\n' + transport.responseJSON.value); } }); return; } function submitAddFeedToFavorites(feed_id, slug_username) { var req = new Ajax.Request('/api/feed/' + feed_id + '/addfavorite/', { method: 'post', parameters: { slug_username: slug_username }, onSuccess: function (transport) { showFeedbackStatusMessage('Successfully added feed to your favorites'); if (document.getElementById('user_favorites')) { var slug_username = transport.responseJSON.value.slug_username; getUserFavorites(slug_username); } updateActionForms(); }, onFailure: function (transport) { showFeedbackStatusMessage('Failed to remove feed from your favorites: ' + transport.responseJSON.value); } }); return; } function submitRemoveFeedFromFavorites(feed_id, slug_username) { var req = new Ajax.Request('/api/feed/' + feed_id + '/remfavorite/', { method: 'post', parameters: { slug_username: slug_username }, onSuccess: function (transport) { showFeedbackStatusMessage('Successfully removed feed from your favorites'); if (document.getElementById('user_favorites')) { var slug_username = transport.responseJSON.value.slug_username; getUserFavorites(slug_username); } updateActionForms(); }, onFailure: function (transport) { showFeedbackStatusMessage('Failed to remove feed from your favorites: ' + transport.responseJSON.value); } }); return; } /** * onchange event handler for the collection action command. * * @return void */ function submitActionForm(feedId, slug) { var frm = document.getElementById('action_form_' + feedId); if (frm) { var action_cmd = frm.cmd.value; var answer = true; var matches = null; var coll_id = null; if ('-1' !== action_cmd) { if ('showaddcollection' === action_cmd) { // kill switch - to change to non-popup style //window.location.href = '/collections/?cmd=showaddcollection&feed_id=' + frm.feed_id.value; getAddCollectionInfo(frm.feed_id.value, slug); answer = false; } /* // let's not do this - the ajaxiness is turning out to be not // so rightsumi else if (null !== (matches = action_cmd.match(/^addcoll_([\d]+)$/))) { coll_id = matches[1]; submitAddFeedToCollection(coll_id, frm.feed_id.value); answer = false; } else if (null !== (matches = action_cmd.match(/^remcoll_([\d]+)$/))) { coll_id = matches[1]; submitRemoveFeedFromCollection(coll_id, frm.feed_id.value); answer = false; } else if ('addfavorite' === action_cmd) { submitAddFeedToFavorites(frm.feed_id.value, slug); answer = false; } else if ('remfavorite' === action_cmd) { submitRemoveFeedFromFavorites(frm.feed_id.value, slug); answer = false; } */ else if ('delfeed' === action_cmd) { answer = confirm ("Are you sure you want to delete this feed?"); } if (answer) { frm.submit(); } } frm.cmd.selectedIndex = 0; } return; } function getUserCollections(username) { var req = new Ajax.Request('/api/collections/' + username, { method: 'post', onSuccess: function (transport) { var elem = document.getElementById('user_collections'); if (elem) { elem.innerHTML = transport.responseJSON.value; } }, onFailure: function (transport) { showFeedbackStatusMessage('Failed to get user collections:\n\n' + transport.responseJSON.value); } }); return; } /** * onSuccess event handler for the "Add Collection" AJAX response. * * @param transport AJAX transport object * * @return void */ function onAddCollectionSuccess(transport) { var json = transport.responseJSON; var statusDiv = document.getElementById('add_collection_status'); if (statusDiv) { statusDiv.innerHTML = 'Added Collection'; statusDiv.style.visibility = 'visible'; statusDiv.style.display = 'block'; } Event.stopObserving('coll_name', 'keypress', onAddCollectionKeypress); Event.stopObserving('coll_desc', 'keypress', onAddCollectionKeypress); cClick(); showFeedbackStatusMessage('Successfully added collection'); if (document.getElementById('user_collections')) { getUserCollections(json.value); } updateActionForms(); return; } /** * onFailure event handler for the "Add Collection" AJAX response. * * @param transport AJAX transport object * * @return void */ function onAddCollectionFailure(transport) { var json = transport.responseJSON; var statusDiv = document.getElementById('add_collection_status'); if (statusDiv) { statusDiv.innerHTML = json.value; statusDiv.style.visibility = 'visible'; statusDiv.style.display = 'block'; } return; } /** * onSuccess event handler for the "Edit Collection" AJAX response. * * @param transport AJAX transport object * * @return void */ function onEditCollectionSuccess(transport) { var json = transport.responseJSON; var statusDiv = document.getElementById('edit_collection_status'); if (statusDiv) { statusDiv.innerHTML = 'Updated Collection'; statusDiv.style.visibility = 'visible'; statusDiv.style.display = 'block'; } Event.stopObserving('coll_name', 'keypress', onEditCollectionKeypress); Event.stopObserving('coll_desc', 'keypress', onEditCollectionKeypress); showFeedbackStatusMessage('Successfully updated collection'); cClick(); if (document.getElementById('user_collections')) { getUserCollections(json.value); } updateActionForms(); return; } /** * onFailure event handler for the "Edit Collection" AJAX response. * * @param transport AJAX transport object * * @return void */ function onEditCollectionFailure(transport) { var json = transport.responseJSON; var statusDiv = document.getElementById('edit_collection_status'); if (statusDiv) { statusDiv.innerHTML = json.value; statusDiv.style.visibility = 'visible'; statusDiv.style.display = 'block'; } return; } /** * onclick event handler for the "Add Collection" form submit button. * * @return void */ function submitAddCollectionForm(slug) { var frm = null; var coll_name = ''; var coll_desc = ''; var feed_id = ''; frm = document.getElementById('add_collection_form'); if (frm) { coll_name = frm.coll_name.value; coll_desc = frm.coll_desc.value; feed_id = frm.feed_id.value; var req = new Ajax.Request('/api/collection/add/', { method: 'post', parameters: { coll_name: coll_name, coll_desc: coll_desc, feed_id: feed_id, slug_username: slug }, onSuccess: onAddCollectionSuccess, onFailure: onAddCollectionFailure }); } return; } /** * onclick event handler for the "Edit Collection" form submit button. * * @return void */ function submitEditCollectionForm(slug) { var frm = null; var coll_id = ''; var coll_name = ''; var coll_desc = ''; Event.stopObserving('coll_name', 'keypress', onEditCollectionKeypress); Event.stopObserving('coll_desc', 'keypress', onEditCollectionKeypress); frm = document.getElementById('edit_collection_form'); if (frm) { coll_id = frm.coll_id.value; coll_name = frm.coll_name.value; coll_desc = frm.coll_desc.value; var req = new Ajax.Request('/api/collection/edit/', { method: 'post', parameters: { coll_id: coll_id, coll_name: coll_name, coll_desc: coll_desc, slug_username: slug }, onSuccess: onEditCollectionSuccess, onFailure: onEditCollectionFailure }); } return; } /** * Callback for the "Edit Collection Name" in-place editor. * * @param form * @param value * * @return string */ function editCollectionNameCallback(form, value) { return 'coll_name=' + encodeURIComponent(value); } /** * onComplete event handler for the "Edit Collection Name" in-place editor. * * @param transport AJAX transport object * @param element HTML element being edited * * @return void */ function onEditCollectionNameComplete(transport, element) { // args are undefined if cancel clicked if (undefined !== transport) { var json = transport.responseJSON; if ('success' === json.status && undefined !== element) { element.innerHTML = transport.responseJSON.value.name; // changing the name means changing the slug - we really should reload the page window.location.href = '/collections/' + transport.responseJSON.value.slug; } } return; } function onEditCollectionNameFailure(transport) { var json = transport.responseJSON; if ('error' === json.status) { alert(json.value); } return; } /** * Callback for the "Edit Collection Description" in-place editor. * * @param form * @param value * * @return string */ function editCollectionDescCallback(form, value) { return 'coll_desc=' + encodeURIComponent(value); } /** * onComplete event handler for the "Edit Collection Description" in-place editor. * * @param transport AJAX transport object * @param element HTML element being edited * * @return void */ function onEditCollectionDescComplete(transport, element) { // args are undefined if cancel clicked if (undefined !== transport && undefined !== element) { element.innerHTML = transport.responseJSON.value.description; } return; } function onEditCollectionDescFailure(transport) { var json = transport.responseJSON; if ('error' === json.status) { alert(json.value); } return; } /** * Sets up the in-place editing functionality for the collection name and * description fields. * * @param number coll_id * * @return void */ function setupCollectionInPlaceEdit(coll_id) { var req = new Ajax.InPlaceEditor('coll_name_' + coll_id, '/api/collection/' + coll_id + '/editname/', { callback: editCollectionNameCallback, onComplete: onEditCollectionNameComplete, onFailure: onEditCollectionNameFailure }); req = new Ajax.InPlaceEditor('coll_desc_' + coll_id, '/api/collection/' + coll_id + '/editdesc/', { callback: editCollectionDescCallback, onComplete: onEditCollectionDescComplete, onFailure: onEditCollectionDescFailure, rows: 5 }); return; } /** * onSuccess event handler for "Delete Collection". * * @param transport AJAX transport * * @return void */ function onDeleteCollectionSuccess(transport) { showFeedbackStatusMessage('Successfully deleted collection'); if (document.getElementById('user_collections')) { getUserCollections(transport.responseJSON.value); } updateActionForms(); return; } /** * onFailure event handler for "Delete Collection". * * @param transport AJAX transport * * @return void */ function onDeleteCollectionFailure(transport) { var json = transport.responseJSON; showFeedbackStatusMessage('Failed to delete collection:\n\n' + json.value); return; } /** * onclick event handler for "Delete Collection" links. * * @param int coll_id ID of collection to delete * * @return void */ function deleteCollection(coll_id, slug) { if (confirm('Are you sure you want to delete this collection?')) { var req = new Ajax.Request('/api/collection/' + coll_id + '/delete/', { method: 'post', parameters: { 'slug_username': slug }, onSuccess: onDeleteCollectionSuccess, onFailure: onDeleteCollectionFailure }); } return; } /* ]]> */ </script> <style type='text/css' media='screen'> /* $Id: style.css 7007 2010-03-05 19:04:39Z gserafini $ */ body { color: #333; background: #fff; padding: 0px; margin: 0px; font-family: georgia, times, serif; font-size: .9em; } h1, h2, h3, h4, h5 { font-weight: normal; } h1 { font-size: 1.5em; } h2 { font-size: 1.3em; } h3 { font-size: 1.2em; } h4 { font-size: 1.1em; } h5 { font-size: 1em; } blockquote { font-style: italic; color: #444; line-height: 1.5em; } code { color: #660; } #page { padding: 0px 24px 12px 24px; } #signin-bar { position: relative; height: 36px; padding: 9px 6px 0px 12px; color: #ccc; font-family: helvetica, arial, sans-serif; font-size: .9em; } #signin-bar a { color: #ccc; } #signin-bar a:hover { color: #fff; } #signin-bar strong a { color: #ddd; } #signin-bar strong a:hover { color: #fff; } #header { background: url(/images/header_back.gif) repeat-x; height: 140px; position: relative; } .logo { position: absolute; left: 6px; top: 47px; } .logo img { } .tagline { position: absolute; left: 256px; top: 56px; font-size: 1.1em !important; letter-spacing: 0px !important; color: #c99; margin: 0px 0px 8px 0px; padding: 0px; } .total-feed-count { font-family: helvetica, arial, sans-serif; font-size: .75em; color: #966; position: absolute; left: 256px; top: 75px; } .total-feed-count a { color: #966; } .total-feed-count a:hover { color: #c99; } .addfeed-form h3 { margin: 0px; padding: 0px; } .form-addfeed { margin: 4px 0px 18px 0px; color: #666; } .input-addfeed { margin: 0px 4px 0px 4px; width: 240px; } #mainbody { position: relative; margin: 0px 0px 18px 0px; } #content { } #explore { margin: 48px 0px 0px 0px; } .sidebar { position: absolute; top: 0px; left: 49em; width: 24em; } .sidebar h3 { margin: 0px; padding: 0px 0px 12px 0px; } .sidebar p { margin: 0px; padding: 0px 0px 12px 0px; } .save-to-delicious-link { font-family: helvetica, arial, sans-serif; font-size: .8em; color: #666; padding: 16px 0px 0px 0px !important; } .save-to-delicious-link a { padding: 4px; color: #333; background: #ffc; text-decoration: none; line-height: 1.4em; } .save-to-delicious-link a:hover { color: #000; background: #ff6; } .save-to-delicious-link img { margin: 0px 2px -4px 0px; } .bottom-panel { margin: 0px 48px 0px 0px; } .feedlist-panel { margin: 24px 48px 0px 0px; padding-left: 6px; } .bottom-panel h3, .feedlist-panel h3 { margin: 0px 0px 6px 0px; padding: 0px; border-bottom: 1px solid #ddd; } .bottom-panel ol, .feedlist-panel ol { margin: 0px 0px 24px 8px; padding: 0px 0px 0px 12px; } .bottom-panel ol li, .feedlist-panel ol li { margin: 2px 0px 4px 0px; padding: 0px; } .bottom-panel ul, .feedlist-panel ul { margin: 0px 0px 24px 8px; padding: 0px; } .bottom-panel ul li, .feedlist-panel ul li { margin: 2px 0px 4px 0px; padding: 0px; list-style: none; } .bottom-panel a, .feedlist-panel a { color: #333; } .bottom-panel a:hover, .feedlist-panel a:hover { color: #000; } .bottom-panel li a, .bottom-panel td a, .feedlist-panel li a, .feedlist-panel td a { text-decoration: none; } .bottom-panel li a span, .bottom-panel td a span, .feedlist-panel li a span, .feedlist-panel td a span { } .bottom-panel li a:hover span, .bottom-panel td a:hover span, .bottom-panel td a:hover, .feedlist-panel li a:hover span, .feedlist-panel td a:hover span, .feedlist-panel td a:hover { text-decoration: underline; } .bottom-panel li img, .bottom-panel td img, .feedlist-panel li img, .feedlist-panel td img { margin: 0px 2px -2px 0px !important; } .bottom-panel th, .feedlist-panel th { text-align: left; } .bottom-panel td, .feedlist-panel td { padding: 0px 24px 0px 0px; } .favicons_list { margin: 0px 0px 12px 0px; padding: 0px 0px 6px 0px; border-bottom: 1px solid #eee; } .favicons_list h4 { margin: 6px 0px 0px 0px; padding: 0px; } .favicons_list ul, .favicons_list ol { list-style: none; margin: 0px; padding: 0px; display: inline; } .favicons_list ul li, .favicons_list ol li { list-style: none; display: inline; } .favicons_list ul li img, .favicons_list ol li img { padding: 2px; } .favicons_list ol li span { display: none; } .feedtitle { margin: 0px; padding: 0px 0px 0px 0px; border-bottom: 1px solid #ddd; font-size: 2.4em; font-weight: normal; } .feedtitle a { color: #333; text-decoration: none; } .feedtitle a:hover { color: #666; text-decoration: underline; } .feed-icon { padding: 0px 1px 0px 0px; } .feed-icon a img { margin: 0 0 -3px 0 !important; padding: 0px !important; } .feedtitle-river .feed-icon { margin: 0px 0px 0px 0px !important; } .feeddescription { font-style: italic; color: #666; margin: 2px 0px 16px 0px; } .feeditemdate { margin: 0px 0px 6px 48px; color: #999; } .feeditemtitle { font-size: 1.4em; margin: 0px 0px 6px 48px; } .feeditemtitle a { color: #009; } .feeditemtitle a:hover { color: #006; } .feeditemdescription { margin: 0px 0px 0px 48px; } .feeditemdescription a { color: #009; } .feeditemdescription a:hover { color: #00c; } .go-link { margin: 6px 0px; font-family: helvetica, arial, sans-serif; font-size: .9em; } .go-link a { text-decoration: none; } .go-link a span { text-decoration: underline; } .go-link a img { padding: 0 !important; } .feedtitle-river { margin: 12px 0px 0px 0px; font-family: helvetica, arial, sans-serif; font-size: .8em; color: #666; } .feedtitle-river a { color: #666; } .feedtitle-river a:hover { color: #333; } .feeddata { position: relative; } .feeditems { margin: 18px 0px; padding: 0px; width: 44em; line-height: 1.6em; } .feeditems-container { position: relative; } .feed-is-spam { display: none; } #feeditems_container { } .feeditem { position: relative; list-style: none; clear: both; margin: 2px 0px 12px 0px; padding: 0px 0px 0px 12px; border-bottom: 1px dotted #ddd; } .feeditem img { padding: 6px !important; border: 0; } .feeddata { border: 0px; } .feeddata img { padding: 0; } .feed-actions { margin: 8px 0px; border: 1px solid #f00; } .feed-actions a { color: #666; text-decoration: none; } .feed-actions a:hover { color: #000; } .feed-actions a span { text-decoration: underline; } .feed-actions a:hover span { text-decoration: underline; } .feed-actions img { margin: 0px 1px -4px 0px; padding: 0px !important; } .rss-link a img { text-decoration: none; } .favorite-link { margin: 8px 0px 12px 0px; position: relative; font-size: .9em; font-family: helvetica, arial, sans-serif; } .favorite-link a { text-decoration: none; color: #666; } .favorite-link a:hover { color: #333; } .favorite-link a span { display: none; } .favorite-link a:hover span { display: inline; color: #999; } .recommended { } .not-recommended { color: #ccc; } .not-recommended a { color: #999; } .not-recommended img { opacity: .2; /* filter: alpha(opacity=20); */ } .total-recommendation-score { padding: 0px 0px 0px 6px; color: #666; } .feed-item-vertical-spacer { float: left; width: 1px; height: 64px; } .rating-button-container { position: absolute; left: 0px; top: 0px; width: 77px; height: 83px; background: url(/images/rating_button_container_back.gif) no-repeat; text-align: center; font-family: helvetica, arial, sans-serif; font-size: .9em; color: #999; } .manage-link { padding: 0px 0px 0px 6px; } .manage-link a { font-size: .6em; color: #393; font-weight: normal; } .manage-link a:hover { color: #060; } .recommend-links { position: absolute; left: 5px; top: 4px; } .recommend-links a { } .recommend-links img { margin: 0px; padding: 0px; } .time-since-published { font-size: .5em; color: #999; } .item-time-since-published { font-size: .8em; color: #999; } .page-numbers { color: #999; font-size: .9em; } .page-numbers a, .page-numbers span { border: 1px solid #999; color: #999; padding: 3px 4px; margin: 0px 0px 0px 0px; text-decoration: none; font-family: helvetica, arial, sans-serif; } .page-numbers a:hover, .page-numbers span { border: 1px solid #ccc; background: #999; color: #fff; } .page-numbers span.page-num-disabled { color: #ddd; background: #fff; border: 1px solid #ddd; } .allfeeds-icons { padding: 1px; } .error-message { background: #fee; margin: 12px; padding: 8px; border: 1px solid #f99; color: #933; line-height: 1.4em; } .messages { background: #efe; margin: 12px; padding: 8px; border: 1px solid #9f9; color: #393; line-height: 1.4em; } .spam-warning { background: #fee; margin: 12px; padding: 8px; border: 1px solid #f99; color: #933; line-height: 1.4em; } .spam-warning a { color: #600; } .spam-warning img { margin: 0 0 -3px 0; } .feedtitle-river .admin-item-button { font-size: .9em; } .admin-item-button { border-top: 1px solid #960; border-right: 1px solid #630; border-bottom: 1px solid #630; border-left: 1px solid #960; background: #ffc; font-family: helvetica, arial, sans-serif; font-size: .7em; padding: 2px 4px !important; } .admin-item-button a { text-decoration: none; color: #960; } .admin-item-button a:hover { text-decoration: none; color: #630 !important; background: #ffe; } .delete-item-button { border-top: 1px solid #f99; border-right: 1px solid #f33; border-bottom: 1px solid #f33; border-left: 1px solid #f99; background: #fee; font-family: helvetica, arial, sans-serif; font-size: .7em; padding: 2px 4px; } .delete-item-button a { text-decoration: none; color: #600; } .update-item-button { border-top: 1px solid #f90; border-right: 1px solid #c60; border-bottom: 1px solid #c60; border-left: 1px solid #f90; background: #fc6; font-family: helvetica, arial, sans-serif; font-size: .7em; padding: 2px 4px; } .update-item-button a { text-decoration: none; color: #630; } .feed-admin-functions { margin: 12px 0px; padding: 8px; border: 1px solid #999; background: #eee; position: relative; } .admin-uptime { color: #999; position: absolute; top: 10px; right: 6px; font-family: helvetica, arial, sans-serif; font-size: .8em; } .tos-note { color: #600; background: #fee; border: 1px solid #fcc; padding: 4px; margin: 8px; font-size: .8em; } .rss-stats-badge-container { position: relative; margin: 24px 0px; } .rss-stats-embed-code-container { background: url(/images/left_big_arrow.gif) no-repeat 0px 28px; padding: 0px 0px 0px 36px; position: absolute; left: 190px; top: 0px; } .rss-stats-embed-code { margin: 6px 0px; color: #663; background: #ffc; font-size: .8em; width: 420px; height: 54px; } #footer { border-top: 2px solid #eee; padding: 12px 0px 0px 0px; margin: 24px 0px 0px 0px; clear: both; color: #999; font-size: .9em; line-height: 1.6em; font-family: helvetica, arial, sans-serif; } #footer a { color: #666; } #footer hr { display: none; } .footer-metadata { font-size: .9em; color: #999; } .footer-metadata a { color: #999 !important; } .google-ads-top { margin: 12px 0 12px 12px; width: 980px; position: relative; } .tla-ads { float: right; margin: 2em 0 0 1em; width: 12em; } .tla-ads h3 { font-size: .9em; margin: 0; padding: 0; } .tla-affiliate-ad { padding: 2em 0 0 0; font-size: .9em; color: #0066CC; } .debug-statements { color: #660; background: #fee; border: 1px solid #996; border-bottom: 2px solid #663; border-right: 2px solid #663; padding: 2px; line-height: 2em; } .debug-sql { color: #066; background: #eef; border-left: 3px solid #699; line-height: 1.7em; padding: 2px 2px 2px 4px; } .debug-sql-args { color: #099; background: #eef; border-left: 3px solid #9cc; line-height: 1.7em; padding: 2px 2px 2px 4px; } .status-text { color: #000; font-weight: bold; } .oltxt { color: #fff; font-weight: bold; } .oltxt th { color: #000; font-weight: bold; text-align: left; } .olcap { color: #fff; font-weight: bold; } .olraisedMetallic { text-align: center; background: #33aaff url(/js/overlibmws/raised_metallic.gif) repeat-x bottom left; } table.olraisedMetallic { border-bottom: 1px solid #666666; } .olcapMetallic { font-family: Verdana, Arial, Helvetica, sans-serif; font-size: 11px; font-weight: bold; color: #333; text-shadow: #ddd 2px 2px 0; } .olfgMetallic { background-color: #eeeeee; text-align: center; } .action-form-container { float: left; padding-right: 6px; } .action-form { margin: 0px; } .feedback-message { border-top: 1px solid #960; border-right: 1px solid #630; border-bottom: 1px solid #630; border-left: 1px solid #960; background: #ffc; font-family: helvetica, arial, sans-serif; padding: 2px 4px !important; text-align: center; width: 350px; } .action-form { float: left; padding-right: 6px; } .terms_and_conditions { font-family: times, serif; } .terms_and_conditions h1 { font-family: helvetica, arial, sans-serif; } .terms_and_conditions li { margin-bottom: 12px; } #signupDiv { width: 540px; } .terms_and_conditions_signup { border: 2px solid #ddd; padding: 4px; font-size: 12px; width: 400px; height: 100px; overflow: auto; } .terms_and_conditions_signup h1 { margin: 0; padding: 0; } </style> </head> <body> <div id="overDiv" style="position: absolute; visibility: hidden; z-index: 1000"></div> <div id="header"> <div id="signin-bar"> Welcome Guest. Home <a href="/signin/" title="Click here to sign in">Sign in</a> <a href="/signup/" title="Click here to sign up for a RSS2.com account">New User Signup</a> </div> <div class="total-feed-count"> Featuring 18,114,656 items from 268,350 fine <a href="/feeds/" title="Click to view all feeds">feeds</a> added by 661,321 users from around the world... </div> <div class="logo"> <a href="/" title="RSS2.com"><img src="/images/rss2_logo_reverse.gif" alt="RSS2.com" width="234" height="60" border="0" /></a> </div> <h2 class="tagline">All the Best RSS Feeds For Your Guilt-Free Reading and Enjoyment</h2> </div> <div id="page"> <div id="mainbody"> <!--<script src="//z-na.amazon-adsystem.com/widgets/onejs?MarketPlace=US&adInstanceId=53ef911c-0049-4840-bcb8-eaa41e78b169"></script>--> <div class="favicons_list"> <h4>Read the most popular feeds:</h4><ol><li><a href="/feeds/Mac-Forums" title="MacRumors Forums (3,474,687 views)"><img src="data:image/png;base64,iVBORw0KGgoAAAANSUhEUgAAABAAAAAQCAYAAAAf8/9hAAAABmJLR0QAAAAAAAD5Q7t/AAAACXBIWXMAAABIAAAASABGyWs+AAAACXZwQWcAAAAQAAAAEABcxq3DAAACrElEQVQ4y5VTa0iTYRR+vm+fm5d5ybVNNxUr1GpzamiaIuGvkpBGiEaCTByR/gmzQLqR2A+RIktjXpJMNGyiFRZ2QcFSWypSikhmeUlXKxXd1Nn2ubcftqFjED1w4HAuzzmcCwAQZym40zsNgKg78xp5ZaFKaUXsyeOt6uqirtIF51jqr7INJ26O3hfvapvUjJeVgOcP8DmA1QZGEBghZfkxkbTkiBfX++C6zRzE2JM6M7NM7tPjq0m6gYDUA2Gqim8kHQIrZOaQ9IzXlmDxCv1DbzLwDWp5Qp/IZPE2mSej+Lv5FADyNiPz/Myz5xqOh8eaN2uWeUoicjqU2XFPw3u/1H4WDSan5DVA6L4yln8WVr3+VNTUUJOjXV1ubm0NgEd+/mjy9EI1gFd7QjCUXyjvq2y81RUbx/1tWQchBOuLi6gCMJqWddcxh3aZQtZA0Wj28UM9RdNfmx5yCCEghIBYN9AilmBK28IQQmAxmugHjBva4+MLHARagdBLKxCiBoDu9BkOIYR2EGwKZdfnXrxEDYDZunsjdgKGEEIDAA1AmnaMALA5LcWxpU+aKgRHRRcH5arldhvtIRIFWYzLYABweO7bkufm5nyGh4dFayzrxi4twbKweDj144erW2No/r7wJAtrhRWgVmdm6K1OhmEoAFwew2zM695DmpJc73wztH9MdD4XNGwA+dXbBwCU3SkWi5cVCsUsB7AZp6b2R5ZcD4ULkG6l8qgGQIs4kLKxLOU0RBBC8LP7TaKrs6cBwDchXrtjp1CkN3wnI9eK7TN1wDgxQb27fGmg/1xhh8sOAJCBi1cMj8P3JlYCmGxu3qxss2GwqAhj5bdR58ZFjypb889n6lHltM60PekISE6a95VHqhZ0/RKG71nqHRZxIa78xiHn6i6/8X/wB648PWOowVinAAAAAElFTkSuQmCC" border="0" width="16" height="16" alt="MacRumors Forums" /><span> MacRumors Forums</span></a></li><li><a href="/feeds/TechCrunch" title="Crunch Hype (3,369,052 views)"><img src="data:image/png;base64,iVBORw0KGgoAAAANSUhEUgAAABAAAAAQCAYAAAAf8/9hAAAABmJLR0QAAAAAAAD5Q7t/AAAACXBIWXMAAABIAAAASABGyWs+AAAACXZwQWcAAAAQAAAAEABcxq3DAAAA2UlEQVQ4y2NkgIJ/aUz/GUgATLP+MTIwMDAwkqMZ2RBGcjXDAAuGSEQPA4NFAgMDhwBC7MIGBoYlKQwMXz5gugJDs0MBqmYGBgYGgwAGhow12L2BwrNIQLAXJEDwD6itKg4MDDIGBLwAs3lNAQPDiSUI8YQFCJcwMDAwPLkAl0INxBl/iAu5DIS9TMTpwA1YsIquKWBg2DMFVcwlh4EhZAIBA358gIRDyATMKINp/vEBjwEnFkCiETng0MGJBXgMWFECodETEszmEwsQaqCA4qRMeWaCccjNzgBJL0PlfcuQnAAAAABJRU5ErkJggg==" border="0" width="16" height="16" alt="Crunch Hype" /><span> Crunch Hype</span></a></li><li><a href="/feeds/Kotaku" title="Kotaku (3,206,045 views)"><img src="data:image/png;base64,iVBORw0KGgoAAAANSUhEUgAAABAAAAAQCAYAAAAf8/9hAAAABmJLR0QA/wD/AP+gvaeTAAAACXBIWXMAAABIAAAASABGyWs+AAABzklEQVQ4y6WTvWtUQRTFf/fOe7ubTXRNtjGgICoWERRE8A8wCCLYqNiKTQprwUYQ+9RaiIViYWNjI4QUWola+S1WUdFdJJBlk81md2auxXtm89wNBLzNfJ05nDPnjrydvmj8R+mOkQLUjXCtS/9FCz+/BkAyBLJ8JJ/nKDvpCVe6xHM9UJB3bgtBzbADARzQEpgwqIJ8drAqxMsbhLkudihAH/RlintQGRCE6+vE2R40FFly2MEA+yLJ3ARWM/zNDuwyaAnuSRl9VEY+blEQrnahDxIFG/fYTMjktwU73wMBXUzRx2V0MYV12XSdALg7FWgL0lTi2R52NCDfFEoGDUWflnB3K8hXN/y2hRgT8PdWiWd6yHuH/HTYVEQ6Ak1Fn6XoQgk8RQV/y/YHbDJmzB8SGDPsmMdK+flxj75KYXlgQYsEEfbmBN8Vd6uKu11FXifQBzsSiCd84VaxkSYNq+eOOoI0FHe/QnJjHPmdQeOFjSzukQoOB6garAnyZYCST25zbac8NhVHE8iyos9T3PwY+qbYpLpQymzUI3a6v00KewyrGtJUCMW4bDriH7axmYD8UJJLu5El/ecvrAiyIowq+aWks7Wh/Z3/xm3qDyzmrFQSfjwXAAAAAElFTkSuQmCC" border="0" width="16" height="16" alt="Kotaku" /><span> Kotaku</span></a></li><li><a href="/feeds/Gizmodo" title="Gizmodo (2,804,583 views)"><img src="data:image/png;base64,iVBORw0KGgoAAAANSUhEUgAAABAAAAAQCAYAAAAf8/9hAAAABmJLR0QA/wD/AP+gvaeTAAAACXBIWXMAAABIAAAASABGyWs+AAABeklEQVQ4y8XRyy4DcRTH8e+0M6ZTOkqrSBRxiSiJhAgWxMbCytJjeBaPYWUjsRAiQcQtUpe4Rqm7kpZOR/81NVaaWExJN872nPPJye9Icyvb9vphjFJqYqQPef0wxtTkeEnA9Mw8slPT7XKRTGfYPDrn4vaJD8tCVWTCtTUMdLXhr/AC4HICkkaGubUddo5iBHQfkeYGKjQPx5e3PKfShTnHC/bO48TuEoz2Rhju6UBTVVKGSTKdoT7gJ//5WRyIPyQIVur0tDehqgqnN/ck3zKUyTKvhkl7uK44IHJ5NFVBcbsROYuz+CPRsyskoNKnFQDHDPw+L4lUmuc3A1VRGOxuY3JsiGCVjpW3C3OOQEdjPbkPi4WNfQ4urjGzAjObxRQCK2/9HmJXSxgzm2M1esLs8hblmod3IfCoZfR3tv4OuCSJ/kgrjbVBbp5eMIRA92qEQwECfh/YdnHg+02hap1Qtf6zaf8hg7/W/wPS4kbUXto9LWl5YqSPLy9Di+zamRNGAAAAAElFTkSuQmCC" border="0" width="16" height="16" alt="Gizmodo" /><span> Gizmodo</span></a></li><li><a href="/feeds/Boing-Boing" title="Boing Boing (2,629,420 views)"><img src="data:image/png;base64,iVBORw0KGgoAAAANSUhEUgAAABAAAAAQCAYAAAAf8/9hAAAABmJLR0QAAAAAAAD5Q7t/AAAACXBIWXMAAABIAAAASABGyWs+AAAACXZwQWcAAAAQAAAAEABcxq3DAAAAQ0lEQVQ4y2P8z8Dwn4ECwESJZiob8P8/BGMDeOQG3gssWJ0LA4yMBOVo4AV0WwnIDXwgYhrwH0/KxiJHsQsYh35mAgCT7BQViN9VMAAAAABJRU5ErkJggg==" border="0" width="16" height="16" alt="Boing Boing" /><span> Boing Boing</span></a></li><li><a href="/feeds/BBC-News-News-Front-Page-World-Edition" title="BBC News (2,474,492 views)"><img src="data:image/png;base64,iVBORw0KGgoAAAANSUhEUgAAABAAAAAQCAYAAAAf8/9hAAAABmJLR0QAAAAAAAD5Q7t/AAAACXBIWXMAAABIAAAASABGyWs+AAAACXZwQWcAAAAQAAAAEABcxq3DAAAAU0lEQVQ4y+WSQQqAMBADZ/v/P8eDbK01WOjeNJfCQIdANgCxn2gA0unId8VuhmqDbp7tjr3xP6e6Aq3a4EOCIM/yimMPPjaQ+TCzXE1O4CZdznwAE+Mp98CLZAUAAAAASUVORK5CYII=" border="0" width="16" height="16" alt="BBC News" /><span> BBC News</span></a></li><li><a href="/feeds/Joystiq" title="Joystiq RSS Feed (2,306,406 views)"><img src="data:image/png;base64,iVBORw0KGgoAAAANSUhEUgAAABAAAAAQCAYAAAAf8/9hAAAABmJLR0QA/wD/AP+gvaeTAAAACXBIWXMAAABIAAAASABGyWs+AAAA80lEQVQ4y6WTv2rCUBjFf4mSRGokpdm0GTp0KgUDeYDSLasv4tLHEHwZFceOpWspFrrYdhKxYvonifHeDkqcKt7k2z74zuGcH/dqsyiR45dP0kxwe3mK55ioTHU0WTB4XgAw/864u2kpGehpJvNFSKkkBqgqK4DHt4iftSDw7P8NxPsQkuU2pheC4QDwOv+ld/8BwOzLPWDw1EcuJwBoro+2M4iSTX6zijfoRSocxUA/D5Guv11Mp4DBVfeoBKUr6E5tH6JuVtQZdK5d2s06AC3FZ5wzuDizilcozUBVcGLsOTWsCpoQQvkHPUxXxJkk8Gz+ALdgQ+//8PjjAAAAAElFTkSuQmCC" border="0" width="16" height="16" alt="Joystiq RSS Feed" /><span> Joystiq RSS Feed</span></a></li><li><a href="/feeds/dealnews-Todays-Edition" title="DealNews - Today’s Edition (2,243,542 views)"><img src="data:image/png;base64,iVBORw0KGgoAAAANSUhEUgAAABAAAAAQCAYAAAAf8/9hAAAABmJLR0QAAAAAAAD5Q7t/AAAACXBIWXMAAABIAAAASABGyWs+AAAACXZwQWcAAAAQAAAAEABcxq3DAAADFUlEQVQ4y41TTWxUVRg99973Nz9vOq/DzEAtaZCglRoBgwkqppAgiolbIjExAYdOFyKmtZRADGncaGegK4O0VQIbkiauVIyJAUyqIWKa2gUbFkI7dnBsZzo/b9578969100xYqN4Vmfx5eT7zjkfASCxio8mChdVqUwrCnn7+JH0C/gfIA8EcrmiTSxsjVvr56uVEmOM7hNcDAxk0vv/S4A+INp6lYMgxAMfobDJdSP6LVWUV8599nv/2Yn58iM3AIBzF0pFSeUXlMpLmh75WQJQFA2NRuVZiODK+32dT/z7CZeL9tBbGyIAcObM9aCt66lPAPqhroeXKWVw7Ppmn3rfDB/ZuGWNwMeT9xYZ1AOKqrdzwbODh1NvAMDoeGFWUdQ3DcO8TQhB06494zn+tVPHOhMPeUC5+ksslpqLxdpvGFr40NjnpZdz5+/ePtHXuZ0L+6rn1HuE4IhErTnVYANrTKRWsKdRWzpfLf+xCwCiseR3qm7uz1+4Nz2UebwrAJ9yHTsRBB50PXQ5P1786p8eyFWO3MTiWZVpH4RNy7FryymP82sn+zb05Cd+mzRC5lHKFNTr5efi8v4P2exOleQnSzMKIxkpRW+z1hg+/d7mdO7TwpeqFjoUiVl2pVLcpTftG8ff3aKNTi7ujkasH33fRdByvx482vEapVTMa3pkpj2ZGgvF214aHS/MDvV3vu4HXt5zbZhm4iYPxy6BEEIpe4dzH7oehZRyCgDI1JQMFirFaUHkSCLZcX1lqbRRJe7NY5mujtx4YY+VeOz78lJxxy1r+tbO2t4mka0noxGr6DRrm3SXzNGDBwkbzHb0NtTW1ZXy/VcT6dSCA20EAChl/Z5rgzEyu7u6d3Y4kzQpoc9TygDJF1zq3/mryiOHNxkt3spXy8s6FeLK2MVfV2q8us9pVtui0XbpQ/y0Ovo0IQRM1QOiK3fp3zM92dfV43re1lg8XZfSmBnJdq8TgiRDEQ2EBXdWc19HKIURMgEhSsqa76Kk13Fr84CIAwBl5EXXaS1LTroBgENuazRW0oSAQKD7T01fTMMhbYO7AAAAAElFTkSuQmCC" border="0" width="16" height="16" alt="DealNews - Today’s Edition" /><span> DealNews - Today’s Edition</span></a></li><li><a href="/feeds/Autoblog" title="Autoblog (2,082,942 views)"><img src="data:image/png;base64,iVBORw0KGgoAAAANSUhEUgAAABAAAAAQCAYAAAAf8/9hAAAABmJLR0QAAAAAAAD5Q7t/AAAACXBIWXMAAABIAAAASABGyWs+AAAACXZwQWcAAAAQAAAAEABcxq3DAAADRUlEQVQ4yz2SS2xVZRSFv/3/51zuKb23peU2vktoSyNtqZSnE1GiKIkhPoiYECdK1EgcEA1YcGCMMiA6wUQwESYMHKnRYMSAVQKkRkssLUWwEkkAIffybO+z5/z/dtDCHu09WGtl7bUE0HzPEjXVqp87PmYLPUv+olb7gsR9I1HUhmC1XDlLEDwn6fSbc0f+6C7M69TchXMCYPKLlmrL6EnxDY1xobOnn1K5jzjZjXMX8b6I9yWcu0wc79Fisa/Q2bPDL2h3APmepWpaRobkRt+jVS2Xv9I43o9qFYgQ4e5M7ym8V6binebSf7sATLnsDIArFT821eqraoPXFdqAMiJgTCti5s0QxCqSuDBcW54/bwtALZOxUuhZeoZSaSXeT2DMXG/NC6JMSJR+Pzd6suuDd97VDT8N/NNQqW6qD8NM9uypg7Obm2orHl5YHDh+vFkKHd1bSZJdQB1QJrDrcuNj352rb/abZ4kcuX5NAPTFV6bW/3706sDtW4ez6XRyf+OctScyLQ9IoW1hL86dAiwijij6NXfmz1Xa1hWvzGVoymbd4LFjP1ec22eCIFbh7WqpvObOewIC24FIM6AY0xg3NiwGkPNjYepiak2SJIeDILgvDIIdL6164rX9FTc8MTnxfQ1VC6kA5RZwY4ZQ1TnP3UOttfaxDatXHzpw6FDUX01u5y9fWmeczwvgjWkI8O46iRu+YyFVLA4BTxbbu+L+px//odz6kGz8ZHdyAGjKF0bU+TyqIaoxRloNxj6DCIjMAtDa1B6AiStXbOrgj7Jv6zbpnJqO29dqe1FlRgyMXS2F3uV/Mzm5Au9vqjHz1ZinjMgFiaKP8osXPeJEuPfk8GmtVrZ7eFCc+0W8jmNMhkz9oABaWND9oSZul1q7xTi3F9VrAFJX9yxCqKXytzONnOOt3SzOfSZh8Fbu3OjOAECbmrbLZLFdKpU38L6ISIRqBe+vIgSogkiE9zcNfOqj9Oc+m90IYAq9y5TfTljJZtYThu9hbT1QmQbdjQOgijGzCYNtNtvw8j2DR8NC73IVQPPdS1RqNZ8bP23zvcv+lVrtS+Lka4nSrSBWK5XzBMHzmkptahkdas93dDnSkWkZHZL/AQcthuhfrcZkAAAAAElFTkSuQmCC" border="0" width="16" height="16" alt="Autoblog" /><span> Autoblog</span></a></li><li><a href="/feeds/Global-Voices-Online" title="Global Voices (1,898,245 views)"><img src="data:image/png;base64,iVBORw0KGgoAAAANSUhEUgAAABAAAAAQCAMAAAAoLQ9TAAAABGdBTUEAANbY1E9YMgAAALpQTFRFAG46////EHdGIIBTMIlfn8m1+m0Aj8CpgLed+4s0+5lM/Kdl+38f+nQN/LZ/QJJrYKSEYKWEz+TaUJt4/cWaMIRVMIZZ7uXWj7+ofXw3u3IYUJl07/bz7LF7u20PT4lY7s2rQJJqMIhdL24vP3IzL3xHcK2QMIFRQI1hL3Y9Xn5BUI5gEHRCb4dN7+/mMH5MzbWIQIRT7cCUzsCcH24zz97P3bqOYJ54v9vOX49eP3xFH3A3f62N//jysDjXmAAAAAlwSFlzAAAASAAAAEgARslrPgAAAAl2cEFnAAAAEAAAABAAXMatwwAAALlJREFUGNM1j9dywzAQA1dHUpQrqeZektjpvff//62chs4+AoMDjvzA5gV2mzxnlFggsYgsRgwTe3GGUHwP6SUIZj7H06OfwNaXVxT0GSRu0Yj4rwHjxPpUj7jH9ZjmYQvbt+YTk9n7p4bnri/cXGNd8Jwf0XZ90UntL1rraeHM/LwjH8VkOp2oglYtl+KjP379vTtRxdjCRE3hQ5WValdig8GW4GyNvpOtZiHMVmp2Q6yQ/VPqEJHqD20cDUJI/giMAAAAInpUWHRTb2Z0d2FyZQAAeNpzTMlPSlXwzE1MTw1KTUypBAAvnAXUrgypTQAAAABJRU5ErkJggg==" border="0" width="16" height="16" alt="Global Voices" /><span> Global Voices</span></a></li><li><a href="/feeds/Engadget" title="Engadget is a web magazine with obsessive daily coverage of everything new in gadgets and consumer electronics (1,821,544 views)"><img src="data:image/png;base64,iVBORw0KGgoAAAANSUhEUgAAABAAAAAQCAYAAAAf8/9hAAAABmJLR0QAAAAAAAD5Q7t/AAAACXBIWXMAAABIAAAASABGyWs+AAAACXZwQWcAAAAQAAAAEABcxq3DAAABKUlEQVQ4y52TvUrEQBSFv+yC7YJipY2VhaVgJTj9zvgGPoDEB/BJlMC2tjYzlV3KVIKgkNjJvsGCRRK5FslkZ39C2D1wmcu9c86cYeYCSBtPNLgC7oEZ8BH0t0bUJgAXwBebOGhFL4P1PNwgwBu7YQJM/eEC3O4o4LEA+AbGxhhEBGNM7+4kSRCRsPQ5Ap6BvziOqaqKOI67rrUWEcFa26f5AzBRSiEiXSilVsh+3eIgGQFTpRQAURQBoJRCa41zDmMMzjm01r0O5kVRRGVZdg7yPB90ICJkWXba5st7eoLP67rueusCaZoe+WdcACd7POOZFxDgZQ+B61BAfGEAh8ADyzlZEXgHxj3Em9bl7xpnY8LuAtIx8EjzW/smcqMwp5mNV6BmYJz/AUiixKph8SunAAAAAElFTkSuQmCC" border="0" width="16" height="16" alt="Engadget is a web magazine with obsessive daily coverage of everything new in gadgets and consumer electronics" /><span> Engadget is a web magazine with obsessive daily coverage of everything new in gadgets and consumer electronics</span></a></li><li><a href="/feeds/VentureBeat" title="VentureBeat (1,440,291 views)"><img src="data:image/png;base64,iVBORw0KGgoAAAANSUhEUgAAABAAAAAQCAYAAAAf8/9hAAAABmJLR0QAAAAAAAD5Q7t/AAAACXBIWXMAAABIAAAASABGyWs+AAAACXZwQWcAAAAQAAAAEABcxq3DAAACFElEQVQ4y9WTz0vTcRjHX9+PftW07/bxuy2nDgcJ4UmckZi2JIOh4kodtMNu4amDP6CybivIUTA67CR1Km8GpYcOFkIEgWBM6F7ovv0DHWxzX79PpwXi0S694bk88H6e5/1+8xgiIpwC6jTkfzKgPpfLPXZd9xDAsiz/3Nzc3Xw+/6RcLpcBrroGI67xlyCA4bP8jMavcynWT3t7+1mtNVprenp6ItVq1Y1Go621Xq6pFSFwshrCjfLu/Yaan5+/V5OzuLj4QClVt7CwsARg23ZoZm11Qwb6BwEYjY+y+eYD56PdHFYrrK69UrOzs3daWloswPM870gpRaVSqQAkEomJC5MTSSN8LgwgdmuAK4PD0hHuAMBnaUREUqnUhNaaTCYzLSKSSCSGtdasr6+/FRGRG5kpIYA0dTSJ3R30sJU3NDYk+85PBZBMJqcBtre3v5RKpVKxWNyxLMsfj8dHjlnefKaZrkjEaGgwjZ3dr3z8tImIiOM4pVAo1Ki1Vtls9qHWWqXT6UmpoXbBrdtpERG5n10SAkhXb1QBdHZ2RmKx2ADgraysFABvfHz8JgDFb7vsO3sA8n3vh7x4/ZKtz1sAHPw+oLakUCjka9EFg8FGx3FKIiKSffroZIw2ogJ13vLz5XrP845ExE2lUlOmaR4B+Hw+X1tbm3Zd95eMXYsT1M+OeWGaptHX268u9l02/v9n+gOKU+bmAzxS8QAAAABJRU5ErkJggg==" border="0" width="16" height="16" alt="VentureBeat" /><span> VentureBeat</span></a></li><li><a href="/feeds/Lifehacker" title="Lifehacker (1,430,274 views)"><img src="data:image/png;base64,iVBORw0KGgoAAAANSUhEUgAAABAAAAAQCAIAAACQkWg2AAAABGdBTUEAANbY1E9YMgAAABl0RVh0U29mdHdhcmUAQWRvYmUgSW1hZ2VSZWFkeXHJZTwAAAGpSURBVHjaZJLLrgFBEIZnxrhLCCEhEgskQmLJy4jnlHgIKwvEwv0SdyPHdcan2+k4Ry0q1V1//fVXdevX67XX6w0GA03TdGEqUDHecZxUKpXP503Qo9HItm3DMBTuO6ZmvV7jTbhBB4PBdDpNYrvd7vf7bzQe2HQ6NTlwGwgEcrmcJux+v4/H48lk8ng8PtEcEeaq1WqGMM7n89ntdns8nkgkguIfYQptC9MbjcY/3dFolG6IhLvb7c7nc4n+0yEWi1WrVTwddrsdWn0+XygU4uZ4PFqWJWsoMCT3a3zTRAnclUoFKNtbLBbcFwoFAFIPR1e9Xud8uVyWy+XpdALKDPF4fLPZMHoymeQI/Wq1eg0Au9qgrGm1WhDTrVgsQtTpdGDNZDL2rxlya+RKpVK5XEZ0v99nXcxAPJvNbrcbg9FZSnrPgHrS4XA4kUjQajgckkMYILQRk30PLTsA4r2I2QmJw+FA7Pf7iVmaXIkjTG82m16vlxqGozV8coP0xDMr2qi0hBHr7XabX0Wpeh37y8ji4WXpJj+WjryU82HqcfDqJpvNAn4KMABHM1KPCrIXTAAAAABJRU5ErkJggg==" border="0" width="16" height="16" alt="Lifehacker" /><span> Lifehacker</span></a></li><li><a href="/feeds/Fark.com" title="Fark.com RSS (1,391,522 views)"><img src="data:image/png;base64,iVBORw0KGgoAAAANSUhEUgAAABAAAAAQCAIAAACQkWg2AAAABGdBTUEAANbY1E9YMgAAABl0RVh0U29mdHdhcmUAQWRvYmUgSW1hZ2VSZWFkeXHJZTwAAAGpSURBVHjaZJLLrgFBEIZnxrhLCCEhEgskQmLJy4jnlHgIKwvEwv0SdyPHdcan2+k4Ry0q1V1//fVXdevX67XX6w0GA03TdGEqUDHecZxUKpXP503Qo9HItm3DMBTuO6ZmvV7jTbhBB4PBdDpNYrvd7vf7bzQe2HQ6NTlwGwgEcrmcJux+v4/H48lk8ng8PtEcEeaq1WqGMM7n89ntdns8nkgkguIfYQptC9MbjcY/3dFolG6IhLvb7c7nc4n+0yEWi1WrVTwddrsdWn0+XygU4uZ4PFqWJWsoMCT3a3zTRAnclUoFKNtbLBbcFwoFAFIPR1e9Xud8uVyWy+XpdALKDPF4fLPZMHoymeQI/Wq1eg0Au9qgrGm1WhDTrVgsQtTpdGDNZDL2rxlya+RKpVK5XEZ0v99nXcxAPJvNbrcbg9FZSnrPgHrS4XA4kUjQajgckkMYILQRk30PLTsA4r2I2QmJw+FA7Pf7iVmaXIkjTG82m16vlxqGozV8coP0xDMr2qi0hBHr7XabX0Wpeh37y8ji4WXpJj+WjryU82HqcfDqJpvNAn4KMABHM1KPCrIXTAAAAABJRU5ErkJggg==" border="0" width="16" height="16" alt="Fark.com RSS" /><span> Fark.com RSS</span></a></li><li><a href="/feeds/ScienceBlogs-Combined-Feed" title="ScienceBlogs : Combined Feed (1,365,684 views)"><img src="data:image/png;base64,iVBORw0KGgoAAAANSUhEUgAAABAAAAAQCAYAAAAf8/9hAAAABmJLR0QA/wD/AP+gvaeTAAAACXBIWXMAAABIAAAASABGyWs+AAACkUlEQVQ4y32TPUvrcBSHnyS1hgaK2tSXliIVLAVBQRCh6CAoToKjS7eOfgHBoaPQzyDi1MFFEJwFwUUEpSVYtY0gvrWQRogmfUn/d5ArysX77L+H8+OcIwkhBN/wfR/P8/A8D0mSUFWVYDCILMuUy2UeHh7IZDIMDg4CEPgebrfbHB8fc3R0xOvrKwCJRIKlpSXW1tawLItQKISiKF+ZL4Hneezv77O7u0u1WsWyLADGxsawLIvV1VU+Pj7odrvUajWCwSDRaPRT0Ov12Nvbo1AoYJom8XicXC5Hr9ejXC6zsLCA7/s0m00kScJxHDzP4/n5+VNgWRbFYhHTNEkkEuzs7DA7O4vv+9ze3jI/P48kSSiKwvDwMLquc35+jizLnwJZlnEcB4BwOMzKygrRaBSAqakpAK6urggEAszMzDA0NESpVEKSJOS//fv7+wGo1WoUCgUMw8D3/a/N2LaN53l0Oh0eHx9xXZdYLIaSz+fzfX193NzcYBgG7+/vnJ2dUalUGB0dZWJiAlmWqdfrtFotms0mT09PaJrG9PT0ZwVVVdnc3KTRaHB4eIjjOJyentJutwmHw2QyGSYnJ+l0Ory8vKDrOqlUCl3XQXyjUqmIra0tkUwmBSBkWRbr6+vCtm0hhBCu64q3tzfhuu5X5odACCEajYYoFosilUoJQEQiEXF5eSl+Qwb4fs26rrOxsUE6nQag1Wrhui6/EbBtm4ODAzRNI5lMoqoq19fX3N3dATAyMkI8Hv9dcHJywvb2NpFIhHQ6TSgUolQqYRgGmqaRzWaJxWK/C0zTZGBggPv7e6rVKkIIFEVhfHyc5eVlcrncj+f5R7C4uEi9Xufi4oJutwuAoijMzc2RzWb/Oz7AH3NyZ/Seu7oBAAAAAElFTkSuQmCC" border="0" width="16" height="16" alt="ScienceBlogs : Combined Feed" /><span> ScienceBlogs : Combined Feed</span></a></li><li><a href="/feeds/graffiti-Everyones-Tagged-Photos" title="Recent Uploads tagged graffiti (1,293,778 views)"><img src="data:image/png;base64,iVBORw0KGgoAAAANSUhEUgAAABAAAAAQCAYAAAAf8/9hAAAABmJLR0QAAAAAAAD5Q7t/AAAACXBIWXMAAABIAAAASABGyWs+AAAACXZwQWcAAAAQAAAAEABcxq3DAAABG0lEQVQ4y82SPUoDYRCGn5lvs7AX0E4QMbYeQBAEJRAQFEEQrBRCDqCVYqJY2dhFxdZCEAOphIAnsBBCCjUH0HiAQH6+sRBMJLvVFjrVwDPzMjPvCGCkCE3T/D8Egp9s9+WZjD5iEuElz9XM1GihTRw0UFfHCKGfl4/TaQABjOLbPqJnw2qLMLvkYnYbwCZLR6gcj/DQ4FzfS0Wh0LrHyfrYbGYRvX7TajctXLASw0N8/ylAuI1dTqRDJqih2kjgXdRVFWGQfCIbgHSSMV0Fn4uH5uj5JbzlEwU8OaWS3cH8WoxCmeu5eWmXtzC/OY79nnyWF75dACi83qFaB0LwG1Syi79tPKzi3ANGiB+sSvtkeWhjivj7V04t8AUrEF91ExrSDAAAAABJRU5ErkJggg==" border="0" width="16" height="16" alt="Recent Uploads tagged graffiti" /><span> Recent Uploads tagged graffiti</span></a></li><li><a href="/feeds/CNN.com-Recently-Published-Updated" title="CNN.com - RSS Channel (1,220,122 views)"><img src="data:image/png;base64,iVBORw0KGgoAAAANSUhEUgAAABAAAAAQCAYAAAAf8/9hAAAABmJLR0QA/wD/AP+gvaeTAAAACXBIWXMAAABIAAAASABGyWs+AAAAiElEQVQ4y92SQQ4DIQwDnb48/My8bHpAQGi3pz20aiSkOAETGwJAN+Jx5/C/EfTepQgp4shntAi11gaoPQDbpAQXyza2d20828pVC7aZhJUkM498YSAAyjhbXBn/Y8Bp4tTYex8489j/ipcHwKUHmfmmv8rZHkyS2lRpSeOCijOLBz/xkb5G8AQlrspWa7fgMAAAAABJRU5ErkJggg==" border="0" width="16" height="16" alt="CNN.com - RSS Channel" /><span> CNN.com - RSS Channel</span></a></li><li><a href="/feeds/digg" title="Digg Top Stories (1,164,359 views)"><img src="data:image/png;base64,iVBORw0KGgoAAAANSUhEUgAAABAAAAAQCAIAAACQkWg2AAAABGdBTUEAANbY1E9YMgAAABl0RVh0U29mdHdhcmUAQWRvYmUgSW1hZ2VSZWFkeXHJZTwAAAGpSURBVHjaZJLLrgFBEIZnxrhLCCEhEgskQmLJy4jnlHgIKwvEwv0SdyPHdcan2+k4Ry0q1V1//fVXdevX67XX6w0GA03TdGEqUDHecZxUKpXP503Qo9HItm3DMBTuO6ZmvV7jTbhBB4PBdDpNYrvd7vf7bzQe2HQ6NTlwGwgEcrmcJux+v4/H48lk8ng8PtEcEeaq1WqGMM7n89ntdns8nkgkguIfYQptC9MbjcY/3dFolG6IhLvb7c7nc4n+0yEWi1WrVTwddrsdWn0+XygU4uZ4PFqWJWsoMCT3a3zTRAnclUoFKNtbLBbcFwoFAFIPR1e9Xud8uVyWy+XpdALKDPF4fLPZMHoymeQI/Wq1eg0Au9qgrGm1WhDTrVgsQtTpdGDNZDL2rxlya+RKpVK5XEZ0v99nXcxAPJvNbrcbg9FZSnrPgHrS4XA4kUjQajgckkMYILQRk30PLTsA4r2I2QmJw+FA7Pf7iVmaXIkjTG82m16vlxqGozV8coP0xDMr2qi0hBHr7XabX0Wpeh37y8ji4WXpJj+WjryU82HqcfDqJpvNAn4KMABHM1KPCrIXTAAAAABJRU5ErkJggg==" border="0" width="16" height="16" alt="Digg Top Stories" /><span> Digg Top Stories</span></a></li><li><a href="/feeds/Ars-Technica" title="Ars Technica (1,144,674 views)"><img src="data:image/png;base64,iVBORw0KGgoAAAANSUhEUgAAABAAAAAQCAYAAAAf8/9hAAAABmJLR0QAAAAAAAD5Q7t/AAAACXBIWXMAAABIAAAASABGyWs+AAAACXZwQWcAAAAQAAAAEABcxq3DAAABfUlEQVQ4y52TP0gCURzHP/cqCCcdRGjwQhpqu1paJA5aahOnIlBpacxJiIIIjKjJoKUGsaYmMRpqiQ4K2vS2agl1CKIgHbIguNdwWncRdfZdHu/L+35/7/dPASQOWEa+wOXBvnJtGE5ejug60URS6PMpJ690DKyHuxq5eEypmya/QIY1jXSxJEIR9dPAerirsTI2qrQaz3iA9PkDZMsVEYqoAoBcPOZVDKC0Gs/k4jEAYRn5wl/f/tGkbpqWkS/0rA41m8pTtdqtAQCvzaYi5xxE5hSGxqGvH3ZmYWoRBobh6hAmUvD+Bve3sK5/SoTLcWcGTrfth6oGwUE43oSLfdv0bBf2XF38ZrB2ZZ9PjoxqJjxWYWsagiosn7skva7bSwMmF8DnB46++OAgZE7aKdy4i2lldf371HmFHNF1QTSR/FcHAKKJpD2JS9pot7Mgw5omNsyKXcR0sSR9/oBnsc8fIF0sQbsLIhRRyZYrMqxpXiJ39gAc29hBt+v8AWajkEaEm7rMAAAAAElFTkSuQmCC" border="0" width="16" height="16" alt="Ars Technica" /><span> Ars Technica</span></a></li><li><a href="/feeds/Crooks-and-Liars" title="Latest articles from Crooks and Liars (1,110,238 views)"><img src="data:image/png;base64,iVBORw0KGgoAAAANSUhEUgAAABAAAAAQCAYAAAAf8/9hAAAABmJLR0QAAAAAAAD5Q7t/AAAACXBIWXMAAABIAAAASABGyWs+AAAACXZwQWcAAAAQAAAAEABcxq3DAAACRElEQVQ4y5VQXUhTYRh+zn5c+z1nhrYfc1vQRTTKyGgI5lWrFZV5q5Emq5uoTqJCRCwaEUGoRIySXAl6F8JMRtlNxKEfqTELlWMw3IWlMDZLXe3v66KdcabbhQ+88L7P+7zP+34fCM/h/NkTLQDIVqLrOusd6O8bAQBCeA7lhBazQZHvO8S8TqOufHDP+xAtzibnq6G+Cnfnhd4SBl3T48OKz2N+9Wt/v0Lg+25cYZbev4RWreoGAMJeZatLbZ8JjirNBrN+kQvgd+gNRVGUFwDx+/2xyWcDylAolAEA8mRw6KnVag2Ih3svtkkJz4GmjTLDjp0qs7GWoWlj4ak+n28in/8n7C626B963K0KwnMgPIfYVJDKzr3DuTPHdbOzs7xYSwkudhdLrcWilZFPL2IAQHiOSmcykMtkAIDEr1UJo9PkkMft0clvHo9nb8FJpTexdheLurq6kV21JrWwffzxfUS+R7Z1tLVVtZ5yygnPQcUYBzddAACW+maFtsqWojJJPL97afsBej0m9P78TWFh8afU2TOsjYaDcYEvMrC7WErIyUqE+fp2LJFOpyU1NdW55Q8TsDV300uLEUsy8SMs6CQQYWby0Z2CM21LNB49JpXL5bnlQBOIrQEay+EV8fAmg1wmdVNcL8SlyoYjjdK56Kr24OnLVKezdgobIEEZ7N+3W+/uvpVcZQ5l271f1tOoICzL1m/UycQFwzAfhTw8PR8PT88DANYs7dlyi4ou0FgcDmwRRQaMaU9Z4bWOk4lS/D9p7wVW+ksiPAAAAABJRU5ErkJggg==" border="0" width="16" height="16" alt="Latest articles from Crooks and Liars" /><span> Latest articles from Crooks and Liars</span></a></li><li><a href="/feeds/Engadget-Mobile" title="Engadget RSS Feed (1,052,779 views)"><img src="data:image/png;base64,iVBORw0KGgoAAAANSUhEUgAAABAAAAAQCAYAAAAf8/9hAAAABmJLR0QAAAAAAAD5Q7t/AAAACXBIWXMAAABIAAAASABGyWs+AAAACXZwQWcAAAAQAAAAEABcxq3DAAABKUlEQVQ4y52TvUrEQBSFv+yC7YJipY2VhaVgJTj9zvgGPoDEB/BJlMC2tjYzlV3KVIKgkNjJvsGCRRK5FslkZ39C2D1wmcu9c86cYeYCSBtPNLgC7oEZ8BH0t0bUJgAXwBebOGhFL4P1PNwgwBu7YQJM/eEC3O4o4LEA+AbGxhhEBGNM7+4kSRCRsPQ5Ap6BvziOqaqKOI67rrUWEcFa26f5AzBRSiEiXSilVsh+3eIgGQFTpRQAURQBoJRCa41zDmMMzjm01r0O5kVRRGVZdg7yPB90ICJkWXba5st7eoLP67rueusCaZoe+WdcACd7POOZFxDgZQ+B61BAfGEAh8ADyzlZEXgHxj3Em9bl7xpnY8LuAtIx8EjzW/smcqMwp5mNV6BmYJz/AUiixKph8SunAAAAAElFTkSuQmCC" border="0" width="16" height="16" alt="Engadget RSS Feed" /><span> Engadget RSS Feed</span></a></li><li><a href="/feeds/Christian-Science-Monitor-Top-Stories" title="Christian Science Monitor | All Stories (877,752 views)"><img src="data:image/png;base64,iVBORw0KGgoAAAANSUhEUgAAABAAAAAQCAQAAAC1+jfqAAAAAmJLR0QAAKqNIzIAAAAJcEhZcwAAAEgAAABIAEbJaz4AAAAJdnBBZwAAABAAAAAQAFzGrcMAAADOSURBVCjPhZGxbcQwDEWfDllAK2gFFVlAK2iFW+GaDJCMcO7TeIIA9ghOmyKFVsgIL4V8ti8BErIgQDz+T5BB/o5TLy+/uMG590RGo3KfyVfFrtD4+qHxZONjt3gHhjuDN+CTzSKLeN1sJhEfFTsQzWLegGoV0w7gZBSnFUGJcgMWUc5iUeRsVdI6gIw766JEF6WsWz1AIwNQmBlIZnKABDToQALgwsxA5ArswAkasSuEDERqOAJI9HndfjxcYxFRuIhla9fDsbJYDP+9+xttCK4+4zTxsQAAAABJRU5ErkJggg==" border="0" width="16" height="16" alt="Christian Science Monitor | All Stories" /><span> Christian Science Monitor | All Stories</span></a></li><li><a href="/feeds/screenshot-Everyones-Tagged-Photos" title="Recent Uploads tagged screenshot (875,178 views)"><img src="data:image/png;base64,iVBORw0KGgoAAAANSUhEUgAAABAAAAAQCAYAAAAf8/9hAAAABmJLR0QAAAAAAAD5Q7t/AAAACXBIWXMAAABIAAAASABGyWs+AAAACXZwQWcAAAAQAAAAEABcxq3DAAABG0lEQVQ4y82SPUoDYRCGn5lvs7AX0E4QMbYeQBAEJRAQFEEQrBRCDqCVYqJY2dhFxdZCEAOphIAnsBBCCjUH0HiAQH6+sRBMJLvVFjrVwDPzMjPvCGCkCE3T/D8Egp9s9+WZjD5iEuElz9XM1GihTRw0UFfHCKGfl4/TaQABjOLbPqJnw2qLMLvkYnYbwCZLR6gcj/DQ4FzfS0Wh0LrHyfrYbGYRvX7TajctXLASw0N8/ylAuI1dTqRDJqih2kjgXdRVFWGQfCIbgHSSMV0Fn4uH5uj5JbzlEwU8OaWS3cH8WoxCmeu5eWmXtzC/OY79nnyWF75dACi83qFaB0LwG1Syi79tPKzi3ANGiB+sSvtkeWhjivj7V04t8AUrEF91ExrSDAAAAABJRU5ErkJggg==" border="0" width="16" height="16" alt="Recent Uploads tagged screenshot" /><span> Recent Uploads tagged screenshot</span></a></li><li><a href="/feeds/MAKE-Magazine" title="MAKE (859,308 views)"><img src="data:image/png;base64,iVBORw0KGgoAAAANSUhEUgAAABAAAAAQCAIAAACQkWg2AAAABGdBTUEAANbY1E9YMgAAABl0RVh0U29mdHdhcmUAQWRvYmUgSW1hZ2VSZWFkeXHJZTwAAAGpSURBVHjaZJLLrgFBEIZnxrhLCCEhEgskQmLJy4jnlHgIKwvEwv0SdyPHdcan2+k4Ry0q1V1//fVXdevX67XX6w0GA03TdGEqUDHecZxUKpXP503Qo9HItm3DMBTuO6ZmvV7jTbhBB4PBdDpNYrvd7vf7bzQe2HQ6NTlwGwgEcrmcJux+v4/H48lk8ng8PtEcEeaq1WqGMM7n89ntdns8nkgkguIfYQptC9MbjcY/3dFolG6IhLvb7c7nc4n+0yEWi1WrVTwddrsdWn0+XygU4uZ4PFqWJWsoMCT3a3zTRAnclUoFKNtbLBbcFwoFAFIPR1e9Xud8uVyWy+XpdALKDPF4fLPZMHoymeQI/Wq1eg0Au9qgrGm1WhDTrVgsQtTpdGDNZDL2rxlya+RKpVK5XEZ0v99nXcxAPJvNbrcbg9FZSnrPgHrS4XA4kUjQajgckkMYILQRk30PLTsA4r2I2QmJw+FA7Pf7iVmaXIkjTG82m16vlxqGozV8coP0xDMr2qi0hBHr7XabX0Wpeh37y8ji4WXpJj+WjryU82HqcfDqJpvNAn4KMABHM1KPCrIXTAAAAABJRU5ErkJggg==" border="0" width="16" height="16" alt="MAKE" /><span> MAKE</span></a></li><li><a href="/feeds/The-iPhone-Blog" title="iMore - The #1 iPhone, iPad, and iPod touch blog (858,722 views)"><img src="data:image/png;base64,iVBORw0KGgoAAAANSUhEUgAAACAAAAAZCAYAAABQDyyRAAAABGdBTUEAALGPC/xhBQAAAAFzUkdCAK7OHOkAAAAgY0hSTQAAeiYAAICEAAD6AAAAgOgAAHUwAADqYAAAOpgAABdwnLpRPAAAAAZiS0dEAAAAAAAA+UO7fwAAAAlwSFlzAAAASAAAAEgARslrPgAAAAl2cEFnAAAAIAAAABkAiX4RJwAAAtxJREFUSMftlj1MFFEQx3+z+27vOO/kQNSISqIRrSTGr4QQjRbaaqWViZWNRm2IjY0xVjbGwsLGUGjiR6GJUQoKLbTwo8GvkCBGCSeoAY5DPO5231jcIRIRdg/snG533/zn9+a9mVmhSmtqWnMW5BSQALp8PziZzWb7o+qY6oI3nQE9/9urg67rLAd2ARpFy6kGIAjsAceZ6Rozps2YutaoWlUBDAwM930bnkAQRARV6PvQP7quMT0YVctoD6vxMVjsvKsTQJxvh05sunW388Phj5/GDQhgad228XbH+dJAcwtrGcHDwUFRBMHFpYRgsCiKiw9AkZIEb3mNsgEhFypdBiXOaNfjlpXX78cy4+M+O1tM0H7s5ScMxo5JAtEEgkP5PgiK+0tEsEARSKH0SvCWYYG6eXdvBUkrxCvPcfhNFnKgow648ydyyhSGDUoBmXuhCJBULlzawdPuSTJpF1VwHHAcYSTns3u7R/uxF2ghwgVQJsOXYRy6nk3w6MkbkDSoTtNpHqWF9uMghWh1GB7AQn2twXgZ1qyqRX8BQHbQULfUROwAZQtfhgK5fIBfHGVsvAACioKCWp0GimjhM1CCti01mNhm8nmf9/054p4b2n1BGVAFnYBzp5/TeecV+9pS5POTCw4eGgAo95si8B38EqiE9lwkgEomUKo+7wUD/Av7DxANYPGOfgaAFyawaLkDk4GapICdSWNiAhnKI9uGLhHPIPyoxCj9ddcOSC368MGW2EjOlXe9PvH4dA9L1BiGvpa4cXUrjY2+3bO3u2RHcCrDeFYTiCH8EO1hPYpHQPBXzgb08pWdX06d676NxPY3NCwhlfSwlXIUEQqTPkODWZqb1927dtE70ra1ZyX5Oeasi4tQjNROkqllN5fVJQ+pKo4z03WqNWSHxjqCYu5oWM1Il3BFQ6oe+CN4OQvlTKxtrE1H0Yz0Wx4EdlAEVPXzbN9FWGWtfomi+ROQ+AZZw9cIDgAAAABJRU5ErkJggg==" border="0" width="16" height="16" alt="iMore - The #1 iPhone, iPad, and iPod touch blog" /><span> iMore - The #1 iPhone, iPad, and iPod touch blog</span></a></li><li><a href="/feeds/NYT-Home-Page" title="NYT > Home Page (857,780 views)"><img src="data:image/png;base64,iVBORw0KGgoAAAANSUhEUgAAABAAAAAQCAYAAAAf8/9hAAAABmJLR0QA/wD/AP+gvaeTAAAACXBIWXMAAABIAAAASABGyWs+AAABLklEQVQ4y6VSwY3DIBCcO90/7sB0YDrAHUAJ7sDbgdNB0oHdQeggKQGXkAq8Hcy9DplwyZ2UkRCC3R12h/kgSbyBz3eKfyVQVYgIjDGw1mIYBtxuNwCAiEBEygI+YBxHAni59vh67CClBO89rLVQVcQYcb/fc9w5V+R/PIq4LAuMMXnv+x4pJcQYMQwDQghomuY5gaqi7/t8XtcV0zQBAI7H498iigjWdcX5fC5e+umiwl6QbdsIgF3XkSSdcwRA7z0BsG1bbtv2XMSUUm57D2strLUQkaKraoR9MMYIVYVzDiGEYsSXPmjbNv/36XTK99M0ses6eu+L/IrgcrkUpvHecxzHTHy9Xl8TkOQ8zzwcDpUD53mucisf7P2wLAtUFU3TIIQAY0yV95Tgv/gGbh1AgIuLqgAAAAAASUVORK5CYII=" border="0" width="16" height="16" alt="NYT > Home Page" /><span> NYT > Home Page</span></a></li><li><a href="/feeds/Treehugger" title="Latest Items from TreeHugger (846,574 views)"><img src="data:image/png;base64,iVBORw0KGgoAAAANSUhEUgAAABAAAAAQCAMAAAAoLQ9TAAADAFBMVEUAAAAcHBwfHx/7+/sdHR0oKCgaJR0eHh4gICAwMDAbHBshISEnJydBQUElJSUkJCRSUlImJiY5OTkiIiIjIyPIyMjZ2dnAwMA6Ojo2NjYqKip0dHQ+Pj7R0dGGsZApKSkbHxxaWlpgYGCFhYX+/v40NDQ/Pz/8/PzJyclHR0crKystLS09PT1ERERJSUl9fX3q6uoxMTE1NTVCQkIyMjJra2uVlZWvr69lZWUvLy9QUFDW1tbU1NSnp6dTU1ONjY1hYWFOTk7j4+NNTU1fX18uLi43Nzc7OzszMzPh4eHk5OTl5eWurq7u7u7T09Pt7e35+fnExMSBgYFPT08sLCxVVVVZWVljY2O3t7dMTEzx8fFLS0tbW1vw8PC6urr9/f18fHzNzc27u7uZmZmysrKCgoJsbGx4eHhISEhdXV1XV1dKSkpnZ2eGhoZunnouWznz8/Py8vLQ49XS5Nfi4uJtbW0kSi4sWDff39+2trb39/d1dXXPz8+dnZ0dOCQcMyIoUDKMtZZWVlb7/ftgkm1zc3NtnXqIiIiDro7CwsLl8OiQkJBcXFx0o4BGeVPe3t4pUzPb6d5qamq/v7+EhIStra2AgICcnJzBwcE4ODhycnLOzs6mpqbGxsbHx8dDQ0OxsbGLi4vp6em9vb2Ojo5ubm5RUVFkZGTX19fm5uZGRkbQ0NB+fn5mZmY8PDzS0tJUVFSoqKiXl5fc3NysrKx5eXkbLB96enpYWFjo6OikpKQaIhywsLDv7+/KysqTk5OYmJirq6u0tLT09PSUlJSDg4Ojo6Oqqqqenp6fn5/6+vqbm5uJiYm4uLiMjIz29vbV1dWgoKBFRUXY2Ni+vr7Ly8va2tp/f3+lpaW5ubmPj49wcHC1tbVeXl57e3vMzMxoaGjn5+diYmJ2dnahoaFAQEDg4OCzs7O8vLyWlpbb29saIRzs7OyioqLd3d0bLiCRkZFxcXF3d3dpaWnFxcXr6+uampqpqamKior4+Phvb2/Dw8P19fWSkpIbGxv///9UlV7TAAAACXBIWXMAAABIAAAASABGyWs+AAAAMElEQVQY02P4/w8F/Gf4hwawCjCDWcwkCQABjERTwUy2AEQEWeAf2BZkAbx+Qfc+AE4f3aq6oI5KAAAAAElFTkSuQmCC" border="0" width="16" height="16" alt="Latest Items from TreeHugger" /><span> Latest Items from TreeHugger</span></a></li><li><a href="/feeds/Slashdot" title="Slashdot (822,043 views)"><img src="data:image/png;base64,iVBORw0KGgoAAAANSUhEUgAAABAAAAAQCAYAAAAf8/9hAAAABmJLR0QAAAAAAAD5Q7t/AAAACXBIWXMAAABIAAAASABGyWs+AAAACXZwQWcAAAAQAAAAEABcxq3DAAABbElEQVQ4y51Tv0sCYRh+7rtzCQRbDlJrcREyWuSWCMHRIRdBQnEXIjkQ8h8IvBbRXFoUhyMEtwanhEgXp8JbjQMN3IJDRe30GsLTi7vgfKb34X2f5/3x8VHtXk+7KhQw0DTYwSFFoczzoI5TKe3L57MlXmO/3wfzOZ2ClmV8r1a2xA5CMKJpMAAsxQ5CkI1EdF5vNvGxXGJbw5DJ2LJLNh5HLhbTuVCvg2zlyWRs4AbQTqdBnCsVTessDe6TST3uSBIeXtumdYw6X4CBcY2jAzcuw+HN6KIIs1XV+cJ8gjLP6/Fjq4XO+5vlnZi10xohjsNZIKDz21oN6nyBdPQCLrfn9yVk2WiwjZtEQo/zjQYGwyFCHIf8dQYAcO73I5LJbI6oKopO0tELQ/dqtYr/oCqKcQKX24OOJAEAnlrPGM1mAICXbhe5UhGngRPciaLBhNoLBu39oj8gXpbdWexlWZCKIGAXEy/LoiII+AGfT3rcUkeyQAAAAABJRU5ErkJggg==" border="0" width="16" height="16" alt="Slashdot" /><span> Slashdot</span></a></li><li><a href="/feeds/Techmeme" title="Techmeme (810,322 views)"><img src="data:image/png;base64,iVBORw0KGgoAAAANSUhEUgAAAA8AAAAQCAYAAADJViUEAAAABmJLR0QA/wD/AP+gvaeTAAAACXBIWXMAAABIAAAASABGyWs+AAACY0lEQVQoz42RbUzNcRTHP/+63brdrilJLE2e602eLWm2ttsk7VrWYr0o3UzLZBprUkqYmMRIM93WyDJr07UpuZtrKWmpFRWuh1FqoYySnu/Pixb9u2O+r86+53zO2TlHKii7L7Ku3sTPx5u5s91wdlLyN/X9GODl+05cnFVEh25CetTUKgA2+vvxL9W1WBgdH0NhZ0/ru3b0Oi3S7hOXxBrfxQBo1CqiQoIYHBqmpLIKq1WgUauorG1geGScAP/lqJ0c0eu0VDe3IXmHxQmAlcsWUpZzhFcfOgnZe9RmctKOcGZq1Oh1WrKLSqlpfoECYGvQWvJSEnhQ/4xdxy7YgKeTYhkYHEKv0xKdlkN1UxsAij0Rm0mNi+R6uZm0y8U2YPHxZCztXeh1WrSJ6Vjau37nJCGEyC4qJb+0wgY0XzmJ+elzYsKCWR97kJ5vfbK8/Vf1vMziiocy00mppPFGLuU1DaxY6kNwQhr9PwdlNVkJ0dh3Kz0yp5qes1xpKM6lpLKKRV6e7Ew9y7jVKgML0vcRERwwcbBJ+S9ZwJ3cdAxGE64aF2IyztusUnExEz+f+Ww/dOoPvCVwNfmHEzEYTQghOHCuQAYpHRQ8LjyD2wwNgXEpfPzcMwHHbwshPT4Kg9FE7/d+8m7dlYGuM1yov5bD2LgV38hEhkdGJ67d8emL8PJwx2A08bqji5J7VRIgJr/h4uwkwoPWMTQywm3zE2lKTyEJIYTBaMJ7jjsqlSOADJ4SM91TGIwmKmsbqWux8L+SgMKM/SjedvdS3/Zm0pveXTbVzs5OCt2witzkeMlR6cAvjx7fS10SgsUAAAAASUVORK5CYII=" border="0" width="16" height="16" alt="Techmeme" /><span> Techmeme</span></a></li><li><a href="/feeds/ProgrammableWeb" title="ProgrammableWeb.com (806,218 views)"><img src="data:image/png;base64,iVBORw0KGgoAAAANSUhEUgAAABAAAAAQCAYAAAAf8/9hAAAABmJLR0QAAAAAAAD5Q7t/AAAACXBIWXMAAABIAAAASABGyWs+AAAACXZwQWcAAAAQAAAAEABcxq3DAAABkElEQVQ4y5WSvy9DURTHP0+Lkvb5tbyEiIQ0gvQ1kUgjEhUJJmGxqrVL1SAx4T/wFrMmdjVZX4emHRuDwUK08Sy0RfJocA19rx7aqO9y7zk553u/53suogFufYGiaAIt1IEhqzlggybgbpCPN9MM8EuBIasJQAd0S8n/CIA9x137F4H14rUjdW3lU4asrhqyWvpLwemPeMhxT9bz5ieBDtAaqNhxxDoPXMo7wJHlUWMP2qdfsYoBTgxZnQOSXfslJK+wlTQmcI+84Vl8cZqoexZM3MNvdCyYAKW6BFIsqydGZ+8A2tQK3ugTLuUdz6KJL/pUrfEKUv1jBSmWrRktCSGEFMsmgdWB53vOy3Hk7ce6Kytu9bDcv0NG8XcDJ0ILhVscUil4+0hczfOabv/V/Hzo49gMk1H89hgafH3liL2B3ak1JrQ8k+lLXMoHAJVcK8dmmPjMupMzUhvB8iBF9RfqcsVk6SbH+EOex7ZOzgaDXPQO2I0rwKbQQrPfCBxmloGcrchCNxAEgkILdTnrPwH0lr5Iyvwf9AAAAABJRU5ErkJggg==" border="0" width="16" height="16" alt="ProgrammableWeb.com" /><span> ProgrammableWeb.com</span></a></li><li><a href="/feeds/Hacker-News" title="Hacker News (781,496 views)"><img src="data:image/png;base64,iVBORw0KGgoAAAANSUhEUgAAABAAAAAQCAYAAAAf8/9hAAAABmJLR0QAAAAAAAD5Q7t/AAAACXBIWXMAAABIAAAASABGyWs+AAAACXZwQWcAAAAQAAAAEABcxq3DAAAAjElEQVQ4y2P8n8bwn4ECwESJZhoZMPM/A8PM/wzfVXSxihM04NemEgYGBgYGZnU3hJh3MYocXgPYtvZCaKNwhBiUDZNDBizY/PVzUQQDe9wKuM1sMqYQMSxqGXFGY+0pBgYZUwj7yWkGhmYzIgMR5u9zK7GyiXcBLOQZGBgY0hlxKhmMCYlEwDj0MxMAg7ctWDDS/kEAAAAASUVORK5CYII=" border="0" width="16" height="16" alt="Hacker News" /><span> Hacker News</span></a></li><li><a href="/feeds/SEOmoz-Daily-SEO-Blog" title="moz (en-US) (698,907 views)"><img src="data:image/png;base64,iVBORw0KGgoAAAANSUhEUgAAABAAAAAQCAIAAACQkWg2AAAABGdBTUEAANbY1E9YMgAAABl0RVh0U29mdHdhcmUAQWRvYmUgSW1hZ2VSZWFkeXHJZTwAAAGpSURBVHjaZJLLrgFBEIZnxrhLCCEhEgskQmLJy4jnlHgIKwvEwv0SdyPHdcan2+k4Ry0q1V1//fVXdevX67XX6w0GA03TdGEqUDHecZxUKpXP503Qo9HItm3DMBTuO6ZmvV7jTbhBB4PBdDpNYrvd7vf7bzQe2HQ6NTlwGwgEcrmcJux+v4/H48lk8ng8PtEcEeaq1WqGMM7n89ntdns8nkgkguIfYQptC9MbjcY/3dFolG6IhLvb7c7nc4n+0yEWi1WrVTwddrsdWn0+XygU4uZ4PFqWJWsoMCT3a3zTRAnclUoFKNtbLBbcFwoFAFIPR1e9Xud8uVyWy+XpdALKDPF4fLPZMHoymeQI/Wq1eg0Au9qgrGm1WhDTrVgsQtTpdGDNZDL2rxlya+RKpVK5XEZ0v99nXcxAPJvNbrcbg9FZSnrPgHrS4XA4kUjQajgckkMYILQRk30PLTsA4r2I2QmJw+FA7Pf7iVmaXIkjTG82m16vlxqGozV8coP0xDMr2qi0hBHr7XabX0Wpeh37y8ji4WXpJj+WjryU82HqcfDqJpvNAn4KMABHM1KPCrIXTAAAAABJRU5ErkJggg==" border="0" width="16" height="16" alt="moz (en-US)" /><span> moz (en-US)</span></a></li><li><a href="/feeds/PhysOrg.com-latest-science-and-technology-news" title="Phys.org - latest science and technology news stories (650,445 views)"><img src="data:image/png;base64,iVBORw0KGgoAAAANSUhEUgAAABAAAAAQCAYAAAAf8/9hAAAABmJLR0QAAAAAAAD5Q7t/AAAACXBIWXMAAABIAAAASABGyWs+AAAACXZwQWcAAAAQAAAAEABcxq3DAAADI0lEQVQ4y02TzWtdZRCHn3nPec+5N4kmab5sTexHmixiLNZqaf0oVipSKSi40JWIf4Kg6FKtoCtBVwpuXChFoQsJWlFKiaYUbImllDZGaiUkTW5zT+7HuTcn57zvuEiiDsxmmOfHDDM/efKV95X/Qr3q5SzL9zrvqyDeCHvzwkW1Rot6s+Xz3HmEcBsIESG2ISKCKtPGyN+xtY+m7fU+5zVF9S5wL1AHUgQHDAI7NgVUMcZQii3GmJkwMCc6SjG5K6g1Wp31RlsK55IoCvtEZJeqIiLLwHVgIgRy0PNhGFyKrZ0a7Ou+4lV3JvXmRGTt41GUPxRkpqNcihjs62ZpJaFwbkNEzgMTBrhqxDRV9ehjB/YliyvVrjiyh7rKpWvO+bdF5KXY2s/Va+KcQ4wAMg/UAIL7J57+qFprHpz/a6kwgXn3l99ujC0sr54e2dn//PieoZa14dziSjJTFO6rtJ01so3isFf9FNUngLGwcL6C0NNRLo3dWqicPn5kMvVe85NPTT67Z3jgwrU/Fpm7tTh6p5K8p/AD8ByqURgEHweBwahX6SjF6eT4AzI6MnTKeT9rrfmuXI4vzN5YYP72CtaGfzbS9nQzbX/p1a8Xzt8eGui52Nvd2Q6Nkd1etbK61pA4shORDXyzlf18ZuoSfb33UKnWuVut45z3xsiHzvn9XR3xm6++eOzwzJW5B8M8dxbodYVL2usbu0qxPbae5bMXZ28e6u7quJy2M5aWq73GmETRWUTOOa89Z6ZmTqw1WnOy75k3VFWX48j2lktR5J1fEJEXKkn9s6SWnhUhC4PgDuhs4fxZYEzBF4Uzxsg3ptZouUaz3Vxda0R5XtDONoaTevNEGARfx1H4gQ2DIUVvbsNAW0BtGBAYczxczzY8kPvND2N05D6WKtV3klr6sqKnvPNlhe+BfiDbun8OpEC/ASywQ2C1ma6vHHl4/1tHD44fT9uZd85fV/hiCy62cm1LYATo33bVgIhcdc7/em7692uKOhuab4EfgdeAT4Bh+NeFu4EAQDoPvP5/O1M4B+DCIAi2Sj+xucJJ4JGtKQa3+/8BfM2XhFU4LPUAAAAASUVORK5CYII=" border="0" width="16" height="16" alt="Phys.org - latest science and technology news stories" /><span> Phys.org - latest science and technology news stories</span></a></li><li><a href="/feeds/tatoo-Everyones-Tagged-Photos" title="Recent Uploads tagged tatoo (646,200 views)"><img src="data:image/png;base64,iVBORw0KGgoAAAANSUhEUgAAABAAAAAQCAYAAAAf8/9hAAAABmJLR0QAAAAAAAD5Q7t/AAAACXBIWXMAAABIAAAASABGyWs+AAAACXZwQWcAAAAQAAAAEABcxq3DAAABG0lEQVQ4y82SPUoDYRCGn5lvs7AX0E4QMbYeQBAEJRAQFEEQrBRCDqCVYqJY2dhFxdZCEAOphIAnsBBCCjUH0HiAQH6+sRBMJLvVFjrVwDPzMjPvCGCkCE3T/D8Egp9s9+WZjD5iEuElz9XM1GihTRw0UFfHCKGfl4/TaQABjOLbPqJnw2qLMLvkYnYbwCZLR6gcj/DQ4FzfS0Wh0LrHyfrYbGYRvX7TajctXLASw0N8/ylAuI1dTqRDJqih2kjgXdRVFWGQfCIbgHSSMV0Fn4uH5uj5JbzlEwU8OaWS3cH8WoxCmeu5eWmXtzC/OY79nnyWF75dACi83qFaB0LwG1Syi79tPKzi3ANGiB+sSvtkeWhjivj7V04t8AUrEF91ExrSDAAAAABJRU5ErkJggg==" border="0" width="16" height="16" alt="Recent Uploads tagged tatoo" /><span> Recent Uploads tagged tatoo</span></a></li><li><a href="/feeds/Recent-Uploads-tagged-rust" title="Recent Uploads tagged rust (619,557 views)"><img src="data:image/png;base64,iVBORw0KGgoAAAANSUhEUgAAABAAAAAQCAYAAAAf8/9hAAAABmJLR0QAAAAAAAD5Q7t/AAAACXBIWXMAAABIAAAASABGyWs+AAAACXZwQWcAAAAQAAAAEABcxq3DAAABG0lEQVQ4y82SPUoDYRCGn5lvs7AX0E4QMbYeQBAEJRAQFEEQrBRCDqCVYqJY2dhFxdZCEAOphIAnsBBCCjUH0HiAQH6+sRBMJLvVFjrVwDPzMjPvCGCkCE3T/D8Egp9s9+WZjD5iEuElz9XM1GihTRw0UFfHCKGfl4/TaQABjOLbPqJnw2qLMLvkYnYbwCZLR6gcj/DQ4FzfS0Wh0LrHyfrYbGYRvX7TajctXLASw0N8/ylAuI1dTqRDJqih2kjgXdRVFWGQfCIbgHSSMV0Fn4uH5uj5JbzlEwU8OaWS3cH8WoxCmeu5eWmXtzC/OY79nnyWF75dACi83qFaB0LwG1Syi79tPKzi3ANGiB+sSvtkeWhjivj7V04t8AUrEF91ExrSDAAAAABJRU5ErkJggg==" border="0" width="16" height="16" alt="Recent Uploads tagged rust" /><span> Recent Uploads tagged rust</span></a></li><li><a href="/feeds/Techdirt" title="Techdirt. (618,196 views)"><img src="data:image/png;base64,iVBORw0KGgoAAAANSUhEUgAAABAAAAAQCAYAAAAf8/9hAAAABmJLR0QAAAAAAAD5Q7t/AAAACXBIWXMAAABIAAAASABGyWs+AAAACXZwQWcAAAAQAAAAEABcxq3DAAACU0lEQVQ4y32TXUgUURTHf3NnsDX7QIg+NBLFpsI1t4h6iIJ6iF6UYuupMlaawFcrClIfioySegoil5QKQlqHQKK3IigkIXK22VXcopAQpMy1SHLd+ehh79hC1B8O98//nnPuOfeeq+iGmQceANPAsUw8WgGgG+YM0AcsB5oz8WhI6jYwCGzNxKONGnANaKeAh7phXgcE0AkMSf090K0b5mfgADAlkz3WgBf8gQU0AyowWaQHiTJBsMRrAZwCSn3A9fzjwAjwFmiRTipwUvLtwG7JVwGHFcCvbhl4JxRmVpRqe0duHRKyPBfYCUQy8ejd4MjqloHvwDBQ86n3SC2A/y/TDbNJN8yu//koY+n0ZOES/a+uT1s4HN4HsCGWeBXSRCOwLud4Tyb6jtYAjKXTj4B7wGbgkpZzvE75XKhCsV4OW6Pn+idKv/zIG8CstPNAIp1Kjecc7wSwADwF1ghgJuhPVZRsds5xsnOOqypKtui2Z+X6UwYHmBZAB1APVCy4XnfT/h3l4z3RJQuudxNYD2wBLsqAbUCb5BGgVQF8K2m7QC7SUL+0KDu6Yc4DWiYe1RYHJWn/kv3fiTTUHxRSzwPz/I15uVcMV1oeQFhJewhoAGqtpH0j8KqKJXqAjUC4KpZ4BpBOpRzgjJzSC1bS/iCAq3JEsyWq6Bh8/ubbptNmrkQV7RQ+2EegS+YdAXokHwVuC6BysTbfX11epoXKyzTV9f21RWUHfCUQKtIrNeAyhd835Xr+2T27ImWyhfuaUK4Ay6QPdeGwbiXtfqAXqANafwN4It7VxuvqXQAAAABJRU5ErkJggg==" border="0" width="16" height="16" alt="Techdirt." /><span> Techdirt.</span></a></li><li><a href="/feeds/moleskine-Everyones-Tagged-Photos" title="Recent Uploads tagged moleskine (592,102 views)"><img src="data:image/png;base64,iVBORw0KGgoAAAANSUhEUgAAABAAAAAQCAYAAAAf8/9hAAAABmJLR0QAAAAAAAD5Q7t/AAAACXBIWXMAAABIAAAASABGyWs+AAAACXZwQWcAAAAQAAAAEABcxq3DAAABG0lEQVQ4y82SPUoDYRCGn5lvs7AX0E4QMbYeQBAEJRAQFEEQrBRCDqCVYqJY2dhFxdZCEAOphIAnsBBCCjUH0HiAQH6+sRBMJLvVFjrVwDPzMjPvCGCkCE3T/D8Egp9s9+WZjD5iEuElz9XM1GihTRw0UFfHCKGfl4/TaQABjOLbPqJnw2qLMLvkYnYbwCZLR6gcj/DQ4FzfS0Wh0LrHyfrYbGYRvX7TajctXLASw0N8/ylAuI1dTqRDJqih2kjgXdRVFWGQfCIbgHSSMV0Fn4uH5uj5JbzlEwU8OaWS3cH8WoxCmeu5eWmXtzC/OY79nnyWF75dACi83qFaB0LwG1Syi79tPKzi3ANGiB+sSvtkeWhjivj7V04t8AUrEF91ExrSDAAAAABJRU5ErkJggg==" border="0" width="16" height="16" alt="Recent Uploads tagged moleskine" /><span> Recent Uploads tagged moleskine</span></a></li><li><a href="/feeds/Cool-Hunting" title="Cool Hunting (569,650 views)"><img src="data:image/png;base64,iVBORw0KGgoAAAANSUhEUgAAABAAAAAQCAYAAAAf8/9hAAAABmJLR0QA/wD/AP+gvaeTAAAACXBIWXMAAABIAAAASABGyWs+AAAB70lEQVQ4y6WT30tTYRzGP+dsRatJ7kjtzBulLTZ3kU4rsIvoxlZCXU67q0yE+hsCU/ImROhK6KY0dFOoSBcWS6NpzrTu5u+cYBCMbbilLrCzt4vRgejcyJ6793l5nuf9PnxfSQghKAFyKWIAsxH5qLePN+NjSJIEwN9Hms2HUCoqaDh7jju3b6IoNmODZDLJViJhmJhYgy+xWdKpFD0Pu5CMOvgYnWF1bR0ASZKQTTK/9/eZjkaZ+TAFwLGyMsITEyAOgNm5eeGsqhbOqmrhdp0W8aVlYTjCRmKTVDr9D7e3lyc8HtbP9spKHKpq3MHA4HOGnz0FQNO0/+6PWCx03L2Hrfy4sUGhIHShyWSiIASiUADgpMPB/c4HXPU3FffgU+wzQ6FRevse68XJsqSb+a9dZ+TFS1yeGgC2MxkikQj5/K9iQDqd6QwNDrAwF8Pp9uD11jA8FGRz4xsA5xsvcKM1wGHLUd6/e4umaawsxlHsKr7aM8h1Pp+e9qS/n/b2DqKTEZ1zezwANPub8NbW6fxoMEgu9xO5JRDghF0F4Mf3LaanJvX5Gy9eovnKZQCsViuBllbdYHUxzqvXY8VFml/4Sig0wsryEru7O5TbFOrrG2hru4VDteuibC5Hd3cP2ew2AKecLuNNPAhK/o1/AOTn6f4CazB4AAAAAElFTkSuQmCC" border="0" width="16" height="16" alt="Cool Hunting" /><span> Cool Hunting</span></a></li><li><a href="/feeds/The-Design-blog" title=" (554,953 views)"><img src="data:image/png;base64,iVBORw0KGgoAAAANSUhEUgAAABAAAAAQCAIAAACQkWg2AAAABGdBTUEAANbY1E9YMgAAABl0RVh0U29mdHdhcmUAQWRvYmUgSW1hZ2VSZWFkeXHJZTwAAAGpSURBVHjaZJLLrgFBEIZnxrhLCCEhEgskQmLJy4jnlHgIKwvEwv0SdyPHdcan2+k4Ry0q1V1//fVXdevX67XX6w0GA03TdGEqUDHecZxUKpXP503Qo9HItm3DMBTuO6ZmvV7jTbhBB4PBdDpNYrvd7vf7bzQe2HQ6NTlwGwgEcrmcJux+v4/H48lk8ng8PtEcEeaq1WqGMM7n89ntdns8nkgkguIfYQptC9MbjcY/3dFolG6IhLvb7c7nc4n+0yEWi1WrVTwddrsdWn0+XygU4uZ4PFqWJWsoMCT3a3zTRAnclUoFKNtbLBbcFwoFAFIPR1e9Xud8uVyWy+XpdALKDPF4fLPZMHoymeQI/Wq1eg0Au9qgrGm1WhDTrVgsQtTpdGDNZDL2rxlya+RKpVK5XEZ0v99nXcxAPJvNbrcbg9FZSnrPgHrS4XA4kUjQajgckkMYILQRk30PLTsA4r2I2QmJw+FA7Pf7iVmaXIkjTG82m16vlxqGozV8coP0xDMr2qi0hBHr7XabX0Wpeh37y8ji4WXpJj+WjryU82HqcfDqJpvNAn4KMABHM1KPCrIXTAAAAABJRU5ErkJggg==" border="0" width="16" height="16" alt="" /><span> </span></a></li><li><a href="/feeds/NPR-Topics-News" title="News : NPR (552,970 views)"><img src="data:image/png;base64,iVBORw0KGgoAAAANSUhEUgAAABAAAAAQCAYAAAAf8/9hAAAABmJLR0QAAAAAAAD5Q7t/AAAACXBIWXMAAABIAAAASABGyWs+AAAACXZwQWcAAAAQAAAAEABcxq3DAAAATklEQVQ4y+2QMQ7AMAgD7/L/P7tDhzaFdumQJZYQEkYnMGytlwCBtEZRWWNcXs66ryekzOY+JlcLRG0h2gG6oxPUB7R74S0k/fb/hrgFB0xRHf6XNp2NAAAAAElFTkSuQmCC" border="0" width="16" height="16" alt="News : NPR" /><span> News : NPR</span></a></li></ol></div> <div id="content"> <div id="feedback_message" class="feedback-message" style="display: none; visibility: hidden;"> </div> <div class="feeddata"> <h2 class="feedtitle">Newest Items <em class="time-since-published">(Latest entry published ~8 years ago.)</em></h2><div class="feeditems-container"><div class="sidebar"> <object type="application/x-shockwave-flash" data="https://affiliate.hivelocity.net/accounts/default1/banners/8cec9eb4.swf?clickTAG=https%3A%2F%2Fwww.hivelocity.net%3Fa_aid%3Dgserafini%26a_bid%3D8cec9eb4" width="300" height="250"> <param name="movie" value="https://affiliate.hivelocity.net/accounts/default1/banners/8cec9eb4.swf?clickTAG=https%3A%2F%2Fwww.hivelocity.net%3Fa_aid%3Dgserafini%26a_bid%3D8cec9eb4"> <param name="menu" value="false"/> <param name="quality" value="best"/> <param name="wmode" value="Window"/> <param name="loop" value="true"/> <a href="https://www.hivelocity.net?a_aid=gserafini&a_bid=8cec9eb4"><img src="" alt=""/></a> </object> <img style="border:0" src="http://affiliate.hivelocity.net/scripts/imp.php?a_aid=gserafini&a_bid=8cec9eb4" width="1" height="1" alt="" /> <h3>What is RSS2.com?</h3><p> RSS2.com brings you the all the latest news from the best websites. Sit back, relax and enjoy. </p> <p> Questions, suggestions or concerns can be sent to gserafini [at] gmail.com. </p> <p class="save-to-delicious-link"> Bookmark this page by pressing CTRL+D<br /><br /> <a href="http://del.icio.us/post?url=http://rss2.com/&title=RSS2.com+-+All+the+Best+RSS+Feeds+For+Your+Guilt-Free+Reading+and+Enjoyment" title="Bookmark using del.icio.us"><img src="/images/delicious_icon.png" alt="del.icio.us icon" width="16" height="16" border="0" /> Click here to save this page on del.icio.us</a> </p><br /><br /><?php /** * $Id: sidebar_widgets.php 34523 2013-12-03 20:09:43Z gserafini $ */ ?> <!-- <h3>Follow our tweets:</h3> <script src="http://widgets.twimg.com/j/2/widget.js"></script> <script> new TWTR.Widget({ version: 2, type: 'profile', rpp: 4, interval: 6000, width: 320, height: 300, theme: { shell: { background: '#eee', color: '#333' }, tweets: { background: '#fff', color: '#000', links: '#f00' } }, features: { scrollbar: false, loop: false, live: false, hashtags: true, timestamp: true, avatars: false, behavior: 'all' } }).render().setUser('rss2com').start(); </script> --></div> <ul id="feeditems_container" class="feeditems"> <li class="feeditem" id="feed_item_container-2251220"><h4 class="feeditemdate"><span title="Published September 26, 2017 @ 11:12 am PDT (-0700 GMT)">September 26, 2017 <em class="item-time-since-published">Published ~ 8 years ago.</em></span></a></h4><h3 class="feeditemtitle"><a href="http://feeds.coolhunting.com/~r/ch/~3/9MM9eyKPf4E/absolut-art-sweden-2017" rel="nofollow">Absolut’s Impressive Art Trifecta in Stockholm: A digital art bar, two biannual awards, and a museum cataloging it all</a></h3><div class="feeditemdescription" id="feeditem-2251220"> <a href="http://www.coolhunting.com/culture/absolut-art-sweden-2017" rel="nofollow"><img src="http://assets.coolhunting.com/coolhunting/2017/09/26/full_width_absolut_9_23_17_medres-hero.jpg" alt="Absolut's Impressive Art Trifecta in Stockholm"></a> <br /> In Stockholm this past weekend, vodka brand Absolut affirmed its decades-long commitment to the world of art. With well-known origins tied to Andy Warhol and a professional understanding that extends to the present day Absolut Art market, there’s an…… <br /><a href="http://www.coolhunting.com/culture/absolut-art-sweden-2017" rel="nofollow"><strong>Continue Reading…</strong></a> <img src="http://feeds.feedburner.com/~r/ch/~4/9MM9eyKPf4E" height="1" width="1" alt=""/><div class="go-link"><a href="http://feeds.coolhunting.com/~r/ch/~3/9MM9eyKPf4E/absolut-art-sweden-2017" rel="nofollow"><img src="/images/extlink.gif" alt="External link" width="13" height="7" border="0" /> <span>Link for this entry</span></a></div><div id="feed_footer_491"><h4 class="feedtitle-river">Read more from the <span class="feed-icon"><a href="/feeds/Cool-Hunting"><img src="/favicons/084f9b96431d98cfcdf200b8f7f94128.png" width="16" height="16" alt="Cool Hunting" border="0" /></a></span> <a href="/feeds/Cool-Hunting" title="Read all the latest items from Cool Hunting">Cool Hunting</a> feed.</h4></div> </div> <br style="clear: both;" /> </li> <li class="feeditem" id="feed_item_container-2251227"><h4 class="feeditemdate"><span title="Published September 25, 2017 @ 5:04 pm PDT (-0700 GMT)">September 25, 2017 <em class="item-time-since-published">Published ~ 8 years ago.</em></span></a></h4><h3 class="feeditemtitle"><a href="http://feedproxy.google.com/~r/seomoz/~3/fGaEd4kk-so/mobile-parity-audits" rel="nofollow">How and Why to Do a Mobile/Desktop Parity Audit</a></h3><div class="feeditemdescription" id="feeditem-2251227"> <p>Posted by <a href=\"https://moz.com/community/users/4896\" rel="nofollow">Everett</a></p><p><img src="http://d1avok0lzls2w.cloudfront.net/uploads/blog/mobile-view-858968.jpg"> </p><p>Google still ranks webpages based on the content, code, and links they find with a desktop crawler. They’re working to update this old-school approach in favor of what their mobile crawlers find instead. Although the rollout will probably happen in phases over time, I’m calling the day this change goes live worldwide “<a href="http://searchengineland.com/googles-mobile-first-index-likely-not-coming-2018-earliest-277074" rel="nofollow">D-day</a>” in the post below. <a href="https://moz.com/blog/day-after-mobilegeddon" target="_blank" rel="nofollow">Mobilegeddon</a> was already taken.<br> </p><p>You don’t want to be in a situation on D-day where your mobile site has broken meta tags, unoptimized titles and headers, missing content, or is serving the wrong HTTP status code. This post will help you prepare so you can sleep well between now then. </p><h2>What is a mobile parity audit?</h2><p>When two or more versions of a website are available on the same URL, a “parity audit” will crawl each version, compare the differences, and look for errors. </p><h3>When do you need one?</h3><p>You should do a parity audit if content is added, removed, hidden, or changed between devices without sending the user to a new URL. </p><p><img src="http://d1avok0lzls2w.cloudfront.net/uploads/blog/mobile-parity-audits-seo-383861.jpg"> </p><p>This type of analysis is also useful for mobile sites on a separate URL, but that’s another post. </p><h3>What will it tell you? How will it help?</h3><p>Is the mobile version of the website “optimized” and crawlable? Are all of the header response codes and tags set up properly, and in the same way, on both versions? Is important textual content missing from, or hidden, on the mobile version? </p><h3>Why parity audits could save your butt</h3><p>The last thing you want to do is scramble to diagnose a major traffic drop on D-day when things go mobile-first. Even if you don’t change anything now, cataloging the differences between site versions will help diagnose issues if/when the time comes. </p><p><strong>It may also help you improve rankings right now.</strong> </p><p>I know an excellent team of SEOs for a major brand who, for severals months, had missed the fact that the entire mobile site (millions of pages) had title tags that all read the same: “BrandName - Mobile Site.” They found this error and contacted us to take a more complete look at the differences between the two sites. Here are some other things we found: </p><ol> <li>One page type on the mobile site had an error at the template level that was causing rel=canonical tags to break, but only on mobile, and in a way that gave Google conflicting instructions, depending on whether they rendered the page as mobile or desktop. The same thing could have happened with any tag on the page, including robots meta directives. It could also happen with HTTP header responses.</li> <li>The mobile site has fewer than half the amount of navigation links in the footer. How will this affect the flow of PageRank to key pages in a mobile-first world?</li> <li>The mobile site has far more related products on product detail pages. Again, how will this affect the flow of PageRank, or even crawl depth, when Google goes mobile-first?</li> <li>Important content was hidden on the mobile version. <a href="https://www.searchenginejournal.com/google-says-now-ok-put-content-behind-tabs/178020/" target="_blank" rel="nofollow">Google says this is OK</a> as long as the user can drop down or tab over to read the content. But in this case, there was no way to do that. The content was in the code but hidden to mobile viewers, and there was no way of making it visible.</li> </ol><h2>How to get started with a mobile/desktop parity audit</h2><p>It sounds complicated, but really it boils down to a few simple steps: </p><ol> <li>Crawl the site as a desktop user.</li> <li>Crawl the site as a mobile user.</li> <li>Combine the outputs (e.g. Mobile Title1, Desktop Title1, Mobile Canonical1, Desktop Canonical1)</li> <li>Look for errors and differences.</li> </ol><p class="full-width"><img src="http://d2v4zi8pl64nxt.cloudfront.net/mobile-parity-audits/59c2d8e687fa87.37527893.png"> </p><p>Screaming Frog provides the option to crawl the site as the Googlebot Mobile user-agent with a smartphone device. You may or may not need to render JavaScript. </p><p> You can run two crawls (mobile and desktop) with DeepCrawl as well. However, reports like “Mobile Word Count Mismatch” do not currently work on dynamic sites, even after two crawls. </p><p>The hack to get at the data you want is the same as with Screaming Frog: namely, running two crawls, exporting two reports, and using Vlookups in Excel to compare the columns side-by-side with URL being the unique identifier.<br> </p><p>Here’s a simplified example using an export from DeepCrawl: </p><p class="full-width"><img src="https://d1avok0lzls2w.cloudfront.net/uploads/blog/deepcrawl-combined-report1-106730.jpg"> </p><p>As you can see in the screenshot above, blog category pages, like /category/cro/, are bigly different between devices types, not just in how they appear, but also in what code and content gets delivered and rendered as source code. The bigliest difference is that post teasers disappear on mobile, which accounts for the word count disparity. </p><p>Word count is only one data point. You would want to look at many different things, discussed below, when performing a mobile/desktop parity audit. </p><p><strong>For now, there does NOT appear to be an SEO tool on the market that crawls a dynamic site as both a desktop and mobile crawler, and then generates helpful reports about the differences between them.</strong> </p><h2>But there’s hope!</h2><p>Our industry toolmakers are hot on the trail, and at this point I’d expect features to release in time for D-day. </p><h3>Deep Crawl</h3><blockquote style="margin-left: 2px;">We are working on Changed Metrics reports, which will automatically show you pages where the titles and descriptions have changed between crawls. This would <strong>serve to identify differences on dynamic sites</strong> when the user agent is changed. But for now, this can be done manually by downloading and merging the data from the two crawls and calculating the differences. </blockquote><h3>Moz Pro</h3><p>Dr. Pete says they’ve talked about comparing desktop and mobile rankings to look for warning signs so Moz could alert customers of any potential issues. This would be a very helpful feature to augment the other analysis of on-page differences. </p><h3>Sitebulb</h3><p>When you select “mobile-friendly,” Sitebulb is already crawling the whole site first, then choosing a sample of (up to) 100 pages, and then recrawling these with the JavaScript rendering crawler. This is what produces their “mobile-friendly” report. </p><p>They’re thinking about doing the same to run these parity audit reports (mobile/desktop difference checker), which would be a big step forward for us SEOs. Because most of these disparity issues happen at the template/page type level, taking URLs from different crawl depths and sections of the site should allow this tool to alert SEOs of potential mismatches between content and page elements on those two versions of the single URL. </p><h3>Screaming Frog<br></h3><p>Aside from the oversensitive hash values, SF has no major advantage over DeepCrawl at the moment. In fact, DeepCrawl has some mobile difference finding features that, if they were to work on dynamic sites, would be leaps and bounds ahead of SF.<br> </p><p>That said, the process shared below uses Screaming Frog because it’s what I’m most familiar with. </p><h3>Customizing the diff finders<br></h3><p>One of my SEO heroes, <a href="https://moz.com/community/users/228147" target="_blank" rel="nofollow">David Sottimano</a>, whipped out a customization of <a href="https://johnresig.com/projects/javascript-diff-algorithm/" target="_blank" rel="nofollow">John Resig’s Javascript Diff Algorithm</a> to help automate some of the hard work involved in these desktop/mobile parity audits. </p><p class="full-width"><img src="http://d1avok0lzls2w.cloudfront.net/uploads/blog/diff-checker-89424.png" "=""></p><p><a href="https://docs.google.com/spreadsheets/d/1jqmVFqDMkLQzdv7Z9njHxEPRSO1tX73kGJx59WJERDs/copy" target="_blank" rel="nofollow">You can make a copy of it here</a>. Follow the instructions in the Readme tab. Note: This is a work in progress and is an experimental tool, so have fun!</p><h4>On using the hash values to quickly find disparities between crawls<br></h4><p>As Lunametrics puts it in their excellent guide to <a href="https://www.lunametrics.com/blog/2016/07/27/screaming-frog-overview-tab-definitions/" target="_blank" rel="nofollow">Screaming Frog Tab Definitions</a>, the hash value “is a count of the number of URLs that potentially contain duplicate content. This count filters for all duplicate pages found via the hash value. If two hash values match, the pages are exactly the same in content.”<br> </p><p>I tried doing this, but found it didn’t work very well for my needs for two reasons: because I was unable to adjust the sensitivity, and if even only one minor client-side JavaScript element changed, the page would get a new hash value. </p><p>When I asked DeepCrawl about it, I found out why: </p><blockquote>The problem with using a hash to flag different content is that a lot of pages would be flagged as different, when they are essentially the same. A hash will be completely different if a single character changes. </blockquote><h2></h2><h2>Mobile parity audit process using Screaming Frog and Excel </h2><h3></h3><h3></h3><h3>Run two crawls</h3><p>First, run two separate crawls. Settings for each are below. If you don’t see a window or setting option, assume it was set to default.<br> </p><h4></h4><h4>1. Crawl 1: Desktop settings </h4><p>Configurations —> Spider </p><p class="full-width"><img src="http://d1avok0lzls2w.cloudfront.net/uploads/blog/desktop-basic-settings-58608.png"> </p><p>Your settings may vary (no pun intended), but here I was just looking for very basic things and wanted a fast crawl. </p><p>Configurations —> HTTP Header —> User-Agent<br> </p><p class="full-width"><img src="http://d1avok0lzls2w.cloudfront.net/uploads/blog/sf-user-agent-desktop-34113.png"> </p><h4>2. Start the first crawl</h4><h4>3. Save the crawl and run the exports</h4><p>When finished, save it as desktop-crawl.seospider and run the Export All URLs report (big Export button, top left). Save the export as desktop-internal_all.csv.<br> </p><h4>4. Update user-agent settings for the second crawl</h4><p>Hit the “Clear” button in Screaming Frog and change the User-Agent configuration to the following: </p><p><span></span> </p><p class="full-width"><img src="http://d1avok0lzls2w.cloudfront.net/uploads/blog/mobile-user-agent-38308.png"> </p><h4>5. Start the second crawl</h4><h4>6. Save the crawl and run the exports</h4><p>When finished, save it as mobile-crawl.seospider and run the Export All URLs report. Save the export as mobile-internal_all.csv. </p><h3>Combine the exports in Excel</h3><p>Import each CSV into a separate tab within a new Excel spreadsheet. </p><p>Create another tab and bring in the URLs from the Address column of each crawl tab. De-duplicate them. </p><p>Use Vlookups or other methods to pull in the respective data from each of the other tabs. </p><h4>You’ll end up with something like this:</h4><p style="text-align: center;" class="full-width"><img src="http://d1avok0lzls2w.cloudfront.net/uploads/blog/example-sheet-39096.jpg"></p><p>A tab with a single row per URL, but with mobile and desktop columns for each datapoint. It helps with analysis if you can conditionally format/highlight instances where the desktop and mobile data does not match. </p><h2>Errors & differences to look out for<br> </h2><p><img src="http://d1avok0lzls2w.cloudfront.net/uploads/blog/gummy-bears-one-red-425388.jpg"> </p><h3>Does the mobile site offer similar navigation options? </h3><p>Believe it or not, you can usually fit the same amounts of navigation links onto a mobile site without ruining the user experience when done right. <a href="https://www.goinflow.com/best-in-class-ecommerce-cro/" target="_blank" rel="nofollow">Here are a ton of examples</a> of major retail brands approaching it in different ways, from mega navs to sliders and hamburger menus (side note: now I’m craving White Castle). </p><h3>HTTP Vary User-Agent response headers </h3><p>This is one of those things that seems like it could produce more <a href="http://mark.koli.ch/understanding-the-http-vary-header-and-caching-proxies-squid-etc" target="_blank" rel="nofollow">caching problems</a> and <a href="http://www.bizcoder.com/the-insanity-of-the-vary-header" target="_blank" rel="nofollow">headaches</a> than solutions, but Google says to use it in cases where the content changes significantly between mobile and desktop versions on the same URL. My advice is to avoid using Vary User-Agent if the variations between versions of the site are minimal (e.g. simplified navigation, optimized images, streamlined layout, a few bells and whistles hidden). Only use it if entire paragraphs of content and other important elements are removed. </p><h2></h2><h3>Internal linking disparities</h3><p>If your desktop site has twenty footer links to top-selling products and categories using optimized anchor text, and your mobile site has five links going to pages like “Contact Us” and “About” it would be good to document this so you know what to test should rankings drop after a mobile-first ranking algorithm shift. </p><h2></h2><h3>Meta tags and directives</h3><p>Do things like title tags, meta descriptions, robots meta directives, rel=canonical tags, and rel=next/prev tags match on both versions of the URL? Discovering this stuff now could avert disaster down the line. </p><h3>Content length</h3><p>There is no magic formula to how much content you should provide to each type of device, just as there is no magic formula for how much content you need to rank highly on Google (because all other things are never equal). </p><p>Imagine it’s eight months from now and you’re trying to diagnose what specific reasons are behind a post-mobile-first algorithm update traffic drop. Do the pages with less content on mobile correlate with lower rankings? Maybe. Maybe not, but I’d want to check on it. </p><h2></h2><h3>Speed</h3><p>Chances are, your mobile site will load faster. However, if this is not the case you definitely need to look into the issue. Lots of big client-side JavaScript changes could be the culprit. </p><h3>Rendering</h3><p>Sometimes JavaScript and other files necessary for the mobile render may be different from those needed for the desktop render. Thus, it’s possible that one set of resources may be blocked in the robots.txt file while another is not. Make sure both versions fully render without any blocked resources. </p><p><img src="http://d1avok0lzls2w.cloudfront.net/uploads/blog/two-color-shoes-1085600.jpg"> </p><h2>Here’s what you need to do to be ready for a mobile-first world:</h2><ol> <li>Know IF there are major content, tag, and linking differences between the mobile and desktop versions of the site.</li> <li>If so, know WHAT those differences are, and spend time thinking about how that might affect rankings if mobile was the only version Google ever looked at.</li> <li>Fix any differences that need to be fixed immediately, such as broken or missing rel=canonicals, robots meta, or title tags.</li> <li>Keep everything else in mind for things to test after mobile-first arrives. If rankings drop, at least you’ll be prepared.</li> </ol><h3>And here are some tools & links to help you get there:</h3><ul> <li><a href="https://www.deepcrawl.com/blog/releases/mobile-reports-update/" target="_blank" rel="nofollow">Mobile/Desktop Mismatch Reports by DeepCrawl</a></li> <li><a href="https://technicalseo.com/seo-tools/mobile-first-index/" target="_blank" rel="nofollow">Mobile-First Index Prep Tool by Merkle</a> (Build on this please Merkle! Great start, but we need more!)</li> <li><a href="https://webmasters.googleblog.com/2016/11/mobile-first-indexing.html" target="_blank" rel="nofollow">Mobile-First Indexing, Google Webmaster Central</a></li> <li><a href="https://varvy.com/mobile/" target="_blank" rel="nofollow">Varvy Mobile Friendliness Tool</a></li> </ul><p>I suspect it won’t be long before this type of audit is made unnecessary because we’ll ONLY be worried about the mobile site. Until then, please comment below to share which differences you found, and how you chose to address them so we can all learn from each other. </p><br /><p><a href="https://moz.com/moztop10" rel="nofollow">Sign up for The Moz Top 10</a>, a semimonthly mailer updating you on the top ten hottest pieces of SEO news, tips, and rad links uncovered by the Moz team. Think of it as your exclusive digest of stuff you don’t have time to hunt down but want to read!</p><div class="feedflare"> <a href="http://feeds.feedburner.com/~ff/seomoz?a=fGaEd4kk-so:Lky6ajmVNzM:yIl2AUoC8zA" rel="nofollow"><img src="http://feeds.feedburner.com/~ff/seomoz?d=yIl2AUoC8zA" border="0"></img></a> <a href="http://feeds.feedburner.com/~ff/seomoz?a=fGaEd4kk-so:Lky6ajmVNzM:F7zBnMyn0Lo" rel="nofollow"><img src="http://feeds.feedburner.com/~ff/seomoz?i=fGaEd4kk-so:Lky6ajmVNzM:F7zBnMyn0Lo" border="0"></img></a> <a href="http://feeds.feedburner.com/~ff/seomoz?a=fGaEd4kk-so:Lky6ajmVNzM:V_sGLiPBpWU" rel="nofollow"><img src="http://feeds.feedburner.com/~ff/seomoz?i=fGaEd4kk-so:Lky6ajmVNzM:V_sGLiPBpWU" border="0"></img></a> <a href="http://feeds.feedburner.com/~ff/seomoz?a=fGaEd4kk-so:Lky6ajmVNzM:qj6IDK7rITs" rel="nofollow"><img src="http://feeds.feedburner.com/~ff/seomoz?d=qj6IDK7rITs" border="0"></img></a> <a href="http://feeds.feedburner.com/~ff/seomoz?a=fGaEd4kk-so:Lky6ajmVNzM:gIN9vFwOqvQ" rel="nofollow"><img src="http://feeds.feedburner.com/~ff/seomoz?i=fGaEd4kk-so:Lky6ajmVNzM:gIN9vFwOqvQ" border="0"></img></a> </div><img src="http://feeds.feedburner.com/~r/seomoz/~4/fGaEd4kk-so" height="1" width="1" alt=""/><div class="go-link"><a href="http://feedproxy.google.com/~r/seomoz/~3/fGaEd4kk-so/mobile-parity-audits" rel="nofollow"><img src="/images/extlink.gif" alt="External link" width="13" height="7" border="0" /> <span>Link for this entry</span></a></div><div id="feed_footer_516"><h4 class="feedtitle-river">Read more from the <span class="feed-icon"><a href="/feeds/SEOmoz-Daily-SEO-Blog"><img src="/favicons/85da7dd50c6ebf375359720752952857.png" width="16" height="16" alt="Moz Blog" border="0" /></a></span> <a href="/feeds/SEOmoz-Daily-SEO-Blog" title="Read all the latest items from Moz Blog">Moz Blog</a> feed.</h4></div> </div> <br style="clear: both;" /> </li> <li class="feeditem" id="feed_item_container-2241151"><h4 class="feeditemdate"><span title="Published May 24, 2017 @ 1:44 pm PDT (-0700 GMT)">May 24, 2017 <em class="item-time-since-published">Published ~ 8 years ago.</em></span></a></h4><h3 class="feeditemtitle"><a href="http://www.flickr.com/photos/burntheplans/34708036712/" rel="nofollow">End of the road</a></h3><div class="feeditemdescription" id="feeditem-2241151"> <p><a href="http://www.flickr.com/people/burntheplans/" rel="nofollow">BurnThePlans</a> posted a photo:</p> <p><a href="http://www.flickr.com/photos/burntheplans/34708036712/" title="End of the road" rel="nofollow"><img src="http://farm5.staticflickr.com/4224/34708036712_af74343004_m.jpg" width="240" height="159" alt="End of the road" /></a></p> <div class="go-link"><a href="http://www.flickr.com/photos/burntheplans/34708036712/" rel="nofollow"><img src="/images/extlink.gif" alt="External link" width="13" height="7" border="0" /> <span>Link for this entry</span></a></div><div id="feed_footer_16322"><h4 class="feedtitle-river">Read more from the <span class="feed-icon"><a href="/feeds/Recent-Uploads-tagged-rust"><img src="/favicons/0b09fea246903b7359e66b996a1382c1.png" width="16" height="16" alt="Recent Uploads tagged rust" border="0" /></a></span> <a href="/feeds/Recent-Uploads-tagged-rust" title="Read all the latest items from Recent Uploads tagged rust">Recent Uploads tagged rust</a> feed.</h4></div> </div> <br style="clear: both;" /> </li> <li class="feeditem" id="feed_item_container-2241149"><h4 class="feeditemdate"><span title="Published May 24, 2017 @ 1:43 pm PDT (-0700 GMT)">May 24, 2017 <em class="item-time-since-published">Published ~ 8 years ago.</em></span></a></h4><h3 class="feeditemtitle"><a href="http://feedproxy.google.com/~r/Techcrunch/~3/1YCjxKWCnrU/" rel="nofollow">Flexible retail startup Bulletin raises $2.2M</a></h3><div class="feeditemdescription" id="feeditem-2241149"> <img width="544" height="680" src="https://tctechcrunch2011.files.wordpress.com/2017/05/bulletin-close-up.jpg?w=544" class="attachment-large size-large wp-post-image" alt="Bulletin close up" srcset="https://tctechcrunch2011.files.wordpress.com/2017/05/bulletin-close-up.jpg?w=544 544w, https://tctechcrunch2011.files.wordpress.com/2017/05/bulletin-close-up.jpg?w=120 120w, https://tctechcrunch2011.files.wordpress.com/2017/05/bulletin-close-up.jpg?w=240 240w, https://tctechcrunch2011.files.wordpress.com/2017/05/bulletin-close-up.jpg?w=768 768w, https://tctechcrunch2011.files.wordpress.com/2017/05/bulletin-close-up.jpg 960w" sizes="(max-width: 544px) 100vw, 544px" /> Bulletin, the startup that describes itself as “WeWork for retail space,” is announcing that it has raised $2.2 million in seed funding. The idea is to give businesses — particularly online brands — access to brick-and-mortar retail space without the cost or commitment of a traditional lease. Those businesses can rent out sections of a Bulletin store on a… <a href="https://techcrunch.com/2017/05/24/bulletin-seed-funding/?ncid=rss" rel="nofollow">Read More</a><div class="feedflare"> <a href="http://feeds.feedburner.com/~ff/Techcrunch?a=1YCjxKWCnrU:V8wlBfOkHTQ:2mJPEYqXBVI" rel="nofollow"><img src="http://feeds.feedburner.com/~ff/Techcrunch?d=2mJPEYqXBVI" border="0"></img></a> <a href="http://feeds.feedburner.com/~ff/Techcrunch?a=1YCjxKWCnrU:V8wlBfOkHTQ:7Q72WNTAKBA" rel="nofollow"><img src="http://feeds.feedburner.com/~ff/Techcrunch?d=7Q72WNTAKBA" border="0"></img></a> <a href="http://feeds.feedburner.com/~ff/Techcrunch?a=1YCjxKWCnrU:V8wlBfOkHTQ:yIl2AUoC8zA" rel="nofollow"><img src="http://feeds.feedburner.com/~ff/Techcrunch?d=yIl2AUoC8zA" border="0"></img></a> <a href="http://feeds.feedburner.com/~ff/Techcrunch?a=1YCjxKWCnrU:V8wlBfOkHTQ:-BTjWOF_DHI" rel="nofollow"><img src="http://feeds.feedburner.com/~ff/Techcrunch?i=1YCjxKWCnrU:V8wlBfOkHTQ:-BTjWOF_DHI" border="0"></img></a> <a href="http://feeds.feedburner.com/~ff/Techcrunch?a=1YCjxKWCnrU:V8wlBfOkHTQ:D7DqB2pKExk" rel="nofollow"><img src="http://feeds.feedburner.com/~ff/Techcrunch?i=1YCjxKWCnrU:V8wlBfOkHTQ:D7DqB2pKExk" border="0"></img></a> <a href="http://feeds.feedburner.com/~ff/Techcrunch?a=1YCjxKWCnrU:V8wlBfOkHTQ:qj6IDK7rITs" rel="nofollow"><img src="http://feeds.feedburner.com/~ff/Techcrunch?d=qj6IDK7rITs" border="0"></img></a> </div><img src="http://feeds.feedburner.com/~r/Techcrunch/~4/1YCjxKWCnrU" height="1" width="1" alt=""/><div class="go-link"><a href="http://feedproxy.google.com/~r/Techcrunch/~3/1YCjxKWCnrU/" rel="nofollow"><img src="/images/extlink.gif" alt="External link" width="13" height="7" border="0" /> <span>Link for this entry</span></a></div><div id="feed_footer_14"><h4 class="feedtitle-river">Read more from the <span class="feed-icon"><a href="/feeds/TechCrunch"><img src="/favicons/307ab9190988e16f56f3e028e3237a90.png" width="16" height="16" alt="TechCrunch" border="0" /></a></span> <a href="/feeds/TechCrunch" title="Read all the latest items from TechCrunch">TechCrunch</a> feed.</h4></div> </div> <br style="clear: both;" /> </li> <li class="feeditem" id="feed_item_container-2241146"><h4 class="feeditemdate"><span title="Published May 24, 2017 @ 1:29 pm PDT (-0700 GMT)">May 24, 2017 <em class="item-time-since-published">Published ~ 8 years ago.</em></span></a></h4><h3 class="feeditemtitle"><a href="http://www.flickr.com/photos/151659388@N08/34028295224/" rel="nofollow">Journey of Mad Max (caption will change)</a></h3><div class="feeditemdescription" id="feeditem-2241146"> <p><a href="http://www.flickr.com/people/151659388@N08/" rel="nofollow">Gothicpolar</a> posted a photo:</p> <p><a href="http://www.flickr.com/photos/151659388@N08/34028295224/" title="Journey of Mad Max (caption will change)" rel="nofollow"><img src="http://farm5.staticflickr.com/4227/34028295224_158be024f5_m.jpg" width="240" height="109" alt="Journey of Mad Max (caption will change)" /></a></p> <div class="go-link"><a href="http://www.flickr.com/photos/151659388@N08/34028295224/" rel="nofollow"><img src="/images/extlink.gif" alt="External link" width="13" height="7" border="0" /> <span>Link for this entry</span></a></div><div id="feed_footer_673"><h4 class="feedtitle-river">Read more from the <span class="feed-icon"><a href="/feeds/screenshot-Everyones-Tagged-Photos"><img src="/favicons/0b09fea246903b7359e66b996a1382c1.png" width="16" height="16" alt="Recent Uploads tagged screenshot" border="0" /></a></span> <a href="/feeds/screenshot-Everyones-Tagged-Photos" title="Read all the latest items from Recent Uploads tagged screenshot">Recent Uploads tagged screenshot</a> feed.</h4></div> </div> <br style="clear: both;" /> </li> <li class="feeditem" id="feed_item_container-2241136"><h4 class="feeditemdate"><span title="Published May 24, 2017 @ 1:12 pm PDT (-0700 GMT)">May 24, 2017 <em class="item-time-since-published">Published ~ 8 years ago.</em></span></a></h4><h3 class="feeditemtitle"><a href="http://rss.cnn.com/~r/rss/cnn_latest/~3/qzCHDbKgaE4/index.html" rel="nofollow">Walmart to ban woman who told customer to ‘go back to Mexico,’ called another the N-word</a></h3><div class="feeditemdescription" id="feeditem-2241136"> Walmart says it will ask a customer to no longer shop at their stores after she was caught on video hurling racial abuse at other customers in Bentonville, Arkansas, on Monday.<div class="feedflare"> <a href="http://rss.cnn.com/~ff/rss/cnn_latest?a=qzCHDbKgaE4:ZaL7Fp7ZIRQ:yIl2AUoC8zA" rel="nofollow"><img src="http://feeds.feedburner.com/~ff/rss/cnn_latest?d=yIl2AUoC8zA" border="0"></img></a> <a href="http://rss.cnn.com/~ff/rss/cnn_latest?a=qzCHDbKgaE4:ZaL7Fp7ZIRQ:7Q72WNTAKBA" rel="nofollow"><img src="http://feeds.feedburner.com/~ff/rss/cnn_latest?d=7Q72WNTAKBA" border="0"></img></a> <a href="http://rss.cnn.com/~ff/rss/cnn_latest?a=qzCHDbKgaE4:ZaL7Fp7ZIRQ:V_sGLiPBpWU" rel="nofollow"><img src="http://feeds.feedburner.com/~ff/rss/cnn_latest?i=qzCHDbKgaE4:ZaL7Fp7ZIRQ:V_sGLiPBpWU" border="0"></img></a> <a href="http://rss.cnn.com/~ff/rss/cnn_latest?a=qzCHDbKgaE4:ZaL7Fp7ZIRQ:qj6IDK7rITs" rel="nofollow"><img src="http://feeds.feedburner.com/~ff/rss/cnn_latest?d=qj6IDK7rITs" border="0"></img></a> <a href="http://rss.cnn.com/~ff/rss/cnn_latest?a=qzCHDbKgaE4:ZaL7Fp7ZIRQ:gIN9vFwOqvQ" rel="nofollow"><img src="http://feeds.feedburner.com/~ff/rss/cnn_latest?i=qzCHDbKgaE4:ZaL7Fp7ZIRQ:gIN9vFwOqvQ" border="0"></img></a> </div><img src="http://feeds.feedburner.com/~r/rss/cnn_latest/~4/qzCHDbKgaE4" height="1" width="1" alt=""/><div class="go-link"><a href="http://rss.cnn.com/~r/rss/cnn_latest/~3/qzCHDbKgaE4/index.html" rel="nofollow"><img src="/images/extlink.gif" alt="External link" width="13" height="7" border="0" /> <span>Link for this entry</span></a></div><div id="feed_footer_21206"><h4 class="feedtitle-river">Read more from the <span class="feed-icon"><a href="/feeds/CNN.com-Recently-Published-Updated"><img src="/favicons/c50252f4f24784b5d368926df781ede9.png" width="16" height="16" alt="CNN.com - RSS Channel" border="0" /></a></span> <a href="/feeds/CNN.com-Recently-Published-Updated" title="Read all the latest items from CNN.com - RSS Channel">CNN.com - RSS Channel</a> feed.</h4></div> </div> <br style="clear: both;" /> </li> <li class="feeditem" id="feed_item_container-2241150"><h4 class="feeditemdate"><span title="Published May 24, 2017 @ 12:55 pm PDT (-0700 GMT)">May 24, 2017 <em class="item-time-since-published">Published ~ 8 years ago.</em></span></a></h4><h3 class="feeditemtitle"><a href="http://boingboing.net/2017/05/24/animated-interviews-with-fut.html" rel="nofollow">Animated interviews with "futurists" Ayn Rand, Kurt Vonnegut, and Aldous Huxley</a></h3><div class="feeditemdescription" id="feeditem-2241150"> <p><img width="640" height="360" src="http://media.boingboing.net/wp-content/uploads/2017/05/pg1mry-2.gif" class="attachment-post-thumbnail size-post-thumbnail wp-post-image" alt="" /></p>https://www.youtube.com/watch?v=YGuk9o8uZBc <P> The first law of futurism is that there are no facts about the future, only fictions. <P> <em>(<a href="http://blankonblank.org/" rel="nofollow">Blank on Blank</a>)</em> <P> <img src="http://media.boingboing.net/wp-content/uploads/2017/05/pg1mry-2-600x338.gif" alt="" width="600" height="338" class="alignnone size-medium wp-image-525845" /><div class="go-link"><a href="http://boingboing.net/2017/05/24/animated-interviews-with-fut.html" rel="nofollow"><img src="/images/extlink.gif" alt="External link" width="13" height="7" border="0" /> <span>Link for this entry</span></a></div><div id="feed_footer_1"><h4 class="feedtitle-river">Read more from the <span class="feed-icon"><a href="/feeds/Boing-Boing"><img src="/favicons/eeecb08cc6ea46fb92fa7cf29e1ff2d9.png" width="16" height="16" alt="Boing Boing" border="0" /></a></span> <a href="/feeds/Boing-Boing" title="Read all the latest items from Boing Boing">Boing Boing</a> feed.</h4></div> </div> <br style="clear: both;" /> </li> <li class="feeditem" id="feed_item_container-2241148"><h4 class="feeditemdate"><span title="Published May 24, 2017 @ 12:47 pm PDT (-0700 GMT)">May 24, 2017 <em class="item-time-since-published">Published ~ 8 years ago.</em></span></a></h4><h3 class="feeditemtitle"><a href="http://www.ilounge.com/index.php/news/comments/apple-releases-airpods-firmware-3.7.2-update" rel="nofollow">News: Apple releases AirPods firmware 3.7.2 update</a></h3><div class="feeditemdescription" id="feeditem-2241148"> Apple has released a new AirPods wireless firmware update. While no release notes are provided with AirPods updates at this point, the update likely just includes bug fixes and performance improvements for the wireless earbuds. AirPods firmware updates should be automatically transferred from a paired iPhone to the AirPods whenever they’re connected; users can check the version number from the iOS Settings app, under General, About, AirPods.… <div class="go-link"><a href="http://www.ilounge.com/index.php/news/comments/apple-releases-airpods-firmware-3.7.2-update" rel="nofollow"><img src="/images/extlink.gif" alt="External link" width="13" height="7" border="0" /> <span>Link for this entry</span></a></div><div id="feed_footer_375"><h4 class="feedtitle-river">Read more from the <span class="feed-icon"><a href="/feeds/iLounge-All-Things-iPod-iTunes-and-beyond"><img src="/favicons/59d4f311c86941ea7118eb65a01be7ad.png" width="16" height="16" alt="iLounge | All Things iPod, iPhone, iPad and Beyond" border="0" /></a></span> <a href="/feeds/iLounge-All-Things-iPod-iTunes-and-beyond" title="Read all the latest items from iLounge | All Things iPod, iPhone, iPad and Beyond">iLounge | All Things iPod, iPhone, iPad and Beyond</a> feed.</h4></div> </div> <br style="clear: both;" /> </li> <li class="feeditem" id="feed_item_container-2241133"><h4 class="feeditemdate"><span title="Published May 24, 2017 @ 12:30 pm PDT (-0700 GMT)">May 24, 2017 <em class="item-time-since-published">Published ~ 8 years ago.</em></span></a></h4><h3 class="feeditemtitle"><a href="http://dealnews.com/Best-Choice-6-Axis-Wi-Fi-Drone-with-Camera-for-42-free-shipping/1993061.html?iref=rss-dealnews-todays-edition" rel="nofollow">Best Choice 6-Axis WiFi Drone with Camera for $42 + free shipping</a></h3><div class="feeditemdescription" id="feeditem-2241133"> <img src='http://a3.c.dlnws.com/image/upload/f_auto,t_large,q_auto/content/mcxkiaglg3kvux85qtqa' style='float: left;vertical-align: top;margin: 0 8px 8px 0'>Best Choice Products via Walmart offers the Best Choice 6-Axis WiFi Drone with Camera in Black for <strong>$41.94</strong> with <strong>free shipping</strong>. That’s the lowest total price we could find by $11, although we saw it for $2 less three weeks ago. It features control via remote control or mobile device, 2-megapixel camera, push-button flips and rolls, and up to 7 minutes of flight time per charge.<div class="go-link"><a href="http://dealnews.com/Best-Choice-6-Axis-Wi-Fi-Drone-with-Camera-for-42-free-shipping/1993061.html?iref=rss-dealnews-todays-edition" rel="nofollow"><img src="/images/extlink.gif" alt="External link" width="13" height="7" border="0" /> <span>Link for this entry</span></a></div><div id="feed_footer_12"><h4 class="feedtitle-river">Read more from the <span class="feed-icon"><a href="/feeds/dealnews-Todays-Edition"><img src="/favicons/4b774bc04769e3647a91dbe7f6a1695f.png" width="16" height="16" alt="DealNews - Today’s Edition" border="0" /></a></span> <a href="/feeds/dealnews-Todays-Edition" title="Read all the latest items from DealNews - Today’s Edition">DealNews - Today’s Edition</a> feed.</h4></div> </div> <br style="clear: both;" /> </li> <li class="feeditem" id="feed_item_container-2241125"><h4 class="feeditemdate"><span title="Published May 24, 2017 @ 12:25 pm PDT (-0700 GMT)">May 24, 2017 <em class="item-time-since-published">Published ~ 8 years ago.</em></span></a></h4><h3 class="feeditemtitle"><a href="http://www.bbc.co.uk/news/uk-40032504" rel="nofollow">Manchester attack: Police hunt ‘network’ behind bomber</a></h3><div class="feeditemdescription" id="feeditem-2241125"> A fifth arrest is made in the UK over the arena attack, as pictures emerge appearing to show the bomber’s detonator and backpack.<div class="go-link"><a href="http://www.bbc.co.uk/news/uk-40032504" rel="nofollow"><img src="/images/extlink.gif" alt="External link" width="13" height="7" border="0" /> <span>Link for this entry</span></a></div><div id="feed_footer_70"><h4 class="feedtitle-river">Read more from the <span class="feed-icon"><a href="/feeds/BBC-News-News-Front-Page-World-Edition"><img src="/favicons/a18b2db51998e7c79e0339c8ddb249b7.png" width="16" height="16" alt="BBC News - Home" border="0" /></a></span> <a href="/feeds/BBC-News-News-Front-Page-World-Edition" title="Read all the latest items from BBC News - Home">BBC News - Home</a> feed.</h4></div> </div> <br style="clear: both;" /> </li> </ul> </div><div class="page-numbers"><span class="page-num-disabled">« Previous</span> <span>1</span> <a href="/page2" title="Go to page 2">2</a> <a href="/page3" title="Go to page 3">3</a> <a href="/page4" title="Go to page 4">4</a> <a href="/page5" title="Go to page 5">5</a> <a href="/page6" title="Go to page 6">6</a> <a href="/page7" title="Go to page 7">7</a> <a href="/page8" title="Go to page 8">8</a> <a href="/page9" title="Go to page 9">9</a> <a href="/page10" title="Go to page 10">10</a> <a href="/page11" title="Go to page 11">11</a> <a href="/page12" title="Go to page 12">12</a> <a href="/page2" title="Go to next page">Next »</a> </div> </div> </div> <div id="explore"> <div class="bottom-panel"> <h3>User submitted feeds</h3> <ul><li><a href="/feeds/Refacing-your-Bedroom" title="Refacing your Bedroom (954 views)"><img src="data:image/png;base64,iVBORw0KGgoAAAANSUhEUgAAABAAAAAQCAIAAACQkWg2AAAABGdBTUEAANbY1E9YMgAAABl0RVh0U29mdHdhcmUAQWRvYmUgSW1hZ2VSZWFkeXHJZTwAAAGpSURBVHjaZJLLrgFBEIZnxrhLCCEhEgskQmLJy4jnlHgIKwvEwv0SdyPHdcan2+k4Ry0q1V1//fVXdevX67XX6w0GA03TdGEqUDHecZxUKpXP503Qo9HItm3DMBTuO6ZmvV7jTbhBB4PBdDpNYrvd7vf7bzQe2HQ6NTlwGwgEcrmcJux+v4/H48lk8ng8PtEcEeaq1WqGMM7n89ntdns8nkgkguIfYQptC9MbjcY/3dFolG6IhLvb7c7nc4n+0yEWi1WrVTwddrsdWn0+XygU4uZ4PFqWJWsoMCT3a3zTRAnclUoFKNtbLBbcFwoFAFIPR1e9Xud8uVyWy+XpdALKDPF4fLPZMHoymeQI/Wq1eg0Au9qgrGm1WhDTrVgsQtTpdGDNZDL2rxlya+RKpVK5XEZ0v99nXcxAPJvNbrcbg9FZSnrPgHrS4XA4kUjQajgckkMYILQRk30PLTsA4r2I2QmJw+FA7Pf7iVmaXIkjTG82m16vlxqGozV8coP0xDMr2qi0hBHr7XabX0Wpeh37y8ji4WXpJj+WjryU82HqcfDqJpvNAn4KMABHM1KPCrIXTAAAAABJRU5ErkJggg==" border="0" width="16" height="16" alt="Refacing your Bedroom" /> <span>Refacing your Bedroom</span></a></li><li><a href="/feeds/Different-Types-of-Lawyers" title="Different Types of Lawyers (1,665 views)"><img src="data:image/png;base64,iVBORw0KGgoAAAANSUhEUgAAABAAAAAQCAYAAAAf8/9hAAAABmJLR0QA/wD/AP+gvaeTAAAACXBIWXMAAABIAAAASABGyWs+AAAA2UlEQVQ4y2NkgIJ/aUz/GUgATLP+MTIwMDAwkqMZ2RBGcjXDAAuGSEQPA4NFAgMDhwBC7MIGBoYlKQwMXz5gugJDs0MBqmYGBgYGgwAGhow12L2BwrNIQLAXJEDwD6itKg4MDDIGBLwAs3lNAQPDiSUI8YQFCJcwMDAwPLkAl0INxBl/iAu5DIS9TMTpwA1YsIquKWBg2DMFVcwlh4EhZAIBA358gIRDyATMKINp/vEBjwEnFkCiETng0MGJBXgMWFECodETEszmEwsQaqCA4qRMeWaCccjNzgBJL0PlfcuQnAAAAABJRU5ErkJggg==" border="0" width="16" height="16" alt="Different Types of Lawyers" /> <span>Different Types of Lawyers</span></a></li><li><a href="/feeds/RSSMix.com-Mix-ID-49823" title="RSSMix.com Mix ID 49823 (2,659 views)"><img src="data:image/png;base64,iVBORw0KGgoAAAANSUhEUgAAABAAAAAQCAIAAACQkWg2AAAABGdBTUEAANbY1E9YMgAAABl0RVh0U29mdHdhcmUAQWRvYmUgSW1hZ2VSZWFkeXHJZTwAAAGpSURBVHjaZJLLrgFBEIZnxrhLCCEhEgskQmLJy4jnlHgIKwvEwv0SdyPHdcan2+k4Ry0q1V1//fVXdevX67XX6w0GA03TdGEqUDHecZxUKpXP503Qo9HItm3DMBTuO6ZmvV7jTbhBB4PBdDpNYrvd7vf7bzQe2HQ6NTlwGwgEcrmcJux+v4/H48lk8ng8PtEcEeaq1WqGMM7n89ntdns8nkgkguIfYQptC9MbjcY/3dFolG6IhLvb7c7nc4n+0yEWi1WrVTwddrsdWn0+XygU4uZ4PFqWJWsoMCT3a3zTRAnclUoFKNtbLBbcFwoFAFIPR1e9Xud8uVyWy+XpdALKDPF4fLPZMHoymeQI/Wq1eg0Au9qgrGm1WhDTrVgsQtTpdGDNZDL2rxlya+RKpVK5XEZ0v99nXcxAPJvNbrcbg9FZSnrPgHrS4XA4kUjQajgckkMYILQRk30PLTsA4r2I2QmJw+FA7Pf7iVmaXIkjTG82m16vlxqGozV8coP0xDMr2qi0hBHr7XabX0Wpeh37y8ji4WXpJj+WjryU82HqcfDqJpvNAn4KMABHM1KPCrIXTAAAAABJRU5ErkJggg==" border="0" width="16" height="16" alt="RSSMix.com Mix ID 49823" /> <span>RSSMix.com Mix ID 49823</span></a></li><li><a href="/feeds/How-to-Tell-If-A-Guy-Is-Into-You-5-Signs-You-Need-To-Know-If-He-Has-A-Crush-On-You-7" title="How to Tell If A Guy Is Into You : 5 Signs You Need To Know If He Has A Crush On You (556 views)"><img src="data:image/png;base64,iVBORw0KGgoAAAANSUhEUgAAABAAAAAQCAIAAACQkWg2AAAABGdBTUEAANbY1E9YMgAAABl0RVh0U29mdHdhcmUAQWRvYmUgSW1hZ2VSZWFkeXHJZTwAAAGpSURBVHjaZJLLrgFBEIZnxrhLCCEhEgskQmLJy4jnlHgIKwvEwv0SdyPHdcan2+k4Ry0q1V1//fVXdevX67XX6w0GA03TdGEqUDHecZxUKpXP503Qo9HItm3DMBTuO6ZmvV7jTbhBB4PBdDpNYrvd7vf7bzQe2HQ6NTlwGwgEcrmcJux+v4/H48lk8ng8PtEcEeaq1WqGMM7n89ntdns8nkgkguIfYQptC9MbjcY/3dFolG6IhLvb7c7nc4n+0yEWi1WrVTwddrsdWn0+XygU4uZ4PFqWJWsoMCT3a3zTRAnclUoFKNtbLBbcFwoFAFIPR1e9Xud8uVyWy+XpdALKDPF4fLPZMHoymeQI/Wq1eg0Au9qgrGm1WhDTrVgsQtTpdGDNZDL2rxlya+RKpVK5XEZ0v99nXcxAPJvNbrcbg9FZSnrPgHrS4XA4kUjQajgckkMYILQRk30PLTsA4r2I2QmJw+FA7Pf7iVmaXIkjTG82m16vlxqGozV8coP0xDMr2qi0hBHr7XabX0Wpeh37y8ji4WXpJj+WjryU82HqcfDqJpvNAn4KMABHM1KPCrIXTAAAAABJRU5ErkJggg==" border="0" width="16" height="16" alt="How to Tell If A Guy Is Into You : 5 Signs You Need To Know If He Has A Crush On You" /> <span>How to Tell If A Guy Is Into You : 5 Signs You Need To Know If He Has A Crush On You</span></a></li><li><a href="/feeds/Cable-TV-And-Satellite-TV-Which-Is-Better" title="Cable TV And Satellite TV – Which Is Better? (594 views)"><img src="data:image/png;base64,iVBORw0KGgoAAAANSUhEUgAAABAAAAAQCAIAAACQkWg2AAAABGdBTUEAANbY1E9YMgAAABl0RVh0U29mdHdhcmUAQWRvYmUgSW1hZ2VSZWFkeXHJZTwAAAGpSURBVHjaZJLLrgFBEIZnxrhLCCEhEgskQmLJy4jnlHgIKwvEwv0SdyPHdcan2+k4Ry0q1V1//fVXdevX67XX6w0GA03TdGEqUDHecZxUKpXP503Qo9HItm3DMBTuO6ZmvV7jTbhBB4PBdDpNYrvd7vf7bzQe2HQ6NTlwGwgEcrmcJux+v4/H48lk8ng8PtEcEeaq1WqGMM7n89ntdns8nkgkguIfYQptC9MbjcY/3dFolG6IhLvb7c7nc4n+0yEWi1WrVTwddrsdWn0+XygU4uZ4PFqWJWsoMCT3a3zTRAnclUoFKNtbLBbcFwoFAFIPR1e9Xud8uVyWy+XpdALKDPF4fLPZMHoymeQI/Wq1eg0Au9qgrGm1WhDTrVgsQtTpdGDNZDL2rxlya+RKpVK5XEZ0v99nXcxAPJvNbrcbg9FZSnrPgHrS4XA4kUjQajgckkMYILQRk30PLTsA4r2I2QmJw+FA7Pf7iVmaXIkjTG82m16vlxqGozV8coP0xDMr2qi0hBHr7XabX0Wpeh37y8ji4WXpJj+WjryU82HqcfDqJpvNAn4KMABHM1KPCrIXTAAAAABJRU5ErkJggg==" border="0" width="16" height="16" alt="Cable TV And Satellite TV – Which Is Better?" /> <span>Cable TV And Satellite TV – Which Is Better?</span></a></li><li><a href="/feeds/RT-zaibatsu-RT-HuffPostDenv" title="RT @zaibatsu: RT @HuffPostDenv… (550 views)"><img src="data:image/png;base64,iVBORw0KGgoAAAANSUhEUgAAABAAAAAQCAYAAAAf8/9hAAAABmJLR0QA/wD/AP+gvaeTAAAACXBIWXMAAABIAAAASABGyWs+AAABTUlEQVQ4y32ToXaDQBBFbzgRK1cGiYxMPiF1+wmJrK2MRFaGT0AW10pcIxMHLrIWi+s4KnbZ7BLSOYfDMsObefNmdjH8rgc6IAX/ntqc3/mSObCU0B8Uda28f/R5v8MsPTjILIUC4KsVOClMKjbWQgO8d4IxUwbOpJ5vQc42ab4S3g7KF03+632vFZdPl7SFI5bJ3ohvIfH0O/soA2ziRFIoGuC2go8y1mz5wCDQY9vD9gqNhlwJ+VGRZUIofDwFd1Y78UlCsDEx+CmDUbDRdpkDT/ci0sBZf1Q0ra3Mxraxu0JVBkmDokk0wtKqXSGc1/YMgIbbZQJmZgpSKBpt1X7NxU/jgUV6T2YZpNC/2GDV20XJMtCne99b4FxI3EoHif/Y4Getgwr6W2j0TMzFF8PPehgp1bWi7+JNG3+sSoVOeRjlIrrOoT274hP/H/BQn/ovcvZsAAAAAElFTkSuQmCC" border="0" width="16" height="16" alt="RT @zaibatsu: RT @HuffPostDenv…" /> <span>RT @zaibatsu: RT @HuffPostDenv…</span></a></li><li><a href="/feeds/upright-arcade-systems-for-sale-14" title="upright arcade systems for sale (355 views)"><img src="data:image/png;base64,iVBORw0KGgoAAAANSUhEUgAAABAAAAAQCAIAAACQkWg2AAAABGdBTUEAANbY1E9YMgAAABl0RVh0U29mdHdhcmUAQWRvYmUgSW1hZ2VSZWFkeXHJZTwAAAGpSURBVHjaZJLLrgFBEIZnxrhLCCEhEgskQmLJy4jnlHgIKwvEwv0SdyPHdcan2+k4Ry0q1V1//fVXdevX67XX6w0GA03TdGEqUDHecZxUKpXP503Qo9HItm3DMBTuO6ZmvV7jTbhBB4PBdDpNYrvd7vf7bzQe2HQ6NTlwGwgEcrmcJux+v4/H48lk8ng8PtEcEeaq1WqGMM7n89ntdns8nkgkguIfYQptC9MbjcY/3dFolG6IhLvb7c7nc4n+0yEWi1WrVTwddrsdWn0+XygU4uZ4PFqWJWsoMCT3a3zTRAnclUoFKNtbLBbcFwoFAFIPR1e9Xud8uVyWy+XpdALKDPF4fLPZMHoymeQI/Wq1eg0Au9qgrGm1WhDTrVgsQtTpdGDNZDL2rxlya+RKpVK5XEZ0v99nXcxAPJvNbrcbg9FZSnrPgHrS4XA4kUjQajgckkMYILQRk30PLTsA4r2I2QmJw+FA7Pf7iVmaXIkjTG82m16vlxqGozV8coP0xDMr2qi0hBHr7XabX0Wpeh37y8ji4WXpJj+WjryU82HqcfDqJpvNAn4KMABHM1KPCrIXTAAAAABJRU5ErkJggg==" border="0" width="16" height="16" alt="upright arcade systems for sale" /> <span>upright arcade systems for sale</span></a></li><li><a href="/feeds/organic-gardening-online-rodale-61" title="organic gardening online rodale (458 views)"><img src="data:image/png;base64,iVBORw0KGgoAAAANSUhEUgAAABAAAAAQCAIAAACQkWg2AAAABGdBTUEAANbY1E9YMgAAABl0RVh0U29mdHdhcmUAQWRvYmUgSW1hZ2VSZWFkeXHJZTwAAAGpSURBVHjaZJLLrgFBEIZnxrhLCCEhEgskQmLJy4jnlHgIKwvEwv0SdyPHdcan2+k4Ry0q1V1//fVXdevX67XX6w0GA03TdGEqUDHecZxUKpXP503Qo9HItm3DMBTuO6ZmvV7jTbhBB4PBdDpNYrvd7vf7bzQe2HQ6NTlwGwgEcrmcJux+v4/H48lk8ng8PtEcEeaq1WqGMM7n89ntdns8nkgkguIfYQptC9MbjcY/3dFolG6IhLvb7c7nc4n+0yEWi1WrVTwddrsdWn0+XygU4uZ4PFqWJWsoMCT3a3zTRAnclUoFKNtbLBbcFwoFAFIPR1e9Xud8uVyWy+XpdALKDPF4fLPZMHoymeQI/Wq1eg0Au9qgrGm1WhDTrVgsQtTpdGDNZDL2rxlya+RKpVK5XEZ0v99nXcxAPJvNbrcbg9FZSnrPgHrS4XA4kUjQajgckkMYILQRk30PLTsA4r2I2QmJw+FA7Pf7iVmaXIkjTG82m16vlxqGozV8coP0xDMr2qi0hBHr7XabX0Wpeh37y8ji4WXpJj+WjryU82HqcfDqJpvNAn4KMABHM1KPCrIXTAAAAABJRU5ErkJggg==" border="0" width="16" height="16" alt="organic gardening online rodale" /> <span>organic gardening online rodale</span></a></li><li><a href="/feeds/How-to-Treat-Premature-Ejaculation-Butea-Superba-Herbal-Supplement" title="How to Treat Premature Ejaculation – Butea Superba Herbal Supplement (519 views)"><img src="data:image/png;base64,iVBORw0KGgoAAAANSUhEUgAAABAAAAAQCAIAAACQkWg2AAAABGdBTUEAANbY1E9YMgAAABl0RVh0U29mdHdhcmUAQWRvYmUgSW1hZ2VSZWFkeXHJZTwAAAGpSURBVHjaZJLLrgFBEIZnxrhLCCEhEgskQmLJy4jnlHgIKwvEwv0SdyPHdcan2+k4Ry0q1V1//fVXdevX67XX6w0GA03TdGEqUDHecZxUKpXP503Qo9HItm3DMBTuO6ZmvV7jTbhBB4PBdDpNYrvd7vf7bzQe2HQ6NTlwGwgEcrmcJux+v4/H48lk8ng8PtEcEeaq1WqGMM7n89ntdns8nkgkguIfYQptC9MbjcY/3dFolG6IhLvb7c7nc4n+0yEWi1WrVTwddrsdWn0+XygU4uZ4PFqWJWsoMCT3a3zTRAnclUoFKNtbLBbcFwoFAFIPR1e9Xud8uVyWy+XpdALKDPF4fLPZMHoymeQI/Wq1eg0Au9qgrGm1WhDTrVgsQtTpdGDNZDL2rxlya+RKpVK5XEZ0v99nXcxAPJvNbrcbg9FZSnrPgHrS4XA4kUjQajgckkMYILQRk30PLTsA4r2I2QmJw+FA7Pf7iVmaXIkjTG82m16vlxqGozV8coP0xDMr2qi0hBHr7XabX0Wpeh37y8ji4WXpJj+WjryU82HqcfDqJpvNAn4KMABHM1KPCrIXTAAAAABJRU5ErkJggg==" border="0" width="16" height="16" alt="How to Treat Premature Ejaculation – Butea Superba Herbal Supplement" /> <span>How to Treat Premature Ejaculation – Butea Superba Herbal Supplement</span></a></li><li><a href="/feeds/Reg-Clean-Review" title="Reg Clean Review (858 views)"><img src="data:image/png;base64,iVBORw0KGgoAAAANSUhEUgAAABAAAAAQCAIAAACQkWg2AAAABGdBTUEAANbY1E9YMgAAABl0RVh0U29mdHdhcmUAQWRvYmUgSW1hZ2VSZWFkeXHJZTwAAAGpSURBVHjaZJLLrgFBEIZnxrhLCCEhEgskQmLJy4jnlHgIKwvEwv0SdyPHdcan2+k4Ry0q1V1//fVXdevX67XX6w0GA03TdGEqUDHecZxUKpXP503Qo9HItm3DMBTuO6ZmvV7jTbhBB4PBdDpNYrvd7vf7bzQe2HQ6NTlwGwgEcrmcJux+v4/H48lk8ng8PtEcEeaq1WqGMM7n89ntdns8nkgkguIfYQptC9MbjcY/3dFolG6IhLvb7c7nc4n+0yEWi1WrVTwddrsdWn0+XygU4uZ4PFqWJWsoMCT3a3zTRAnclUoFKNtbLBbcFwoFAFIPR1e9Xud8uVyWy+XpdALKDPF4fLPZMHoymeQI/Wq1eg0Au9qgrGm1WhDTrVgsQtTpdGDNZDL2rxlya+RKpVK5XEZ0v99nXcxAPJvNbrcbg9FZSnrPgHrS4XA4kUjQajgckkMYILQRk30PLTsA4r2I2QmJw+FA7Pf7iVmaXIkjTG82m16vlxqGozV8coP0xDMr2qi0hBHr7XabX0Wpeh37y8ji4WXpJj+WjryU82HqcfDqJpvNAn4KMABHM1KPCrIXTAAAAABJRU5ErkJggg==" border="0" width="16" height="16" alt="Reg Clean Review" /> <span>Reg Clean Review</span></a></li></ul> </div> </div> <div class="addfeed-form"> <h3>Find or add a new feed:</h3> <form action="/addfeed" method="post" class="form-addfeed"> Enter website or <abbr title="Really Simple Syndication">RSS</abbr> feed URL: <input type="text" name="site_url" class="input-addfeed" /> <input type="submit" value="Read it!" /> </form> <form action="/importopml" method="post" enctype="multipart/form-data" class="form-addfeed"> <input type="hidden" name="MAX_FILE_SIZE" value="30000" /> Upload/import <abbr title="Outline Processor Markup Language">OPML</abbr> file: <input type="file" name="opml_file" class="input-addfeed" /> <input type="submit" value="Import" /> </form> </div> <h4>Bookmarklet</h4> <p> Drag this link to your browser bookmarks bar, then click it whenever you want to add the site you're viewing to RSS2.com. </p> <a href="javascript:void(location.href='http://rss2.com/addfeed?site_url='+escape(location.href));">Add to RSS2.com</a> </div> <div id="footer"> <hr size="1" /> <!-- MX Guarddog links --> <a href="http://www.diamonds2cash.com/sell-diamonds">sell diamonds online</a> <br /> <hr size="1" /> <a href="http://rss2.com/">RSS2.com homepage</a> | <a href="/feeds/" title="All Feeds">All Feeds</a> | <a href="/collections/" title="Collections">Collections</a> | <a href="/privacy/" title="Privacy Policy">Privacy Policy</a> | <a href="/terms_and_conditions/" title="Terms and Conditions / Acceptable Use Policy / DMCA">Terms and Conditions / Acceptable Use Policy / DMCA</a> <div class="footer-metadata"> An idea by <a href="http://www.gabrielserafini.com/" title="Gabriel">Gabriel</a> @ <a href="http://www.serafinistudios.com/" title="Serafini Studios">Serafini Studios</a> following the principles of <a href="http://rightsumi.com/" title="Rightsumi - delightful correct usability joy experience" ><em>rightsumi</em></a> » 0.917 seconds to build page. { Build # 7564 } </div> </div> </div> <script> (function(i,s,o,g,r,a,m){i['GoogleAnalyticsObject']=r;i[r]=i[r]||function(){ (i[r].q=i[r].q||[]).push(arguments)},i[r].l=1*new Date();a=s.createElement(o), m=s.getElementsByTagName(o)[0];a.async=1;a.src=g;m.parentNode.insertBefore(a,m) })(window,document,'script','https://www.google-analytics.com/analytics.js','ga'); ga('create', 'UA-664934-2', 'auto'); ga('send', 'pageview'); </script> </body> </html>