<?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/"
	xmlns:georss="http://www.georss.org/georss" xmlns:geo="http://www.w3.org/2003/01/geo/wgs84_pos#" xmlns:media="http://search.yahoo.com/mrss/"
	>

<channel>
	<title>New Ideas, New World</title>
	<atom:link href="http://shirishkumar.wordpress.com/feed/" rel="self" type="application/rss+xml" />
	<link>http://shirishkumar.wordpress.com</link>
	<description></description>
	<lastBuildDate>Tue, 10 Aug 2010 18:36:10 +0000</lastBuildDate>
	<language>en</language>
	<sy:updatePeriod>hourly</sy:updatePeriod>
	<sy:updateFrequency>1</sy:updateFrequency>
	<generator>http://wordpress.com/</generator>
<cloud domain='shirishkumar.wordpress.com' port='80' path='/?rsscloud=notify' registerProcedure='' protocol='http-post' />
<image>
		<url>http://s2.wp.com/i/buttonw-com.png</url>
		<title>New Ideas, New World</title>
		<link>http://shirishkumar.wordpress.com</link>
	</image>
	<atom:link rel="search" type="application/opensearchdescription+xml" href="http://shirishkumar.wordpress.com/osd.xml" title="New Ideas, New World" />
	<atom:link rel='hub' href='http://shirishkumar.wordpress.com/?pushpress=hub'/>
		<item>
		<title>How to find a Text occurence in all Stored Procedure</title>
		<link>http://shirishkumar.wordpress.com/2010/08/06/how-to-find-a-stored-procedure-containing-text-occurrence/</link>
		<comments>http://shirishkumar.wordpress.com/2010/08/06/how-to-find-a-stored-procedure-containing-text-occurrence/#comments</comments>
		<pubDate>Fri, 06 Aug 2010 10:45:01 +0000</pubDate>
		<dc:creator>shirish kumar</dc:creator>
				<category><![CDATA[SQL Server]]></category>
		<category><![CDATA[Microsoft]]></category>
		<category><![CDATA[SQL Query]]></category>

		<guid isPermaLink="false">http://shirishkumar.wordpress.com/?p=49</guid>
		<description><![CDATA[Every developer some time needs to search for a text occurrence in all store procedure. To find out an easy way without going to each and every store procedure and checking for that text. Below query will help to find out very easy. SELECT OBJECT_NAME(id) FROM syscomments WHERE [text] LIKE &#8216;%text_to_find%&#8217; AND OBJECTPROPERTY(id, &#8216;IsProcedure&#8217;) = [...]<img alt="" border="0" src="http://stats.wordpress.com/b.gif?host=shirishkumar.wordpress.com&amp;blog=3357725&amp;post=49&amp;subd=shirishkumar&amp;ref=&amp;feed=1" width="1" height="1" />]]></description>
			<content:encoded><![CDATA[<p>Every developer some time needs to search for a text  occurrence in all store procedure. To find out an easy way without going to each and every store procedure and checking for that text. Below query will help to find out very easy.</p>
<p><strong>SELECT OBJECT_NAME(id)   FROM syscomments<br />
    WHERE [text] LIKE &#8216;%text_to_find%&#8217;<br />
    AND OBJECTPROPERTY(id, &#8216;IsProcedure&#8217;) = 1<br />
    GROUP BY OBJECT_NAME(id)</strong></p>
<p>In the above query text_to_find is the text, we need to find in all the store procedure.<br />
Just execute the query in the query window and see the results.</p>
<p>Please comment and let me know if any more easy way to find out.</p>
<br />Filed under: <a href='http://shirishkumar.wordpress.com/category/sql-server/'>SQL Server</a> Tagged: <a href='http://shirishkumar.wordpress.com/tag/microsoft/'>Microsoft</a>, <a href='http://shirishkumar.wordpress.com/tag/sql-query/'>SQL Query</a>, <a href='http://shirishkumar.wordpress.com/tag/sql-server/'>SQL Server</a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gocomments/shirishkumar.wordpress.com/49/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/comments/shirishkumar.wordpress.com/49/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/godelicious/shirishkumar.wordpress.com/49/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/delicious/shirishkumar.wordpress.com/49/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gofacebook/shirishkumar.wordpress.com/49/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/facebook/shirishkumar.wordpress.com/49/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gotwitter/shirishkumar.wordpress.com/49/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/twitter/shirishkumar.wordpress.com/49/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gostumble/shirishkumar.wordpress.com/49/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/stumble/shirishkumar.wordpress.com/49/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/godigg/shirishkumar.wordpress.com/49/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/digg/shirishkumar.wordpress.com/49/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/goreddit/shirishkumar.wordpress.com/49/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/reddit/shirishkumar.wordpress.com/49/" /></a> <img alt="" border="0" src="http://stats.wordpress.com/b.gif?host=shirishkumar.wordpress.com&amp;blog=3357725&amp;post=49&amp;subd=shirishkumar&amp;ref=&amp;feed=1" width="1" height="1" />]]></content:encoded>
			<wfw:commentRss>http://shirishkumar.wordpress.com/2010/08/06/how-to-find-a-stored-procedure-containing-text-occurrence/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
	
		<media:content url="http://0.gravatar.com/avatar/808243aa110dcd9d7d05969b56dc51cb?s=96&#38;d=http%3A%2F%2F0.gravatar.com%2Favatar%2Fad516503a11cd5ca435acc9bb6523536%3Fs%3D96&#38;r=G" medium="image">
			<media:title type="html">shirishkumar</media:title>
		</media:content>
	</item>
		<item>
		<title>Google going to kill Wave by 2010 year end</title>
		<link>http://shirishkumar.wordpress.com/2010/08/05/google-going-to-kill-wave-by-2010-year-end/</link>
		<comments>http://shirishkumar.wordpress.com/2010/08/05/google-going-to-kill-wave-by-2010-year-end/#comments</comments>
		<pubDate>Thu, 05 Aug 2010 09:21:08 +0000</pubDate>
		<dc:creator>shirish kumar</dc:creator>
				<category><![CDATA[Google]]></category>
		<category><![CDATA[Google Wave]]></category>

		<guid isPermaLink="false">http://shirishkumar.wordpress.com/?p=36</guid>
		<description><![CDATA[Google announced few day back in his Blog, it has stop working on Wave and going to stop by the year 2010 end. Google wave is a online web application innovated by Google. It is a real- time messaging, email and collaboration tool. It has so many extensions that provide spelling/grammar checking, maps,translation support for [...]<img alt="" border="0" src="http://stats.wordpress.com/b.gif?host=shirishkumar.wordpress.com&amp;blog=3357725&amp;post=36&amp;subd=shirishkumar&amp;ref=&amp;feed=1" width="1" height="1" />]]></description>
			<content:encoded><![CDATA[<p>Google announced few day back in his Blog, it has stop working on <strong>Wave</strong> and going to stop by the year 2010 end.<br />
<strong>Google wave</strong> is a online web application innovated by Google. It is a real- time messaging, email and collaboration tool. It has so many extensions that provide spelling/grammar checking, maps,translation support for almost 40 languages.<br />Google Wave received less user adoption. So, Google is going to close Wave by year end.<br />
<strong>Reference:</strong> <a href="http://googleblog.blogspot.com/2010/08/update-on-google-wave.html" target="_blank">[Official Google Blog]</a></p>
<br />Filed under: <a href='http://shirishkumar.wordpress.com/category/google/'>Google</a> Tagged: <a href='http://shirishkumar.wordpress.com/tag/google/'>Google</a>, <a href='http://shirishkumar.wordpress.com/tag/google-wave/'>Google Wave</a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gocomments/shirishkumar.wordpress.com/36/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/comments/shirishkumar.wordpress.com/36/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/godelicious/shirishkumar.wordpress.com/36/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/delicious/shirishkumar.wordpress.com/36/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gofacebook/shirishkumar.wordpress.com/36/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/facebook/shirishkumar.wordpress.com/36/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gotwitter/shirishkumar.wordpress.com/36/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/twitter/shirishkumar.wordpress.com/36/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gostumble/shirishkumar.wordpress.com/36/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/stumble/shirishkumar.wordpress.com/36/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/godigg/shirishkumar.wordpress.com/36/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/digg/shirishkumar.wordpress.com/36/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/goreddit/shirishkumar.wordpress.com/36/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/reddit/shirishkumar.wordpress.com/36/" /></a> <img alt="" border="0" src="http://stats.wordpress.com/b.gif?host=shirishkumar.wordpress.com&amp;blog=3357725&amp;post=36&amp;subd=shirishkumar&amp;ref=&amp;feed=1" width="1" height="1" />]]></content:encoded>
			<wfw:commentRss>http://shirishkumar.wordpress.com/2010/08/05/google-going-to-kill-wave-by-2010-year-end/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
	
		<media:content url="http://0.gravatar.com/avatar/808243aa110dcd9d7d05969b56dc51cb?s=96&#38;d=http%3A%2F%2F0.gravatar.com%2Favatar%2Fad516503a11cd5ca435acc9bb6523536%3Fs%3D96&#38;r=G" medium="image">
			<media:title type="html">shirishkumar</media:title>
		</media:content>
	</item>
		<item>
		<title>How to enable Status Bar in Notepad</title>
		<link>http://shirishkumar.wordpress.com/2010/08/05/how-to-enable-status-bar-in-notepad/</link>
		<comments>http://shirishkumar.wordpress.com/2010/08/05/how-to-enable-status-bar-in-notepad/#comments</comments>
		<pubDate>Thu, 05 Aug 2010 09:06:50 +0000</pubDate>
		<dc:creator>shirish kumar</dc:creator>
				<category><![CDATA[Windows]]></category>
		<category><![CDATA[Notepad]]></category>

		<guid isPermaLink="false">http://shirishkumar.wordpress.com/?p=28</guid>
		<description><![CDATA[Notepad is one of most used tool in Windows. To know in which line or column there are present there is no status bar. To enable status bar, there is a little Registry hack is needed. Just follow below steps to enable the status bar in notepad 1. Type Regedit in the Run Window 2. [...]<img alt="" border="0" src="http://stats.wordpress.com/b.gif?host=shirishkumar.wordpress.com&amp;blog=3357725&amp;post=28&amp;subd=shirishkumar&amp;ref=&amp;feed=1" width="1" height="1" />]]></description>
			<content:encoded><![CDATA[<p>Notepad is one of most used tool in Windows.<br />
To know in which line or column there are present there is no status bar.<br />
To enable status bar, there is a little Registry hack is needed.<br />
<div id="attachment_29" class="wp-caption aligncenter" style="width: 310px"><a href="http://shirishkumar.wordpress.com/2010/08/05/how-to-enable-status-bar-in-notepad/statusbar_notepad/" rel="attachment wp-att-29"><img src="http://shirishkumar.files.wordpress.com/2010/08/statusbar_notepad.jpg?w=300&#038;h=232" alt="StatusBar Notepad" title="StatusBar_Notepad" width="300" height="232" class="size-medium wp-image-29" /></a><p class="wp-caption-text">Notepad with Status Bar</p></div><br />
<strong>Just follow below steps to enable the status bar in notepad</strong><br />
1. Type Regedit in the Run Window<br />
2.  Go to <strong>HKEY_CURRENT_USER\Software\Microsoft\Notepad</strong> in the Registry window<br />
3.  Find and change the StatusBar key on the right-hand side to 1 instead of 0.<br />
4. Close the Registry window and open the notepad.</p>
<br />Filed under: <a href='http://shirishkumar.wordpress.com/category/windows/'>Windows</a> Tagged: <a href='http://shirishkumar.wordpress.com/tag/notepad/'>Notepad</a>, <a href='http://shirishkumar.wordpress.com/tag/windows/'>Windows</a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gocomments/shirishkumar.wordpress.com/28/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/comments/shirishkumar.wordpress.com/28/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/godelicious/shirishkumar.wordpress.com/28/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/delicious/shirishkumar.wordpress.com/28/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gofacebook/shirishkumar.wordpress.com/28/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/facebook/shirishkumar.wordpress.com/28/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gotwitter/shirishkumar.wordpress.com/28/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/twitter/shirishkumar.wordpress.com/28/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gostumble/shirishkumar.wordpress.com/28/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/stumble/shirishkumar.wordpress.com/28/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/godigg/shirishkumar.wordpress.com/28/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/digg/shirishkumar.wordpress.com/28/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/goreddit/shirishkumar.wordpress.com/28/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/reddit/shirishkumar.wordpress.com/28/" /></a> <img alt="" border="0" src="http://stats.wordpress.com/b.gif?host=shirishkumar.wordpress.com&amp;blog=3357725&amp;post=28&amp;subd=shirishkumar&amp;ref=&amp;feed=1" width="1" height="1" />]]></content:encoded>
			<wfw:commentRss>http://shirishkumar.wordpress.com/2010/08/05/how-to-enable-status-bar-in-notepad/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
	
		<media:content url="http://0.gravatar.com/avatar/808243aa110dcd9d7d05969b56dc51cb?s=96&#38;d=http%3A%2F%2F0.gravatar.com%2Favatar%2Fad516503a11cd5ca435acc9bb6523536%3Fs%3D96&#38;r=G" medium="image">
			<media:title type="html">shirishkumar</media:title>
		</media:content>

		<media:content url="http://shirishkumar.files.wordpress.com/2010/08/statusbar_notepad.jpg?w=300" medium="image">
			<media:title type="html">StatusBar_Notepad</media:title>
		</media:content>
	</item>
		<item>
		<title>Multiple Account Sign-In in Browser for Multi-Google Account Holders</title>
		<link>http://shirishkumar.wordpress.com/2010/08/04/multiple-account-sign-in-for-multi-google-account-holders/</link>
		<comments>http://shirishkumar.wordpress.com/2010/08/04/multiple-account-sign-in-for-multi-google-account-holders/#comments</comments>
		<pubDate>Wed, 04 Aug 2010 12:57:46 +0000</pubDate>
		<dc:creator>shirish kumar</dc:creator>
				<category><![CDATA[Google]]></category>

		<guid isPermaLink="false">http://shirishkumar.wordpress.com/?p=21</guid>
		<description><![CDATA[Google is planning to add multiple Google accounts login and can login without adding any special plug-in. Just need to set on or off in the Google Account page. It will take time to get that feature for all Google Accounts. To set up multiple login in browser visit google.com/accounts and click the link to [...]<img alt="" border="0" src="http://stats.wordpress.com/b.gif?host=shirishkumar.wordpress.com&amp;blog=3357725&amp;post=21&amp;subd=shirishkumar&amp;ref=&amp;feed=1" width="1" height="1" />]]></description>
			<content:encoded><![CDATA[<p>Google is planning to add multiple Google accounts login and can login without adding any special plug-in. Just need to set on or off in the Google Account page.<br />
It will take time to get that feature for all Google Accounts. <br />
To set up multiple login in browser visit google.com/accounts and click the link to &#8220;<strong>Multiple Sign-in</strong>&#8220;. After you sign into your first account , you can sign in with up to two additional accounts from the new accounts menu in the upper right corner of the GMail, then easily toogle back and forth between them. You can even open multiple GMail tabs &#8211; one for each of your accounts.<br />
<strong>Important points from Google:</strong></p>
<ul>
<li>Account Holders can login for max 3 accounts at once</li>
<li>Default account will be the first account where the user has set up for multiple sign in.</li>
<li>Should not use offline Gmail or Calendar for multiple sign.</li>
<li>Google Apps like Google App Engine, Code, Calendar, Gmail, Reader, Sites and Voice support. Will support multiple sign in.</li>
<li>Google Docs, Blogger, Picasa doesn’t support multiple login yet.</li>
<li>Mobile devices will be not supporting multiple sign-in yet.</li>
</ul>
<br />Filed under: <a href='http://shirishkumar.wordpress.com/category/google/'>Google</a> Tagged: <a href='http://shirishkumar.wordpress.com/tag/google/'>Google</a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gocomments/shirishkumar.wordpress.com/21/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/comments/shirishkumar.wordpress.com/21/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/godelicious/shirishkumar.wordpress.com/21/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/delicious/shirishkumar.wordpress.com/21/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gofacebook/shirishkumar.wordpress.com/21/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/facebook/shirishkumar.wordpress.com/21/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gotwitter/shirishkumar.wordpress.com/21/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/twitter/shirishkumar.wordpress.com/21/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gostumble/shirishkumar.wordpress.com/21/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/stumble/shirishkumar.wordpress.com/21/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/godigg/shirishkumar.wordpress.com/21/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/digg/shirishkumar.wordpress.com/21/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/goreddit/shirishkumar.wordpress.com/21/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/reddit/shirishkumar.wordpress.com/21/" /></a> <img alt="" border="0" src="http://stats.wordpress.com/b.gif?host=shirishkumar.wordpress.com&amp;blog=3357725&amp;post=21&amp;subd=shirishkumar&amp;ref=&amp;feed=1" width="1" height="1" />]]></content:encoded>
			<wfw:commentRss>http://shirishkumar.wordpress.com/2010/08/04/multiple-account-sign-in-for-multi-google-account-holders/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
	
		<media:content url="http://0.gravatar.com/avatar/808243aa110dcd9d7d05969b56dc51cb?s=96&#38;d=http%3A%2F%2F0.gravatar.com%2Favatar%2Fad516503a11cd5ca435acc9bb6523536%3Fs%3D96&#38;r=G" medium="image">
			<media:title type="html">shirishkumar</media:title>
		</media:content>
	</item>
		<item>
		<title>Gumbo Adobe Flex 4</title>
		<link>http://shirishkumar.wordpress.com/2009/02/20/gumbo-adobe-flex-4/</link>
		<comments>http://shirishkumar.wordpress.com/2009/02/20/gumbo-adobe-flex-4/#comments</comments>
		<pubDate>Fri, 20 Feb 2009 17:29:53 +0000</pubDate>
		<dc:creator>shirish kumar</dc:creator>
				<category><![CDATA[Abode Flex]]></category>
		<category><![CDATA[Adobe Flex 4]]></category>
		<category><![CDATA[Gumbo]]></category>

		<guid isPermaLink="false">http://shirishkumar.wordpress.com/?p=9</guid>
		<description><![CDATA[Adobe Flex 4 (codename: Gumbo) which is now in beta version. It has 3 primary themes 1. Design in Mind 2.Developer Productivity 3. Framework Evolution Presentation on Gumbo http://flexorg.wip3.adobe.com/gumbo/gumboplan.htm Posted in Abode Flex Tagged: Adobe Flex 4, Gumbo<img alt="" border="0" src="http://stats.wordpress.com/b.gif?host=shirishkumar.wordpress.com&amp;blog=3357725&amp;post=9&amp;subd=shirishkumar&amp;ref=&amp;feed=1" width="1" height="1" />]]></description>
			<content:encoded><![CDATA[<p>Adobe Flex 4 (codename: Gumbo) which is now in beta version. It has 3 primary themes</p>
<p><strong>1. </strong><strong>Design in Mind</strong></p>
<p><strong>2.</strong><strong>Developer Productivity</strong></p>
<p><strong>3. </strong><strong>Framework Evolution</strong></p>
<p>Presentation on Gumbo</p>
<p><strong>http://flexorg.wip3.adobe.com/gumbo/gumboplan.htm</strong></p>
<br />Posted in Abode Flex Tagged: Adobe Flex 4, Gumbo <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gocomments/shirishkumar.wordpress.com/9/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/comments/shirishkumar.wordpress.com/9/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/godelicious/shirishkumar.wordpress.com/9/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/delicious/shirishkumar.wordpress.com/9/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gofacebook/shirishkumar.wordpress.com/9/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/facebook/shirishkumar.wordpress.com/9/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gotwitter/shirishkumar.wordpress.com/9/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/twitter/shirishkumar.wordpress.com/9/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gostumble/shirishkumar.wordpress.com/9/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/stumble/shirishkumar.wordpress.com/9/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/godigg/shirishkumar.wordpress.com/9/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/digg/shirishkumar.wordpress.com/9/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/goreddit/shirishkumar.wordpress.com/9/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/reddit/shirishkumar.wordpress.com/9/" /></a> <img alt="" border="0" src="http://stats.wordpress.com/b.gif?host=shirishkumar.wordpress.com&amp;blog=3357725&amp;post=9&amp;subd=shirishkumar&amp;ref=&amp;feed=1" width="1" height="1" />]]></content:encoded>
			<wfw:commentRss>http://shirishkumar.wordpress.com/2009/02/20/gumbo-adobe-flex-4/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
	
		<media:content url="http://0.gravatar.com/avatar/808243aa110dcd9d7d05969b56dc51cb?s=96&#38;d=http%3A%2F%2F0.gravatar.com%2Favatar%2Fad516503a11cd5ca435acc9bb6523536%3Fs%3D96&#38;r=G" medium="image">
			<media:title type="html">shirishkumar</media:title>
		</media:content>
	</item>
		<item>
		<title>Flex 3 : Moxie</title>
		<link>http://shirishkumar.wordpress.com/2009/02/18/flex-3-moxie/</link>
		<comments>http://shirishkumar.wordpress.com/2009/02/18/flex-3-moxie/#comments</comments>
		<pubDate>Wed, 18 Feb 2009 17:22:13 +0000</pubDate>
		<dc:creator>shirish kumar</dc:creator>
				<category><![CDATA[Abode Flex]]></category>
		<category><![CDATA[Adobe Flex]]></category>
		<category><![CDATA[Moxie]]></category>

		<guid isPermaLink="false">http://shirishkumar.wordpress.com/?p=6</guid>
		<description><![CDATA[Adobe Flex 3 (Codename: Moxie) is a free open source framework for building  web applications that deploy consistently on all major browsers, desktops, and operating systems. By using Flex 3  we can create a wide range of applications which are highly interactive and expressive. For example, 1. Data visualization application built in Flex can pull [...]<img alt="" border="0" src="http://stats.wordpress.com/b.gif?host=shirishkumar.wordpress.com&amp;blog=3357725&amp;post=6&amp;subd=shirishkumar&amp;ref=&amp;feed=1" width="1" height="1" />]]></description>
			<content:encoded><![CDATA[<p>Adobe Flex 3 (Codename: Moxie) is a free open source framework for building  web applications that deploy consistently on all major browsers, desktops, and operating systems.</p>
<p>By using Flex 3  we can create a wide range of applications which are highly interactive and expressive.</p>
<p>For example,</p>
<p>1. Data visualization application built in Flex can pull data from multiple back-end sources and display it visually.</p>
<p>2. Business users can drill down into the data for deeper insight and even change the data and have it automatically updated on the back end.</p>
<p>3. A product configuration application can help customers navigate the process of selecting or customizing products online.</p>
<p>more&#8230;</p>
<h4>Adobe Flex Builder 3</h4>
<p>Adobe Flex Builder 3 is a Eclipse based development tool enabling intelligent coding, interactive step-through debugging, and visual design of user interface layout, appearance, and behavior of RIAs. Key features include:</p>
<p>1. Powerful coding tools</p>
<p>2. Rich visual layout</p>
<p>3.Integrated media</p>
<p>4. Integration with Creative Suite 3</p>
<p>Flex SDK version <a title="Download Flex 3" href="http://opensource.adobe.com/wiki/display/flexsdk/Download+Flex+3">3.2.0.3958</a> is the latest production quality release.</p>
<p>For Download of Flex SDK</p>
<p>http://www.adobe.com/products/flex/flexdownloads/</p>
<p>For details features of Flex Builder 3</p>
<p>http://www.adobe.com/products/flex/features/flex_builder/</p>
<p>Adobe has provided free video  training course. Below is the link where you can find lot of videos which will help you in building Flex applications</p>
<p>http://www.adobe.com/devnet/flex/videotraining/</p>
<br />Posted in Abode Flex Tagged: Adobe Flex, Moxie <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gocomments/shirishkumar.wordpress.com/6/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/comments/shirishkumar.wordpress.com/6/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/godelicious/shirishkumar.wordpress.com/6/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/delicious/shirishkumar.wordpress.com/6/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gofacebook/shirishkumar.wordpress.com/6/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/facebook/shirishkumar.wordpress.com/6/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gotwitter/shirishkumar.wordpress.com/6/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/twitter/shirishkumar.wordpress.com/6/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gostumble/shirishkumar.wordpress.com/6/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/stumble/shirishkumar.wordpress.com/6/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/godigg/shirishkumar.wordpress.com/6/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/digg/shirishkumar.wordpress.com/6/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/goreddit/shirishkumar.wordpress.com/6/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/reddit/shirishkumar.wordpress.com/6/" /></a> <img alt="" border="0" src="http://stats.wordpress.com/b.gif?host=shirishkumar.wordpress.com&amp;blog=3357725&amp;post=6&amp;subd=shirishkumar&amp;ref=&amp;feed=1" width="1" height="1" />]]></content:encoded>
			<wfw:commentRss>http://shirishkumar.wordpress.com/2009/02/18/flex-3-moxie/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
	
		<media:content url="http://0.gravatar.com/avatar/808243aa110dcd9d7d05969b56dc51cb?s=96&#38;d=http%3A%2F%2F0.gravatar.com%2Favatar%2Fad516503a11cd5ca435acc9bb6523536%3Fs%3D96&#38;r=G" medium="image">
			<media:title type="html">shirishkumar</media:title>
		</media:content>
	</item>
		<item>
		<title>Hide WYSIWYG Editor option in Registered page of Joomla site</title>
		<link>http://shirishkumar.wordpress.com/2009/02/18/hide-wysiwyg-editor-option-in-registered-page-of-joomla-site/</link>
		<comments>http://shirishkumar.wordpress.com/2009/02/18/hide-wysiwyg-editor-option-in-registered-page-of-joomla-site/#comments</comments>
		<pubDate>Wed, 18 Feb 2009 16:40:51 +0000</pubDate>
		<dc:creator>shirish kumar</dc:creator>
				<category><![CDATA[Joomla]]></category>

		<guid isPermaLink="false">http://shirishkumar.wordpress.com/2009/02/18/hide-wysiwyg-editor-option-in-registered-page-of-joomla-site/</guid>
		<description><![CDATA[In Joomla registered users in contact info there is a dropdown list where they can select an editor. but sometimes we need dont need to show WYSIWYG Editor option in the registered page. Please comment lines 206 till 215 in cb.core.php present in the components/com_comprofiler/plugin/user/plug_cbcore/cb.core.php Code: if ( ( count( $userParams ) &#62; 0 ) [...]<img alt="" border="0" src="http://stats.wordpress.com/b.gif?host=shirishkumar.wordpress.com&amp;blog=3357725&amp;post=4&amp;subd=shirishkumar&amp;ref=&amp;feed=1" width="1" height="1" />]]></description>
			<content:encoded><![CDATA[<p>In<span style="font-weight:bold;"> Joomla</span> registered users in contact info there is a dropdown list where they can select an editor. but sometimes we need dont need to show <span style="font-weight:bold;">WYSIWYG Editor</span> option in the registered page.</p>
<p>Please comment lines 206 till 215 in cb.core.php  present in the components/com_comprofiler/plugin/user/plug_cbcore/cb.core.php</p>
<p><span style="font-weight:bold;">Code</span>:<br />
if ( ( count( $userParams ) &gt; 0 ) &amp;&amp; in_array( $mainframe-&gt;getCfg( &#8220;frontend_userparams&#8221; ), array( &#8217;1&#8242;, null) ) ) {<br />
//Loop through each parameter and render it  appropriately.<br />
foreach($userParams AS $userParam) {<br />
$return .=  &#8220;n&#8221;;<br />
$return .= &#8220;&#8221; . $userParam[0] .  &#8220;:n&#8221;;<br />
$return .= &#8220;&#8221; .  $userParam[1];<br />
$return .= getFieldIcons($ui, false, false, (isset($userParam[2]) &amp;&amp; class_exists(&#8220;JText&#8221;) ? JText::_($userParam[2]) : null), (isset($userParam[3]) &amp;&amp; class_exists(&#8220;JText&#8221;) ? JText::_($userParam[3]) : null));<br />
$return .= &#8220;n&#8221;;<br />
}<br />
}</p>
<p>I hope this work for you. Please leave your comments.</p>
<br />Posted in Joomla  <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gocomments/shirishkumar.wordpress.com/4/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/comments/shirishkumar.wordpress.com/4/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/godelicious/shirishkumar.wordpress.com/4/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/delicious/shirishkumar.wordpress.com/4/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gofacebook/shirishkumar.wordpress.com/4/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/facebook/shirishkumar.wordpress.com/4/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gotwitter/shirishkumar.wordpress.com/4/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/twitter/shirishkumar.wordpress.com/4/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gostumble/shirishkumar.wordpress.com/4/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/stumble/shirishkumar.wordpress.com/4/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/godigg/shirishkumar.wordpress.com/4/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/digg/shirishkumar.wordpress.com/4/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/goreddit/shirishkumar.wordpress.com/4/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/reddit/shirishkumar.wordpress.com/4/" /></a> <img alt="" border="0" src="http://stats.wordpress.com/b.gif?host=shirishkumar.wordpress.com&amp;blog=3357725&amp;post=4&amp;subd=shirishkumar&amp;ref=&amp;feed=1" width="1" height="1" />]]></content:encoded>
			<wfw:commentRss>http://shirishkumar.wordpress.com/2009/02/18/hide-wysiwyg-editor-option-in-registered-page-of-joomla-site/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
	
		<media:content url="http://0.gravatar.com/avatar/808243aa110dcd9d7d05969b56dc51cb?s=96&#38;d=http%3A%2F%2F0.gravatar.com%2Favatar%2Fad516503a11cd5ca435acc9bb6523536%3Fs%3D96&#38;r=G" medium="image">
			<media:title type="html">shirishkumar</media:title>
		</media:content>
	</item>
		<item>
		<title>MicroPhone Not working for MotherBoard DG965RY</title>
		<link>http://shirishkumar.wordpress.com/2008/06/02/microphone-not-working-for-motherboard-dg965ry/</link>
		<comments>http://shirishkumar.wordpress.com/2008/06/02/microphone-not-working-for-motherboard-dg965ry/#comments</comments>
		<pubDate>Mon, 02 Jun 2008 17:56:00 +0000</pubDate>
		<dc:creator>shirish kumar</dc:creator>
				<category><![CDATA[Uncategorized]]></category>

		<guid isPermaLink="false">http://shirishkumar.wordpress.com/?p=3</guid>
		<description><![CDATA[This is my first blog. In this blog i am going to write the problems i have faced in my software engineer life. In the below is the problem which i have faced recently with my PC. I have purchased microphone twice thinking that microphone is not working. Later i came to know that my [...]<img alt="" border="0" src="http://stats.wordpress.com/b.gif?host=shirishkumar.wordpress.com&amp;blog=3357725&amp;post=3&amp;subd=shirishkumar&amp;ref=&amp;feed=1" width="1" height="1" />]]></description>
			<content:encoded><![CDATA[<p>This is my first blog. In this blog i am going to write the problems i have faced in my software engineer life.</p>
<p>In the below is the problem which i have faced recently with my PC. I have purchased microphone twice thinking that microphone is not working. Later i came to know that my PC Motherboard drivers having problem.</p>
<p><strong>Problem:</strong></p>
<p>I have recently brought a core 2 duo processor 1.8 Ghz processor with DG965RY Mother board but the micro phone is not working. Sound system is working fine and i can hear the sounds. But i cant record voice.</p>
<p><strong>Solution:</strong></p>
<p>It is the problem with the motherboard drivers. Please update the Audio drivers</p>
<p>http://downloadcenter.intel.com/filter_results.aspx?strTypes=all&#038;ProductID=2374&#038;OSFullName=Windows*+XP+Home+Edition〈=eng&#038;strOSs=45&#038;submit=Go%21#DRV</p>
<p>After updating the system will restart and then you test your microphone using Sound recorder in windows xp.</p>
<br /><img alt="" border="0" src="http://feeds.wordpress.com/1.0/categories/shirishkumar.wordpress.com/3/" /> <img alt="" border="0" src="http://feeds.wordpress.com/1.0/tags/shirishkumar.wordpress.com/3/" /> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gocomments/shirishkumar.wordpress.com/3/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/comments/shirishkumar.wordpress.com/3/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/godelicious/shirishkumar.wordpress.com/3/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/delicious/shirishkumar.wordpress.com/3/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gofacebook/shirishkumar.wordpress.com/3/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/facebook/shirishkumar.wordpress.com/3/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gotwitter/shirishkumar.wordpress.com/3/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/twitter/shirishkumar.wordpress.com/3/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gostumble/shirishkumar.wordpress.com/3/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/stumble/shirishkumar.wordpress.com/3/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/godigg/shirishkumar.wordpress.com/3/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/digg/shirishkumar.wordpress.com/3/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/goreddit/shirishkumar.wordpress.com/3/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/reddit/shirishkumar.wordpress.com/3/" /></a> <img alt="" border="0" src="http://stats.wordpress.com/b.gif?host=shirishkumar.wordpress.com&amp;blog=3357725&amp;post=3&amp;subd=shirishkumar&amp;ref=&amp;feed=1" width="1" height="1" />]]></content:encoded>
			<wfw:commentRss>http://shirishkumar.wordpress.com/2008/06/02/microphone-not-working-for-motherboard-dg965ry/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
	
		<media:content url="http://0.gravatar.com/avatar/808243aa110dcd9d7d05969b56dc51cb?s=96&#38;d=http%3A%2F%2F0.gravatar.com%2Favatar%2Fad516503a11cd5ca435acc9bb6523536%3Fs%3D96&#38;r=G" medium="image">
			<media:title type="html">shirishkumar</media:title>
		</media:content>
	</item>
		<item>
		<title>New Ideas, New World</title>
		<link>http://shirishkumar.wordpress.com/2008/04/02/hello-world/</link>
		<comments>http://shirishkumar.wordpress.com/2008/04/02/hello-world/#comments</comments>
		<pubDate>Wed, 02 Apr 2008 18:26:05 +0000</pubDate>
		<dc:creator>shirish kumar</dc:creator>
				<category><![CDATA[Uncategorized]]></category>

		<guid isPermaLink="false"></guid>
		<description><![CDATA[New Ideas, New World<img alt="" border="0" src="http://stats.wordpress.com/b.gif?host=shirishkumar.wordpress.com&amp;blog=3357725&amp;post=1&amp;subd=shirishkumar&amp;ref=&amp;feed=1" width="1" height="1" />]]></description>
			<content:encoded><![CDATA[<p>New Ideas, New World</p>
<br /><img alt="" border="0" src="http://feeds.wordpress.com/1.0/categories/shirishkumar.wordpress.com/1/" /> <img alt="" border="0" src="http://feeds.wordpress.com/1.0/tags/shirishkumar.wordpress.com/1/" /> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gocomments/shirishkumar.wordpress.com/1/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/comments/shirishkumar.wordpress.com/1/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/godelicious/shirishkumar.wordpress.com/1/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/delicious/shirishkumar.wordpress.com/1/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gofacebook/shirishkumar.wordpress.com/1/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/facebook/shirishkumar.wordpress.com/1/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gotwitter/shirishkumar.wordpress.com/1/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/twitter/shirishkumar.wordpress.com/1/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gostumble/shirishkumar.wordpress.com/1/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/stumble/shirishkumar.wordpress.com/1/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/godigg/shirishkumar.wordpress.com/1/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/digg/shirishkumar.wordpress.com/1/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/goreddit/shirishkumar.wordpress.com/1/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/reddit/shirishkumar.wordpress.com/1/" /></a> <img alt="" border="0" src="http://stats.wordpress.com/b.gif?host=shirishkumar.wordpress.com&amp;blog=3357725&amp;post=1&amp;subd=shirishkumar&amp;ref=&amp;feed=1" width="1" height="1" />]]></content:encoded>
			<wfw:commentRss>http://shirishkumar.wordpress.com/2008/04/02/hello-world/feed/</wfw:commentRss>
		<slash:comments>1</slash:comments>
	
		<media:content url="http://0.gravatar.com/avatar/808243aa110dcd9d7d05969b56dc51cb?s=96&#38;d=http%3A%2F%2F0.gravatar.com%2Favatar%2Fad516503a11cd5ca435acc9bb6523536%3Fs%3D96&#38;r=G" medium="image">
			<media:title type="html">shirishkumar</media:title>
		</media:content>
	</item>
	</channel>
</rss>
