<?xml version="1.0" encoding="UTF-8"?>
<?xml-stylesheet type="text/xsl" media="screen" href="/~d/styles/rss2full.xsl"?><?xml-stylesheet type="text/css" media="screen" href="http://feeds.feedburner.com/~d/styles/itemcontent.css"?><rss 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:series="http://unfoldingneurons.com/" xmlns:feedburner="http://rssnamespace.org/feedburner/ext/1.0" version="2.0">

<channel>
	<title />
	
	<link>http://www.sajithmr.com</link>
	<description />
	<pubDate>Thu, 04 Jun 2009 04:31:56 +0000</pubDate>
	<generator>http://wordpress.org/?v=2.6.3</generator>
	<language>en</language>
			<atom10:link xmlns:atom10="http://www.w3.org/2005/Atom" rel="self" href="http://feeds.feedburner.com/sajithmr" type="application/rss+xml" /><feedburner:emailServiceId>sajithmr</feedburner:emailServiceId><feedburner:feedburnerHostname>http://feedburner.google.com</feedburner:feedburnerHostname><atom10:link xmlns:atom10="http://www.w3.org/2005/Atom" rel="hub" href="http://pubsubhubbub.appspot.com" /><item>
		<title>Mysql Table Editor</title>
		<link>http://feedproxy.google.com/~r/sajithmr/~3/2mWapca_s_g/</link>
		<comments>http://www.sajithmr.com/mysql-table-editor/#comments</comments>
		<pubDate>Thu, 04 Jun 2009 04:31:56 +0000</pubDate>
		<dc:creator>Sajith M.R</dc:creator>
		
		<category><![CDATA[php]]></category>

		<category><![CDATA[php source code]]></category>

		<category><![CDATA[code]]></category>

		<category><![CDATA[editor]]></category>

		<category><![CDATA[msql]]></category>

		<category><![CDATA[phpmyadmin]]></category>

		<category><![CDATA[query]]></category>

		<category><![CDATA[sql]]></category>

		<category><![CDATA[table]]></category>

		<guid isPermaLink="false">http://www.sajithmr.com/?p=439</guid>
		<description><![CDATA[
In a php project, if we get the requirement , we usually start design and database. But the data entry procedure is very hard. In this case PhpMyadmin is a good comfort. 
Here is another tool from phpguru.org , MySQL Table Editor. Using this library you can make your database table editable from your php code. 
You [...]<script type="text/javascript">SHARETHIS.addEntry({ title: "Mysql Table Editor", url: "http://www.sajithmr.com/mysql-table-editor/" });</script>]]></description>
			<content:encoded><![CDATA[<p><a href="http://www.sajithmr.com/wp-content/uploads/2009/06/mysql-table-editor.png"><img class="alignnone size-full wp-image-442" title="mysql-table-editor" src="http://www.sajithmr.com/wp-content/uploads/2009/06/mysql-table-editor.png" alt="" width="291" height="59" /></a></p>
<p>In a php project, if we get the requirement , we usually start design and database. But the data entry procedure is very hard. In this case PhpMyadmin is a good comfort. </p>
<p>Here is another tool from phpguru.org , MySQL Table Editor. Using this library you can make your database table editable from your php code. </p>
<p>You can  :</p>
<ol>
<li>Select the table to be displayed</li>
<li>decide which column should be hidden</li>
<li>Whether a column should be editable or not</li>
<li>Add advanced searching option</li>
<li>Download the table as csv format</li>
<li>Add pagination</li>
<li>Set alias display name for your column</li>
</ol>
<div>Download Library from: </div>
<div><a href="http://www.phpguru.org/downloads/TableEditor/TableEditor.zip">http://www.phpguru.org/downloads/TableEditor/TableEditor.zip</a></div>
<div></div>
<div>Documentation:</div>
<div><a href="http://www.phpguru.org/static/TableEditor.html">http://www.phpguru.org/static/TableEditor.html</a></div>
<div></div>
<div>Sample Code Below:</div>

<div class="wp_syntax"><div class="code"><pre class="php">&nbsp;
<span style="color: #000000; font-weight: bold;">&lt;?php</span>
<span style="color: #b1b100;">require_once</span><span style="color: #66cc66;">&#40;</span><span style="color: #ff0000;">'TableEditor.php'</span><span style="color: #66cc66;">&#41;</span>;
<span style="color: #808080; font-style: italic;">//database connection object </span>
<span style="color: #0000ff;">$db_conn</span> = <span style="color: #000066;">mysql_connect</span><span style="color: #66cc66;">&#40;</span><span style="color: #ff0000;">'localhost'</span>,<span style="color: #ff0000;">'root'</span>,<span style="color: #ff0000;">''</span><span style="color: #66cc66;">&#41;</span>;
<span style="color: #000066;">mysql_select_db</span><span style="color: #66cc66;">&#40;</span><span style="color: #ff0000;">'mydbname'</span><span style="color: #66cc66;">&#41;</span>; 
&nbsp;
&nbsp;
&nbsp;
&nbsp;
<span style="color: #808080; font-style: italic;">//select the table to be edited, here it is accounts</span>
<span style="color: #0000ff;">$editor</span> = <span style="color: #000000; font-weight: bold;">new</span> TableEditor<span style="color: #66cc66;">&#40;</span><span style="color: #0000ff;">$db_conn</span>, <span style="color: #ff0000;">'accounts'</span><span style="color: #66cc66;">&#41;</span>;
<span style="color: #808080; font-style: italic;">//I dont want to display id and password column</span>
<span style="color: #0000ff;">$editor</span>-&gt;<span style="color: #006600;">noDisplay</span><span style="color: #66cc66;">&#40;</span><span style="color: #ff0000;">'id'</span><span style="color: #66cc66;">&#41;</span>;
<span style="color: #0000ff;">$editor</span>-&gt;<span style="color: #006600;">noDisplay</span><span style="color: #66cc66;">&#40;</span><span style="color: #ff0000;">'password'</span><span style="color: #66cc66;">&#41;</span>;
<span style="color: #808080; font-style: italic;">//the email column should not be editable</span>
<span style="color: #0000ff;">$editor</span>-&gt;<span style="color: #006600;">noEdit</span><span style="color: #66cc66;">&#40;</span><span style="color: #ff0000;">'email'</span><span style="color: #66cc66;">&#41;</span>;
<span style="color: #808080; font-style: italic;">//set display name for column email and login</span>
<span style="color: #0000ff;">$editor</span>-&gt;<span style="color: #006600;">setDisplayNames</span><span style="color: #66cc66;">&#40;</span><span style="color: #000066;">array</span><span style="color: #66cc66;">&#40;</span><span style="color: #ff0000;">'email'</span>       =&gt; <span style="color: #ff0000;">'Email'</span>,
                              <span style="color: #ff0000;">'login'</span>     =&gt; <span style="color: #ff0000;">'Username'</span>
                              <span style="color: #66cc66;">&#41;</span><span style="color: #66cc66;">&#41;</span>;
<span style="color: #808080; font-style: italic;">//sort order of first name</span>
<span style="color: #0000ff;">$editor</span>-&gt;<span style="color: #006600;">setDefaultOrderby</span><span style="color: #66cc66;">&#40;</span><span style="color: #ff0000;">'namefirst'</span>, <span style="color: #cc66cc;">0</span><span style="color: #66cc66;">&#41;</span>;
<span style="color: #808080; font-style: italic;">//set which are the filed to be searchable</span>
<span style="color: #0000ff;">$editor</span>-&gt;<span style="color: #006600;">setConfig</span><span style="color: #66cc66;">&#40;</span><span style="color: #ff0000;">'searchableFields'</span>, <span style="color: #000066;">array</span><span style="color: #66cc66;">&#40;</span><span style="color: #ff0000;">'namefirst'</span>, <span style="color: #ff0000;">'namelast'</span>, <span style="color: #ff0000;">'email'</span><span style="color: #66cc66;">&#41;</span><span style="color: #66cc66;">&#41;</span>;
<span style="color: #808080; font-style: italic;">//can set the type of input field</span>
<span style="color: #0000ff;">$editor</span>-&gt;<span style="color: #006600;">setInputType</span><span style="color: #66cc66;">&#40;</span><span style="color: #ff0000;">'available'</span>, <span style="color: #ff0000;">'select'</span><span style="color: #66cc66;">&#41;</span>;
<span style="color: #808080; font-style: italic;">//finally display the editor window</span>
<span style="color: #0000ff;">$editor</span>-&gt;<span style="color: #006600;">display</span><span style="color: #66cc66;">&#40;</span><span style="color: #66cc66;">&#41;</span>;
<span style="color: #000000; font-weight: bold;">?&gt;</span></pre></div></div>

<p><a href="http://sharethis.com/item?&wp=2.6.3&amp;publisher=6df34e0a-4964-45e9-8c20-8c27435d139d&amp;title=Mysql+Table+Editor&amp;url=http%3A%2F%2Fwww.sajithmr.com%2Fmysql-table-editor%2F">ShareThis</a></p><img src="http://feeds.feedburner.com/~r/sajithmr/~4/2mWapca_s_g" height="1" width="1"/>]]></content:encoded>
			<wfw:commentRss>http://www.sajithmr.com/mysql-table-editor/feed/</wfw:commentRss>
		<feedburner:origLink>http://www.sajithmr.com/mysql-table-editor/</feedburner:origLink></item>
		<item>
		<title>XAJAX</title>
		<link>http://feedproxy.google.com/~r/sajithmr/~3/6mRkv8ynegE/</link>
		<comments>http://www.sajithmr.com/xajax/#comments</comments>
		<pubDate>Wed, 03 Jun 2009 16:00:24 +0000</pubDate>
		<dc:creator>Sajith M.R</dc:creator>
		
		<category><![CDATA[php]]></category>

		<category><![CDATA[php source code]]></category>

		<category><![CDATA[ajax]]></category>

		<category><![CDATA[call]]></category>

		<category><![CDATA[capitalize]]></category>

		<category><![CDATA[client]]></category>

		<category><![CDATA[function]]></category>

		<category><![CDATA[Javascript]]></category>

		<category><![CDATA[server]]></category>

		<category><![CDATA[xajax]]></category>

		<guid isPermaLink="false">http://www.sajithmr.com/?p=432</guid>
		<description><![CDATA[
Basically using xajax &#8220;You can directly call php functions from your javascript code&#8221;
Xajax will do the rest. 
For example, if you are going to write a javascript function Capitalize which captilaze your textbox content when you press a button.
Here is the pure html/javascript code for that:
=============================================
&#60;script&#62;
 function Capitalize()
 {
      var t = document.getElementById(&#8217;cap&#8217;).value;
      document.getElementById(&#8217;update&#8217;).innerHTML [...]<script type="text/javascript">SHARETHIS.addEntry({ title: "XAJAX", url: "http://www.sajithmr.com/xajax/" });</script>]]></description>
			<content:encoded><![CDATA[<p><a href="http://xajaxproject.org/" target="_blank"><img class="alignnone size-medium wp-image-433" title="xajax_logo" src="http://www.sajithmr.com/wp-content/uploads/2009/06/xajax_logo-300x179.png" alt="" width="300" height="179" /></a></p>
<p>Basically using xajax &#8220;You can directly call php functions from your javascript code&#8221;</p>
<p>Xajax will do the rest. </p>
<p>For example, if you are going to write a javascript function Capitalize which captilaze your textbox content when you press a button.</p>
<p>Here is the pure html/javascript code for that:</p>
<p>=============================================</p>
<p><strong><span style="color: #99cc00;">&lt;script&gt;</span></strong></p>
<p><span> </span><strong>function</strong> Capitalize()</p>
<p><span> </span>{</p>
<p>      var t = document.getElementById(&#8217;cap&#8217;).value;</p>
<p>      document.getElementById(&#8217;update&#8217;).innerHTML = t.toUpperCase() ;</p>
<p><span> </span>}</p>
<p><span style="color: #99cc00;"><strong>&lt;/script&gt;</strong></span></p>
<p> </p>
<p><span style="color: #0000ff;">&lt;input type=&#8221;text&#8221; id=&#8221;cap&#8221; name=&#8221;cap&#8221; /&gt;</span></p>
<p><span style="color: #0000ff;">&lt;input type=&#8221;button&#8221; id=&#8221;capbutton&#8221; value=&#8221;Capitalize&#8221; onclick=&#8221;Capitalize()&#8221; /&gt;</span></p>
<p><span style="color: #0000ff;">&lt;div id=&#8221;update&#8221;&gt;&lt;/div&gt;</span></p>
<p>==============================================</p>
<p>Now see the difference when we use xajax, we can write this Capitalize function in php code and can call from javascript.</p>
<p><strong>function</strong> Capitalize($value)</p>
<p>{</p>
<p>    $objResponse = new xajaxResponse();</p>
<p>    $objResponse-&gt;assign(&#8221;update&#8221;,&#8221;innerHTML&#8221;,strtoupper($value));</p>
<p>    return $objResponse;</p>
<p><span> </span></p>
<p>}</p>
<p>and you can call from your button&#8217;s onclick function:</p>
<p><span style="color: #ff6600;"> onclick=&#8221;xajax_Capitalize(document.getElementById(&#8217;cap&#8217;).value)&#8221; </span></p>
<p>Here the same functionality we moved from client to server. Thus the point is you can simply call all the functions you written in php (Server Side) from javascript code via onClick, onMouseOver or window.onLoad etc.</p>
<p>You can get the full source code of Capitalize example here:</p>
<p><a href="http://www.sajithmr.com/downloads/capitalize.zip">http://www.sajithmr.com/downloads/capitalize.zip</a></p>
<p>To download and for documentation go: </p>
<p><a href="http://xajaxproject.org/">http://xajaxproject.org/</a></p>
<p>Thanks</p>
<p>Sajith</p>
<p><a href="http://sharethis.com/item?&wp=2.6.3&amp;publisher=6df34e0a-4964-45e9-8c20-8c27435d139d&amp;title=XAJAX&amp;url=http%3A%2F%2Fwww.sajithmr.com%2Fxajax%2F">ShareThis</a></p><img src="http://feeds.feedburner.com/~r/sajithmr/~4/6mRkv8ynegE" height="1" width="1"/>]]></content:encoded>
			<wfw:commentRss>http://www.sajithmr.com/xajax/feed/</wfw:commentRss>
		<feedburner:origLink>http://www.sajithmr.com/xajax/</feedburner:origLink></item>
		<item>
		<title>JQuery - Play with html</title>
		<link>http://feedproxy.google.com/~r/sajithmr/~3/WE3ct16WqEk/</link>
		<comments>http://www.sajithmr.com/jquery-play-with-html/#comments</comments>
		<pubDate>Tue, 02 Jun 2009 23:23:00 +0000</pubDate>
		<dc:creator>Sajith M.R</dc:creator>
		
		<category><![CDATA[html]]></category>

		<category><![CDATA[webworld]]></category>

		<category><![CDATA[ajax]]></category>

		<category><![CDATA[Javascript]]></category>

		<category><![CDATA[jquery]]></category>

		<category><![CDATA[manipulation]]></category>

		<category><![CDATA[style]]></category>

		<guid isPermaLink="false">http://www.sajithmr.com/?p=430</guid>
		<description><![CDATA[
Start jquery for manipulating html file and execute javascript just like sql queries.
Simply pointer the dom object with a $  and manipulate with different built in function.
For example 
$(&#8221;p.neat&#8221;).addClass(&#8221;ohmy&#8221;).show(&#8221;slow&#8221;);
Don&#8217;t need to write javascript inside each node. It is like prototyping. Insted of adding an onClick=&#8221;function()&#8221; inside the node, jquery define the onclick function from the top [...]<script type="text/javascript">SHARETHIS.addEntry({ title: "JQuery - Play with html", url: "http://www.sajithmr.com/jquery-play-with-html/" });</script>]]></description>
			<content:encoded><![CDATA[<p><a href="http://www.sajithmr.com/wp-content/uploads/2009/06/jquery-logo.png"><img class="alignnone size-full wp-image-426" title="jquery-logo" src="http://www.sajithmr.com/wp-content/uploads/2009/06/jquery-logo.png" alt="" width="190" /></a></p>
<p>Start jquery for manipulating html file and execute javascript just like sql queries.</p>
<p>Simply pointer the dom object with a $  and manipulate with different built in function.</p>
<p>For example </p>
<p><span style="color: #008000;">$(&#8221;p.neat&#8221;).addClass(&#8221;ohmy&#8221;).show(&#8221;slow&#8221;);</span></p>
<p>Don&#8217;t need to write javascript inside each node. It is like prototyping. Insted of adding an onClick=&#8221;function()&#8221; inside the node, jquery define the onclick function from the top level. Your html code will be clean and tidy. If CSS removes all the styling bits, Jquery removes all the javascript bits from html.</p>
<p>You can remap every default action from an html object.</p>
<p>For example normally when you click a link  (&lt;a&gt; tag) it navigate you through the href value. But if you add the jquery code as below:</p>
<pre>$(document).ready(function(){
   <strong>$("a").click(function(event){
     alert("Thanks for clicking!");
   });</strong>
 })</pre>
<pre>It adds a thanks alert for every click in links.</pre>
<pre>and if you add :</pre>
<pre>
<pre><strong>event.preventDefault();</strong></pre>
<pre><strong>It prevents the default action also.</strong></pre>
<pre><strong>You can go to JQuery homepage: <a href="http://jquery.com/">http://jquery.com/</a></strong></pre>
<pre><strong>and can learn more about JQuery.</strong></pre>
<pre><strong>The intention of this post was not an explaination about jquery, but some addition website which develops addons based on jquery.</strong></pre>
<pre><strong>Those are:</strong></pre>
<pre><a href="http://jqueryui.com/">http://jqueryui.com/</a></pre>
</pre>
<pre>
<pre><strong><a href="http://jquerystyle.com/">jquerystyle.com/</a>
</strong></pre>
<pre><strong><a href="http://visualjquery.com/">visualjquery.com/</a>
</strong></pre>
<pre><strong><a href="http://15daysofjquery.com/">http://15daysofjquery.com/</a>
</strong></pre>
<pre><strong><a href="http://usejquery.com/">http://usejquery.com/</a>
</strong></pre>
<pre><strong>
</strong></pre>
<pre><strong><a href="http://blog.themeforest.net/?s=jquery">http://blog.themeforest.net/?s=jquery</a>
</strong></pre>
<pre><strong>Comment me if you know any other jquery websites.</strong></pre>
<pre><strong>Logging out</strong></pre>
<pre><strong>-Sajith</strong></pre>
<pre><strong></strong></pre>
</pre>
<p><a href="http://sharethis.com/item?&wp=2.6.3&amp;publisher=6df34e0a-4964-45e9-8c20-8c27435d139d&amp;title=JQuery+-+Play+with+html&amp;url=http%3A%2F%2Fwww.sajithmr.com%2Fjquery-play-with-html%2F">ShareThis</a></p><img src="http://feeds.feedburner.com/~r/sajithmr/~4/WE3ct16WqEk" height="1" width="1"/>]]></content:encoded>
			<wfw:commentRss>http://www.sajithmr.com/jquery-play-with-html/feed/</wfw:commentRss>
		<feedburner:origLink>http://www.sajithmr.com/jquery-play-with-html/</feedburner:origLink></item>
		<item>
		<title>Symfony V/S Codeigniter</title>
		<link>http://feedproxy.google.com/~r/sajithmr/~3/DQkvEiwTlAw/</link>
		<comments>http://www.sajithmr.com/symfony-vs-codeigniter/#comments</comments>
		<pubDate>Tue, 02 Jun 2009 12:55:58 +0000</pubDate>
		<dc:creator>Sajith M.R</dc:creator>
		
		<category><![CDATA[php]]></category>

		<category><![CDATA[webworld]]></category>

		<category><![CDATA[codeigniter]]></category>

		<category><![CDATA[controller]]></category>

		<category><![CDATA[development]]></category>

		<category><![CDATA[framework]]></category>

		<category><![CDATA[model]]></category>

		<category><![CDATA[mvc]]></category>

		<category><![CDATA[symfony]]></category>

		<category><![CDATA[view]]></category>

		<guid isPermaLink="false">http://www.sajithmr.com/?p=409</guid>
		<description><![CDATA[     V/S     
I have developed more than 7 web projects using Symfony framework. Mobshare.in, Amvizone.com, Campaignmanger.in , Movieonline.in etc are some of the websites. But for the past 5 months my developement is in Codeigniter. It is very very lighter than Symfony and has almost all the features of Symfony. Both are MVC [...]<script type="text/javascript">SHARETHIS.addEntry({ title: "Symfony V/S Codeigniter", url: "http://www.sajithmr.com/symfony-vs-codeigniter/" });</script>]]></description>
			<content:encoded><![CDATA[<p><img src="http://www.symfony-project.org/images/symfony_logo.gif" alt="symfony Web PHP framework" />     V/S     <img src="http://codeigniter.com/images/design/ci_logo2.gif" alt="CodeIgniter" width="170" height="73" /></p>
<p>I have developed more than 7 web projects using <a href="http://www.symfony-project.org/" target="_blank">Symfony</a> framework. Mobshare.in, Amvizone.com, Campaignmanger.in , Movieonline.in etc are some of the websites. But for the past 5 months my developement is in <a href="http://codeigniter.com/" target="_blank">Codeigniter</a>. It is very very lighter than Symfony and has almost all the features of Symfony. Both are MVC framework. But symfony has 4 layer while the latter has only two. Symfony uses modules (extra layer) for Controllers. But Codeigniter eleminates  that layer. It is similer to Ruby on Rails. </p>
<p>Symfony uses naming convention to map controller and view. For example controller index need indexSuccess.php file as view or indexError.php as error. But in Codeigniter, we have to specify the view manually from the controller</p>
<p>$this-&gt;load-&gt;view(&#8217;myview.php&#8217;); </p>
<p>Symfony has command line tool to develop all the model classes. One thing you have to do is specify the scheme.yml file. But in Codeigniter, you have to make model classes from the scratch. However a lot of database operation libraries are available with it to make the coding life easier. Since we have to load each libraries manually, Codeigniter gaurantee the speed of execution. (Autoloading option is there, but in most of the case we can eliminate unwanted libraries from autoloading - just like execute on the fly)</p>
<p>There is no built in ajax and javascript function in codeigniter. But you can add it as plugin. Like Symfony it also has cache management, logs, testing, helpers, url rules, documentator, scaffolding etc</p>
<p>Codeigniter has a simple folder hierachy that everybody can understand and very less learning curve than Symfony. </p>
<p> </p>
<p>Go through this link if you wanna know about all the features of codeigniter : <a href="http://codeigniter.com/user_guide/toc.html">http://codeigniter.com/user_guide/toc.html</a></p>
<p>I found another interesting comparison of these two in : <a href="http://www.devtrench.com/codeigniter-vs-symfony/">http://www.devtrench.com/codeigniter-vs-symfony/</a></p>
<p><a href="http://sharethis.com/item?&wp=2.6.3&amp;publisher=6df34e0a-4964-45e9-8c20-8c27435d139d&amp;title=Symfony+V%2FS+Codeigniter&amp;url=http%3A%2F%2Fwww.sajithmr.com%2Fsymfony-vs-codeigniter%2F">ShareThis</a></p><img src="http://feeds.feedburner.com/~r/sajithmr/~4/DQkvEiwTlAw" height="1" width="1"/>]]></content:encoded>
			<wfw:commentRss>http://www.sajithmr.com/symfony-vs-codeigniter/feed/</wfw:commentRss>
		<feedburner:origLink>http://www.sajithmr.com/symfony-vs-codeigniter/</feedburner:origLink></item>
		<item>
		<title>Check website in different browsers</title>
		<link>http://feedproxy.google.com/~r/sajithmr/~3/n9QXN5v9ZAQ/</link>
		<comments>http://www.sajithmr.com/check-website-in-different-browsers/#comments</comments>
		<pubDate>Sun, 22 Mar 2009 01:01:28 +0000</pubDate>
		<dc:creator>Sajith M.R</dc:creator>
		
		<category><![CDATA[php]]></category>

		<category><![CDATA[alignment]]></category>

		<category><![CDATA[Browser]]></category>

		<category><![CDATA[design]]></category>

		<category><![CDATA[explorer]]></category>

		<category><![CDATA[ie]]></category>

		<category><![CDATA[internet]]></category>

		<category><![CDATA[test]]></category>

		<category><![CDATA[website]]></category>

		<guid isPermaLink="false">http://www.sajithmr.com/?p=396</guid>
		<description><![CDATA[Last day i got a good website in which we can test the rendering of a particular website through different versions of interenet explorer. From a designer&#8217;s view, internet explorer is a life long head ache due its different alignment, floating problem, iframe problem, script execution problem and all.

Here , http://ipinfo.info/netrenderer/index.php , You can check [...]<script type="text/javascript">SHARETHIS.addEntry({ title: "Check website in different browsers", url: "http://www.sajithmr.com/check-website-in-different-browsers/" });</script>]]></description>
			<content:encoded><![CDATA[<p>Last day i got a good website in which we can test the rendering of a particular website through different versions of interenet explorer. From a designer&#8217;s view, internet explorer is a life long head ache due its different alignment, floating problem, iframe problem, script execution problem and all.</p>
<p><a href="http://www.sajithmr.com/wp-content/uploads/2009/03/epath-ie-comparison.jpg"><img class="alignnone size-full wp-image-398" title="epath-ie-comparison" src="http://www.sajithmr.com/wp-content/uploads/2009/03/epath-ie-comparison.jpg" alt="" width="200" height="100" /></a></p>
<p>Here , <a href="http://ipinfo.info/netrenderer/index.php" target="_blank">http://ipinfo.info/netrenderer/index.php</a> , You can check your website through different internet explorer version. It will be useful for linux developers to test the website via internet explorer.No need to boot windows operating system.</p>
<p><a href="http://sharethis.com/item?&wp=2.6.3&amp;publisher=6df34e0a-4964-45e9-8c20-8c27435d139d&amp;title=Check+website+in+different+browsers&amp;url=http%3A%2F%2Fwww.sajithmr.com%2Fcheck-website-in-different-browsers%2F">ShareThis</a></p><img src="http://feeds.feedburner.com/~r/sajithmr/~4/n9QXN5v9ZAQ" height="1" width="1"/>]]></content:encoded>
			<wfw:commentRss>http://www.sajithmr.com/check-website-in-different-browsers/feed/</wfw:commentRss>
		<feedburner:origLink>http://www.sajithmr.com/check-website-in-different-browsers/</feedburner:origLink></item>
		<item>
		<title>Save your passwords and secured files using TrueCrypt</title>
		<link>http://feedproxy.google.com/~r/sajithmr/~3/evaqU6naZDk/</link>
		<comments>http://www.sajithmr.com/save-your-passwords-and-secured-files-using-truecrypt/#comments</comments>
		<pubDate>Thu, 19 Mar 2009 21:35:14 +0000</pubDate>
		<dc:creator>Sajith M.R</dc:creator>
		
		<category><![CDATA[general]]></category>

		<category><![CDATA[file]]></category>

		<category><![CDATA[folder]]></category>

		<category><![CDATA[google document]]></category>

		<category><![CDATA[hack]]></category>

		<category><![CDATA[password]]></category>

		<category><![CDATA[save]]></category>

		<category><![CDATA[secure]]></category>

		<category><![CDATA[truecrypt]]></category>

		<guid isPermaLink="false">http://www.sajithmr.com/?p=393</guid>
		<description><![CDATA[Hello programmer,
If you are a programmer, you  might experience on saving your different ftp , email , website credintals (usernames and passwords) . Someone uses google documents for saving passwords. Some use email itself as a password storing medium. To be more secured, you have to save your passwords in you local machine rather than [...]<script type="text/javascript">SHARETHIS.addEntry({ title: "Save your passwords and secured files using TrueCrypt", url: "http://www.sajithmr.com/save-your-passwords-and-secured-files-using-truecrypt/" });</script>]]></description>
			<content:encoded><![CDATA[<p>Hello programmer,</p>
<p>If you are a programmer, you  might experience on saving your different ftp , email , website credintals (usernames and passwords) . Someone uses google documents for saving passwords. Some use email itself as a password storing medium. To be more secured, you have to save your passwords in you local machine rather than putting them into any other 3rd party online medium.</p>
<p><a href="http://www.sajithmr.com/wp-content/uploads/2009/03/children.jpg"><img class="alignnone size-full wp-image-394" title="children" src="http://www.sajithmr.com/wp-content/uploads/2009/03/children.jpg" alt="" width="423" height="284" /></a></p>
<p><a title="TrueCrypt" href="http://www.truecrypt.org/" target="_blank">Truecrypt</a> is an open source software for saving secured data (Folders and files). It is available for most of the operating systems (Windows, Linux, Mac etc). The advantage of TrueCrypt is, it creates a seperate partition or storage device as a normal USB memory stick. When you mount the partition it asks for a secured password. You can save your personal and secret files inside this partition. You can creates more than on partition using this software. So you can seperate your data files if you needed.</p>
<p>Here is the website url: <a href="http://www.truecrypt.org/">http://www.truecrypt.org/</a></p>
<p>It also provides two level security. It adds a hidden file inside another secured file, so that when an adversary forces you to reveal your password, or forces you to open the secured folder, there is no chance for them to view the hidden encrypted file.</p>
<p>For more details visit:</p>
<p><a href="http://www.truecrypt.org/hiddenvolume.php" target="_blank">http://www.truecrypt.org/hiddenvolume.php</a></p>
<p><a href="http://sharethis.com/item?&wp=2.6.3&amp;publisher=6df34e0a-4964-45e9-8c20-8c27435d139d&amp;title=Save+your+passwords+and+secured+files+using+TrueCrypt&amp;url=http%3A%2F%2Fwww.sajithmr.com%2Fsave-your-passwords-and-secured-files-using-truecrypt%2F">ShareThis</a></p><img src="http://feeds.feedburner.com/~r/sajithmr/~4/evaqU6naZDk" height="1" width="1"/>]]></content:encoded>
			<wfw:commentRss>http://www.sajithmr.com/save-your-passwords-and-secured-files-using-truecrypt/feed/</wfw:commentRss>
		<feedburner:origLink>http://www.sajithmr.com/save-your-passwords-and-secured-files-using-truecrypt/</feedburner:origLink></item>
		<item>
		<title>Google Street View For UK</title>
		<link>http://feedproxy.google.com/~r/sajithmr/~3/kfksu6czZLg/</link>
		<comments>http://www.sajithmr.com/google-street-view-for-uk/#comments</comments>
		<pubDate>Thu, 19 Mar 2009 21:03:08 +0000</pubDate>
		<dc:creator>Sajith M.R</dc:creator>
		
		<category><![CDATA[general]]></category>

		<category><![CDATA[google]]></category>

		<category><![CDATA[london]]></category>

		<category><![CDATA[maps]]></category>

		<category><![CDATA[street]]></category>

		<category><![CDATA[street view]]></category>

		<category><![CDATA[view]]></category>

		<guid isPermaLink="false">http://www.sajithmr.com/?p=387</guid>
		<description><![CDATA[Google enabled its street view feature for  25 UK cities including london. Google team arrived with 360 degree camera and took photographs of different streets. Today I found my living place in google street view.

(Google Street View: Hermit Road,Canning Town, London)

(Browning Road, East Ham, London)
<script type="text/javascript">SHARETHIS.addEntry({ title: "Google Street View For UK", url: "http://www.sajithmr.com/google-street-view-for-uk/" });</script>]]></description>
			<content:encoded><![CDATA[<p>Google enabled its street view feature for  25 UK cities including london. Google team arrived with 360 degree camera and took photographs of different streets. Today I found my living place in google street view.</p>
<p><a href="http://www.sajithmr.com/wp-content/uploads/2009/03/snapshot1.jpg"><img class="alignnone size-full wp-image-388" title="Google Street View UK" src="http://www.sajithmr.com/wp-content/uploads/2009/03/snapshot1.jpg" alt="" width="565" height="352" /></a></p>
<p>(Google Street View: Hermit Road,Canning Town, London)</p>
<p><a href="http://www.sajithmr.com/wp-content/uploads/2009/03/snapshot2.jpg"><img class="alignnone size-full wp-image-389" title="Google Street View London" src="http://www.sajithmr.com/wp-content/uploads/2009/03/snapshot2.jpg" alt="" width="559" height="348" /></a></p>
<p>(Browning Road, East Ham, London)</p>
<p><a href="http://sharethis.com/item?&wp=2.6.3&amp;publisher=6df34e0a-4964-45e9-8c20-8c27435d139d&amp;title=Google+Street+View+For+UK&amp;url=http%3A%2F%2Fwww.sajithmr.com%2Fgoogle-street-view-for-uk%2F">ShareThis</a></p><img src="http://feeds.feedburner.com/~r/sajithmr/~4/kfksu6czZLg" height="1" width="1"/>]]></content:encoded>
			<wfw:commentRss>http://www.sajithmr.com/google-street-view-for-uk/feed/</wfw:commentRss>
		<feedburner:origLink>http://www.sajithmr.com/google-street-view-for-uk/</feedburner:origLink></item>
		<item>
		<title>How the new feature in Orkut (My Events) ruined an event</title>
		<link>http://feedproxy.google.com/~r/sajithmr/~3/InSppD-iEvY/</link>
		<comments>http://www.sajithmr.com/how-the-new-feature-in-orkut-my-events-ruined-an-event/#comments</comments>
		<pubDate>Tue, 02 Dec 2008 04:20:43 +0000</pubDate>
		<dc:creator>Sajith M.R</dc:creator>
		
		<category><![CDATA[general]]></category>

		<category><![CDATA[application]]></category>

		<category><![CDATA[barcamp]]></category>

		<category><![CDATA[event]]></category>

		<category><![CDATA[funny]]></category>

		<category><![CDATA[kerala]]></category>

		<category><![CDATA[orkut]]></category>

		<category><![CDATA[ruined]]></category>

		<guid isPermaLink="false">http://www.sajithmr.com/?p=379</guid>
		<description><![CDATA[Recently we decided to organize the 3rd barcamp of kerala on 7th December 2008. The cheif organanizers Kenney Jacob and Anand Subramanian started promotions and publicity for the event. They stated mailing, sending sms and further online promotions. Our greate, romantic, family , friends Orkut Community introduced a new feature called  My Events, in which [...]<script type="text/javascript">SHARETHIS.addEntry({ title: "How the new feature in Orkut (My Events) ruined an event", url: "http://www.sajithmr.com/how-the-new-feature-in-orkut-my-events-ruined-an-event/" });</script>]]></description>
			<content:encoded><![CDATA[<p>Recently we decided to organize the <a href="http://www.barcampkerala.org/blog/" target="_blank">3rd barcamp of kerala </a>on 7th December 2008. The cheif organanizers <a href="http://www.kenneyjacob.com">Kenney Jacob</a> and <a href="http://www.theanand.com/blog/" target="_blank">Anand Subramanian</a> started promotions and publicity for the event. They stated mailing, sending sms and further online promotions. Our greate, romantic, family , friends Orkut Community introduced a new feature called  <a href="http://www.orkut.co.in/Main#Events.aspx" target="_blank">My Events</a>, in which you can create and event and inform your friends which will remind them at the day of the event.</p>
<p>Very enthusiastic young chap Mr Anand created an event in orkut and invited all the tech savy friends into it. All accepted the event and saved in their orkut. The real story started when anand , by mistake , deleted the event in orkut. It is just a removal of the event node. But the funny thing happened is,  everybody got this message in their email   is :</p>
<p><em><strong>&#8220;The Event Barcamp Kerala - 3 has been Cancelled&#8221;</strong></em></p>
<p>Don&#8217;t worry Friends, Today is  dec 2nd , we have long 5 days to go for the real <a href="http://www.barcampkerala.org/blog/" target="_blank">barcamp</a>.  Anyway it is going to happen @ the rite time as announced &#8230;</p>
<p><a href="http://www.barcampkerala.org/blog/" target="_blank"><img class="alignnone" src="http://www.barcampkerala.org/blog/barcamp1.jpg" alt="" width="476" height="150" /></a></p>
<p>Cheers</p>
<p>Sajith</p>
<p><a href="http://sharethis.com/item?&wp=2.6.3&amp;publisher=6df34e0a-4964-45e9-8c20-8c27435d139d&amp;title=How+the+new+feature+in+Orkut+%28My+Events%29+ruined+an+event&amp;url=http%3A%2F%2Fwww.sajithmr.com%2Fhow-the-new-feature-in-orkut-my-events-ruined-an-event%2F">ShareThis</a></p><img src="http://feeds.feedburner.com/~r/sajithmr/~4/InSppD-iEvY" height="1" width="1"/>]]></content:encoded>
			<wfw:commentRss>http://www.sajithmr.com/how-the-new-feature-in-orkut-my-events-ruined-an-event/feed/</wfw:commentRss>
		<feedburner:origLink>http://www.sajithmr.com/how-the-new-feature-in-orkut-my-events-ruined-an-event/</feedburner:origLink></item>
		<item>
		<title>The Project Team - Funny Quotes</title>
		<link>http://feedproxy.google.com/~r/sajithmr/~3/WTPjKvIJTIw/</link>
		<comments>http://www.sajithmr.com/the-project-team-funny-quotes/#comments</comments>
		<pubDate>Sun, 30 Nov 2008 14:28:21 +0000</pubDate>
		<dc:creator>Sajith M.R</dc:creator>
		
		<category><![CDATA[general]]></category>

		<category><![CDATA[client]]></category>

		<category><![CDATA[documentation]]></category>

		<category><![CDATA[forward]]></category>

		<category><![CDATA[funny]]></category>

		<category><![CDATA[mail]]></category>

		<category><![CDATA[management]]></category>

		<category><![CDATA[marketting]]></category>

		<category><![CDATA[programmer]]></category>

		<category><![CDATA[project]]></category>

		<category><![CDATA[quality]]></category>

		<category><![CDATA[tester]]></category>

		<guid isPermaLink="false">http://www.sajithmr.com/?p=377</guid>
		<description><![CDATA[Recently some quotes struck my mind from a forwared email. It is basically , i think, 100% true , even though described in as a  funny way.
See:

Project Manager is a Person who thinks nine Women can deliver a baby
in One  month
Developer is a Person who thinks it will take 18 months to deliver a [...]<script type="text/javascript">SHARETHIS.addEntry({ title: "The Project Team - Funny Quotes", url: "http://www.sajithmr.com/the-project-team-funny-quotes/" });</script>]]></description>
			<content:encoded><![CDATA[<p>Recently some quotes struck my mind from a forwared email. It is basically , i think, 100% true , even though described in as a  funny way.</p>
<p>See:</p>
<ol>
<li><strong>Project Manager</strong> is a Person who thinks nine Women can deliver a baby<br />
in One  month</li>
<li><strong>Developer</strong> is a Person who thinks it will take 18 months to deliver a Baby.</li>
<li><strong>Onsite Coordinator </strong>is one who thinks single Woman can deliver nine<br />
babies in  one month</li>
<li><strong>Client</strong> is the one who doesn`t know why he wants a baby</li>
<li><strong>Marketing Manager</strong> is a person who thinks he can deliver a baby even<br />
if no  <span id="lw_1228054037_0">man  and woman</span> are available</li>
<li><strong>Resource Optimization Team</strong> thinks they don`t Need a man or<br />
woman;They`ll  produce a child with zero resources</li>
<li><strong>Documentation Team</strong> thinks they don`t care whether the child is<br />
delivered,  they`ll just document 9 months.</li>
<li><strong>Quality <span id="lw_1228054037_1">Auditor</span> </strong> is the person who is never happy with the PROCESS to<br />
produce a baby.And  lastly&#8230;&#8230;</li>
<li><strong>Tester </strong>is a person who always tells his wife that this is not the Right baby</li>
</ol>
<p><span style="color: #c0c0c0;"><em>Courtesy: Some Forwared Email</em></span></p>
<p><a href="http://sharethis.com/item?&wp=2.6.3&amp;publisher=6df34e0a-4964-45e9-8c20-8c27435d139d&amp;title=The+Project+Team+-+Funny+Quotes&amp;url=http%3A%2F%2Fwww.sajithmr.com%2Fthe-project-team-funny-quotes%2F">ShareThis</a></p><img src="http://feeds.feedburner.com/~r/sajithmr/~4/WTPjKvIJTIw" height="1" width="1"/>]]></content:encoded>
			<wfw:commentRss>http://www.sajithmr.com/the-project-team-funny-quotes/feed/</wfw:commentRss>
		<feedburner:origLink>http://www.sajithmr.com/the-project-team-funny-quotes/</feedburner:origLink></item>
		<item>
		<title>Plugin Age</title>
		<link>http://feedproxy.google.com/~r/sajithmr/~3/ZECZVbAWZ8g/</link>
		<comments>http://www.sajithmr.com/plugin-age/#comments</comments>
		<pubDate>Wed, 19 Nov 2008 13:05:20 +0000</pubDate>
		<dc:creator>Sajith M.R</dc:creator>
		
		<category><![CDATA[php]]></category>

		<guid isPermaLink="false">http://www.sajithmr.com/?p=374</guid>
		<description><![CDATA[
We know Stone Age, Iron Age , Bronze Age . My friend  Binny started new Technical Age named Plugin Age. He announced this week as a plugin age. From Monday  (17-11-2008) to Friday (21-11-2008) he projected to release each plugin a day. He already released his two  wordpress plugins  Eventr &#38; Autofields Wordpress plugin
Lets [...]<script type="text/javascript">SHARETHIS.addEntry({ title: "Plugin Age", url: "http://www.sajithmr.com/plugin-age/" });</script>]]></description>
			<content:encoded><![CDATA[<p><a href="http://www.sajithmr.com/wp-content/uploads/2008/11/vilcus-plug-it-in.jpg"><img class="alignnone size-full wp-image-375" title="vilcus-plug-it-in" src="http://www.sajithmr.com/wp-content/uploads/2008/11/vilcus-plug-it-in.jpg" alt="" width="372" height="533" /></a></p>
<p>We know <a href="http://en.wikipedia.org/wik/Stone_Age" target="_blank">Stone Age</a>, <a href="http://en.wikipedia.org/wiki/Iron_Age" target="_blank">Iron Age</a> , <a href="http://en.wikipedia.org/wiki/Bronze_Age" target="_blank">Bronze Age</a> . My friend  <a href="http://binnyva.com/" target="_blank">Binny</a> started new Technical Age named Plugin Age. He announced this week as a plugin age. From Monday  (17-11-2008) to Friday (21-11-2008) he projected to release each plugin a day. He already released his two  wordpress plugins  <a href="http://www.bin-co.com/blog/2008/11/eventr-wordpress-plugin/" target="_blank">Eventr</a> &amp; <a href="http://www.bin-co.com/blog/2008/11/autofields-wordpress-plugin/" target="_blank">Autofields Wordpress plugin</a></p>
<p>Lets wait for the other three endearing plugins from Binny. Good luck Binny<a href="http://www.sajithmr.com/wp-content/uploads/2008/11/vilcus-plug-it-in.jpg"><br />
</a></p>
<p>Regards</p>
<p>Sajith M.R</p>
<p><a href="http://sharethis.com/item?&wp=2.6.3&amp;publisher=6df34e0a-4964-45e9-8c20-8c27435d139d&amp;title=Plugin+Age&amp;url=http%3A%2F%2Fwww.sajithmr.com%2Fplugin-age%2F">ShareThis</a></p><img src="http://feeds.feedburner.com/~r/sajithmr/~4/ZECZVbAWZ8g" height="1" width="1"/>]]></content:encoded>
			<wfw:commentRss>http://www.sajithmr.com/plugin-age/feed/</wfw:commentRss>
		<feedburner:origLink>http://www.sajithmr.com/plugin-age/</feedburner:origLink></item>
	</channel>
</rss>
