<?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>codearetoy</title>
	<atom:link href="http://codearetoy.wordpress.com/feed/" rel="self" type="application/rss+xml" />
	<link>http://codearetoy.wordpress.com</link>
	<description>echo &#34;Hello World&#34;</description>
	<lastBuildDate>Wed, 28 Dec 2011 05:59:42 +0000</lastBuildDate>
	<language>en</language>
	<sy:updatePeriod>hourly</sy:updatePeriod>
	<sy:updateFrequency>1</sy:updateFrequency>
	<generator>http://wordpress.com/</generator>
<cloud domain='codearetoy.wordpress.com' port='80' path='/?rsscloud=notify' registerProcedure='' protocol='http-post' />
<image>
		<url>http://s2.wp.com/i/buttonw-com.png</url>
		<title>codearetoy</title>
		<link>http://codearetoy.wordpress.com</link>
	</image>
	<atom:link rel="search" type="application/opensearchdescription+xml" href="http://codearetoy.wordpress.com/osd.xml" title="codearetoy" />
	<atom:link rel='hub' href='http://codearetoy.wordpress.com/?pushpress=hub'/>
		<item>
		<title>Javascript check Opera Mini</title>
		<link>http://codearetoy.wordpress.com/2011/12/28/javascript-check-opera-mini/</link>
		<comments>http://codearetoy.wordpress.com/2011/12/28/javascript-check-opera-mini/#comments</comments>
		<pubDate>Wed, 28 Dec 2011 05:59:39 +0000</pubDate>
		<dc:creator>Eru</dc:creator>
				<category><![CDATA[JavaScript]]></category>
		<category><![CDATA[checking]]></category>
		<category><![CDATA[compability]]></category>
		<category><![CDATA[front-end]]></category>
		<category><![CDATA[operamini]]></category>

		<guid isPermaLink="false">http://codearetoy.wordpress.com/?p=227</guid>
		<description><![CDATA[So today I got caught on the weird-side of mobile web-development, that is to create consistent javascript on major mobile browsers. The good news is Android and IPhone are using webkit so it&#8217;s kind of easy. The Bad News is Opera Mini. Don&#8217;t get me wrong, I love opera mini. But the different java-script engine behavior could cause [...]<img alt="" border="0" src="http://stats.wordpress.com/b.gif?host=codearetoy.wordpress.com&amp;blog=6924327&amp;post=227&amp;subd=codearetoy&amp;ref=&amp;feed=1" width="1" height="1" />]]></description>
			<content:encoded><![CDATA[<p>So today I got caught on the weird-side of mobile web-development, that is to create consistent javascript on major mobile browsers. The good news is Android and IPhone are using webkit so it&#8217;s kind of easy. The Bad News is Opera Mini.</p>
<p>Don&#8217;t get me wrong, I love opera mini. But the different java-script engine behavior could cause headache sometimes. After googling for a while I stumbled on this <a href="http://dev.opera.com/articles/view/javascript-support-in-opera-mini-4/">http://dev.opera.com/articles/view/javascript-support-in-opera-mini-4/</a> that mention some things to consider:</p>
<ol>
<li>Opera Mini JS has a limited DOM event</li>
<li>No background scripting</li>
<li>Very limited AJAX support</li>
</ol>
<p>And the most important thing is this snippet to check whether we are inside Opera Mini (of course you can use PHP or Server Side script as a better method)</p>
<p><code>is_operamini = Object.prototype.toString.call(window.operamini) === "[object OperaMini]";</code></p>
<p>So to avoid more headache, I just treat opera-mini as a non-javascript-capable browser *smirk*</p>
<br />Filed under: <a href='http://codearetoy.wordpress.com/category/javascript/'>JavaScript</a> Tagged: <a href='http://codearetoy.wordpress.com/tag/checking/'>checking</a>, <a href='http://codearetoy.wordpress.com/tag/compability/'>compability</a>, <a href='http://codearetoy.wordpress.com/tag/front-end/'>front-end</a>, <a href='http://codearetoy.wordpress.com/tag/javascript/'>JavaScript</a>, <a href='http://codearetoy.wordpress.com/tag/operamini/'>operamini</a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gocomments/codearetoy.wordpress.com/227/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/comments/codearetoy.wordpress.com/227/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/godelicious/codearetoy.wordpress.com/227/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/delicious/codearetoy.wordpress.com/227/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gofacebook/codearetoy.wordpress.com/227/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/facebook/codearetoy.wordpress.com/227/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gotwitter/codearetoy.wordpress.com/227/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/twitter/codearetoy.wordpress.com/227/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gostumble/codearetoy.wordpress.com/227/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/stumble/codearetoy.wordpress.com/227/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/godigg/codearetoy.wordpress.com/227/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/digg/codearetoy.wordpress.com/227/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/goreddit/codearetoy.wordpress.com/227/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/reddit/codearetoy.wordpress.com/227/" /></a> <img alt="" border="0" src="http://stats.wordpress.com/b.gif?host=codearetoy.wordpress.com&amp;blog=6924327&amp;post=227&amp;subd=codearetoy&amp;ref=&amp;feed=1" width="1" height="1" />]]></content:encoded>
			<wfw:commentRss>http://codearetoy.wordpress.com/2011/12/28/javascript-check-opera-mini/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
	
		<media:content url="http://1.gravatar.com/avatar/363cd1c0821ba1c0df74c5ee5f54dd17?s=96&#38;d=http%3A%2F%2Fs0.wp.com%2Fi%2Fmu.gif&#38;r=G" medium="image">
			<media:title type="html">Eru</media:title>
		</media:content>
	</item>
		<item>
		<title>Create Dwoo plugin that is reusing another plugin</title>
		<link>http://codearetoy.wordpress.com/2011/12/06/create-dwoo-plugin-that-is-reusing-another-plugin/</link>
		<comments>http://codearetoy.wordpress.com/2011/12/06/create-dwoo-plugin-that-is-reusing-another-plugin/#comments</comments>
		<pubDate>Tue, 06 Dec 2011 09:12:42 +0000</pubDate>
		<dc:creator>Eru</dc:creator>
				<category><![CDATA[CodeIgniter]]></category>
		<category><![CDATA[PHP]]></category>
		<category><![CDATA[codeigniter]]></category>
		<category><![CDATA[dwoo]]></category>
		<category><![CDATA[php]]></category>
		<category><![CDATA[plugin]]></category>

		<guid isPermaLink="false">http://codearetoy.wordpress.com/?p=223</guid>
		<description><![CDATA[I am using Dwoo template http://dwoo.org/ for my PHP project, and Dwoo allow me to create custom plugins. each plugin is stored inside php file, and Dwoo will be the one that handle the plugin lazy-loads. But how one plugin can reuse another plugin? I can&#8217;t find anything on google about that, so I take [...]<img alt="" border="0" src="http://stats.wordpress.com/b.gif?host=codearetoy.wordpress.com&amp;blog=6924327&amp;post=223&amp;subd=codearetoy&amp;ref=&amp;feed=1" width="1" height="1" />]]></description>
			<content:encoded><![CDATA[<p>I am using Dwoo template <a href="http://dwoo.org/">http://dwoo.org/</a> for my PHP project, and Dwoo allow me to create custom plugins. each plugin is stored inside php file, and Dwoo will be the one that handle the plugin lazy-loads.</p>
<p>But how one plugin can reuse another plugin? I can&#8217;t find anything on google about that, so I take a look at how<br />
the compiled-code call plugin.</p>
<p><pre class="brush: php;">
    if (function_exists('Dwoo_Plugin_input')===false) {
        $dwoo-&gt;getLoader()-&gt;loadPlugin('input');
    }
</pre></p>
<p>Ah, simple! so my plugin can also use the same way to call another plugin. Here is the code for my &#8216;password&#8217; plugin that is reusing &#8216;input&#8217; plugin to generate HTML field</p>
<p><pre class="brush: php;">
function Dwoo_Plugin_password(Dwoo $dwoo, array $rest = array()) {
    if (function_exists('Dwoo_Plugin_input')===false) {
        $dwoo-&gt;getLoader()-&gt;loadPlugin('input');
    }
    $rest['type'] = 'password';
    $rest['autocomplete'] = 'off';
    return Dwoo_Plugin_input($dwoo,$rest);
}
</pre></p>
<p>Dwoo FTW!</p>
<br />Filed under: <a href='http://codearetoy.wordpress.com/category/php/codeigniter/'>CodeIgniter</a>, <a href='http://codearetoy.wordpress.com/category/php/'>PHP</a> Tagged: <a href='http://codearetoy.wordpress.com/tag/codeigniter-2/'>codeigniter</a>, <a href='http://codearetoy.wordpress.com/tag/dwoo/'>dwoo</a>, <a href='http://codearetoy.wordpress.com/tag/php-2/'>php</a>, <a href='http://codearetoy.wordpress.com/tag/plugin/'>plugin</a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gocomments/codearetoy.wordpress.com/223/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/comments/codearetoy.wordpress.com/223/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/godelicious/codearetoy.wordpress.com/223/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/delicious/codearetoy.wordpress.com/223/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gofacebook/codearetoy.wordpress.com/223/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/facebook/codearetoy.wordpress.com/223/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gotwitter/codearetoy.wordpress.com/223/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/twitter/codearetoy.wordpress.com/223/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gostumble/codearetoy.wordpress.com/223/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/stumble/codearetoy.wordpress.com/223/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/godigg/codearetoy.wordpress.com/223/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/digg/codearetoy.wordpress.com/223/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/goreddit/codearetoy.wordpress.com/223/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/reddit/codearetoy.wordpress.com/223/" /></a> <img alt="" border="0" src="http://stats.wordpress.com/b.gif?host=codearetoy.wordpress.com&amp;blog=6924327&amp;post=223&amp;subd=codearetoy&amp;ref=&amp;feed=1" width="1" height="1" />]]></content:encoded>
			<wfw:commentRss>http://codearetoy.wordpress.com/2011/12/06/create-dwoo-plugin-that-is-reusing-another-plugin/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
	
		<media:content url="http://1.gravatar.com/avatar/363cd1c0821ba1c0df74c5ee5f54dd17?s=96&#38;d=http%3A%2F%2Fs0.wp.com%2Fi%2Fmu.gif&#38;r=G" medium="image">
			<media:title type="html">Eru</media:title>
		</media:content>
	</item>
		<item>
		<title>CodeIgniter  router config for dynamic url (url shortener or seo friendly url)</title>
		<link>http://codearetoy.wordpress.com/2011/09/08/codeigniter-router-config-for-dynamic-url-url-shortener-or-seo-friendly-url/</link>
		<comments>http://codearetoy.wordpress.com/2011/09/08/codeigniter-router-config-for-dynamic-url-url-shortener-or-seo-friendly-url/#comments</comments>
		<pubDate>Thu, 08 Sep 2011 09:42:08 +0000</pubDate>
		<dc:creator>Eru</dc:creator>
				<category><![CDATA[CodeIgniter]]></category>
		<category><![CDATA[PHP]]></category>
		<category><![CDATA[Troubleshooting]]></category>
		<category><![CDATA[Web]]></category>
		<category><![CDATA[2.0]]></category>
		<category><![CDATA[codeigniter]]></category>
		<category><![CDATA[dynamic url]]></category>
		<category><![CDATA[php]]></category>
		<category><![CDATA[reactor]]></category>
		<category><![CDATA[router]]></category>
		<category><![CDATA[seo friendly url]]></category>
		<category><![CDATA[url]]></category>
		<category><![CDATA[url shortener]]></category>

		<guid isPermaLink="false">http://codearetoy.wordpress.com/?p=207</guid>
		<description><![CDATA[Here&#8217;s the scenario, I want my CodeIgniter to be able to works similar to url shortener services (e.g. http://bit.ly) so I can access content by using this kind of format http://blood4lifeid.org/uac1 There&#8217;s so many tricks to this. We can use mod_rewrite on some specific pattern, or force our CI to use one Master-Controller, or rewrite [...]<img alt="" border="0" src="http://stats.wordpress.com/b.gif?host=codearetoy.wordpress.com&amp;blog=6924327&amp;post=207&amp;subd=codearetoy&amp;ref=&amp;feed=1" width="1" height="1" />]]></description>
			<content:encoded><![CDATA[<p>Here&#8217;s the scenario, I want my CodeIgniter to be able to works similar to url shortener services (e.g. <a title="BitLy" href="http://bit.ly">http://bit.ly</a>) so I can access content by using this kind of format <a title="BFL" href="http://blood4lifeid.org/wc2uac1">http://blood4lifeid.org/uac1</a></p>
<p>There&#8217;s so many tricks to this. We can use mod_rewrite on some specific pattern, or force our CI to use one Master-Controller, or rewrite CI router mechanism. </p>
<p>But I am going to use the easiest one, only changing CI router.php config<br />
At first I use this on CI routes.php</p>
<p><pre class="brush: php;">
$route['(:any)'] = &quot;incidents/detail_shortened/$1&quot;;
</pre></p>
<p>As expected, It&#8217;s kind of working, but it makes all of my controller inaccessible, that is because any &#8216;/controllername/parameter/&#8217; format will match with &#8216;(:any)&#8217; and will be redirected to our &#8216;incidents/detail_shortened/&#8217;.</p>
<p>To stop controllers redirected by the CI router, I have to explicitly define all of my controllers on the routes.php first (since it&#8217;s handled in sequence)  </p>
<p>This is the code for that:</p>
<p><pre class="brush: php;">
$route['default_controller'] = &quot;welcome&quot;;
$route['404_override'] = 'help/show404';

// define all 'normal' possible routing path
$route['callbacks'] = 'callbacks';
$route['callbacks/(:any)'] = 'callbacks/$1';

$route['faqs'] = 'faqs';
$route['faqs/(:any)'] = 'faqs/$1';

$route['help'] = 'help';
$route['help/(:any)'] = 'help/$1';

$route['welcome'] = 'welcome';

$route['welcome/(:any)'] = 'welcome/$1';

// the last resort (dynamic)
$route['(:any)'] = &quot;incidents/detail_shortened/$1&quot;;
</pre></p>
<p>And now it works <img src='http://s0.wp.com/wp-includes/images/smilies/icon_smile.gif' alt=':)' class='wp-smiley' />  all controller will he handled normally, and my shortened dynamic url will be properly<br />
handled by my `incidents` controller.</p>
<p>P.S:<br />
This applies to CodeIgniter 2.0 (i am not sure whether it works for CI &lt; 2.0)</p>
<p>You can also apply this scenario for your SEO friendly dynamic URL (e.g. http://yoursite.com/content-title-that-is-seo-friendly)</p>
<br />Filed under: <a href='http://codearetoy.wordpress.com/category/php/codeigniter/'>CodeIgniter</a>, <a href='http://codearetoy.wordpress.com/category/php/'>PHP</a>, <a href='http://codearetoy.wordpress.com/category/troubleshooting/'>Troubleshooting</a>, <a href='http://codearetoy.wordpress.com/category/web/'>Web</a> Tagged: <a href='http://codearetoy.wordpress.com/tag/2-0/'>2.0</a>, <a href='http://codearetoy.wordpress.com/tag/codeigniter-2/'>codeigniter</a>, <a href='http://codearetoy.wordpress.com/tag/dynamic-url/'>dynamic url</a>, <a href='http://codearetoy.wordpress.com/tag/php-2/'>php</a>, <a href='http://codearetoy.wordpress.com/tag/reactor/'>reactor</a>, <a href='http://codearetoy.wordpress.com/tag/router/'>router</a>, <a href='http://codearetoy.wordpress.com/tag/seo-friendly-url/'>seo friendly url</a>, <a href='http://codearetoy.wordpress.com/tag/url/'>url</a>, <a href='http://codearetoy.wordpress.com/tag/url-shortener/'>url shortener</a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gocomments/codearetoy.wordpress.com/207/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/comments/codearetoy.wordpress.com/207/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/godelicious/codearetoy.wordpress.com/207/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/delicious/codearetoy.wordpress.com/207/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gofacebook/codearetoy.wordpress.com/207/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/facebook/codearetoy.wordpress.com/207/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gotwitter/codearetoy.wordpress.com/207/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/twitter/codearetoy.wordpress.com/207/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gostumble/codearetoy.wordpress.com/207/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/stumble/codearetoy.wordpress.com/207/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/godigg/codearetoy.wordpress.com/207/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/digg/codearetoy.wordpress.com/207/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/goreddit/codearetoy.wordpress.com/207/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/reddit/codearetoy.wordpress.com/207/" /></a> <img alt="" border="0" src="http://stats.wordpress.com/b.gif?host=codearetoy.wordpress.com&amp;blog=6924327&amp;post=207&amp;subd=codearetoy&amp;ref=&amp;feed=1" width="1" height="1" />]]></content:encoded>
			<wfw:commentRss>http://codearetoy.wordpress.com/2011/09/08/codeigniter-router-config-for-dynamic-url-url-shortener-or-seo-friendly-url/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
	
		<media:content url="http://1.gravatar.com/avatar/363cd1c0821ba1c0df74c5ee5f54dd17?s=96&#38;d=http%3A%2F%2Fs0.wp.com%2Fi%2Fmu.gif&#38;r=G" medium="image">
			<media:title type="html">Eru</media:title>
		</media:content>
	</item>
		<item>
		<title>CodeIgniter 404 not found on freshly installed apache2</title>
		<link>http://codearetoy.wordpress.com/2011/08/04/codeigniter-404-not-found-on-freshly-installed-apache2/</link>
		<comments>http://codearetoy.wordpress.com/2011/08/04/codeigniter-404-not-found-on-freshly-installed-apache2/#comments</comments>
		<pubDate>Thu, 04 Aug 2011 12:29:07 +0000</pubDate>
		<dc:creator>Eru</dc:creator>
				<category><![CDATA[CodeIgniter]]></category>
		<category><![CDATA[PHP]]></category>
		<category><![CDATA[Troubleshooting]]></category>
		<category><![CDATA[11.04]]></category>
		<category><![CDATA[apache2]]></category>
		<category><![CDATA[codeigniter]]></category>
		<category><![CDATA[fresh install]]></category>
		<category><![CDATA[index.php]]></category>
		<category><![CDATA[mod_rewrite]]></category>
		<category><![CDATA[ubuntu]]></category>

		<guid isPermaLink="false">http://codearetoy.wordpress.com/?p=200</guid>
		<description><![CDATA[So I start this morning with freshly installed apache2 on my Ubuntu 11, pulling from bitbucket/Mercurial and suddenly it gave me 404 standard apache2 page. 404 not found Because my CodeIgniter is a standard no index.php and use .htaccess file to activate the mod_rewrite, so this symptom of problem usually caused by non existing mod_rewrite. [...]<img alt="" border="0" src="http://stats.wordpress.com/b.gif?host=codearetoy.wordpress.com&amp;blog=6924327&amp;post=200&amp;subd=codearetoy&amp;ref=&amp;feed=1" width="1" height="1" />]]></description>
			<content:encoded><![CDATA[<p>So I start this morning with freshly installed apache2 on my Ubuntu 11, pulling from bitbucket/Mercurial and suddenly it gave me 404 standard apache2 page. </p>
<blockquote><p>
404 not found
</p></blockquote>
<p>Because my CodeIgniter is a standard no index.php and use .htaccess file to activate the mod_rewrite, so  this symptom of problem usually caused by non existing mod_rewrite. So I have to activate mod_rewrite first.</p>
<p><code><br />
sudo a2enmod rewrite<br />
</code></p>
<p>And then restart apache2 to load the mod</p>
<p><code><br />
sudo /etc/init.d/apache2 force-reload<br />
</code></p>
<p>Checking on `phpinfo()` it will show mod_rewrite is activated, still 404 error because I haven&#8217;t modify the `AllowOverride` settings.</p>
<p>So you have to open file in `/etc/apache2/sites-enabled/000-default` by</p>
<p><code><br />
sudo nano /etc/apache2/sites-enabled/000-default<br />
</code><br />
(you can use vim, gedit or anything <img src='http://s2.wp.com/wp-includes/images/smilies/icon_razz.gif' alt=':P' class='wp-smiley' /> )</p>
<p>And change the `AllowOverride None&#8217; into `AllowOverride All`. This will allow `.htaccess` to kick in and override apache2 configurations on your CodeIgniter root.</p>
<p>Refresh the page and voila! my controllers are initalized properly. </p>
<br />Filed under: <a href='http://codearetoy.wordpress.com/category/php/codeigniter/'>CodeIgniter</a>, <a href='http://codearetoy.wordpress.com/category/php/'>PHP</a>, <a href='http://codearetoy.wordpress.com/category/troubleshooting/'>Troubleshooting</a> Tagged: <a href='http://codearetoy.wordpress.com/tag/11-04/'>11.04</a>, <a href='http://codearetoy.wordpress.com/tag/apache2/'>apache2</a>, <a href='http://codearetoy.wordpress.com/tag/codeigniter-2/'>codeigniter</a>, <a href='http://codearetoy.wordpress.com/tag/fresh-install/'>fresh install</a>, <a href='http://codearetoy.wordpress.com/tag/index-php/'>index.php</a>, <a href='http://codearetoy.wordpress.com/tag/mod_rewrite/'>mod_rewrite</a>, <a href='http://codearetoy.wordpress.com/tag/ubuntu/'>ubuntu</a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gocomments/codearetoy.wordpress.com/200/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/comments/codearetoy.wordpress.com/200/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/godelicious/codearetoy.wordpress.com/200/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/delicious/codearetoy.wordpress.com/200/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gofacebook/codearetoy.wordpress.com/200/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/facebook/codearetoy.wordpress.com/200/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gotwitter/codearetoy.wordpress.com/200/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/twitter/codearetoy.wordpress.com/200/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gostumble/codearetoy.wordpress.com/200/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/stumble/codearetoy.wordpress.com/200/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/godigg/codearetoy.wordpress.com/200/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/digg/codearetoy.wordpress.com/200/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/goreddit/codearetoy.wordpress.com/200/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/reddit/codearetoy.wordpress.com/200/" /></a> <img alt="" border="0" src="http://stats.wordpress.com/b.gif?host=codearetoy.wordpress.com&amp;blog=6924327&amp;post=200&amp;subd=codearetoy&amp;ref=&amp;feed=1" width="1" height="1" />]]></content:encoded>
			<wfw:commentRss>http://codearetoy.wordpress.com/2011/08/04/codeigniter-404-not-found-on-freshly-installed-apache2/feed/</wfw:commentRss>
		<slash:comments>1</slash:comments>
	
		<media:content url="http://1.gravatar.com/avatar/363cd1c0821ba1c0df74c5ee5f54dd17?s=96&#38;d=http%3A%2F%2Fs0.wp.com%2Fi%2Fmu.gif&#38;r=G" medium="image">
			<media:title type="html">Eru</media:title>
		</media:content>
	</item>
		<item>
		<title>Sharepoint Workflow &#8211; How To Pass Value To Custom Task Form Extended Properties</title>
		<link>http://codearetoy.wordpress.com/2011/07/01/sharepoint-workflow-how-to-pass-value-to-custom-task-form-extended-properties/</link>
		<comments>http://codearetoy.wordpress.com/2011/07/01/sharepoint-workflow-how-to-pass-value-to-custom-task-form-extended-properties/#comments</comments>
		<pubDate>Fri, 01 Jul 2011 07:46:55 +0000</pubDate>
		<dc:creator>Eru</dc:creator>
				<category><![CDATA[SharePoint]]></category>
		<category><![CDATA[Workflow]]></category>
		<category><![CDATA[custom task form]]></category>
		<category><![CDATA[extended properties]]></category>
		<category><![CDATA[properties]]></category>
		<category><![CDATA[sharepoint]]></category>
		<category><![CDATA[workflow]]></category>

		<guid isPermaLink="false">http://codearetoy.wordpress.com/?p=188</guid>
		<description><![CDATA[So I was reading Ingo&#8217;s blog to create a custom task form for my workflow, if you need to create custom ASPX form for your custom task content-type you can go check his blog. Basically my problem was, how to fill the custom fields inside CreateTaskByContentType activity? there&#8217;s ExtendedProperties but putting the field name on [...]<img alt="" border="0" src="http://stats.wordpress.com/b.gif?host=codearetoy.wordpress.com&amp;blog=6924327&amp;post=188&amp;subd=codearetoy&amp;ref=&amp;feed=1" width="1" height="1" />]]></description>
			<content:encoded><![CDATA[<p>So I was reading <a title="Ingo's Blog" href="http://ikarstein.wordpress.com/2011/03/30/walkthrough-creating-a-simple-sequential-workflow-with-a-custom-task-form-in-sharepoint-2010-using-visual-studio-2010-part-1-of-2/">Ingo&#8217;s</a> blog to create a custom task form for my workflow, if you need to create custom ASPX form for your custom task content-type you can go check his blog.</p>
<p>Basically my problem was, how to fill the custom fields inside CreateTaskByContentType activity? there&#8217;s ExtendedProperties but putting the field name on ExtendedProperties seems does not pass anything to the newly created Task.</p>
<p>This is my previous code<br />
<pre class="brush: csharp;">
createTaskProperties.Title = &quot;New Task&quot;;
createTaskProperties.PercentComplete = 0;
createTaskProperties.ExtendedProperties[&quot;CustomField&quot;] = &quot;Something&quot;;
</pre></p>
<p>After googling for a bit, I found a solution (sorry I forgot the URL since I *accidentally* clear my history). Basically we are still using ExtendedProperties but we can&#8217;t use the custom field name, we have to use GUID of the field.</p>
<p>This is the fixed code<br />
<pre class="brush: csharp;">
createTaskProperties.Title = &quot;New Task&quot;;
createTaskProperties.PercentComplete = 0;
Guid custField = workflowProperties.TaskList.Fields[&quot;CustomField&quot;].Id;
createTaskProperties.ExtendedProperties[custField] = &quot;Something&quot;;
</pre></p>
<p>Voila! the custom field in our custom task will be populated on CreateTask Activity.</p>
<p>Happy meddling with Workflow <img src='http://s0.wp.com/wp-includes/images/smilies/icon_smile.gif' alt=':)' class='wp-smiley' /> </p>
<br />Filed under: <a href='http://codearetoy.wordpress.com/category/sharepoint/'>SharePoint</a>, <a href='http://codearetoy.wordpress.com/category/sharepoint/workflow/'>Workflow</a> Tagged: <a href='http://codearetoy.wordpress.com/tag/custom-task-form/'>custom task form</a>, <a href='http://codearetoy.wordpress.com/tag/extended-properties/'>extended properties</a>, <a href='http://codearetoy.wordpress.com/tag/properties/'>properties</a>, <a href='http://codearetoy.wordpress.com/tag/sharepoint-2/'>sharepoint</a>, <a href='http://codearetoy.wordpress.com/tag/workflow-2/'>workflow</a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gocomments/codearetoy.wordpress.com/188/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/comments/codearetoy.wordpress.com/188/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/godelicious/codearetoy.wordpress.com/188/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/delicious/codearetoy.wordpress.com/188/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gofacebook/codearetoy.wordpress.com/188/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/facebook/codearetoy.wordpress.com/188/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gotwitter/codearetoy.wordpress.com/188/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/twitter/codearetoy.wordpress.com/188/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gostumble/codearetoy.wordpress.com/188/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/stumble/codearetoy.wordpress.com/188/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/godigg/codearetoy.wordpress.com/188/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/digg/codearetoy.wordpress.com/188/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/goreddit/codearetoy.wordpress.com/188/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/reddit/codearetoy.wordpress.com/188/" /></a> <img alt="" border="0" src="http://stats.wordpress.com/b.gif?host=codearetoy.wordpress.com&amp;blog=6924327&amp;post=188&amp;subd=codearetoy&amp;ref=&amp;feed=1" width="1" height="1" />]]></content:encoded>
			<wfw:commentRss>http://codearetoy.wordpress.com/2011/07/01/sharepoint-workflow-how-to-pass-value-to-custom-task-form-extended-properties/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
	
		<media:content url="http://1.gravatar.com/avatar/363cd1c0821ba1c0df74c5ee5f54dd17?s=96&#38;d=http%3A%2F%2Fs0.wp.com%2Fi%2Fmu.gif&#38;r=G" medium="image">
			<media:title type="html">Eru</media:title>
		</media:content>
	</item>
		<item>
		<title>CAML query on GetItems doesn&#8217;t filter the content</title>
		<link>http://codearetoy.wordpress.com/2011/05/06/caml-query-on-getitems-doesnt-filter-the-content/</link>
		<comments>http://codearetoy.wordpress.com/2011/05/06/caml-query-on-getitems-doesnt-filter-the-content/#comments</comments>
		<pubDate>Fri, 06 May 2011 07:37:59 +0000</pubDate>
		<dc:creator>Eru</dc:creator>
				<category><![CDATA[SharePoint]]></category>
		<category><![CDATA[CAML]]></category>
		<category><![CDATA[GetItems]]></category>
		<category><![CDATA[SPQuery]]></category>

		<guid isPermaLink="false">http://codearetoy.wordpress.com/?p=184</guid>
		<description><![CDATA[So basically today I am creating a SPQuery object to filter list items. The filtering code for list goes like this The code doesn&#8217;t give any error, but somehow the CAML query doesn&#8217;t work. Kind of misleading isn&#8217;t it So it turns out that the CAML that I generate is wrong, I use &#60;query&#62; tag [...]<img alt="" border="0" src="http://stats.wordpress.com/b.gif?host=codearetoy.wordpress.com&amp;blog=6924327&amp;post=184&amp;subd=codearetoy&amp;ref=&amp;feed=1" width="1" height="1" />]]></description>
			<content:encoded><![CDATA[<p>So basically today I am creating a SPQuery object to filter list items. The filtering code for list goes like this</p>
<p><pre class="brush: csharp;">
SPQuery qry = new SPQuery();
//..
//.. generate the query here
//..
SPListItemCollection listItemsCollection = list.GetItems(qry);
</pre></p>
<p>The code doesn&#8217;t give any error, but somehow the CAML query doesn&#8217;t work. Kind of misleading isn&#8217;t it <img src='http://s0.wp.com/wp-includes/images/smilies/icon_smile.gif' alt=':)' class='wp-smiley' /> </p>
<p>So it turns out that the CAML that I generate is wrong, I use &lt;query&gt; tag that makes it ignore all of my query entirely (somehow it doesn&#8217;t give me any error at all).</p>
<p><pre class="brush: xml;">
&lt;Query&gt;
&lt;Where&gt;
&lt;Or&gt;
&lt;Geq&gt;&lt;FieldRef Name=&quot;Expires&quot; /&gt;
&lt;Value IncludeTimeValue=&quot;TRUE&quot; Type=&quot;DateTime&quot;&gt;2011-05-06T21:00:21Z&lt;/Value&gt;&lt;/Geq&gt;
&lt;IsNull&gt;&lt;FieldRef Name=&quot;Expires&quot; /&gt;&lt;/IsNull&gt;
&lt;/Or&gt;
&lt;/Where&gt;
&lt;OrderBy&gt;&lt;FieldRef Name=&quot;Created&quot; Ascending=&quot;False&quot; /&gt;&lt;/OrderBy&gt;&lt;/Query&gt;
</pre></p>
<p>Just remove the query tag and the GetItems should work</p>
<p><pre class="brush: xml;">
&lt;Where&gt;&lt;Or&gt;&lt;IsNull&gt;&lt;FieldRef Name=&quot;Expires&quot; /&gt;&lt;/IsNull&gt;
&lt;Geq&gt;&lt;FieldRef Name=&quot;Expires&quot; /&gt;&lt;Value Type=&quot;DateTime&quot;&gt;2011-05-06T14:22:09&lt;/Value&gt;&lt;/Geq&gt;&lt;/Or&gt;
&lt;/Where&gt;
&lt;OrderBy&gt;&lt;FieldRef Ascending=&quot;FALSE&quot; Name=&quot;Created&quot; /&gt;&lt;/OrderBy&gt;
</pre></p>
<br />Filed under: <a href='http://codearetoy.wordpress.com/category/sharepoint/'>SharePoint</a> Tagged: <a href='http://codearetoy.wordpress.com/tag/caml/'>CAML</a>, <a href='http://codearetoy.wordpress.com/tag/getitems/'>GetItems</a>, <a href='http://codearetoy.wordpress.com/tag/spquery/'>SPQuery</a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gocomments/codearetoy.wordpress.com/184/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/comments/codearetoy.wordpress.com/184/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/godelicious/codearetoy.wordpress.com/184/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/delicious/codearetoy.wordpress.com/184/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gofacebook/codearetoy.wordpress.com/184/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/facebook/codearetoy.wordpress.com/184/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gotwitter/codearetoy.wordpress.com/184/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/twitter/codearetoy.wordpress.com/184/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gostumble/codearetoy.wordpress.com/184/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/stumble/codearetoy.wordpress.com/184/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/godigg/codearetoy.wordpress.com/184/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/digg/codearetoy.wordpress.com/184/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/goreddit/codearetoy.wordpress.com/184/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/reddit/codearetoy.wordpress.com/184/" /></a> <img alt="" border="0" src="http://stats.wordpress.com/b.gif?host=codearetoy.wordpress.com&amp;blog=6924327&amp;post=184&amp;subd=codearetoy&amp;ref=&amp;feed=1" width="1" height="1" />]]></content:encoded>
			<wfw:commentRss>http://codearetoy.wordpress.com/2011/05/06/caml-query-on-getitems-doesnt-filter-the-content/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
	
		<media:content url="http://1.gravatar.com/avatar/363cd1c0821ba1c0df74c5ee5f54dd17?s=96&#38;d=http%3A%2F%2Fs0.wp.com%2Fi%2Fmu.gif&#38;r=G" medium="image">
			<media:title type="html">Eru</media:title>
		</media:content>
	</item>
		<item>
		<title>Add custom menu to Site Actions in Sharepoint 2010</title>
		<link>http://codearetoy.wordpress.com/2011/04/21/add-custom-menu-to-site-actions-in-sharepoint-2010/</link>
		<comments>http://codearetoy.wordpress.com/2011/04/21/add-custom-menu-to-site-actions-in-sharepoint-2010/#comments</comments>
		<pubDate>Thu, 21 Apr 2011 05:08:13 +0000</pubDate>
		<dc:creator>Eru</dc:creator>
				<category><![CDATA[SharePoint]]></category>
		<category><![CDATA[2010]]></category>
		<category><![CDATA[menu]]></category>
		<category><![CDATA[sharepoint]]></category>
		<category><![CDATA[site actions]]></category>

		<guid isPermaLink="false">http://codearetoy.wordpress.com/?p=177</guid>
		<description><![CDATA[So today&#8217;s SharePoint mission is adding a custom menu to the Site Action, this custom menu will link to a custom setting page (ordinary aspx page module). After googling for a while I found a good solution here. Basically it&#8217;s just creating a new SharePoint Project.  Adding an Empty Element and replace the Elements.xml into [...]<img alt="" border="0" src="http://stats.wordpress.com/b.gif?host=codearetoy.wordpress.com&amp;blog=6924327&amp;post=177&amp;subd=codearetoy&amp;ref=&amp;feed=1" width="1" height="1" />]]></description>
			<content:encoded><![CDATA[<p>So today&#8217;s SharePoint mission is adding a custom menu to the Site Action, this custom menu will link to a custom setting page (ordinary aspx page module).</p>
<p>After googling for a while I found a good solution <a title="Custom Site Action Menu" href="http://www.eblogin.com/eblogin/post/2011/02/27/sp-siteaction.aspx">here</a>.</p>
<p><a href="http://codearetoy.files.wordpress.com/2011/04/setting.png"><img class="aligncenter size-full wp-image-178" title="setting" src="http://codearetoy.files.wordpress.com/2011/04/setting.png?w=500" alt=""   /></a>Basically it&#8217;s just creating a new SharePoint Project.  Adding an Empty Element and replace the Elements.xml into this.</p>
<p><pre class="brush: plain;">
&lt;?xml version=&quot;1.0&quot; encoding=&quot;utf-8&quot;?&gt;
&lt;Elements xmlns=&quot;http://schemas.microsoft.com/sharepoint/&quot;&gt;
  &lt;CustomAction Id=&quot;SiteActionsToolbar&quot;
     GroupId=&quot;SiteActions&quot;
     Location=&quot;Microsoft.SharePoint.StandardMenu&quot;
     Sequence=&quot;1000&quot;
                
     Title=&quot;My Settings&quot;
     Description=&quot;My Site Settings&quot;
     ImageUrl=&quot;_layouts/mylayout/img/widgets.png&quot;&gt;
     &lt;UrlAction Url=&quot;_layouts/mylayout/mypage.aspx&quot;/&gt;
  &lt;/CustomAction&gt;
&lt;/Elements&gt;
</pre></p>
<p>Make sure you add the element to a Feature. </p>
<p>And that is all .</p>
<p>See the detailed solution <a title="Custom Site Action Menu" href="http://www.eblogin.com/eblogin/post/2011/02/27/sp-siteaction.aspx">here</a>.</p>
<br />Filed under: <a href='http://codearetoy.wordpress.com/category/sharepoint/'>SharePoint</a> Tagged: <a href='http://codearetoy.wordpress.com/tag/2010/'>2010</a>, <a href='http://codearetoy.wordpress.com/tag/menu/'>menu</a>, <a href='http://codearetoy.wordpress.com/tag/sharepoint-2/'>sharepoint</a>, <a href='http://codearetoy.wordpress.com/tag/site-actions/'>site actions</a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gocomments/codearetoy.wordpress.com/177/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/comments/codearetoy.wordpress.com/177/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/godelicious/codearetoy.wordpress.com/177/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/delicious/codearetoy.wordpress.com/177/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gofacebook/codearetoy.wordpress.com/177/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/facebook/codearetoy.wordpress.com/177/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gotwitter/codearetoy.wordpress.com/177/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/twitter/codearetoy.wordpress.com/177/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gostumble/codearetoy.wordpress.com/177/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/stumble/codearetoy.wordpress.com/177/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/godigg/codearetoy.wordpress.com/177/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/digg/codearetoy.wordpress.com/177/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/goreddit/codearetoy.wordpress.com/177/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/reddit/codearetoy.wordpress.com/177/" /></a> <img alt="" border="0" src="http://stats.wordpress.com/b.gif?host=codearetoy.wordpress.com&amp;blog=6924327&amp;post=177&amp;subd=codearetoy&amp;ref=&amp;feed=1" width="1" height="1" />]]></content:encoded>
			<wfw:commentRss>http://codearetoy.wordpress.com/2011/04/21/add-custom-menu-to-site-actions-in-sharepoint-2010/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
	
		<media:content url="http://1.gravatar.com/avatar/363cd1c0821ba1c0df74c5ee5f54dd17?s=96&#38;d=http%3A%2F%2Fs0.wp.com%2Fi%2Fmu.gif&#38;r=G" medium="image">
			<media:title type="html">Eru</media:title>
		</media:content>

		<media:content url="http://codearetoy.files.wordpress.com/2011/04/setting.png" medium="image">
			<media:title type="html">setting</media:title>
		</media:content>
	</item>
		<item>
		<title>Decode/Decrypt MD5 Hash</title>
		<link>http://codearetoy.wordpress.com/2011/02/24/decrypt-md5-hash/</link>
		<comments>http://codearetoy.wordpress.com/2011/02/24/decrypt-md5-hash/#comments</comments>
		<pubDate>Thu, 24 Feb 2011 07:25:14 +0000</pubDate>
		<dc:creator>Eru</dc:creator>
				<category><![CDATA[Security]]></category>
		<category><![CDATA[Troubleshooting]]></category>
		<category><![CDATA[decode]]></category>
		<category><![CDATA[decrypt]]></category>
		<category><![CDATA[encode]]></category>
		<category><![CDATA[hash]]></category>
		<category><![CDATA[md5]]></category>
		<category><![CDATA[sha]]></category>

		<guid isPermaLink="false">http://codearetoy.wordpress.com/?p=161</guid>
		<description><![CDATA[So one of the challenge in one &#8220;job employment puzzle&#8221; that i took for fun is to get the real value of one md5 hash string. We know that md5 is an hash algorithm and it&#8217;s not reversible (it&#8217;s not an encryption), so the only way to know the real value is to do a [...]<img alt="" border="0" src="http://stats.wordpress.com/b.gif?host=codearetoy.wordpress.com&amp;blog=6924327&amp;post=161&amp;subd=codearetoy&amp;ref=&amp;feed=1" width="1" height="1" />]]></description>
			<content:encoded><![CDATA[<p>So one of the challenge in one &#8220;job employment puzzle&#8221; that i took for fun is to get the real value of one md5 hash string.</p>
<p>We know that md5 is an hash algorithm and it&#8217;s not reversible (it&#8217;s not an encryption), so the only way to know the real value is to do a brute force of multiple string combinations (using char combinations or dictionary attack)</p>
<p>It will took a while to get the results <img src='http://s0.wp.com/wp-includes/images/smilies/icon_biggrin.gif' alt=':D' class='wp-smiley' /> </p>
<p>Luckyly there are some people that have the same idea and they share their combination database online, so we only have to submit our MD5 hash and they will compare it with their internal database to look for the real value.</p>
<p>The sites are located <a title="Md5 Decrypt" href="http://www.md5decrypter.com/">here</a> and <a title="Md5 decrypter" href="http://md5.my-addr.com/md5_decrypt-md5_cracker_online/md5_decoder_tool.php">here</a></p>
<p>So in my case it&#8217;s:</p>
<blockquote><p>d8578edf8458ce06fbc5bb76a58c5ca4</p></blockquote>
<p>and the site show me that it&#8217;s a MD5 hash of:</p>
<blockquote><p>qwerty</p></blockquote>
<p>Now you know why you should avoid MD5 and use better hash algorithm that have salt / modifier (e.g. SHA)</p>
<br />Filed under: <a href='http://codearetoy.wordpress.com/category/security/'>Security</a>, <a href='http://codearetoy.wordpress.com/category/troubleshooting/'>Troubleshooting</a> Tagged: <a href='http://codearetoy.wordpress.com/tag/decode/'>decode</a>, <a href='http://codearetoy.wordpress.com/tag/decrypt/'>decrypt</a>, <a href='http://codearetoy.wordpress.com/tag/encode/'>encode</a>, <a href='http://codearetoy.wordpress.com/tag/hash/'>hash</a>, <a href='http://codearetoy.wordpress.com/tag/md5/'>md5</a>, <a href='http://codearetoy.wordpress.com/tag/sha/'>sha</a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gocomments/codearetoy.wordpress.com/161/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/comments/codearetoy.wordpress.com/161/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/godelicious/codearetoy.wordpress.com/161/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/delicious/codearetoy.wordpress.com/161/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gofacebook/codearetoy.wordpress.com/161/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/facebook/codearetoy.wordpress.com/161/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gotwitter/codearetoy.wordpress.com/161/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/twitter/codearetoy.wordpress.com/161/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gostumble/codearetoy.wordpress.com/161/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/stumble/codearetoy.wordpress.com/161/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/godigg/codearetoy.wordpress.com/161/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/digg/codearetoy.wordpress.com/161/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/goreddit/codearetoy.wordpress.com/161/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/reddit/codearetoy.wordpress.com/161/" /></a> <img alt="" border="0" src="http://stats.wordpress.com/b.gif?host=codearetoy.wordpress.com&amp;blog=6924327&amp;post=161&amp;subd=codearetoy&amp;ref=&amp;feed=1" width="1" height="1" />]]></content:encoded>
			<wfw:commentRss>http://codearetoy.wordpress.com/2011/02/24/decrypt-md5-hash/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
	
		<media:content url="http://1.gravatar.com/avatar/363cd1c0821ba1c0df74c5ee5f54dd17?s=96&#38;d=http%3A%2F%2Fs0.wp.com%2Fi%2Fmu.gif&#38;r=G" medium="image">
			<media:title type="html">Eru</media:title>
		</media:content>
	</item>
		<item>
		<title>Cannot Send Email From My local test application (Blocked by McAfee)</title>
		<link>http://codearetoy.wordpress.com/2011/01/11/cannot-send-email-from-my-local-test-application-blocked-by-mcafee/</link>
		<comments>http://codearetoy.wordpress.com/2011/01/11/cannot-send-email-from-my-local-test-application-blocked-by-mcafee/#comments</comments>
		<pubDate>Tue, 11 Jan 2011 11:11:38 +0000</pubDate>
		<dc:creator>Eru</dc:creator>
				<category><![CDATA[C#]]></category>
		<category><![CDATA[SharePoint]]></category>
		<category><![CDATA[.net]]></category>
		<category><![CDATA[application]]></category>
		<category><![CDATA[c#]]></category>
		<category><![CDATA[send mail]]></category>
		<category><![CDATA[sharepoint]]></category>
		<category><![CDATA[smtp]]></category>
		<category><![CDATA[spam]]></category>
		<category><![CDATA[worm]]></category>

		<guid isPermaLink="false">http://codearetoy.wordpress.com/?p=148</guid>
		<description><![CDATA[My friend have this problem, he can&#8217;t send email from his local web application using SMTP connection, while other developers PC can. When he tried to direct connect to port 25 of our SMTP server, it always fail. He tried using telnet to port 25, it also fail I notice that McAfee suddenly put a [...]<img alt="" border="0" src="http://stats.wordpress.com/b.gif?host=codearetoy.wordpress.com&amp;blog=6924327&amp;post=148&amp;subd=codearetoy&amp;ref=&amp;feed=1" width="1" height="1" />]]></description>
			<content:encoded><![CDATA[<p>My friend have this problem, he can&#8217;t send email from his local web application using SMTP connection, while other developers PC can.</p>
<p>When he tried to direct connect to port 25 of our SMTP server, it always fail. He tried using telnet to port 25, it also fail</p>
<p><a href="http://codearetoy.files.wordpress.com/2011/01/telnet.jpg"><img class="aligncenter size-full wp-image-149" title="telnet" src="http://codearetoy.files.wordpress.com/2011/01/telnet.jpg?w=500&#038;h=37" alt="" width="500" height="37" /></a></p>
<p>I notice that McAfee suddenly put a red-border on the tray icon, so the action considered as malicious by McAfee.</p>
<p><a href="http://codearetoy.files.wordpress.com/2011/01/mcafeeblock.jpg"><img class="aligncenter size-full wp-image-150" title="mcafeeblock" src="http://codearetoy.files.wordpress.com/2011/01/mcafeeblock.jpg?w=500" alt=""   /></a></p>
<p>And I found this on McAfee log file<br />
<code><br />
1/11/2011	4:58:23 PM	Blocked by port blocking rule 	C:\Windows\system32\telnet.exe	Anti-virus Standard Protection:Prevent mass mailing worms from sending mail	XXX.XX.XX.XX:25<br />
</code></p>
<p>So it&#8217;s clear that McAfee block the port, we need to add our test application to McAfee safe-list. right click on the McAfee tray icon, click on &#8220;Virus Scan Console&#8230; &#8220;. click on Access Protection icon.</p>
<p><a href="http://codearetoy.files.wordpress.com/2011/01/accesspro.jpg"><img class="aligncenter size-full wp-image-151" title="accesspro" src="http://codearetoy.files.wordpress.com/2011/01/accesspro.jpg?w=500" alt=""   /></a></p>
<p>Found the causing rule, I edit it to recognize my application</p>
<p><a href="http://codearetoy.files.wordpress.com/2011/01/rule.jpg"><img class="aligncenter size-full wp-image-152" title="rule" src="http://codearetoy.files.wordpress.com/2011/01/rule.jpg?w=500" alt=""   /></a></p>
<p>Since it&#8217;s a SharePoint based application.. let&#8217;s add w3wp.exe</p>
<p><a href="http://codearetoy.files.wordpress.com/2011/01/exclude.jpg"><img class="aligncenter size-full wp-image-153" title="exclude" src="http://codearetoy.files.wordpress.com/2011/01/exclude.jpg?w=500" alt=""   /></a></p>
<p>Done! <img src='http://s0.wp.com/wp-includes/images/smilies/icon_smile.gif' alt=':)' class='wp-smiley' /> </p>
<br />Filed under: <a href='http://codearetoy.wordpress.com/category/c/'>C#</a>, <a href='http://codearetoy.wordpress.com/category/sharepoint/'>SharePoint</a> Tagged: <a href='http://codearetoy.wordpress.com/tag/net/'>.net</a>, <a href='http://codearetoy.wordpress.com/tag/application/'>application</a>, <a href='http://codearetoy.wordpress.com/tag/c-2/'>c#</a>, <a href='http://codearetoy.wordpress.com/tag/send-mail/'>send mail</a>, <a href='http://codearetoy.wordpress.com/tag/sharepoint-2/'>sharepoint</a>, <a href='http://codearetoy.wordpress.com/tag/smtp/'>smtp</a>, <a href='http://codearetoy.wordpress.com/tag/spam/'>spam</a>, <a href='http://codearetoy.wordpress.com/tag/worm/'>worm</a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gocomments/codearetoy.wordpress.com/148/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/comments/codearetoy.wordpress.com/148/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/godelicious/codearetoy.wordpress.com/148/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/delicious/codearetoy.wordpress.com/148/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gofacebook/codearetoy.wordpress.com/148/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/facebook/codearetoy.wordpress.com/148/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gotwitter/codearetoy.wordpress.com/148/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/twitter/codearetoy.wordpress.com/148/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gostumble/codearetoy.wordpress.com/148/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/stumble/codearetoy.wordpress.com/148/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/godigg/codearetoy.wordpress.com/148/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/digg/codearetoy.wordpress.com/148/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/goreddit/codearetoy.wordpress.com/148/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/reddit/codearetoy.wordpress.com/148/" /></a> <img alt="" border="0" src="http://stats.wordpress.com/b.gif?host=codearetoy.wordpress.com&amp;blog=6924327&amp;post=148&amp;subd=codearetoy&amp;ref=&amp;feed=1" width="1" height="1" />]]></content:encoded>
			<wfw:commentRss>http://codearetoy.wordpress.com/2011/01/11/cannot-send-email-from-my-local-test-application-blocked-by-mcafee/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		<georss:point>0.000000 0.000000</georss:point>
		<geo:lat>0.000000</geo:lat>
		<geo:long>0.000000</geo:long>
		<media:content url="http://1.gravatar.com/avatar/363cd1c0821ba1c0df74c5ee5f54dd17?s=96&#38;d=http%3A%2F%2Fs0.wp.com%2Fi%2Fmu.gif&#38;r=G" medium="image">
			<media:title type="html">Eru</media:title>
		</media:content>

		<media:content url="http://codearetoy.files.wordpress.com/2011/01/telnet.jpg" medium="image">
			<media:title type="html">telnet</media:title>
		</media:content>

		<media:content url="http://codearetoy.files.wordpress.com/2011/01/mcafeeblock.jpg" medium="image">
			<media:title type="html">mcafeeblock</media:title>
		</media:content>

		<media:content url="http://codearetoy.files.wordpress.com/2011/01/accesspro.jpg" medium="image">
			<media:title type="html">accesspro</media:title>
		</media:content>

		<media:content url="http://codearetoy.files.wordpress.com/2011/01/rule.jpg" medium="image">
			<media:title type="html">rule</media:title>
		</media:content>

		<media:content url="http://codearetoy.files.wordpress.com/2011/01/exclude.jpg" medium="image">
			<media:title type="html">exclude</media:title>
		</media:content>
	</item>
		<item>
		<title>JDK not found on Installing Android SDK</title>
		<link>http://codearetoy.wordpress.com/2010/12/23/jdk-not-found-on-installing-android-sdk/</link>
		<comments>http://codearetoy.wordpress.com/2010/12/23/jdk-not-found-on-installing-android-sdk/#comments</comments>
		<pubDate>Thu, 23 Dec 2010 02:17:50 +0000</pubDate>
		<dc:creator>Eru</dc:creator>
				<category><![CDATA[Android]]></category>
		<category><![CDATA[64bit]]></category>
		<category><![CDATA[android]]></category>
		<category><![CDATA[cannot find]]></category>
		<category><![CDATA[jdk]]></category>
		<category><![CDATA[sdk]]></category>

		<guid isPermaLink="false">http://codearetoy.wordpress.com/?p=136</guid>
		<description><![CDATA[So last night I was installing Android SDK r8 on Windows 7 64bit and using JDK 6 64bit. The installer gave me this&#8230; But I have installed JDK, so somehow the installer cannot find my JDK path and adding JDK location to my PATH doesn&#8217;t solve it. I&#8217;ve googled about it, and some people have [...]<img alt="" border="0" src="http://stats.wordpress.com/b.gif?host=codearetoy.wordpress.com&amp;blog=6924327&amp;post=136&amp;subd=codearetoy&amp;ref=&amp;feed=1" width="1" height="1" />]]></description>
			<content:encoded><![CDATA[<p>So last night I was installing Android SDK r8 on Windows 7 64bit and using JDK 6 64bit.</p>
<p>The installer gave me this&#8230;<br />
<a href="http://codearetoy.files.wordpress.com/2010/12/jdknotfound.jpg"><img class="aligncenter size-full wp-image-137" title="jdknotfound" src="http://codearetoy.files.wordpress.com/2010/12/jdknotfound.jpg?w=500" alt=""   /></a><br />
But I have installed JDK, so somehow the installer cannot find my JDK path and adding JDK location to my PATH doesn&#8217;t solve it.</p>
<p>I&#8217;ve googled about it, and some people have this solutions:</p>
<ol>
<li>Use JDK 32bit</li>
<li>Use Android SDK (.zip) installer</li>
</ol>
<p>But I don&#8217;t want to do those <img src='http://s0.wp.com/wp-includes/images/smilies/icon_biggrin.gif' alt=':D' class='wp-smiley' />  I have 64bit environment, so I want to use JDK 64bit (mainly because I am too lazy to re-download those)</p>
<p>And then I found this discussion <a href="http://stackoverflow.com/questions/4394584/android-sdk-install-problem">here</a> that tells me to change some registry key, because the SDK installer somehow is looking for 32bit JDK path.</p>
<p>So I export this key
<pre>[HKEY_LOCAL_MACHINE\SOFTWARE\JavaSoft\]</pre>
<p>and apply some changes so it will be imported to
<pre>[HKEY_LOCAL_MACHINE\SOFTWARE\Wow6432Node\]</pre>
<p>(basically just find-and-replace
<pre>HKEY_LOCAL_MACHINE\SOFTWARE\JavaSoft\</pre>
<p> into
<pre>HKEY_LOCAL_MACHINE\SOFTWARE\Wow6432Node\JavaSoft\</pre>
<p>)</p>
<p>Below is the new registry file, I save it to .reg extension and Import it to my registry. Voila! my Android SDK r8 now works!</p>
<p><pre class="brush: plain;">
Windows Registry Editor Version 5.00
[HKEY_LOCAL_MACHINE\SOFTWARE\Wow6432Node\JavaSoft]
[HKEY_LOCAL_MACHINE\SOFTWARE\Wow6432Node\JavaSoft\Java Development Kit]
&quot;CurrentVersion&quot;=&quot;1.6&quot;
[HKEY_LOCAL_MACHINE\SOFTWARE\Wow6432Node\JavaSoft\Java Development Kit\1.6]
&quot;JavaHome&quot;=&quot;C:\\Program Files\\Java\\jdk1.6.0_23&quot;
&quot;MicroVersion&quot;=&quot;0&quot;

[HKEY_LOCAL_MACHINE\SOFTWARE\Wow6432Node\JavaSoft\Java Development Kit\1.6.0_23]

&quot;JavaHome&quot;=&quot;C:\\Program Files\\Java\\jdk1.6.0_23&quot;

&quot;MicroVersion&quot;=&quot;0&quot;

[HKEY_LOCAL_MACHINE\SOFTWARE\Wow6432Node\JavaSoft\Java Plug-in]

[HKEY_LOCAL_MACHINE\SOFTWARE\Wow6432Node\JavaSoft\Java Plug-in\1.6.0_23]

&quot;JavaHome&quot;=&quot;C:\\Program Files\\Java\\jre6&quot;

&quot;UseJava2IExplorer&quot;=dword:00000001

&quot;UseNewJavaPlugin&quot;=dword:00000001

&quot;HideSystemTrayIcon&quot;=dword:00000000

[HKEY_LOCAL_MACHINE\SOFTWARE\Wow6432Node\JavaSoft\Java Runtime Environment]

&quot;Java6FamilyVersion&quot;=&quot;1.6.0_23&quot;

&quot;CurrentVersion&quot;=&quot;1.6&quot;

[HKEY_LOCAL_MACHINE\SOFTWARE\Wow6432Node\JavaSoft\Java Runtime Environment\1.6]

&quot;JavaHome&quot;=&quot;C:\\Program Files\\Java\\jre6&quot;

&quot;RuntimeLib&quot;=&quot;C:\\Program Files\\Java\\jre6\\bin\\client\\jvm.dll&quot;

&quot;MicroVersion&quot;=&quot;0&quot;

[HKEY_LOCAL_MACHINE\SOFTWARE\Wow6432Node\JavaSoft\Java Runtime Environment\1.6.0_23]

&quot;JavaHome&quot;=&quot;C:\\Program Files\\Java\\jre6&quot;

&quot;MicroVersion&quot;=&quot;0&quot;

&quot;RuntimeLib&quot;=&quot;C:\\Program Files\\Java\\jre6\\bin\\client\\jvm.dll&quot;

[HKEY_LOCAL_MACHINE\SOFTWARE\Wow6432Node\JavaSoft\Java Runtime Environment\1.6.0_23\MSI]

&quot;JU&quot;=&quot;1&quot;

&quot;OEMUPDATE&quot;=&quot;&quot;

&quot;MODE&quot;=&quot;C&quot;

&quot;JQS&quot;=&quot;&quot;

&quot;FROMVERSION&quot;=&quot;NA&quot;

&quot;FROMVERSIONFULL&quot;=&quot;&quot;

&quot;KERNEL&quot;=&quot;&quot;

&quot;PRODUCTVERSION&quot;=&quot;6.0.230&quot;

&quot;INSTALLDIR&quot;=&quot;C:\\Program Files\\Java\\jre6\\&quot;

&quot;SYSTRAY&quot;=&quot;1&quot;

&quot;EULA&quot;=&quot;0&quot;

&quot;IEXPLORER&quot;=&quot;1&quot;

&quot;MOZILLA&quot;=&quot;0&quot;

&quot;JAVAUPDATE&quot;=&quot;1&quot;

&quot;AUTOUPDATECHECK&quot;=&quot;1&quot;

&quot;AUTOUPDATEDELAY&quot;=&quot;&quot;

&quot;ImageCkSum&quot;=&quot;2272295289&quot;

&quot;FullVersion&quot;=&quot;1.6.0_23-b05&quot;

[HKEY_LOCAL_MACHINE\SOFTWARE\Wow6432Node\JavaSoft\Java Web Start]

&quot;CurrentVersion&quot;=&quot;1.6.0_23&quot;

[HKEY_LOCAL_MACHINE\SOFTWARE\Wow6432Node\JavaSoft\Java Web Start\1.0.1]

&quot;Home&quot;=&quot;C:\\Program Files\\Java\\jre6\\bin&quot;

[HKEY_LOCAL_MACHINE\SOFTWARE\Wow6432Node\JavaSoft\Java Web Start\1.0.1_02]

&quot;Home&quot;=&quot;C:\\Program Files\\Java\\jre6\\bin&quot;

[HKEY_LOCAL_MACHINE\SOFTWARE\Wow6432Node\JavaSoft\Java Web Start\1.0.1_03]

&quot;Home&quot;=&quot;C:\\Program Files\\Java\\jre6\\bin&quot;

[HKEY_LOCAL_MACHINE\SOFTWARE\Wow6432Node\JavaSoft\Java Web Start\1.0.1_04]

&quot;Home&quot;=&quot;C:\\Program Files\\Java\\jre6\\bin&quot;

[HKEY_LOCAL_MACHINE\SOFTWARE\Wow6432Node\JavaSoft\Java Web Start\1.2]

&quot;Home&quot;=&quot;C:\\Program Files\\Java\\jre6\\bin&quot;

[HKEY_LOCAL_MACHINE\SOFTWARE\Wow6432Node\JavaSoft\Java Web Start\1.2.0_01]

&quot;Home&quot;=&quot;C:\\Program Files\\Java\\jre6\\bin&quot;

[HKEY_LOCAL_MACHINE\SOFTWARE\Wow6432Node\JavaSoft\Java Web Start\1.6.0_23]

&quot;Home&quot;=&quot;C:\\Program Files\\Java\\jre6\\bin&quot;

[HKEY_LOCAL_MACHINE\SOFTWARE\Wow6432Node\JavaSoft\Prefs]
</pre></p>
<p><b>Update:</b><br />
Zukro notified in the comment box that you can try a faster way, I never tried this method but <u>many</u> notified that it works, no matter how weird it may sound <img src='http://s0.wp.com/wp-includes/images/smilies/icon_smile.gif' alt=':)' class='wp-smiley' />  </p>
<p>I quote Zukro&#8217;s comment directly</p>
<blockquote><p>
When there’s a pop up say JDK not found. just press ‘back’ button and then press again ‘next’ button.. look what happened!!!!!!!!!!!!!!
</p></blockquote>
<p>Well, there&#8217;s <em>magic</em> in that I presume <img src='http://s2.wp.com/wp-includes/images/smilies/icon_razz.gif' alt=':P' class='wp-smiley' /> </p>
<br />Filed under: <a href='http://codearetoy.wordpress.com/category/android/'>Android</a> Tagged: <a href='http://codearetoy.wordpress.com/tag/64bit/'>64bit</a>, <a href='http://codearetoy.wordpress.com/tag/android-2/'>android</a>, <a href='http://codearetoy.wordpress.com/tag/cannot-find/'>cannot find</a>, <a href='http://codearetoy.wordpress.com/tag/jdk/'>jdk</a>, <a href='http://codearetoy.wordpress.com/tag/sdk/'>sdk</a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gocomments/codearetoy.wordpress.com/136/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/comments/codearetoy.wordpress.com/136/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/godelicious/codearetoy.wordpress.com/136/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/delicious/codearetoy.wordpress.com/136/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gofacebook/codearetoy.wordpress.com/136/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/facebook/codearetoy.wordpress.com/136/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gotwitter/codearetoy.wordpress.com/136/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/twitter/codearetoy.wordpress.com/136/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gostumble/codearetoy.wordpress.com/136/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/stumble/codearetoy.wordpress.com/136/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/godigg/codearetoy.wordpress.com/136/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/digg/codearetoy.wordpress.com/136/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/goreddit/codearetoy.wordpress.com/136/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/reddit/codearetoy.wordpress.com/136/" /></a> <img alt="" border="0" src="http://stats.wordpress.com/b.gif?host=codearetoy.wordpress.com&amp;blog=6924327&amp;post=136&amp;subd=codearetoy&amp;ref=&amp;feed=1" width="1" height="1" />]]></content:encoded>
			<wfw:commentRss>http://codearetoy.wordpress.com/2010/12/23/jdk-not-found-on-installing-android-sdk/feed/</wfw:commentRss>
		<slash:comments>151</slash:comments>
		<georss:point>0.000000 0.000000</georss:point>
		<geo:lat>0.000000</geo:lat>
		<geo:long>0.000000</geo:long>
		<media:content url="http://1.gravatar.com/avatar/363cd1c0821ba1c0df74c5ee5f54dd17?s=96&#38;d=http%3A%2F%2Fs0.wp.com%2Fi%2Fmu.gif&#38;r=G" medium="image">
			<media:title type="html">Eru</media:title>
		</media:content>

		<media:content url="http://codearetoy.files.wordpress.com/2010/12/jdknotfound.jpg" medium="image">
			<media:title type="html">jdknotfound</media:title>
		</media:content>
	</item>
	</channel>
</rss>
