Thickspiration And The Power Of RSS Feed Syndication

Posted May 16, 2007 at 5:28 PM

Before May 10th, any search in Google for the phrase "Thickspiration" yielded no results. In response to the news coverage of "Thinspiration" and the lack of choices for the dysmorphic, I created a post on May 10th titled, "Thinspiration... What About Thickspiration?".

On May 11th, it was the only Google search result for "Thickspiration."

Today, May 16th, a Google search for "Thickspiration" yields 92 results (for some reason only 82 for lowercase-t, thickspiration). Of those 92, there is only one that I could find that someone actually wrote a post on a threaded discussion that references it. The other 91 results are due purely to RSS feed syndication.

That's pretty cool. I think it shows the power of feed syndication in really get your information available to the world.

Post Comment  |  Ask Ben  |  Permalink  |  Print Page


You Might Also Be Interested In:



Learning ColdFusion 9 - ColdFusion 9 tutorials, samples, examples, demos

Reader Comments

May 16, 2007 at 7:07 PM // reply »
164 Comments

"Today, May 16th, a Google search for "Thickspiration" yields 92 results (for some reason only 82 for lowercase-t, thickspiration)."

This is because updates to the Google index are not rolled out simultaneously to the thousands of Google servers. If your results were consistently as you described over multiple searches, it could be chance, or it could that your browser was showing you cached copies of the results from the two searches.

I just tried six searches for "thickspiration," three with the uppercase T and three with lowercase. I received five different numbers of results, ranging from 70 to 98. In time, these numbers should become consistent (unless the word catches on and is used elsewhere, of course).


May 17, 2007 at 5:59 PM // reply »
6,516 Comments

@Steve,

I never thought of that. I understand that Google employs thousands of computers, but I assumed they some how all fed into the same result sets. Interesting to think that different searches are actually searching different caches.


Post Comment  |  Ask Ben

Recent Blog Comments
Nov 20, 2009 at 11:32 PM
Five Months Without Hungarian Notation And I'm Loving It
I've used headless camel case for years for not only ColdFusion variables, but also SQL tables and fields... pretty much everything involving code. I also subscribe to the "don't abbreviate and clea ... read »
Nov 20, 2009 at 11:00 PM
Five Months Without Hungarian Notation And I'm Loving It
@Marcel, Yeah, I always err on the side of longer but more readable variable names. As for the camel casing of CF methods and the headless camel casing of custom items, I get around this by always ... read »
Nov 20, 2009 at 10:56 PM
Five Months Without Hungarian Notation And I'm Loving It
I use the following and love it: my.namespace.MyComponents.functionMethodsOrUDF() CONSTANT_VALUES_OR_PROPERTIES One thing I always try is to CamelCaseBuiltInColdFusionFunctions() so others can tell ... read »
Nov 20, 2009 at 5:38 PM
Learning ColdFusion 8: CFImage Part I - Reading And Writing Images
Hi Ben, Great article. I've been looking around to see if ColdFusion image engine can programatically create the following "wrap around" effect: http://www.creativepro.com/article/photoshop-s-she ... read »
Nov 20, 2009 at 5:35 PM
Maintaining ColdFusion Sessions Across SMS Text Message Requests Without Cookies
@Dave: I talked to Gert he suggested: <cfhttp method="get" url="http://{some cf website}" result="stuff" addtoken="yes" /> Note the addition of cfhttp attribute addtoken. That should persist y ... read »
Nov 20, 2009 at 5:23 PM
Maintaining ColdFusion Sessions Across SMS Text Message Requests Without Cookies
@Todd, Ahh, gotcha, yeah that makes sense. ... read »
Nov 20, 2009 at 5:17 PM
Maintaining ColdFusion Sessions Across SMS Text Message Requests Without Cookies
Ben, sorry if I didn't make this clear. You can make it work like that if you want, just put <cfset session.foo = 1> (and <cfset application.foo = 1>) in your OnRequestStart() and it reve ... read »