<?xml version="1.0" encoding="UTF-8"?><!-- generator="WordPress/2.9.1" -->
<rss version="0.92">
<channel>
	<title>Dynamic Guy</title>
	<link>http://dynamicguy.com</link>
	<description>Dynamic Guy, Nurul Ferdous, Ferdous, ZCE, Zend Certified Engineer, PHP, MySQL, jQuery, Javascript, Software Engineer, Unit Testing, Linux Geek, Code Junkie, Technology Enthusiast, Early Adopter, Idea Evangelist, Tech Support Blogger, Bootstrapper, Technology Consultant, Caffeine lover, Tyrant, Thicker Quicker Picker Upper and a Serial CODER.</description>
	<lastBuildDate>Mon, 11 Jan 2010 21:28:30 +0000</lastBuildDate>
	<docs>http://backend.userland.com/rss092</docs>
	<language>en</language>
	
	<item>
		<title>Passing busy days with my book on Magento from PACKT</title>
		<description><![CDATA[This is just a friendly post to keep you updated regarding my recent activities. I am passing some real hard times with the following recent activites:

Writing a book on Magento from PACKT
Regular office work
Attended a training on TDD and Refactoring by Industrial Logic
Baby sitting (My kid)
Couple of personal outsourcing project (Just for some extra bucks [...]]]></description>
		<link>http://dynamicguy.com/2010/01/11/passing-busy-days-with-my-book-on-magento-from-packt/</link>
			</item>
	<item>
		<title>Direcoty2Gallery &#8211; the instant gallery maker</title>
		<description><![CDATA[The code itself is self descriptive. If you still don&#8217;t understand how it works, then plz shoot me a comment.
Most probably I will get back to you 
 
&#60;?php
/**
 * Directory2Gallery - Gallery maker
 * Do you need to create photo gallery from all the images recursivley kept in
 * different folders? Do you like to [...]]]></description>
		<link>http://dynamicguy.com/2009/10/15/direcoty2gallery-the-instant-gallery-maker/</link>
			</item>
	<item>
		<title>Delete all .svn folders recursively (Ubuntu Linux)</title>
		<description><![CDATA[wanna delete all .svn folders recursively?

Open terminal
Go to the directory from where you want to delete all .svn folder

In my case:
$ cd /var/www/projects/craigmonkey/library
3. Now run this command:
&#38;amp;lt;code&#38;amp;gt;find -name &#38;amp;quot;\.svn&#38;amp;quot; -exec rm -rf {} \;&#38;amp;lt;/code&#38;amp;gt;
you are done  
]]></description>
		<link>http://dynamicguy.com/2009/08/15/delete-all-svn-folders-recursively-ubuntu-linux/</link>
			</item>
	<item>
		<title>How to use your bluetooth mobile phone as dial up modem in Ubuntu or Kubuntu.</title>
		<description><![CDATA[Required aparatus:

 PC or Laptop
Bluetooth device (some laptop has a built in bluetooth which also works fine)
Bluetooth enabled mobile phone

Required software:

 bluez
wvdial

Note: Usually all linux distros have this installed during OS installation. If you don&#8217;t have it then install it with this command: sudo apt-get install bluez and you can install the wvdial tool by [...]]]></description>
		<link>http://dynamicguy.com/2009/07/31/how-to-use-your-bluetooth-mobile-phone-as-dial-up-modem-in-ubuntu-or-kubuntu/</link>
			</item>
	<item>
		<title>Set / Change / Reset the MySQL root password in KUBUNTU or UBUNTU</title>
		<description><![CDATA[Do you want to change the MySQL root user&#8217;s password? Okay, here I will be telling you the exact steps to change it right away! MySQL server generate has by using PASSWORD(&#8216;YOUR_PASSWORD&#8217;); so you can do it also manually if you wanna change your root password. If so then open user table from mysql database [...]]]></description>
		<link>http://dynamicguy.com/2009/05/26/set-change-reset-the-mysql-root-password-in-kubuntuubuntu/</link>
			</item>
	<item>
		<title>jQuery Selectors and Attribute Selectors Cheat-Sheet</title>
		<description><![CDATA[jQuery has become the coolest JavaScript framework now a days. This is why from novice to tech giants are using and promoting it as well. If you are a web evangelist and already used it then you should say “jQuery rules, man!”.
In this post I will try to write a cheat-sheet on jQuery Selectors and [...]]]></description>
		<link>http://dynamicguy.com/2009/04/10/jquery-selectors-and-attribute-selectors-cheat-sheet/</link>
			</item>
	<item>
		<title>Auto password generator</title>
		<description><![CDATA[Do you need a secure password generator for you application? well, here you go:

/*
*@author: Nurul Ferdous
*@URL: http://dynamicguy.com
*@Description: Auto Password Generator
*$License: GPL
*/
function generatePass($min,$max,$opt=false){
$min=4;// minimum length of password
$max=15;// maximum length of password
$pass=&#38;quot;&#38;quot;;   //to store generated password
for($i=0;$i&#38;lt;rand($min,$max);$i++){
$num=rand(48,122);
if(($num &#38;gt; 97 &#38;amp;amp;&#38;amp;amp; $num &#38;lt; 122)){
$pass.=chr($num);
}else if(($num &#38;gt; 65 &#38;amp;amp;&#38;amp;amp; $num &#38;lt; 90)){
$pass.=chr($num);
}else if(($num &#38;gt;48 &#38;amp;amp;&#38;amp;amp; $num &#38;lt; 57)){
$pass.=chr($num);
}else if($num==95){
$pass.=chr($num);
}else{
$i--;
}
}
return  ($opt)?md5($pass):$pass;// [...]]]></description>
		<link>http://dynamicguy.com/2009/03/21/auto-password-generator/</link>
			</item>
	<item>
		<title>7 secret about me!!</title>
		<description><![CDATA[I don&#8217;t know whether I have been tagged before or not. But I came to know from Hasin Hayder that I have been tagged by him (feeling a bit shy) which actually started from Tony. I am simply honored. Thanks bro  
Well, I have also some secrets about my life like many others. Now, [...]]]></description>
		<link>http://dynamicguy.com/2009/02/21/7-secret-about-me/</link>
			</item>
	<item>
		<title>Configure Gtalk in Kopete</title>
		<description><![CDATA[Now a days Gtalk has become very popular. If you are using kopete as your IM client then you have to some extra things to make it happen. I will write here the exact steps to configure a Gtalk account in kopete.

Open Kopete.
Open Configure from Settings menu.
Select an identity (may be the default identity)
Click Add [...]]]></description>
		<link>http://dynamicguy.com/2009/02/21/configure-gtalk-in-kopete/</link>
			</item>
	<item>
		<title>Please vote for my Class on PHPClasses.org</title>
		<description><![CDATA[I wrote a class on HTML to PCL and Post Script conversion and submitted that to phpclasses. That class has been nominated for innovation award. Please vote for me.
Here you go: http://www.phpclasses.org/vote.html
]]></description>
		<link>http://dynamicguy.com/2009/02/20/please-vote-for-my-class-on-phpclassesorg/</link>
			</item>
</channel>
</rss>
