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

<channel>
	<title>PRANJOL</title>
	<atom:link href="http://pranjol.com/feed/" rel="self" type="application/rss+xml" />
	<link>http://pranjol.com</link>
	<description>Own to Share : Simple and light life</description>
	<lastBuildDate>Wed, 15 Feb 2012 06:30:17 +0000</lastBuildDate>
	<language>en</language>
	<sy:updatePeriod>hourly</sy:updatePeriod>
	<sy:updateFrequency>1</sy:updateFrequency>
	<generator>http://wordpress.org/?v=3.0.1</generator>
		<item>
		<title>Drupal6 populate CCK select field</title>
		<link>http://pranjol.com/2012/02/15/drupal6-populate-cck-select-field/</link>
		<comments>http://pranjol.com/2012/02/15/drupal6-populate-cck-select-field/#comments</comments>
		<pubDate>Wed, 15 Feb 2012 06:23:20 +0000</pubDate>
		<dc:creator>Safique Ahmed Faruque</dc:creator>
				<category><![CDATA[Uncategorized]]></category>

		<guid isPermaLink="false">http://pranjol.com/?p=262</guid>
		<description><![CDATA[In drupal6, if you have a select element created by CCK, it is defficult to populate it in programmatic way. Things to be observed, the #type of the element is not &#8220;select&#8221;, it is &#8220;optionwidgets_select&#8221;. it can&#8217;t be populated in form_alter. you need &#8230; <a href="http://pranjol.com/2012/02/15/drupal6-populate-cck-select-field/">Continue reading <span class="meta-nav">&#8594;</span></a>]]></description>
			<content:encoded><![CDATA[<p>In drupal6, if you have a select element created by CCK, it is defficult to populate it in programmatic way. Things to be observed, the #type of the element is not &#8220;select&#8221;, it is &#8220;optionwidgets_select&#8221;. it can&#8217;t be populated in form_alter. you need to populate it after_build function.<br />
<code><br />
$form['#after_build'][] = '_anything_after_build';<br />
function  _anything_after_build($form, &amp;$form_state) {<br />
$form['field_device_list']['value']['#options'] = $device_list; //here, field_device_list is the name of the element and $device_list is the array containing the options<br />
}<br />
</code></p>
<p>Keep selecting the value is most tricky. You need to add the following lines<br />
<code><br />
// Let's check the field_device_list exist and default value is not already set.<br />
if ( isset($form['field_device_list']) &#038;&#038; empty($form['field_device_list']['value']['#value']) ) {<br />
$form['field_device_list']['value']['#value'] = (int)$default_device_id;      }<br />
</code></p>
]]></content:encoded>
			<wfw:commentRss>http://pranjol.com/2012/02/15/drupal6-populate-cck-select-field/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>Social Media Marketing</title>
		<link>http://pranjol.com/2012/02/10/social-media-marketing/</link>
		<comments>http://pranjol.com/2012/02/10/social-media-marketing/#comments</comments>
		<pubDate>Fri, 10 Feb 2012 18:06:05 +0000</pubDate>
		<dc:creator>Safique Ahmed Faruque</dc:creator>
				<category><![CDATA[Uncategorized]]></category>

		<guid isPermaLink="false">http://pranjol.com/?p=260</guid>
		<description><![CDATA[I got so many things on this topic from http://www.hausmanmarketingletter.com/. It is a great site. You will be able to know how your social media marketing will be more efficient. I&#8217;ll definitely write much about this later.]]></description>
			<content:encoded><![CDATA[<p>I got so many things on this topic from <a href="http://www.hausmanmarketingletter.com/">http://www.hausmanmarketingletter.com/</a>. It is a great site. You will be able to know how your social media marketing will be more efficient. I&#8217;ll definitely write much about this later.</p>
]]></content:encoded>
			<wfw:commentRss>http://pranjol.com/2012/02/10/social-media-marketing/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>Website Designed by me in a row</title>
		<link>http://pranjol.com/2012/01/15/website-designed-by-me-in-a-row/</link>
		<comments>http://pranjol.com/2012/01/15/website-designed-by-me-in-a-row/#comments</comments>
		<pubDate>Sun, 15 Jan 2012 06:15:15 +0000</pubDate>
		<dc:creator>Safique Ahmed Faruque</dc:creator>
				<category><![CDATA[Uncategorized]]></category>

		<guid isPermaLink="false">http://pranjol.com/?p=225</guid>
		<description><![CDATA[I have designed some websites by Photoshop. I keep them in Flickr. Here I am stacking those.]]></description>
			<content:encoded><![CDATA[<p>I have designed some websites by Photoshop. I keep them in Flickr. <a href="http://www.flickr.com/photos/provat34/sets/72157628330242863/" target="_blank">Here I am stacking those.</a></p>
]]></content:encoded>
			<wfw:commentRss>http://pranjol.com/2012/01/15/website-designed-by-me-in-a-row/feed/</wfw:commentRss>
		<slash:comments>1</slash:comments>
		</item>
		<item>
		<title>jQuery makeForm Plugin</title>
		<link>http://pranjol.com/2012/01/04/jquery-makeform-plugin/</link>
		<comments>http://pranjol.com/2012/01/04/jquery-makeform-plugin/#comments</comments>
		<pubDate>Wed, 04 Jan 2012 05:31:01 +0000</pubDate>
		<dc:creator>Safique Ahmed Faruque</dc:creator>
				<category><![CDATA[Uncategorized]]></category>

		<guid isPermaLink="false">http://pranjol.com/?p=203</guid>
		<description><![CDATA[It is a common need of developers to design HTML &#60;select&#62; element unlike default design by browser. Also need to keep the functionality same.  As all you know there are so many plugins do the same. So I&#8217;ve made a &#8230; <a href="http://pranjol.com/2012/01/04/jquery-makeform-plugin/">Continue reading <span class="meta-nav">&#8594;</span></a>]]></description>
			<content:encoded><![CDATA[<p><a href="http://pranjol.com/wp-content/uploads/2012/01/makeForm-preview.jpg"><img class="alignnone size-full wp-image-205" title="makeForm preview" src="http://pranjol.com/wp-content/uploads/2012/01/makeForm-preview.jpg" alt="Preview of makeForm plugin" width="366" height="300" /></a><br />
It is a common need of developers to design HTML &lt;select&gt; element unlike default design by browser. Also need to keep the functionality same.  As all you know there are so many plugins do the same. So I&#8217;ve made a variant of the plugin. Can&#8217;t understand?? see the <a title="makeForm demo" href="http://pranjol.com/makeForm" target="_blank">demo</a> | <a href="http://www.box.com/s/6ik3kbbg41o02jrb626p" target="_blank">download</a> | <a href="https://github.com/safaruque/makeForm" target="_blank">github</a></p>
<p>It(makeForm plugin) takes a select box and make a list along with a textarea to comment and a submit button. After clicking on the submit button it calls a callback function specified by user(coder). This callback function have two parameters, one is the comment text and other is the text of selected option.</p>
]]></content:encoded>
			<wfw:commentRss>http://pranjol.com/2012/01/04/jquery-makeform-plugin/feed/</wfw:commentRss>
		<slash:comments>7</slash:comments>
		</item>
		<item>
		<title>Get rid of one of the most common facebook spam</title>
		<link>http://pranjol.com/2011/12/26/get-rid-of-one-of-the-most-common-facebook-spam/</link>
		<comments>http://pranjol.com/2011/12/26/get-rid-of-one-of-the-most-common-facebook-spam/#comments</comments>
		<pubDate>Mon, 26 Dec 2011 05:44:51 +0000</pubDate>
		<dc:creator>Safique Ahmed Faruque</dc:creator>
				<category><![CDATA[Uncategorized]]></category>

		<guid isPermaLink="false">http://pranjol.com/?p=196</guid>
		<description><![CDATA[One of my friends every day used to send me a embarrassing video on my wall. I asked him why? He said that he is not sending it intentionally, it is spreading automatically.  He cant get rid of it even after &#8230; <a href="http://pranjol.com/2011/12/26/get-rid-of-one-of-the-most-common-facebook-spam/">Continue reading <span class="meta-nav">&#8594;</span></a>]]></description>
			<content:encoded><![CDATA[<p>One of my friends every day used to send me a embarrassing video on my wall. I asked him why? He said that he is not sending it intentionally, it is spreading automatically.  He cant get rid of it even after removing all applications. So he gave me his credentials to me to solve the problem. I have solved his problem in the following way.</p>
<ol>
<li>I logged in facebook through his credentials.</li>
<li>Went to privacy setting by clicking the right top corner arrow.</li>
<li>Clicked on Edit settigns of &#8220;Apps and Websites&#8221;  block.</li>
<li>There are 2 links in &#8220;Apps you use&#8221; block. They are <em>Remove</em> unwanted or spammy apps and <em>Turn off </em>all apps.</li>
<li>I clicked on first link and saw there was no apps to remove.</li>
<li>then i clicked on second link and get the list of apps one of them were spamming.</li>
<li>I simply turned off the app. <img src='http://pranjol.com/wp-includes/images/smilies/icon_smile.gif' alt=':)' class='wp-smiley' /> </li>
</ol>
<p><span style="font-size: small;"><span style="line-height: 24px;">My friend and all of his friends got rid of the embarrassing app. Happy ending.</span></span></p>
]]></content:encoded>
			<wfw:commentRss>http://pranjol.com/2011/12/26/get-rid-of-one-of-the-most-common-facebook-spam/feed/</wfw:commentRss>
		<slash:comments>1</slash:comments>
		</item>
		<item>
		<title>Web design attracts me now a days</title>
		<link>http://pranjol.com/2011/12/06/web-design-attracts-me-now-a-days/</link>
		<comments>http://pranjol.com/2011/12/06/web-design-attracts-me-now-a-days/#comments</comments>
		<pubDate>Tue, 06 Dec 2011 18:32:19 +0000</pubDate>
		<dc:creator>Safique Ahmed Faruque</dc:creator>
				<category><![CDATA[Uncategorized]]></category>

		<guid isPermaLink="false">http://pranjol.com/?p=193</guid>
		<description><![CDATA[I love to design. It gives me different type of pleasure. My new design is uploaded here.]]></description>
			<content:encoded><![CDATA[<p>I love to design. It gives me different type of pleasure. My new design is uploaded <a href="http://www.flickr.com/photos/provat34/6467134341/" target="_blank">here</a>.</p>
]]></content:encoded>
			<wfw:commentRss>http://pranjol.com/2011/12/06/web-design-attracts-me-now-a-days/feed/</wfw:commentRss>
		<slash:comments>1</slash:comments>
		</item>
		<item>
		<title>Preparing USB Modem Driver for UBUNTU ( part I )</title>
		<link>http://pranjol.com/2011/12/02/preparing-usb-modem-driver-for-ubuntu-part-i/</link>
		<comments>http://pranjol.com/2011/12/02/preparing-usb-modem-driver-for-ubuntu-part-i/#comments</comments>
		<pubDate>Fri, 02 Dec 2011 06:16:17 +0000</pubDate>
		<dc:creator>Safique Ahmed Faruque</dc:creator>
				<category><![CDATA[Uncategorized]]></category>

		<guid isPermaLink="false">http://pranjol.com/?p=188</guid>
		<description><![CDATA[At first i need to learn a language to communicate with OS. So i picked up C ( paralleled with C++ ). I am using Ubuntu, 10.04(lucid),  Kernel Linux 2.6.32-24-Generic, GNOME 2.30.2 Lucid: codename of Ubuntu, 10.04 is Lucid Lynx Kernel: WikiLink GNOME: WikiLink Here gcc &#8230; <a href="http://pranjol.com/2011/12/02/preparing-usb-modem-driver-for-ubuntu-part-i/">Continue reading <span class="meta-nav">&#8594;</span></a>]]></description>
			<content:encoded><![CDATA[<p>At first i need to learn a language to communicate with OS. So i picked up C ( paralleled with C++ ). I am using U<strong>buntu</strong>, 10.04(lucid),  Kernel Linux 2.6.32-24-Generic, GNOME 2.30.2</p>
<p>Lucid: codename of U<strong>buntu</strong>, 10.04 is <strong>Lucid</strong> Lynx<br />
Kernel: <a href="http://en.wikipedia.org/wiki/Kernel_(computing)" target="_blank">WikiLink<br />
</a>GNOME: <a href="http://en.wikipedia.org/wiki/GNOME" target="_blank">WikiLink</a></p>
<p>Here gcc is already installed. So no worry about compiling C. So only need to install g++ to compile C++.</p>
<p>Now it is time to start coding. I love Netbeans so i&#8217;ve installed C/C++ plugin.</p>
<div id="_mcePaste">#include &lt;cstdlib&gt;</div>
<div id="_mcePaste">#include &lt;iostream&gt;</div>
<div id="_mcePaste">using namespace std;</div>
<div id="_mcePaste">/*</div>
<div id="_mcePaste">*</div>
<div id="_mcePaste">*/</div>
<div id="_mcePaste">int main(int argc, char** argv) {</div>
<div id="_mcePaste">cout &lt;&lt; &#8220;Hello World!&#8221;;</div>
<div id="_mcePaste">return 0;</div>
<div id="_mcePaste">}</div>
<div>To Be Continued&#8230;</div>
]]></content:encoded>
			<wfw:commentRss>http://pranjol.com/2011/12/02/preparing-usb-modem-driver-for-ubuntu-part-i/feed/</wfw:commentRss>
		<slash:comments>2</slash:comments>
		</item>
		<item>
		<title>New logo of Pranjol</title>
		<link>http://pranjol.com/2011/11/30/new-logo-of-pranjol/</link>
		<comments>http://pranjol.com/2011/11/30/new-logo-of-pranjol/#comments</comments>
		<pubDate>Wed, 30 Nov 2011 10:09:56 +0000</pubDate>
		<dc:creator>Safique Ahmed Faruque</dc:creator>
				<category><![CDATA[Uncategorized]]></category>

		<guid isPermaLink="false">http://pranjol.com/?p=180</guid>
		<description><![CDATA[I am going to change the design of the blog. I have got a designer who works on illustrator. She made the new logo of Pranjol. It will evolve day by day but i am planning to start using it &#8230; <a href="http://pranjol.com/2011/11/30/new-logo-of-pranjol/">Continue reading <span class="meta-nav">&#8594;</span></a>]]></description>
			<content:encoded><![CDATA[<p>I am going to change the design of the blog. I have got a designer who works on illustrator. She made the new logo of Pranjol. It will evolve day by day but i am planning to start using it from now. Here is the link of <a href="http://www.flickr.com/photos/provat34/6430000579/" target="_blank">logo</a>.</p>
]]></content:encoded>
			<wfw:commentRss>http://pranjol.com/2011/11/30/new-logo-of-pranjol/feed/</wfw:commentRss>
		<slash:comments>1</slash:comments>
		</item>
		<item>
		<title>বাঘ ও মশা</title>
		<link>http://pranjol.com/2011/07/30/%e0%a6%ac%e0%a6%be%e0%a6%98-%e0%a6%93-%e0%a6%ae%e0%a6%b6%e0%a6%be/</link>
		<comments>http://pranjol.com/2011/07/30/%e0%a6%ac%e0%a6%be%e0%a6%98-%e0%a6%93-%e0%a6%ae%e0%a6%b6%e0%a6%be/#comments</comments>
		<pubDate>Sat, 30 Jul 2011 02:05:47 +0000</pubDate>
		<dc:creator>Safique Ahmed Faruque</dc:creator>
				<category><![CDATA[কবিতা]]></category>

		<guid isPermaLink="false">http://pranjol.com/?p=148</guid>
		<description><![CDATA[ছোট্ট মশা গর্ব করে বাঘ কে বলে ভাই, তোমার সঙ্গে ভীষণ লড়াই করতে আমি চাই। শুনে বাঘের আত্মা কাপে প্রাণ বলে যাই যাই, বাঘ তখন তারে বলে মাফ করে দাও ভাই। ছোট্ট মশা হেসে বলে ভয় পেয়েছ নাকি? একশর্তে মাফ &#8230; <a href="http://pranjol.com/2011/07/30/%e0%a6%ac%e0%a6%be%e0%a6%98-%e0%a6%93-%e0%a6%ae%e0%a6%b6%e0%a6%be/">Continue reading <span class="meta-nav">&#8594;</span></a>]]></description>
			<content:encoded><![CDATA[<p>ছোট্ট  মশা গর্ব করে<br />
বাঘ কে বলে ভাই,<br />
তোমার সঙ্গে ভীষণ লড়াই<br />
করতে আমি চাই।</p>
<p>শুনে বাঘের আত্মা কাপে<br />
প্রাণ বলে যাই যাই,<br />
বাঘ তখন তারে বলে<br />
মাফ করে দাও ভাই।</p>
<p>ছোট্ট মশা হেসে বলে<br />
ভয় পেয়েছ নাকি?<br />
একশর্তে মাফ করব<br />
বললে আমায় পাখি।</p>
<p>I got the second prize in tomader lekha tomader aka, Janakantha, when i was 10.</p>
]]></content:encoded>
			<wfw:commentRss>http://pranjol.com/2011/07/30/%e0%a6%ac%e0%a6%be%e0%a6%98-%e0%a6%93-%e0%a6%ae%e0%a6%b6%e0%a6%be/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>Non English Character in URL in Drupal6 and pathauto module</title>
		<link>http://pranjol.com/2011/07/07/non-english-character-in-url-in-drupal6-and-pathauto-module/</link>
		<comments>http://pranjol.com/2011/07/07/non-english-character-in-url-in-drupal6-and-pathauto-module/#comments</comments>
		<pubDate>Thu, 07 Jul 2011 16:25:51 +0000</pubDate>
		<dc:creator>Safique Ahmed Faruque</dc:creator>
				<category><![CDATA[Drupal]]></category>
		<category><![CDATA[Tips]]></category>

		<guid isPermaLink="false">http://pranjol.com/?p=144</guid>
		<description><![CDATA[In pathauto module there is a function pathauto_cleanstring. If pathauto_reduce_ascii is set in variable, this function convert the non english character into &#8216;-&#8217;. So to use non english characters in url u have to unset the drupal variable &#8216;pathauto_reduce_ascii&#8217;. In &#8230; <a href="http://pranjol.com/2011/07/07/non-english-character-in-url-in-drupal6-and-pathauto-module/">Continue reading <span class="meta-nav">&#8594;</span></a>]]></description>
			<content:encoded><![CDATA[<div id="_mcePaste">In pathauto module there is a function pathauto_cleanstring.</div>
<div id="_mcePaste">If pathauto_reduce_ascii is set in variable, this function convert the non english character into &#8216;-&#8217;.</div>
<div id="_mcePaste">So to use non english characters in url u have to unset the drupal variable &#8216;pathauto_reduce_ascii&#8217;.</div>
<p>In pathauto module there is a function pathauto_cleanstring. If pathauto_reduce_ascii is set in variable, this function convert the non english character into &#8216;-&#8217;. So to use non english characters in url u have to unset the drupal variable &#8216;pathauto_reduce_ascii&#8217;.</p>
]]></content:encoded>
			<wfw:commentRss>http://pranjol.com/2011/07/07/non-english-character-in-url-in-drupal6-and-pathauto-module/feed/</wfw:commentRss>
		<slash:comments>2</slash:comments>
		</item>
	</channel>
</rss>

