<?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"
	xmlns:sy="http://purl.org/rss/1.0/modules/syndication/"
	xmlns:slash="http://purl.org/rss/1.0/modules/slash/"
	>

<channel>
	<title>Kevin Pajak - Interactive Web Developer/Designer - BLOG &#187; apps</title>
	<atom:link href="http://www.kevinpajak.com/blog/tag/apps/feed/" rel="self" type="application/rss+xml" />
	<link>http://www.kevinpajak.com/blog</link>
	<description>Creative visionary, digital entrepreneur.</description>
	<lastBuildDate>Tue, 13 Apr 2010 02:01:02 +0000</lastBuildDate>
	<language>en</language>
	<sy:updatePeriod>hourly</sy:updatePeriod>
	<sy:updateFrequency>1</sy:updateFrequency>
	<generator>http://wordpress.org/?v=3.3.1</generator>
		<item>
		<title>How to log out a user who closes the browser window</title>
		<link>http://www.kevinpajak.com/blog/2010/02/10/how-to-log-out-a-user-who-closes-the-browser-window/</link>
		<comments>http://www.kevinpajak.com/blog/2010/02/10/how-to-log-out-a-user-who-closes-the-browser-window/#comments</comments>
		<pubDate>Thu, 11 Feb 2010 04:43:03 +0000</pubDate>
		<dc:creator>admin</dc:creator>
				<category><![CDATA[Daily Journal]]></category>
		<category><![CDATA[Web Dev/Design]]></category>
		<category><![CDATA[Ajax]]></category>
		<category><![CDATA[apps]]></category>
		<category><![CDATA[code]]></category>
		<category><![CDATA[JavaScript]]></category>
		<category><![CDATA[jQuery]]></category>

		<guid isPermaLink="false">http://www.kevinpajak.com/blog/?p=339</guid>
		<description><![CDATA[I would like to thank Brazilian software developer Daniel Melo for posting this code which helped me to solve a problem which was very pesky indeed, and in need of a solution. The problem occurred during a user&#8217;s logged-in session for a chat application I was building. This was the issue: the app is basically [...]]]></description>
			<content:encoded><![CDATA[<p>I would like to thank Brazilian software developer Daniel Melo for posting this code which helped me to solve a problem which was very pesky indeed, and in need of a solution. The problem occurred during a user&#8217;s logged-in session for a chat application I was building. This was the issue: the app is basically a live-chat client, which also shows all current users online, by name. If a logged-in user clicked the &#8220;Logout&#8221; link, all was good, no problem, his/her name was removed from the list of currently logged-on users. However, if the person just suddenly decided to end the chat session by just closing the browser and hitting &#8216;X&#8217; (as I myself might do!), the user was still showing as currently online, and NOT logged out (obviously this is an annoying issue). <span id="more-339"></span>After searching far and wide for this on the Internet, I came across the brilliant code I found at the link below on stackoverflow.com:</p>
<p><A HREF="http://stackoverflow.com/questions/1371757/how-to-kill-a-application-session-when-a-browser-window-is-closed" target="_blank"><B>&#8220;How to kill an application session when a browser window is closed?&#8221;</B></A></p>
<p>This code uses jQuery/Ajax in an absolutely brilliant and straightforward way. Basically what the code does is automatically load the contents of your &#8220;logoff.php&#8221; page, using the JavaScript <b>window.onbeforeunload</b> function (which is something that executes upon a user&#8217;s exiting the browser, refreshing the page, or submitting a form). Probably the most brilliant thing about this script is that it still uses the <em>onbeforeunload</em> function, BUT (and this was why it was of so much particular use to me for my particular case), let&#8217;s say that your web app page is relying on a form processor page that is on an external page, and not on the same page. If the user in this kind of case enters in their chat text, and then hits the submit button (but still is currently ON the page and actively participating in the current chat session), the typical <em>onbeforeunload</em> function if called, would execute (so basically, in this case, this would amount to the user being logged off every time he/she hit the &#8220;Post Message&#8221; button, and not JUST when the user closed the browser window).</p>
<p>So what this very clever script does is execute the contents of the script on your &#8220;logoff.php&#8221; page <b>onbeforeunload</b>, BUT <u>excepts the following cases:</u> (so it won&#8217;t get called if the user does the following things, and will only log the user out when he/she closes the browser window):</p>
<p>- Hitting the Submit button;<br />
- Clicking a link.</p>
<p>[The "magical" thing I will add too, after thinking about it, is that your 'logout.php' web page does not even have to be currently loaded on the browser - after all, the browser is being closed, right? This script executes your code all at once - like I said, fantastic! One other slightly unfortunate thing I found too in my extensive testing was that: this script works fine in Firefox and IE (and worked in Google Chrome, <em>after</em> not working the first time, insanely enough, but did not work in Opera or Safari :S). My sort of work-around for this was to at least add in code to my log-in page that sets the user's status to offline right away, then online once they are logged on and enter the chatroom].</p>
<p>Anyway, hope what I said here makes sense and is not too muddled an explanation, and&#8230; here is the code!:</p>
<div style="background: #EAE3E3; padding: 10px; border: 1px solid #000;">
/*<br />
* autoLogoff.js<br />
*<br />
* Every valid navigation (form submit, click on links) should<br />
* set this variable to true.<br />
*<br />
* If it is left to false the page will try to invalidate the<br />
* session via an AJAX call<br />
*/<br />
var validNavigation = false;</p>
<p>/*<br />
* Invokes the servlet /endSession to invalidate the session.<br />
* No HTML output is returned<br />
*/<br />
function endSession() {<br />
   $.get(&quot;&lt;whatever url will end your session&gt;&quot;);<br />
}</p>
<p>function wireUpEvents() {</p>
<p>  /*<br />
  * For a list of events that triggers onbeforeunload on IE<br />
  * check http://msdn.microsoft.com/en-us/library/ms536907(VS.85).aspx<br />
  */<br />
  window.onbeforeunload = function() {<br />
      if (!validNavigation) {<br />
         endSession();<br />
      }<br />
  }</p>
<p>  // Attach the event click for all links in the page<br />
  $(&quot;a&quot;).bind(&quot;click&quot;, function() {<br />
     validNavigation = true;<br />
  });</p>
<p>  // Attach the event submit for all forms in the page<br />
  $(&quot;form&quot;).bind(&quot;submit&quot;, function() {<br />
     validNavigation = true;<br />
  });</p>
<p>}</p>
<p>// Wire up the events as soon as the DOM tree is ready<br />
$(document).ready(function() {<br />
    wireUpEvents();  <br />
});
</div>
<p>From there, you just need to save this text in a file called &#8216;autoLogoff.js&#8217;, and call it toward the top of your page with the following code:</p>
<p>&lt;script type=&quot;text/javascript&quot; src=&quot;js/autoLogoff.js&quot;&gt;&lt;/script&gt;</p>
<p>I am making this post because this information was REALLY hard to find when I was searching for it, in the hopes that it can help you out with a similar project!</p>
<p>Again, here is the original posting for more and complete information:</p>
<p><A HREF="http://stackoverflow.com/questions/1371757/how-to-kill-a-application-session-when-a-browser-window-is-closed" target="_blank"><B>&#8220;How to kill an application session when a browser window is closed?&#8221;</B></p>
]]></content:encoded>
			<wfw:commentRss>http://www.kevinpajak.com/blog/2010/02/10/how-to-log-out-a-user-who-closes-the-browser-window/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>Live chat client showing list of current users online</title>
		<link>http://www.kevinpajak.com/blog/2010/02/03/live-chat-client-showing-list-of-current-users-online/</link>
		<comments>http://www.kevinpajak.com/blog/2010/02/03/live-chat-client-showing-list-of-current-users-online/#comments</comments>
		<pubDate>Thu, 04 Feb 2010 02:48:20 +0000</pubDate>
		<dc:creator>admin</dc:creator>
				<category><![CDATA[Daily Journal]]></category>
		<category><![CDATA[Social Media]]></category>
		<category><![CDATA[Web Dev/Design]]></category>
		<category><![CDATA[apps]]></category>

		<guid isPermaLink="false">http://www.kevinpajak.com/blog/?p=330</guid>
		<description><![CDATA[OK, so I&#8217;ve nearly got this puppy complete. It&#8217;s a live-chat client that will allow logged-on users (and only logged-on users, although I also have a version that guests can use) to make &#8220;posts&#8221; (just like to a &#8220;wall&#8221; on Facebook or Twitter), with the chat/comments page automatically refreshing every 500 milliseconds to show latest [...]]]></description>
			<content:encoded><![CDATA[<p>OK, so I&#8217;ve nearly got this puppy complete. It&#8217;s a live-chat client that will allow logged-on users (and only logged-on users, although I also have a version that guests can use) to make &#8220;posts&#8221; (just like to a &#8220;wall&#8221; on Facebook or Twitter), with the chat/comments page automatically refreshing every 500 milliseconds to show latest posts that other users have just made, in real-time. (one tentative name I have for it is a &#8220;living wall&#8221;). Last night, I added the ability to show a list of all users who are currently logged on, and hope to have this out of beta soon <img src='http://www.kevinpajak.com/blog/wp-includes/images/smilies/icon_wink.gif' alt=';)' class='wp-smiley' /> </p>
<p>These are just <em>some</em> of the advantages of this application:</p>
<p>- All posts can be saved into a database (into any table you so choose. You could, for example, insert the posts on tables related to individual topics or categories, current news items, a photo, or basically anything else you can put on an individual web page. [so to use this interactive chat client on a different page, just insert the posts into a different database table]).</p>
<p>- This can provide your web site users with a cross-functional, enhanced web user experience, allowing them to see who else in your online community or company is currently logged on, chat with them, comment on various pages across the site, view/update profile information, other content etc [sounds a little like Facebook, MySpace, or similar online communities doesn&#8217;t it, only think of the <u>advantages</u> of having this on your own site &#8216;).</p>
<p>- Flexibility. If you like, you can either destroy or save records of &#8220;chat sessions&#8221; (or series of wallposts too, if you&#8217;d like to use the app in that way).</p>
<p>More soon! <img src='http://www.kevinpajak.com/blog/wp-includes/images/smilies/icon_smile.gif' alt=':-)' class='wp-smiley' /> .</p>
]]></content:encoded>
			<wfw:commentRss>http://www.kevinpajak.com/blog/2010/02/03/live-chat-client-showing-list-of-current-users-online/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>jQuery / Ajax live refresh</title>
		<link>http://www.kevinpajak.com/blog/2010/01/30/jquery-ajax-live-refresh/</link>
		<comments>http://www.kevinpajak.com/blog/2010/01/30/jquery-ajax-live-refresh/#comments</comments>
		<pubDate>Sun, 31 Jan 2010 04:20:56 +0000</pubDate>
		<dc:creator>admin</dc:creator>
				<category><![CDATA[Daily Journal]]></category>
		<category><![CDATA[apps]]></category>
		<category><![CDATA[code]]></category>
		<category><![CDATA[jQuery]]></category>

		<guid isPermaLink="false">http://www.kevinpajak.com/blog/?p=320</guid>
		<description><![CDATA[Running live, simultaneous beta tests using three different browsers for my wallpost app, with added jQuery/Ajax page refresh functionality. It is kicking some SERIOUS ass already (think: live chat possibilities, with saved record of all dialogues, that can be added to any page, threaded to any topic, etc) Yeah! . [Already, I&#8217;d like to thank [...]]]></description>
			<content:encoded><![CDATA[<p>Running live, simultaneous beta tests using three different browsers for my wallpost app, with added jQuery/Ajax page refresh functionality. It is kicking some SERIOUS ass already (think: live chat possibilities, with saved record of all dialogues, that can be added to any page, threaded to any topic, etc) Yeah! <img src='http://www.kevinpajak.com/blog/wp-includes/images/smilies/icon_wink.gif' alt=';)' class='wp-smiley' /> .</p>
<p>[Already, I&#8217;d like to thank programmer Srinivas Tamada for <A HREF="http://www.9lessons.info/2009/07/auto-load-refresh-every-10-seconds-with.html" target="_blank"><B>this rockin&#8217; code!</B></A></p>
<p>And additionally, <A HREF="http://www.brightcherry.co.uk/scribbles/2009/02/26/jquery-auto-refresh-div-every-x-seconds/" target="_blank"><B>very special thanks to Maruf</B></A> for helping resolve an annoying IE issue:</p>
<p>After I modified the code, the stupid forced-caching issue of IE (which was delaying or not showing the updated list of all the latest posts) managed to get resolved. Here&#8217;s my modified code of the function:</p>
<p>&lt;script&gt;</p>
<p>   var refreshId = setInterval(function() {<br />
      $(&quot;#page_refresh&quot;).load(&#8216;show-comments.php?v=&#8217;+ Math.random());<br />
   }, 500);</p>
<p>&lt;/script&gt;</p>
]]></content:encoded>
			<wfw:commentRss>http://www.kevinpajak.com/blog/2010/01/30/jquery-ajax-live-refresh/feed/</wfw:commentRss>
		<slash:comments>1</slash:comments>
		</item>
		<item>
		<title>&#8220;Twitter emulator&#8221; progress</title>
		<link>http://www.kevinpajak.com/blog/2010/01/30/twitter-emulator-progress/</link>
		<comments>http://www.kevinpajak.com/blog/2010/01/30/twitter-emulator-progress/#comments</comments>
		<pubDate>Sun, 31 Jan 2010 02:12:54 +0000</pubDate>
		<dc:creator>admin</dc:creator>
				<category><![CDATA[Daily Journal]]></category>
		<category><![CDATA[Social Media]]></category>
		<category><![CDATA[Web Dev/Design]]></category>
		<category><![CDATA[apps]]></category>
		<category><![CDATA[twitter]]></category>

		<guid isPermaLink="false">http://www.kevinpajak.com/blog/?p=316</guid>
		<description><![CDATA[OK, so now I&#8217;ve got my &#8220;Twitter emulator&#8221; working (complete post-to-wall, saving all posts into a database), now with post authors listed according to logged-on username [i.e. wall posting for logged on users only]. Almost out of beta, few final tests to go .]]></description>
			<content:encoded><![CDATA[<p>OK, so now I&#8217;ve got my &#8220;Twitter emulator&#8221; working (complete post-to-wall, saving all posts into a database), now with post authors listed according to logged-on username [i.e. wall posting for logged on users only]. Almost out of beta, few final tests to go <img src='http://www.kevinpajak.com/blog/wp-includes/images/smilies/icon_smile.gif' alt=':-)' class='wp-smiley' /> .</p>
]]></content:encoded>
			<wfw:commentRss>http://www.kevinpajak.com/blog/2010/01/30/twitter-emulator-progress/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>My Twitter Emulator</title>
		<link>http://www.kevinpajak.com/blog/2010/01/28/my-twitter-emulator/</link>
		<comments>http://www.kevinpajak.com/blog/2010/01/28/my-twitter-emulator/#comments</comments>
		<pubDate>Thu, 28 Jan 2010 08:53:07 +0000</pubDate>
		<dc:creator>admin</dc:creator>
				<category><![CDATA[Daily Journal]]></category>
		<category><![CDATA[Web Dev/Design]]></category>
		<category><![CDATA[apps]]></category>
		<category><![CDATA[twitter]]></category>

		<guid isPermaLink="false">http://www.kevinpajak.com/blog/?p=304</guid>
		<description><![CDATA[Is basically done (as far as the backend stuff). Will install on my blog soon . It functions pretty much just like Twitter (allowing a user to &#8220;add his/her post to your wall,&#8221; then see the entire stream of posts, with the latest one he/she just added at the top of the list) except that [...]]]></description>
			<content:encoded><![CDATA[<p>Is basically done (as far as the backend stuff). Will install on my blog soon <img src='http://www.kevinpajak.com/blog/wp-includes/images/smilies/icon_smile.gif' alt=':-)' class='wp-smiley' /> . It functions pretty much just like Twitter (allowing a user to &#8220;add his/her post to your wall,&#8221; then see the entire stream of posts, with the latest one he/she just added at the top of the list) except that it can be run on your own site internally! :0 Stay tuned <img src='http://www.kevinpajak.com/blog/wp-includes/images/smilies/icon_wink.gif' alt=';)' class='wp-smiley' /> .</p>
]]></content:encoded>
			<wfw:commentRss>http://www.kevinpajak.com/blog/2010/01/28/my-twitter-emulator/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>Future Twitter app ideas</title>
		<link>http://www.kevinpajak.com/blog/2009/09/14/future-twitter-app-ideas/</link>
		<comments>http://www.kevinpajak.com/blog/2009/09/14/future-twitter-app-ideas/#comments</comments>
		<pubDate>Mon, 14 Sep 2009 20:48:18 +0000</pubDate>
		<dc:creator>admin</dc:creator>
				<category><![CDATA[Social Media]]></category>
		<category><![CDATA[Web Dev/Design]]></category>
		<category><![CDATA[apps]]></category>
		<category><![CDATA[twitter]]></category>

		<guid isPermaLink="false">http://www.kevinpajak.com/blog/?p=252</guid>
		<description><![CDATA[1) Those offering expanded search/grouping/collaborative (or other interactive) functionality. 2) &#8220;Pre-tweeting&#8221; capabilities . 3) Apps allowing for greater capabilities as far as posting from sources other than via a user&#8217;s own Twitter page (see: @woork&#8217;s AWESOME post &#8220;Twitter: send message from a PHP page using Twitter API&#8221; for one example &#8230;.) 4) Alternative/even user-customizable display [...]]]></description>
			<content:encoded><![CDATA[<p>1) Those offering expanded search/grouping/collaborative (or other interactive) functionality.</p>
<p>2) &#8220;Pre-tweeting&#8221; capabilities <img src='http://www.kevinpajak.com/blog/wp-includes/images/smilies/icon_wink.gif' alt=';)' class='wp-smiley' /> .</p>
<p>3) Apps allowing for greater capabilities as far as posting from sources other than via a user&#8217;s own Twitter page (see: @woork&#8217;s AWESOME post &#8220;<A HREF="http://woork.blogspot.com/2007/10/twitter-send-message-from-php-page.html" target="_blank">Twitter: send message from a PHP page using Twitter API</A>&#8221; for one example  &#8230;.)</p>
<p>4) Alternative/even user-customizable display methods for Tweets (check out <A HREF="http://www.exectweets.com/" target="blank">ExecTweets</A> for one example of a really cool, animated tweet display method [looks like uses jQuery/Ajax]&#8230;.). I plan on adding an app like this one, but one that will allow for the scrolling of tweets to stop upon the user&#8217;s placing the mouse over a given tweet that interests him/her, a la the <A HREF="http://twitter.com/goodies/widget_search" target="_blank">Twitter custom Search Widget</A>, which reminds me of a whole other area I plan on playing on with at some point in the future <img src='http://www.kevinpajak.com/blog/wp-includes/images/smilies/icon_wink.gif' alt=';)' class='wp-smiley' /> .</p>
<p>OK, enough Twittering around, back to business (and remember my fellow tweeples to focus on end goals/results first, and then on developing the best methods toward reaching those goals!) Stay cool everybody, and please feel free to contact me for ideas, collaborations, feedback, etc.</p>
]]></content:encoded>
			<wfw:commentRss>http://www.kevinpajak.com/blog/2009/09/14/future-twitter-app-ideas/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>Customized Tweet Feed Display Twitter app</title>
		<link>http://www.kevinpajak.com/blog/2009/09/13/customized-tweet-feed-display-twitter-app/</link>
		<comments>http://www.kevinpajak.com/blog/2009/09/13/customized-tweet-feed-display-twitter-app/#comments</comments>
		<pubDate>Sun, 13 Sep 2009 22:59:51 +0000</pubDate>
		<dc:creator>admin</dc:creator>
				<category><![CDATA[Daily Journal]]></category>
		<category><![CDATA[Social Media]]></category>
		<category><![CDATA[apps]]></category>
		<category><![CDATA[twitter]]></category>

		<guid isPermaLink="false">http://www.kevinpajak.com/blog/?p=232</guid>
		<description><![CDATA[Completed the first phase of my &#8220;Customized Tweet Feed Display&#8221; Twitter app. What it does is: first, allow you to define 1-3 customized &#8220;tweet feed groups&#8221; (such as, for example &#8220;Social Media News,&#8221; &#8220;Travel Alerts,&#8221; etc) Then, you specify the Twitter username(s) for each custom tweet feed group, along with the number of tweets to [...]]]></description>
			<content:encoded><![CDATA[<p>Completed the first phase of my &#8220;Customized Tweet Feed Display&#8221; Twitter app. What it does is: first, allow you to define 1-3 customized &#8220;tweet feed groups&#8221; (such as, for example &#8220;Social Media News,&#8221; &#8220;Travel Alerts,&#8221; etc) Then, you specify the Twitter username(s) for each custom tweet feed group, along with the number of tweets to see from each respective Twitter user. Following that, a combined group of tweets is displayed for you, clustered within each individual &#8220;tweet group&#8221;.</p>
<p>See it in action here!:<br />
<A HREF="http://www.kevinpajak.com/apps/twitter-custom-feeds/" target="_blank">http://www.kevinpajak.com/apps/twitter-custom-feeds/</A></p>
]]></content:encoded>
			<wfw:commentRss>http://www.kevinpajak.com/blog/2009/09/13/customized-tweet-feed-display-twitter-app/feed/</wfw:commentRss>
		<slash:comments>1</slash:comments>
		</item>
		<item>
		<title>Custom Tweet Feed Display for multiple groups</title>
		<link>http://www.kevinpajak.com/blog/2009/09/01/custom-tweet-feed-display-for-multiple-groups/</link>
		<comments>http://www.kevinpajak.com/blog/2009/09/01/custom-tweet-feed-display-for-multiple-groups/#comments</comments>
		<pubDate>Wed, 02 Sep 2009 03:53:30 +0000</pubDate>
		<dc:creator>admin</dc:creator>
				<category><![CDATA[Social Media]]></category>
		<category><![CDATA[Web Dev/Design]]></category>
		<category><![CDATA[apps]]></category>
		<category><![CDATA[twitter]]></category>

		<guid isPermaLink="false">http://www.kevinpajak.com/blog/?p=198</guid>
		<description><![CDATA[Cool! Got the custom tweet feed display working for multiple groups!! (even if it has some weird propietary issues that seem to depend on the publishing client the the person used to make the tweets, must be somehow tied to the Twitter API). Will keep working on. Here is the current (beta) URL: http://www.kevinpajak.com/apps/twitter-custom-feeds/index-working-w-multiple2.php]]></description>
			<content:encoded><![CDATA[<p>Cool! Got the custom tweet feed display working for multiple groups!! (even if it has some weird propietary issues that seem to depend on the publishing client the the person used to make the tweets, must be somehow tied to the Twitter API). Will keep working on.</p>
<p>Here is the current (beta) URL:<br />
<A HREF="http://www.kevinpajak.com/apps/twitter-custom-feeds/index-working-w-multiple2.php" target="_blank">http://www.kevinpajak.com/apps/twitter-custom-feeds/index-working-w-multiple2.php</A></p>
]]></content:encoded>
			<wfw:commentRss>http://www.kevinpajak.com/blog/2009/09/01/custom-tweet-feed-display-for-multiple-groups/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>My customized Twitter feed display app</title>
		<link>http://www.kevinpajak.com/blog/2009/06/04/my-customized-twitter-feed-display-app/</link>
		<comments>http://www.kevinpajak.com/blog/2009/06/04/my-customized-twitter-feed-display-app/#comments</comments>
		<pubDate>Thu, 04 Jun 2009 10:21:26 +0000</pubDate>
		<dc:creator>admin</dc:creator>
				<category><![CDATA[Daily Journal]]></category>
		<category><![CDATA[Web Dev/Design]]></category>
		<category><![CDATA[apps]]></category>
		<category><![CDATA[twitter]]></category>

		<guid isPermaLink="false">http://www.kevinpajak.com/blog/?p=175</guid>
		<description><![CDATA[Customized Twitter feed display app progress coming along nicely. (Cleaned up character display formatting issues, added interface for user to be able to enter in Twitter username(s) and desired number of most recent tweets from selected user(s) to see [tweets within past 2.5 weeks]). Uses PHP. Try out the beta here! Special thanks to InstantShift.com, [...]]]></description>
			<content:encoded><![CDATA[<p>Customized Twitter feed display app progress coming along nicely. (Cleaned up character display formatting issues, added interface for user to be able to enter in Twitter username(s) and desired number of most recent tweets from selected user(s) to see [tweets within past 2.5 weeks]). Uses PHP.</p>
<p>Try out the <A HREF="http://www.kevinpajak.com/mycustomtweetfeeds-new.php" target="_blank"><B>beta here!</B></A></p>
<p>Special thanks to <A HREF="http://www.instantshift.com/2009/05/25/10-twitter-hacks-for-your-wordpress-blog/" target="_blank"><B>InstantShift.com</B></A>, and Nicholi from <A HREF="http://falith.com/" target="_blank"><B>Falith Design</B></A>!</p>
]]></content:encoded>
			<wfw:commentRss>http://www.kevinpajak.com/blog/2009/06/04/my-customized-twitter-feed-display-app/feed/</wfw:commentRss>
		<slash:comments>3</slash:comments>
		</item>
	</channel>
</rss>

