<?xml version="1.0" encoding="UTF-8"?>
<rss version="2.0"
	xmlns:content="http://purl.org/rss/1.0/modules/content/"
	xmlns:wfw="http://wellformedweb.org/CommentAPI/"
	xmlns:dc="http://purl.org/dc/elements/1.1/"
	xmlns:atom="http://www.w3.org/2005/Atom"
	>

<channel>
	<title>Inside The Mind Of Timothy Allard</title>
	<atom:link href="http://www.timothyallard.com/blog/feed/" rel="self" type="application/rss+xml" />
	<link>http://www.timothyallard.com/blog</link>
	<description>And Some Stuff Outside Of It Too.</description>
	<pubDate>Sun, 26 Oct 2008 16:18:35 +0000</pubDate>
	<generator>http://wordpress.org/?v=2.6.2</generator>
	<language>en</language>
			<item>
		<title>Twitter Search API And jSON Callbacks</title>
		<link>http://www.timothyallard.com/blog/2008/10/26/twitter-search-api-and-json-callbacks/</link>
		<comments>http://www.timothyallard.com/blog/2008/10/26/twitter-search-api-and-json-callbacks/#comments</comments>
		<pubDate>Sun, 26 Oct 2008 16:06:15 +0000</pubDate>
		<dc:creator>Timothy Allard</dc:creator>
		
		<category><![CDATA[Blog Improvements]]></category>

		<category><![CDATA[Twitter]]></category>

		<category><![CDATA[Web 2.0]]></category>

		<category><![CDATA[Web Development]]></category>

		<category><![CDATA[Callbacks]]></category>

		<category><![CDATA[jSON]]></category>

		<category><![CDATA[Tools]]></category>

		<category><![CDATA[Twitter API]]></category>

		<category><![CDATA[Twitter Search]]></category>

		<guid isPermaLink="false">http://www.timothyallard.com/blog/?p=250</guid>
		<description><![CDATA[Over the weekend I integrated a Twitter Profile Search Tool in my blog using the Twitter API and the jSON callback functions. What it does, is let you search Twitter profiles right from my blog, and display their latest Tweets. I have full control over the number of tweets to display, the amount to show, [...]]]></description>
			<content:encoded><![CDATA[<p>Over the weekend I integrated a <a href="http://www.timothyallard.com/blog/2008/10/26/search-twitter-profiles-from-my-blog/">Twitter Profile Search Tool</a> in my blog using the Twitter API and the jSON callback functions. What it does, is let you search Twitter profiles right from my blog, and display their latest Tweets. I have full control over the number of tweets to display, the amount to show, and more. The Twitter API and jSON functions are very cool, and this is only the beginning to what can be done with it. I started with a search tool because it is a very practical thing to make. Let&#8217;s dissect it a bit to see how it was done.<br />
<span id="more-250"></span><br />
<strong><br />
First off, what is the Twitter API, and what can I do with it? </strong><br />
Well simply put, Twitter exposes some of its functionality via an Application Programming Interface (API). This allows us so to some cool things with it, like my Twitter Profile Search Tool.</p>
<p><strong>Lets get dirty. </strong><br />
There are a few things that must be included to get this to function correctly. Here is a quick overview. </p>
<p>We need to have a search field and button to submit, lets use &#8220;user&#8221; as the search fields name.</p>
<p>We then need to place <code>< ?php $user = $_GET['user']; ? ></code> high up on our code. This will grab the variable $user to send through the API and jSON, giving us the profile we would like to search.</p>
<p>Inside the form action we need to do method=&#8221;GET&#8221; and action=&#8221;&#038;user=&#8221;. This will add the variable user to the URL and encode it to manipulate the data.</p>
<p>Next we need to include an element with an ID called &#8220;twitter_update_list&#8221; I chose to use an Unordered List. jSON will look for this ID and know where to place the called data.</p>
<p>We are just about done, here is the last chunk of code. </p>
<p><code><script type="text/javascript" src="http://twitter.com/javascripts/blogger.js"></script><br />
< ?php echo " <script type=\"text/javascript\" src=\"http://twitter.com/statuses/user_timeline/$user.json?callback=twitterCallback2&amp;count=20\"></script> &#8220;; ? ></code></p>
<p>I converted the last javascript line to PHP because I wanted to make it dynamic. You see how there is &#8220;$user.json?&#8221; typicly in a static call, $user would be an actual profile name. But since I wanted to make it a dynamic call and enable the user to search for themselves, I added the profile name a variable.</p>
<p>The last part to this is to change count to the number you want to display. 20 = 20 Tweets.</p>
<p><strong>The End Result:</strong></p>
<div id="twitter_div">
<form method="get" action="?page_id=208&#038;user=">
<input name="user" type="text" />
<input name="Search" type="submit"/></form>
<p><br/><br/></p>
<h2 class="sidebar-title">Twitter Updates From: </h2>
<ul id="twitter_update_list"></ul>
</div>
<p><script type="text/javascript" src="http://twitter.com/javascripts/blogger.js"></script><br />
<script type="text/javascript" src="http://twitter.com/statuses/user_timeline/.json?callback=twitterCallback2&amp;count=20"></script><br />
<strong>What Now?</strong><br />
I have created a code document you can download right from here: <a href="http://www.timothyallard.com/blog/wp-content/uploads/2008/10/twitter-search-tool.txt">Twitter Search Tool</a>. It works right out of the box. Have fun with it and see what you can do to make Twitter a better application and micro-blogging tool.</p>
<p>That&#8217;s about it. That&#8217;s the user profile search in a nutshell. Have any questions or suggestions? Let me know in the comments below.</p>
<p>I may even port this out to make it an Adobe AIR app with some improvements.</p>
]]></content:encoded>
			<wfw:commentRss>http://www.timothyallard.com/blog/2008/10/26/twitter-search-api-and-json-callbacks/feed/</wfw:commentRss>
		</item>
		<item>
		<title>Search Twitter Profiles From My Blog</title>
		<link>http://www.timothyallard.com/blog/2008/10/26/search-twitter-profiles-from-my-blog/</link>
		<comments>http://www.timothyallard.com/blog/2008/10/26/search-twitter-profiles-from-my-blog/#comments</comments>
		<pubDate>Sun, 26 Oct 2008 14:37:28 +0000</pubDate>
		<dc:creator>Timothy Allard</dc:creator>
		
		<category><![CDATA[Twitter]]></category>

		<category><![CDATA[Web 2.0]]></category>

		<category><![CDATA[Web Development]]></category>

		<category><![CDATA[Search Profiles]]></category>

		<category><![CDATA[Twitter API]]></category>

		<category><![CDATA[Twitter Apps]]></category>

		<guid isPermaLink="false">http://www.timothyallard.com/blog/?p=235</guid>
		<description><![CDATA[Use this Twitter profile search to pull in feeds from all of your friends. Type in the profile name you want to search then press the button.







Twitter Updates From: 




]]></description>
			<content:encoded><![CDATA[<p>Use this Twitter profile search to pull in feeds from all of your friends. Type in the profile name you want to search then press the button.</p>
<p><a href="http://www.timothyallard.com/blog/wp-content/uploads/2008/10/twitterrific-icon.png"><img class="size-medium wp-image-102 alignleft" style="border: 0pt none; margin-left: 5px; margin-right: 5px;" title="twitterrific-icon" src="http://www.timothyallard.com/blog/wp-content/uploads/2008/10/twitterrific-icon.png" border="0" alt="" width="108" height="108" /></a></p>
<div id="twitter_div">
<br/><br/></p>
<form method="get" action="?page_id=208&#038;user=">
<input name="user" type="text" />
<input name="Search" type="submit"/></form>
<p><br/><br/></p>
<h2 class="sidebar-title">Twitter Updates From: </h2>
<ul id="twitter_update_list"></ul>
</div>
<p><script type="text/javascript" src="http://twitter.com/javascripts/blogger.js"></script><br />
<script type="text/javascript" src="http://twitter.com/statuses/user_timeline/.json?callback=twitterCallback2&amp;count=20"></script></p>
]]></content:encoded>
			<wfw:commentRss>http://www.timothyallard.com/blog/2008/10/26/search-twitter-profiles-from-my-blog/feed/</wfw:commentRss>
		</item>
		<item>
		<title>MyDentify Business Directory To Break 4 Million PVS For 2008</title>
		<link>http://www.timothyallard.com/blog/2008/10/23/mydentify-business-directory-to-break-4-million-pvs-for-2008/</link>
		<comments>http://www.timothyallard.com/blog/2008/10/23/mydentify-business-directory-to-break-4-million-pvs-for-2008/#comments</comments>
		<pubDate>Thu, 23 Oct 2008 05:52:29 +0000</pubDate>
		<dc:creator>Timothy Allard</dc:creator>
		
		<category><![CDATA[Goals]]></category>

		<category><![CDATA[My Websites]]></category>

		<category><![CDATA[MyDentify]]></category>

		<category><![CDATA[Web Development]]></category>

		<category><![CDATA[Adsense]]></category>

		<category><![CDATA[Business Directory]]></category>

		<category><![CDATA[Traffic]]></category>

		<guid isPermaLink="false">http://www.timothyallard.com/blog/?p=195</guid>
		<description><![CDATA[This is incredible. I just pulled up my stats for MyDentify Business Directory and I am at 3,780,049 page views for the year. My goal is so close I can feel it. I did a post about two years ago on Setting Goals for Web Traffic And AdSense, both short term and long term, and [...]]]></description>
			<content:encoded><![CDATA[<p>This is incredible. I just pulled up my stats for <a href="http://www.mydentify.com">MyDentify Business Directory</a> and I am at 3,780,049 page views for the year. My goal is so close I can feel it. I did a post about two years ago on <a href="http://www.timothyallard.com/blog/2007/06/17/setting-goals-for-web-traffic-and-adsense/">Setting Goals for Web Traffic And AdSense</a>, both short term and long term, and I have been right on track. My first big goal was to achieve 50,000 page views for the year back in 2006. It was tough that first year, but I did it. My goal after that was to double it, and I did, with 101,003 page views. My Next goal was to get 500,000 and boy was that tough. BUT I was able to even double that and for that year I reached 1,000,000 page views. Since last year and today, I have almost quadrupled in traffic. Which is so sweet. MyDentify has about 40,000 indexed pages of both static and dynamic content and my SERP results are great. People searching - Search Engines make up 74% of my traffic as of now, direct traffic is 14% and referring is 10% (I rounded the decimals). Read More&#8230;<br />
<span id="more-195"></span><br />
Recently I have been on a very positive upward traffic curve. I think it is a lot to do with some important modifications I have made, and am continuing to work on. Other things to look out for are some tools im programming to enable business and links to get better SERPS and monitor competition In 1 clean area. Cool!</p>
<p>My other sites still need a lot of work,.. their more so content driven, as MyDentify is running itself (I need more of these) outside of me approving link submission. </p>
<p>Something nice to sleep on. Im looking forward to what the weekend brings! AdSense has been down a little over the past few days, but the economy isnt helping those AdWords publishers one bit. >.<</p>
<p>Do you have any feedback for making <a href="http://www.mydentify.com">MyDentify Business Directory</a> a better website? If so, Ill give you a featured link ($26.99 value) If it gets implemented. If it doesnt get implemented but you suggest anyway, I will still give you a free link byassing the payment.</p>
]]></content:encoded>
			<wfw:commentRss>http://www.timothyallard.com/blog/2008/10/23/mydentify-business-directory-to-break-4-million-pvs-for-2008/feed/</wfw:commentRss>
		</item>
		<item>
		<title>Top Google AdSense Whores</title>
		<link>http://www.timothyallard.com/blog/2008/10/23/top-adsense-whores/</link>
		<comments>http://www.timothyallard.com/blog/2008/10/23/top-adsense-whores/#comments</comments>
		<pubDate>Thu, 23 Oct 2008 04:20:44 +0000</pubDate>
		<dc:creator>Timothy Allard</dc:creator>
		
		<category><![CDATA[Adsense]]></category>

		<category><![CDATA[Monetization]]></category>

		<guid isPermaLink="false">http://www.timothyallard.com/blog/2007/06/16/top-adsense-whores/</guid>
		<description><![CDATA[AdSense is an amazing tool. If you play your cards right, you can have that your full time job, and just sit back and watch. There are some real &#8220;movers and shakers&#8221; if you will who simply make it great. AdSense takes quite a lot of work if your just starting out, especially if you [...]]]></description>
			<content:encoded><![CDATA[<p>AdSense is an amazing tool. If you play your cards right, you can have that your full time job, and just sit back and watch. There are some real &#8220;movers and shakers&#8221; if you will who simply make it great. AdSense takes quite a lot of work if your just starting out, especially if you don&#8217;t have an established website getting a lot of traffic. Don&#8217;t get me wrong, I use whores in the nicest way possible <img src='http://www.timothyallard.com/blog/wp-includes/images/smilies/icon_smile.gif' alt=':)' class='wp-smiley' /> Here is a list of the Top AdSense earners.<br />
<span id="more-11"></span></p>
<p><strong>1: Markus Frind: PlentyOfFish.com - $300,000 per month</strong><br />
<a href="http://www.plentyoffish.com" title="PlentyOfFish" target="_blank">PlentyOfFish.com</a> is one of the most popular free dating websites in existence. It is simply an amazingly high traffic website, Markus is gettign about 500 million page views a month and an astonishing  $10,000 a day with AdSense alone. Best part is its just Markus and his girlfriend running the website.</p>
<p><strong>2: Kevin Rose: Digg.com - $250,000 per month</strong><br />
Kevin Rose, owner of <a href="http://www.Digg.com" title="Digg" target="_blank">Digg.com</a> is a real cool guy. I personally am a huge fan of Digg, and participate faithfully. Started just a few years ago, Digg is a super duper traffic machine. Getting about 200 milion page views a month, Kevin Rose will rake in about $3,000,000 in ad revenue this year alone.</p>
<p><strong>3: Jeremy Schoemaker - $140,000 per month</strong><br />
Jeremey Schoemaker aka ShoeMoney, is in my opinion a god of internet search engine marketing. He is a real AdSense and AdWords Guru and knows how to use both to make great profit.</p>
<p><strong>4: Jason Calacanis: Weblogs, Inc. - $120,000 per month</strong><br />
Jason Calanis, founder of <a href="http://www.weblogs.com" title="Weblogs Inc" target="_blank">Weblogs</a> Inc, sold his company to AOL for a nice $25 million. He makes about $4,000 a day with AdSense, who would complain!?</p>
<p><strong>5: David Miles Jr. &amp; Kato Leonard - $100,000 per month</strong><br />
Known for <a href="http://www.freeweblayouts.net" title="FreeWebLayouts" target="_blank">freeweblayouts.net</a>, David and Kato crafted a great template site for the #1 social network MySpace.com.</p>
<p><strong>6: Tim Carter: AskTheBuilder.com - $30,000 per month</strong><br />
Tim Carter has a real passion for building. So, being natural he founded <a href="http://www.AskTheBuilder.com" title="Ask the Builder" target="_blank">AskTheBuilder.com</a>. Making about $1,400 a day with AdSense.</p>
<p><strong>7: Joel Comm - $24,000 per month</strong><br />
Joel Comm is your &#8220;get rich quick&#8221; sort of guy. He wrote the best selling e-book, <em>What Google Never Told You About Making Money with AdSense</em>.</p>
<p><strong>8: Shawn Hogan – DigitalPoint.com $10,000 per month</strong><br />
DigitalPoint is where I spend about 60% of my internet reading. The user base on digitalpoint forums are amazing, very helpful and great AdSense community. Without them I would not be doing this right now. Thanks guys!</p>
<p>Do you make a lot with AdSense? Mind to share? we want to hear it! Post in the comments below to share your info.</p>
]]></content:encoded>
			<wfw:commentRss>http://www.timothyallard.com/blog/2008/10/23/top-adsense-whores/feed/</wfw:commentRss>
		</item>
		<item>
		<title>Improvements To MyDentify Business Directory</title>
		<link>http://www.timothyallard.com/blog/2008/10/18/improvements-to-mydentify-business-directory/</link>
		<comments>http://www.timothyallard.com/blog/2008/10/18/improvements-to-mydentify-business-directory/#comments</comments>
		<pubDate>Sun, 19 Oct 2008 03:32:52 +0000</pubDate>
		<dc:creator>Timothy Allard</dc:creator>
		
		<category><![CDATA[My Websites]]></category>

		<category><![CDATA[MyDentify]]></category>

		<category><![CDATA[Web Development]]></category>

		<category><![CDATA[Business Directory]]></category>

		<category><![CDATA[Improvements]]></category>

		<guid isPermaLink="false">http://www.timothyallard.com/blog/?p=193</guid>
		<description><![CDATA[This has been a busy weekend for MyDentify Business Directory. There have been many improvements on both the front and back ends. First off, Time for a background color change. Its now blue. Some other things most notably, is a quicker load time. I have made many modifications to improve a quicker connection to the [...]]]></description>
			<content:encoded><![CDATA[<p>This has been a busy weekend for <a href="http://mydentify.com">MyDentify Business Directory</a>. There have been many improvements on both the front and back ends. First off, Time for a background color change. Its now blue. Some other things most notably, is a quicker load time. I have made many modifications to improve a quicker connection to the rapidly growing database. Another load modification is how you search. <span id="more-193"></span>Before, when searching for a keyword, it would list hundreds of results with no pagination. There is now pagination to keep load times nice and quick. It also is a much more fluid experience. Another slight modification to the visual look of the directory is alternating background colors on each link.</p>
<p>From a category standpoint, the travel section has gotten an upgrade! We have added the following subcategories: <a href="http://www.mydentify.com/Business_Internet_Services/Travel/Air_Travel/">Air Travel</a>, <a href="http://www.mydentify.com/Business_Internet_Services/Travel/Cruise_Travel/">Cruise Travel</a>, <a href="http://www.mydentify.com/Business_Internet_Services/Travel/Discounts_And_Coupons/">Discounts And Coupons</a>, <a href="http://www.mydentify.com/Business_Internet_Services/Travel/Exotic_Travel/">Exotic Travel</a>, <a href="http://www.mydentify.com/Business_Internet_Services/Travel/Facts_And_General_Info/">Facts And General Info</a>, <a href="http://www.mydentify.com/Business_Internet_Services/Travel/Hotels_And_Accommodation/">Hotels And Accommodation</a>, <a href="http://www.mydentify.com/Business_Internet_Services/Travel/Limo_Service/">Limo Services</a>, <a href="http://www.mydentify.com/Business_Internet_Services/Travel/Rent_A_Car/">Rent A Car</a>, <a href="http://www.mydentify.com/Business_Internet_Services/Travel/Travel_Agencys/">Travel Agencys</a>, <a href="http://www.mydentify.com/Business_Internet_Services/Travel/Travel_Guides/">Travel Guides</a>, <a href="http://www.mydentify.com/Business_Internet_Services/Travel/Travel_Jobs/">Travel Jobs</a>, <a href="http://www.mydentify.com/Business_Internet_Services/Travel/Win_Vacations/">Win Vacations</a>.</p>
<p>Travel got some love, that should suffice for now!</p>
<p>Do you have a suggestion for MyDentify? If so I would love to hear it. If it gets implemented you will receive some featured links. (worth a backlink and $23.99!) Send me your suggestions in the comments below. As the holiday season comes along. We will be doing some featured link giveaways as well.</p>
]]></content:encoded>
			<wfw:commentRss>http://www.timothyallard.com/blog/2008/10/18/improvements-to-mydentify-business-directory/feed/</wfw:commentRss>
		</item>
	</channel>
</rss>
