<?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>সাজিদের পাতা</title>
	<atom:link href="http://www.sajidmc.net/bn/feed/" rel="self" type="application/rss+xml" />
	<link>http://www.sajidmc.net</link>
	<description>[en]Blog of Sajid Muhaimin Choudhury[en][bn]সাজিদ মুহাইমিন চৌধুরী এর রোজনামচা[/bn]</description>
	<lastBuildDate>Fri, 20 Aug 2010 12:17:10 +0000</lastBuildDate>
	<language>bn</language>
	<sy:updatePeriod>hourly</sy:updatePeriod>
	<sy:updateFrequency>1</sy:updateFrequency>
			<item>
		<title>Compiling a V-USB (AVR-USB) example program with Visual C++</title>
		<link>http://www.sajidmc.net/bn/2010/08/compiling-a-v-usb-avr-usb-example-program-with-visual-c/</link>
		<comments>http://www.sajidmc.net/bn/2010/08/compiling-a-v-usb-avr-usb-example-program-with-visual-c/#comments</comments>
		<pubDate>Thu, 05 Aug 2010 11:51:57 +0000</pubDate>
		<dc:creator>সাজিদ মুহাইমিন চৌধুরী</dc:creator>
				<category><![CDATA[এ.ভি.আর]]></category>
		<category><![CDATA[টিউটোরিয়াল]]></category>
		<category><![CDATA[মাইক্রোকন্ট্রোলার]]></category>

		<guid isPermaLink="false">http://www.sajidmc.net/bn/2010/08/compiling-a-v-usb-avr-usb-example-program-with-visual-c/</guid>
		<description><![CDATA[


Related posts:<ol><li><a href='http://www.sajidmc.net/bn/2008/10/really-beginners-microcontroller-guide-part-i-compiling-the-first-program/' rel='bookmark' title='Permanent Link: (Really) Beginners Microcontroller Guide (Part-I) Compiling the first program'>(Really) Beginners Microcontroller Guide (Part-I) Compiling the first program</a></li>
<li><a href='http://www.sajidmc.net/bn/2008/11/external-crystals-and-ponyprog/' rel='bookmark' title='Permanent Link: External Crystals and Ponyprog'>External Crystals and Ponyprog</a></li>
<li><a href='http://www.sajidmc.net/bn/2008/10/really-beginners-microcontroller-guide-part-ii-configuring-ponyprog-properly-and-writing-program-to-uc/' rel='bookmark' title='Permanent Link: (Really) Beginners Microcontroller Guide (Part-II) Configuring Ponyprog properly and writing program to uC'>(Really) Beginners Microcontroller Guide (Part-II) Configuring Ponyprog properly and writing program to uC</a></li>
</ol>]]></description>
			<content:encoded><![CDATA[</p>
<p>Well, I used MinGW / MSYS to compile some AVR-USB programs when I was working for IICT. Setting up MinGW is in windows is extremely tedious, especially if you live in a country where 30kBps download speed is considerably high. The offline installation of MinGW is equally confusing. I was considering an alternate development environment for windows, and Visual C++ can be considered as a great option.</p>
<p>Some of my students today visited me with some problems compiling a V-USB commandline example. Although I managed to solve it, I had to do it with considerable amount of hacks to the v-usb libraries. They were using visual C++ version 6. Now I am going to show some steps to compile an example of V-USB from Microsoft Visual C++ 2010 Express Edition.</p>
<p>Both online and offline installer for Visual C++ express edition is available from the website. The express edition is free to download and use for evaluation and education: <a href="http://www.microsoft.com/express/downloads/">http://www.microsoft.com/express/downloads/</a></p>
<p>In case you don’t know yet, v-usb can be downloaded from obdev’s website at: <a href="http://www.obdev.at/products/vusb/download.html">http://www.obdev.at/products/vusb/download.html</a></p>
<p>To set up the VC++ environment, you’ll also need libusb-win32 drivers. Download them from: <a href="http://sourceforge.net/projects/libusb-win32/">http://sourceforge.net/projects/libusb-win32/</a></p>
<p>&#160;</p>
<p>For this blogpost, I am using these files:</p>
<p>vusb-20100715.tar.gz</p>
<p>libusb-win32-bin-1.2.1.0.zip</p>
<p>downloaded from the respective sites, and the latest version at the time of writing this blogpost. I’ve also downloaded and installed Microsoft Visual C++ 2010 Express edition.</p>
<p>I am using 32 bit version of Windows 7, with intel processor. If you use 64 bit version of windows or AMD processor, you have to select apropriate libraries.</p>
<p>Open the libusb-win32-bin-1.2.1.0.zip with 7-zip and extract contents of folder <em>libusb-win32-bin-1.2.1.0.zip\libusb-win32-bin-1.2.1.0\lib\msvc\</em> to <em>C:\Program Files\Microsoft Visual Studio 10.0\VC\lib , </em>(note, the library folder to be copied for 64 bit version is msvc_x64). Also extract the content of <em>libusb-win32-bin-1.2.1.0\include\ </em>to <em>C:\Program Files\Microsoft Visual Studio 10.0\VC\include</em></p>
<p>Read this file: libusb-win32-bin-1.2.1.0\bin\libusb-win32-bin-README.txt to know how to install the bin folder content.</p>
<p>Open Microsoft Visual Studio Express edition, and create a new Win32 Console Application Project using the wizard. Use all default settings of wizard.</p>
<p><a href="http://www.sajidmc.net/wp-content/uploads/2010/08/image.png"><img style="border-right-width: 0px; display: inline; border-top-width: 0px; border-bottom-width: 0px; border-left-width: 0px" title="image" border="0" alt="image" src="http://www.sajidmc.net/wp-content/uploads/2010/08/image_thumb.png" width="484" height="347" /></a></p>
<p>Now, using windows explorer, open the folder where the project is created using the wizard. My project title is ledcomm. By default, it will be in \Documents\Visual Studio 2010\Projects\ledcomm\ledcomm</p>
<p>Open the vusb-20100715.tar.gz and browse to this folder:</p>
<p><a href="http://www.sajidmc.net/wp-content/uploads/2010/08/image1.png"><img style="border-right-width: 0px; display: inline; border-top-width: 0px; border-bottom-width: 0px; border-left-width: 0px" title="image" border="0" alt="image" src="http://www.sajidmc.net/wp-content/uploads/2010/08/image_thumb1.png" width="484" height="350" /></a></p>
<p>Copy the contents of commandline folder into the folder where you created the project (X:\Documents\Visual Studio 2010\Projects\ledcomm\ledcomm). The folder should now look like:</p>
<p><a href="http://www.sajidmc.net/wp-content/uploads/2010/08/image2.png"><img style="border-right-width: 0px; display: inline; border-top-width: 0px; border-bottom-width: 0px; border-left-width: 0px" title="image" border="0" alt="image" src="http://www.sajidmc.net/wp-content/uploads/2010/08/image_thumb2.png" width="615" height="484" /></a></p>
<p>Copy the folder “firmware” vusb-20100715.tar\vusb-20100715\examples\custom-class\ to X:\Documents\Visual Studio 2010\Projects\ledcomm\ (note: it is one level up the folder where we copied command line). You can use this folder to create a AVR studio project later.</p>
<p><a href="http://www.sajidmc.net/wp-content/uploads/2010/08/image3.png"><img style="border-right-width: 0px; display: inline; border-top-width: 0px; border-bottom-width: 0px; border-left-width: 0px" title="image" border="0" alt="image" src="http://www.sajidmc.net/wp-content/uploads/2010/08/image_thumb3.png" width="484" height="382" /></a></p>
<p>In the project explorer, remove all source and header files from the project:</p>
<p><a href="http://www.sajidmc.net/wp-content/uploads/2010/08/image4.png"><img style="border-right-width: 0px; display: inline; border-top-width: 0px; border-bottom-width: 0px; border-left-width: 0px" title="image" border="0" alt="image" src="http://www.sajidmc.net/wp-content/uploads/2010/08/image_thumb4.png" width="484" height="348" /></a></p>
<p>Now add the following source files and header files to the project</p>
<p><a href="http://www.sajidmc.net/wp-content/uploads/2010/08/image5.png"><img style="border-right-width: 0px; display: inline; border-top-width: 0px; border-bottom-width: 0px; border-left-width: 0px" title="image" border="0" alt="image" src="http://www.sajidmc.net/wp-content/uploads/2010/08/image_thumb5.png" width="484" height="344" /></a></p>
<p>ledcomm\set-led.c</p>
<p>ledcomm\opendevice.h</p>
<p>ledcomm\opendevice.c</p>
<p>firmware\requests.h</p>
<p>firmware\usbconfig.h</p>
<p>&#160;</p>
<p>The project explorer window now looks like this:</p>
<p><a href="http://www.sajidmc.net/wp-content/uploads/2010/08/image6.png"><img style="border-right-width: 0px; display: inline; border-top-width: 0px; border-bottom-width: 0px; border-left-width: 0px" title="image" border="0" alt="image" src="http://www.sajidmc.net/wp-content/uploads/2010/08/image_thumb6.png" width="254" height="384" /></a></p>
<p>Go to project properties and check if the Pre Compiled header is disabled:</p>
<p>&#160;</p>
<p><a href="http://www.sajidmc.net/wp-content/uploads/2010/08/image7.png"><img style="border-right-width: 0px; display: inline; border-top-width: 0px; border-bottom-width: 0px; border-left-width: 0px" title="image" border="0" alt="image" src="http://www.sajidmc.net/wp-content/uploads/2010/08/image_thumb7.png" width="484" height="346" /></a></p>
<p>&#160;</p>
<p>At this point, if you hit F5 (Run), you’ll get this debug result:</p>
<blockquote><p>1&gt;&#8212;&#8212; Build started: Project: ledcomm, Configuration: Debug Win32 &#8212;&#8212;      <br />1&gt;&#160; set-led.c       <br />1&gt;X:\documents\visual studio 2010\projects\ledcomm\ledcomm\set-led.c(84): warning C4013: &#8216;strcasecmp&#8217; undefined; assuming extern returning int       <br />1&gt;&#160; opendevice.c       <br />1&gt;&#160; Generating Code&#8230;       <br />1&gt;opendevice.obj : error LNK2019: unresolved external symbol _usb_control_msg referenced in function _usbGetStringAscii       <br />1&gt;set-led.obj : error LNK2001: unresolved external symbol _usb_control_msg       <br />1&gt;opendevice.obj : error LNK2019: unresolved external symbol _usb_get_string_simple referenced in function _usbGetStringAscii       <br />1&gt;opendevice.obj : error LNK2019: unresolved external symbol _usb_close referenced in function _usbOpenDevice       <br />1&gt;set-led.obj : error LNK2001: unresolved external symbol _usb_close       <br />1&gt;opendevice.obj : error LNK2019: unresolved external symbol _usb_strerror referenced in function _usbOpenDevice       <br />1&gt;set-led.obj : error LNK2001: unresolved external symbol _usb_strerror       <br />1&gt;opendevice.obj : error LNK2019: unresolved external symbol _usb_open referenced in function _usbOpenDevice       <br />1&gt;opendevice.obj : error LNK2019: unresolved external symbol _usb_get_busses referenced in function _usbOpenDevice       <br />1&gt;opendevice.obj : error LNK2019: unresolved external symbol _usb_find_devices referenced in function _usbOpenDevice       <br />1&gt;opendevice.obj : error LNK2019: unresolved external symbol _usb_find_busses referenced in function _usbOpenDevice       <br />1&gt;set-led.obj : error LNK2019: unresolved external symbol _strcasecmp referenced in function _main       <br />1&gt;set-led.obj : error LNK2019: unresolved external symbol _usb_init referenced in function _main       <br />1&gt;X:\documents\visual studio 2010\Projects\ledcomm\Debug\ledcomm.exe : fatal error LNK1120: 10 unresolved externals       <br />========== Build: 0 succeeded, 1 failed, 0 up-to-date, 0 skipped ==========</p>
</blockquote>
<p>&#160;</p>
<p>I just pasted this error message so that people who have a hard time finding a solution quickly hits this page.</p>
<p>Firstly, VC++ doesn’t have strcasecmp, so replace the strcasecmp command with strcmp command. There goes the case insensitivity!</p>
<p>Now project&gt;project properties, Configuration Options&gt;Linker&gt;Input&gt;Additional Dependencies</p>
<p><a href="http://www.sajidmc.net/wp-content/uploads/2010/08/image8.png"><img style="border-right-width: 0px; display: inline; border-top-width: 0px; border-bottom-width: 0px; border-left-width: 0px" title="image" border="0" alt="image" src="http://www.sajidmc.net/wp-content/uploads/2010/08/image_thumb8.png" width="484" height="346" /></a></p>
<p>&#160;</p>
<p>Click on the additional dependency box and click on &lt;Edit…&gt;</p>
<p><a href="http://www.sajidmc.net/wp-content/uploads/2010/08/image10.png"><img style="border-bottom: 0px; border-left: 0px; display: inline; border-top: 0px; border-right: 0px" title="image" border="0" alt="image" src="http://www.sajidmc.net/wp-content/uploads/2010/08/image_thumb10.png" width="484" height="346" /></a> </p>
<p>In the additional dependencies dialogue, type in libusb.lib. Then press ok, and again ok from the properties dialogue.</p>
<p><a href="http://www.sajidmc.net/wp-content/uploads/2010/08/image11.png"><img style="border-bottom: 0px; border-left: 0px; display: inline; border-top: 0px; border-right: 0px" title="image" border="0" alt="image" src="http://www.sajidmc.net/wp-content/uploads/2010/08/image_thumb11.png" width="244" height="215" /></a> </p>
<p>Now Press F7 to build the project.</p>
<p>&#160;</p>
<blockquote><p>1&gt;&#8212;&#8212; Build started: Project: ledcomm, Configuration: Debug Win32 &#8212;&#8212;      <br />1&gt;&#160; set-led.c       <br />1&gt;&#160; ledcomm.vcxproj -&gt; x:\documents\visual studio 2010\Projects\ledcomm\Debug\ledcomm.exe       <br />========== Build: 1 succeeded, 0 failed, 0 up-to-date, 0 skipped ==========</p>
</blockquote>
<p>Now you can run the created exe file:</p>
<p><a href="http://www.sajidmc.net/wp-content/uploads/2010/08/image9.png"><img style="border-right-width: 0px; display: inline; border-top-width: 0px; border-bottom-width: 0px; border-left-width: 0px" title="image" border="0" alt="image" src="http://www.sajidmc.net/wp-content/uploads/2010/08/image_thumb9.png" width="484" height="248" /></a></p>
<p>&#160;</p>
<p>In this way, you can use Visual C++ 2010 Express Edition to compile the</p></p>
<div class='bookmarkify'><a name='bookmarkify'></a><div class='title' title='Use these links to share this page with others'><h3>বুকমার্ক</h3></div><div class='linkbuttons'><a href='http://www.bloglines.com/sub/http://www.sajidmc.net/bn/2010/08/compiling-a-v-usb-avr-usb-example-program-with-visual-c/' title='Save to Bloglines' onclick='target="_blank";' rel='nofollow'><img src='http://www.sajidmc.net/wp-content/plugins/bookmarkify/bloglines.png' style='width:16px; height:16px;' alt='[Bloglines] ' /></a> <a href='http://del.icio.us/post?url=http://www.sajidmc.net/bn/2010/08/compiling-a-v-usb-avr-usb-example-program-with-visual-c/&amp;title=Compiling a V-USB (AVR-USB) example program with Visual C++' title='Save to del.icio.us' onclick='target="_blank";' rel='nofollow'><img src='http://www.sajidmc.net/wp-content/plugins/bookmarkify/delicious.png' style='width:16px; height:16px;' alt='[del.icio.us] ' /></a> <a href='http://digg.com/submit?phase=2&amp;url=http://www.sajidmc.net/bn/2010/08/compiling-a-v-usb-avr-usb-example-program-with-visual-c/&amp;title=Compiling a V-USB (AVR-USB) example program with Visual C++' title='Digg It!' onclick='target="_blank";' rel='nofollow'><img src='http://www.sajidmc.net/wp-content/plugins/bookmarkify/digg.png' style='width:16px; height:16px;' alt='[Digg] ' /></a> <a href='http://www.facebook.com/share.php?u=http://www.sajidmc.net/bn/2010/08/compiling-a-v-usb-avr-usb-example-program-with-visual-c/' title='Save to Facebook' onclick='target="_blank";' rel='nofollow'><img src='http://www.sajidmc.net/wp-content/plugins/bookmarkify/facebook.png' style='width:16px; height:16px;' alt='[Facebook] ' /></a> <a href='http://www.google.com/bookmarks/mark?op=edit&amp;output=popup&amp;bkmk=http://www.sajidmc.net/bn/2010/08/compiling-a-v-usb-avr-usb-example-program-with-visual-c/&amp;title=Compiling a V-USB (AVR-USB) example program with Visual C++' title='Save to Google Bookmarks' onclick='target="_blank";' rel='nofollow'><img src='http://www.sajidmc.net/wp-content/plugins/bookmarkify/google.png' style='width:16px; height:16px;' alt='[Google] ' /></a> <a href='http://twitter.com/home/?status=Compiling a V-USB (AVR-USB) example program with Visual C+++http://www.sajidmc.net/bn/2010/08/compiling-a-v-usb-avr-usb-example-program-with-visual-c/' title='Save to Twitter' onclick='target="_blank";' rel='nofollow'><img src='http://www.sajidmc.net/wp-content/plugins/bookmarkify/twitter.png' style='width:16px; height:16px;' alt='[Twitter] ' /></a> <a href='http://bookmarks.yahoo.com/toolbar/savebm?opener=tb&amp;u=http://www.sajidmc.net/bn/2010/08/compiling-a-v-usb-avr-usb-example-program-with-visual-c/&amp;t=Compiling a V-USB (AVR-USB) example program with Visual C++' title='Save to Yahoo! Bookmarks' onclick='target="_blank";' rel='nofollow'><img src='http://www.sajidmc.net/wp-content/plugins/bookmarkify/yahoo.png' style='width:16px; height:16px;' alt='[Yahoo!] ' /></a> <a href='http://www.feedburner.com/fb/a/emailFlare?itemTitle=Compiling a V-USB (AVR-USB) example program with Visual C++&amp;uri=http://www.sajidmc.net/bn/2010/08/compiling-a-v-usb-avr-usb-example-program-with-visual-c/&amp;loc=en_US' title='Email this to a friend' onclick='target="_blank";' rel='nofollow'><img src='http://www.sajidmc.net/wp-content/plugins/bookmarkify/email.png' style='width:16px; height:16px;' alt='[Email] ' /></a>  <a title='See more bookmark and sharing options...' href='http://www.sajidmc.net/bn/2010/08/compiling-a-v-usb-avr-usb-example-program-with-visual-c/#bookmarkify' rel='nofollow'><small>More&nbsp;&raquo;</small></a></div></div>

<p>Related posts:<ol><li><a href='http://www.sajidmc.net/bn/2008/10/really-beginners-microcontroller-guide-part-i-compiling-the-first-program/' rel='bookmark' title='Permanent Link: (Really) Beginners Microcontroller Guide (Part-I) Compiling the first program'>(Really) Beginners Microcontroller Guide (Part-I) Compiling the first program</a></li>
<li><a href='http://www.sajidmc.net/bn/2008/11/external-crystals-and-ponyprog/' rel='bookmark' title='Permanent Link: External Crystals and Ponyprog'>External Crystals and Ponyprog</a></li>
<li><a href='http://www.sajidmc.net/bn/2008/10/really-beginners-microcontroller-guide-part-ii-configuring-ponyprog-properly-and-writing-program-to-uc/' rel='bookmark' title='Permanent Link: (Really) Beginners Microcontroller Guide (Part-II) Configuring Ponyprog properly and writing program to uC'>(Really) Beginners Microcontroller Guide (Part-II) Configuring Ponyprog properly and writing program to uC</a></li>
</ol></p>]]></content:encoded>
			<wfw:commentRss>http://www.sajidmc.net/bn/2010/08/compiling-a-v-usb-avr-usb-example-program-with-visual-c/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>Recover your Pendrive folders from the BronTok virus attack</title>
		<link>http://www.sajidmc.net/bn/2010/06/recover-your-pendrive-folders-from-the-brontok-virus-attack/</link>
		<comments>http://www.sajidmc.net/bn/2010/06/recover-your-pendrive-folders-from-the-brontok-virus-attack/#comments</comments>
		<pubDate>Wed, 02 Jun 2010 17:49:05 +0000</pubDate>
		<dc:creator>সাজিদ মুহাইমিন চৌধুরী</dc:creator>
				<category><![CDATA[বিবিধ]]></category>

		<guid isPermaLink="false">http://www.sajidmc.net/bn/?p=425</guid>
		<description><![CDATA[Perhaps the most notorious virus that is spreading through all computers in bangladesh is the Win32 Brontok virus. It is possibly the sole reason that many people chose to switch to a Windows 7. The virus is updating itself. Back in early days, it used to create a New Folder.Exe file and make the exe [...]


Related posts:<ol><li><a href='http://www.sajidmc.net/bn/2010/08/compiling-a-v-usb-avr-usb-example-program-with-visual-c/' rel='bookmark' title='Permanent Link: Compiling a V-USB (AVR-USB) example program with Visual C++'>Compiling a V-USB (AVR-USB) example program with Visual C++</a></li>
<li><a href='http://www.sajidmc.net/bn/2009/12/google-sites-home-of-my-academic-website/' rel='bookmark' title='Permanent Link: Google Sites &ndash; Home of my academic website'>Google Sites &ndash; Home of my academic website</a></li>
<li><a href='http://www.sajidmc.net/bn/2008/10/really-beginners-microcontroller-guide-part-i-compiling-the-first-program/' rel='bookmark' title='Permanent Link: (Really) Beginners Microcontroller Guide (Part-I) Compiling the first program'>(Really) Beginners Microcontroller Guide (Part-I) Compiling the first program</a></li>
</ol>]]></description>
			<content:encoded><![CDATA[<p>Perhaps the most notorious virus that is spreading through all computers in bangladesh is the Win32 Brontok virus. It is possibly the sole reason that many people chose to switch to a Windows 7.</p>
<p>The virus is updating itself. Back in early days, it used to create a New Folder.Exe file and make the exe icon identical to the folder icon of windows. Unsuspecting user would double click, and his PC would be instantly infected. Now improved versions of this virus causes the task manager, folder options to disappear. The &#8220;Show Hidden files and folders&#8221; also does not work. Most annoyingly, the recent version of the virus locks all folders of the pendrive as hidden, and you cannot make them unhidden even from windows 7 folder options.</p>
<p>To fix such a pendrive, I created a batch file. It removes the folder lock and unhides all the hidden folders in your pendrive. The batch then deletes all exe files in the root directory (So please don&#8217;t mistakenly keep any installers in root folder of pendrive.), Finally it deletes the autoexec.bat file causing the virus. Just keep the batch file in your pendrive, and double click on a non infected PC to recover folders.</p>
<p>THe code of the batch file:</p>

<div class="wp_syntax"><div class="code"><pre class="dos" style="font-family:monospace;"><span style="color: #808080; font-style: italic;">rem Created by Sajid Muhaimin Choudhury</span>
<span style="color: #b1b100; font-weight: bold;">Echo</span> off
attrib -S -H -R /S /D
<span style="color: #b1b100; font-weight: bold;">del</span> *.exe
<span style="color: #b1b100; font-weight: bold;">del</span> autoexec.bat /F /S /Q
<span style="color: #b1b100; font-weight: bold;">del</span> killvirus.vbs /F /S /Q
<span style="color: #b1b100; font-weight: bold;">mkdir</span> autoexec.bat
<span style="color: #b1b100; font-weight: bold;">mkdir</span> killvirus.vbs
attrib +R +A +S +H autoexec.bat
attrib +R +A +S +H killvirus.vbs
<span style="color: #b1b100; font-weight: bold;">Echo</span> on</pre></div></div>

<div class='bookmarkify'><a name='bookmarkify'></a><div class='title' title='Use these links to share this page with others'><h3>বুকমার্ক</h3></div><div class='linkbuttons'><a href='http://www.bloglines.com/sub/http://www.sajidmc.net/bn/2010/06/recover-your-pendrive-folders-from-the-brontok-virus-attack/' title='Save to Bloglines' onclick='target="_blank";' rel='nofollow'><img src='http://www.sajidmc.net/wp-content/plugins/bookmarkify/bloglines.png' style='width:16px; height:16px;' alt='[Bloglines] ' /></a> <a href='http://del.icio.us/post?url=http://www.sajidmc.net/bn/2010/06/recover-your-pendrive-folders-from-the-brontok-virus-attack/&amp;title=Recover your Pendrive folders from the BronTok virus attack' title='Save to del.icio.us' onclick='target="_blank";' rel='nofollow'><img src='http://www.sajidmc.net/wp-content/plugins/bookmarkify/delicious.png' style='width:16px; height:16px;' alt='[del.icio.us] ' /></a> <a href='http://digg.com/submit?phase=2&amp;url=http://www.sajidmc.net/bn/2010/06/recover-your-pendrive-folders-from-the-brontok-virus-attack/&amp;title=Recover your Pendrive folders from the BronTok virus attack' title='Digg It!' onclick='target="_blank";' rel='nofollow'><img src='http://www.sajidmc.net/wp-content/plugins/bookmarkify/digg.png' style='width:16px; height:16px;' alt='[Digg] ' /></a> <a href='http://www.facebook.com/share.php?u=http://www.sajidmc.net/bn/2010/06/recover-your-pendrive-folders-from-the-brontok-virus-attack/' title='Save to Facebook' onclick='target="_blank";' rel='nofollow'><img src='http://www.sajidmc.net/wp-content/plugins/bookmarkify/facebook.png' style='width:16px; height:16px;' alt='[Facebook] ' /></a> <a href='http://www.google.com/bookmarks/mark?op=edit&amp;output=popup&amp;bkmk=http://www.sajidmc.net/bn/2010/06/recover-your-pendrive-folders-from-the-brontok-virus-attack/&amp;title=Recover your Pendrive folders from the BronTok virus attack' title='Save to Google Bookmarks' onclick='target="_blank";' rel='nofollow'><img src='http://www.sajidmc.net/wp-content/plugins/bookmarkify/google.png' style='width:16px; height:16px;' alt='[Google] ' /></a> <a href='http://twitter.com/home/?status=Recover your Pendrive folders from the BronTok virus attack+http://www.sajidmc.net/bn/2010/06/recover-your-pendrive-folders-from-the-brontok-virus-attack/' title='Save to Twitter' onclick='target="_blank";' rel='nofollow'><img src='http://www.sajidmc.net/wp-content/plugins/bookmarkify/twitter.png' style='width:16px; height:16px;' alt='[Twitter] ' /></a> <a href='http://bookmarks.yahoo.com/toolbar/savebm?opener=tb&amp;u=http://www.sajidmc.net/bn/2010/06/recover-your-pendrive-folders-from-the-brontok-virus-attack/&amp;t=Recover your Pendrive folders from the BronTok virus attack' title='Save to Yahoo! Bookmarks' onclick='target="_blank";' rel='nofollow'><img src='http://www.sajidmc.net/wp-content/plugins/bookmarkify/yahoo.png' style='width:16px; height:16px;' alt='[Yahoo!] ' /></a> <a href='http://www.feedburner.com/fb/a/emailFlare?itemTitle=Recover your Pendrive folders from the BronTok virus attack&amp;uri=http://www.sajidmc.net/bn/2010/06/recover-your-pendrive-folders-from-the-brontok-virus-attack/&amp;loc=en_US' title='Email this to a friend' onclick='target="_blank";' rel='nofollow'><img src='http://www.sajidmc.net/wp-content/plugins/bookmarkify/email.png' style='width:16px; height:16px;' alt='[Email] ' /></a>  <a title='See more bookmark and sharing options...' href='http://www.sajidmc.net/bn/2010/06/recover-your-pendrive-folders-from-the-brontok-virus-attack/#bookmarkify' rel='nofollow'><small>More&nbsp;&raquo;</small></a></div></div>

<p>Related posts:<ol><li><a href='http://www.sajidmc.net/bn/2010/08/compiling-a-v-usb-avr-usb-example-program-with-visual-c/' rel='bookmark' title='Permanent Link: Compiling a V-USB (AVR-USB) example program with Visual C++'>Compiling a V-USB (AVR-USB) example program with Visual C++</a></li>
<li><a href='http://www.sajidmc.net/bn/2009/12/google-sites-home-of-my-academic-website/' rel='bookmark' title='Permanent Link: Google Sites &ndash; Home of my academic website'>Google Sites &ndash; Home of my academic website</a></li>
<li><a href='http://www.sajidmc.net/bn/2008/10/really-beginners-microcontroller-guide-part-i-compiling-the-first-program/' rel='bookmark' title='Permanent Link: (Really) Beginners Microcontroller Guide (Part-I) Compiling the first program'>(Really) Beginners Microcontroller Guide (Part-I) Compiling the first program</a></li>
</ol></p>]]></content:encoded>
			<wfw:commentRss>http://www.sajidmc.net/bn/2010/06/recover-your-pendrive-folders-from-the-brontok-virus-attack/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>MATLAB code for Major Minor grouping of students of Dept of EEE, BUET</title>
		<link>http://www.sajidmc.net/bn/2010/05/matlab-code-for-major-minor-grouping-of-students-of-dept-of-eee-buet/</link>
		<comments>http://www.sajidmc.net/bn/2010/05/matlab-code-for-major-minor-grouping-of-students-of-dept-of-eee-buet/#comments</comments>
		<pubDate>Tue, 18 May 2010 18:12:42 +0000</pubDate>
		<dc:creator>সাজিদ মুহাইমিন চৌধুরী</dc:creator>
				<category><![CDATA[ম্যাটল্যাব]]></category>

		<guid isPermaLink="false">http://www.sajidmc.net/bn/?p=421</guid>
		<description><![CDATA[It&#8217;s been some time since I joined BUET as a lecturer. Today, we were assigning major and minor topics to students. The assigning process was quite cumbersome and had to be done by hand. In order to automate the process, I wrote a small MATLAB program that can be used to automate the process. The [...]


Related posts:<ol><li><a href='http://www.sajidmc.net/bn/2009/05/efficient-matlab-coding/' rel='bookmark' title='Permanent Link: দক্ষ ম্যাটল্যাব কোডিং'>দক্ষ ম্যাটল্যাব কোডিং</a></li>
<li><a href='http://www.sajidmc.net/bn/2008/05/the-ieee-region-10-student-congress-2008/' rel='bookmark' title='Permanent Link: The IEEE Region 10 Student Congress 2008'>The IEEE Region 10 Student Congress 2008</a></li>
<li><a href='http://www.sajidmc.net/bn/2009/02/creating-a-pcb-the-toru-bhai-style/' rel='bookmark' title='Permanent Link: Creating a PCB: The Toru Bhai Style'>Creating a PCB: The Toru Bhai Style</a></li>
</ol>]]></description>
			<content:encoded><![CDATA[<p>It&#8217;s been some time since I joined BUET as a lecturer. Today, we were assigning major and minor topics to students. The assigning process was quite cumbersome and had to be done by hand. In order to automate the process, I wrote a small MATLAB program that can be used to automate the process.</p>
<p>The major minor system of the Dept of EEE is quite simple. Currently, there are 3 major groups and 4 minor groups of the department. Based on decision of BUET Undergraduta Studies (BUGS) there is a maximum number of student per major or minor group. The groups are allocated according to CGPA of the students, and if more students want a particular major group than allowed limit, then students with better CGPA will get more preference.</p>
<p>Any how, I am pasting my program here:</p>

<div class="wp_syntax"><table><tr><td class="line_numbers"><pre>1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
</pre></td><td class="code"><pre class="matlab" style="font-family:monospace;"><span style="color: #228B22;">% This program automates creation of major minor list of the students.</span>
<span style="color: #228B22;">% Program was written by Sajid Muhaimin Choudhury, Lecturer, Department of</span>
<span style="color: #228B22;">% EEE, BUET on 19/5/2010</span>
&nbsp;
<span style="color: #0000FF;">clc</span>
&nbsp;
<span style="color: #228B22;">%constants:</span>
N_maj_max = <span style="color: #33f;">60</span>;
N_min_max = <span style="color: #33f;">60</span>;
N_std = <span style="color: #33f;">180</span>;
&nbsp;
<span style="color: #228B22;">%Execute the program once, then open variable editor to edit rawdata and</span>
<span style="color: #228B22;">% paste values from excel, columns are, roll, cgpa, maj_choice 1-4, minor</span>
<span style="color: #228B22;">% choice 1-4. </span>
&nbsp;
<span style="color: #228B22;">%rawdata = [1,2,3,4,5,6,7,8,9,10;4,5,6,7,8,9,10,11,12,5];</span>
rawdata = <span style="color: #0000FF;">sortrows</span><span style="color: #080;">&#40;</span>rawdata, -<span style="color: #33f;">2</span><span style="color: #080;">&#41;</span>; <span style="color: #228B22;">%sort according to CGPA</span>
std_roll = rawdata<span style="color: #080;">&#40;</span>:,<span style="color: #33f;">1</span><span style="color: #080;">&#41;</span>
std_cgpa = rawdata<span style="color: #080;">&#40;</span>:,<span style="color: #33f;">2</span><span style="color: #080;">&#41;</span>
std_maj_choice = rawdata<span style="color: #080;">&#40;</span>:,<span style="color: #33f;">3</span>:<span style="color: #33f;">6</span><span style="color: #080;">&#41;</span>
std_min_choice = rawdata<span style="color: #080;">&#40;</span>:,<span style="color: #33f;">7</span>:<span style="color: #33f;">10</span><span style="color: #080;">&#41;</span>
&nbsp;
std_maj = <span style="color: #0000FF;">zeros</span><span style="color: #080;">&#40;</span>N_std,<span style="color: #33f;">1</span><span style="color: #080;">&#41;</span>;
std_min = <span style="color: #0000FF;">zeros</span><span style="color: #080;">&#40;</span>N_std,<span style="color: #33f;">1</span><span style="color: #080;">&#41;</span>;
count_maj = <span style="color: #0000FF;">zeros</span><span style="color: #080;">&#40;</span><span style="color: #33f;">1</span>,<span style="color: #33f;">4</span><span style="color: #080;">&#41;</span>;
count_min = <span style="color: #0000FF;">zeros</span><span style="color: #080;">&#40;</span><span style="color: #33f;">1</span>,<span style="color: #33f;">4</span><span style="color: #080;">&#41;</span>;
<span style="color: #228B22;">%assign major group according to CGPA. </span>
<span style="color: #0000FF;">for</span> <span style="color: #33f;">i</span> = <span style="color: #33f;">1</span>:N_std
    <span style="color: #0000FF;">for</span> <span style="color: #33f;">j</span> = <span style="color: #33f;">1</span>:<span style="color: #33f;">4</span>
        <span style="color: #0000FF;">if</span> count_maj<span style="color: #080;">&#40;</span>std_maj_choice<span style="color: #080;">&#40;</span><span style="color: #33f;">i</span>,<span style="color: #33f;">j</span><span style="color: #080;">&#41;</span><span style="color: #080;">&#41;</span> &lt; N_maj_max
            count_maj<span style="color: #080;">&#40;</span>std_maj_choice<span style="color: #080;">&#40;</span><span style="color: #33f;">i</span>,<span style="color: #33f;">j</span><span style="color: #080;">&#41;</span><span style="color: #080;">&#41;</span> = count_maj<span style="color: #080;">&#40;</span>std_maj_choice<span style="color: #080;">&#40;</span><span style="color: #33f;">i</span>,<span style="color: #33f;">j</span><span style="color: #080;">&#41;</span><span style="color: #080;">&#41;</span> +<span style="color: #33f;">1</span>;
            std_maj<span style="color: #080;">&#40;</span><span style="color: #33f;">i</span><span style="color: #080;">&#41;</span> = std_maj_choice<span style="color: #080;">&#40;</span><span style="color: #33f;">i</span>,<span style="color: #33f;">j</span><span style="color: #080;">&#41;</span>;
            <span style="color: #0000FF;">break</span>;
        <span style="color: #0000FF;">end</span>
   <span style="color: #0000FF;">end</span>
<span style="color: #0000FF;">end</span>
&nbsp;
&nbsp;
<span style="color: #228B22;">%assign minor group according to CGPA</span>
<span style="color: #0000FF;">for</span> <span style="color: #33f;">i</span> = <span style="color: #33f;">1</span>:N_std
    <span style="color: #0000FF;">for</span> <span style="color: #33f;">j</span> = <span style="color: #33f;">1</span>:<span style="color: #33f;">4</span>
        <span style="color: #0000FF;">if</span> <span style="color: #080;">&#40;</span>count_min<span style="color: #080;">&#40;</span>std_min_choice<span style="color: #080;">&#40;</span><span style="color: #33f;">i</span>,<span style="color: #33f;">j</span><span style="color: #080;">&#41;</span><span style="color: #080;">&#41;</span> &lt; N_min_max<span style="color: #080;">&#41;</span> &amp;&amp;  <span style="color: #080;">&#40;</span>std_min_choice<span style="color: #080;">&#40;</span><span style="color: #33f;">i</span>,<span style="color: #33f;">j</span><span style="color: #080;">&#41;</span> ~= std_maj<span style="color: #080;">&#40;</span><span style="color: #33f;">i</span><span style="color: #080;">&#41;</span><span style="color: #080;">&#41;</span>
            count_min<span style="color: #080;">&#40;</span>std_min_choice<span style="color: #080;">&#40;</span><span style="color: #33f;">i</span>,<span style="color: #33f;">j</span><span style="color: #080;">&#41;</span><span style="color: #080;">&#41;</span> = count_min<span style="color: #080;">&#40;</span>std_min_choice<span style="color: #080;">&#40;</span><span style="color: #33f;">i</span>,<span style="color: #33f;">j</span><span style="color: #080;">&#41;</span><span style="color: #080;">&#41;</span> +<span style="color: #33f;">1</span>;
            std_min<span style="color: #080;">&#40;</span><span style="color: #33f;">i</span><span style="color: #080;">&#41;</span> = std_min_choice<span style="color: #080;">&#40;</span><span style="color: #33f;">i</span>,<span style="color: #33f;">j</span><span style="color: #080;">&#41;</span>;
            <span style="color: #0000FF;">break</span>;
        <span style="color: #0000FF;">end</span>
   <span style="color: #0000FF;">end</span>
<span style="color: #0000FF;">end</span>
&nbsp;
final_result = <span style="color: #080;">&#91;</span>std_roll'; std_cgpa' std_maj'; std_min'<span style="color: #080;">&#93;</span>';
&nbsp;
final_result = <span style="color: #0000FF;">sortrows</span><span style="color: #080;">&#40;</span>final_result, <span style="color: #33f;">1</span><span style="color: #080;">&#41;</span>;</pre></td></tr></table></div>

<div class='bookmarkify'><a name='bookmarkify'></a><div class='title' title='Use these links to share this page with others'><h3>বুকমার্ক</h3></div><div class='linkbuttons'><a href='http://www.bloglines.com/sub/http://www.sajidmc.net/bn/2010/05/matlab-code-for-major-minor-grouping-of-students-of-dept-of-eee-buet/' title='Save to Bloglines' onclick='target="_blank";' rel='nofollow'><img src='http://www.sajidmc.net/wp-content/plugins/bookmarkify/bloglines.png' style='width:16px; height:16px;' alt='[Bloglines] ' /></a> <a href='http://del.icio.us/post?url=http://www.sajidmc.net/bn/2010/05/matlab-code-for-major-minor-grouping-of-students-of-dept-of-eee-buet/&amp;title=MATLAB code for Major Minor grouping of students of Dept of EEE, BUET' title='Save to del.icio.us' onclick='target="_blank";' rel='nofollow'><img src='http://www.sajidmc.net/wp-content/plugins/bookmarkify/delicious.png' style='width:16px; height:16px;' alt='[del.icio.us] ' /></a> <a href='http://digg.com/submit?phase=2&amp;url=http://www.sajidmc.net/bn/2010/05/matlab-code-for-major-minor-grouping-of-students-of-dept-of-eee-buet/&amp;title=MATLAB code for Major Minor grouping of students of Dept of EEE, BUET' title='Digg It!' onclick='target="_blank";' rel='nofollow'><img src='http://www.sajidmc.net/wp-content/plugins/bookmarkify/digg.png' style='width:16px; height:16px;' alt='[Digg] ' /></a> <a href='http://www.facebook.com/share.php?u=http://www.sajidmc.net/bn/2010/05/matlab-code-for-major-minor-grouping-of-students-of-dept-of-eee-buet/' title='Save to Facebook' onclick='target="_blank";' rel='nofollow'><img src='http://www.sajidmc.net/wp-content/plugins/bookmarkify/facebook.png' style='width:16px; height:16px;' alt='[Facebook] ' /></a> <a href='http://www.google.com/bookmarks/mark?op=edit&amp;output=popup&amp;bkmk=http://www.sajidmc.net/bn/2010/05/matlab-code-for-major-minor-grouping-of-students-of-dept-of-eee-buet/&amp;title=MATLAB code for Major Minor grouping of students of Dept of EEE, BUET' title='Save to Google Bookmarks' onclick='target="_blank";' rel='nofollow'><img src='http://www.sajidmc.net/wp-content/plugins/bookmarkify/google.png' style='width:16px; height:16px;' alt='[Google] ' /></a> <a href='http://twitter.com/home/?status=MATLAB code for Major Minor grouping of students of Dept of EEE, BUET+http://www.sajidmc.net/bn/2010/05/matlab-code-for-major-minor-grouping-of-students-of-dept-of-eee-buet/' title='Save to Twitter' onclick='target="_blank";' rel='nofollow'><img src='http://www.sajidmc.net/wp-content/plugins/bookmarkify/twitter.png' style='width:16px; height:16px;' alt='[Twitter] ' /></a> <a href='http://bookmarks.yahoo.com/toolbar/savebm?opener=tb&amp;u=http://www.sajidmc.net/bn/2010/05/matlab-code-for-major-minor-grouping-of-students-of-dept-of-eee-buet/&amp;t=MATLAB code for Major Minor grouping of students of Dept of EEE, BUET' title='Save to Yahoo! Bookmarks' onclick='target="_blank";' rel='nofollow'><img src='http://www.sajidmc.net/wp-content/plugins/bookmarkify/yahoo.png' style='width:16px; height:16px;' alt='[Yahoo!] ' /></a> <a href='http://www.feedburner.com/fb/a/emailFlare?itemTitle=MATLAB code for Major Minor grouping of students of Dept of EEE, BUET&amp;uri=http://www.sajidmc.net/bn/2010/05/matlab-code-for-major-minor-grouping-of-students-of-dept-of-eee-buet/&amp;loc=en_US' title='Email this to a friend' onclick='target="_blank";' rel='nofollow'><img src='http://www.sajidmc.net/wp-content/plugins/bookmarkify/email.png' style='width:16px; height:16px;' alt='[Email] ' /></a>  <a title='See more bookmark and sharing options...' href='http://www.sajidmc.net/bn/2010/05/matlab-code-for-major-minor-grouping-of-students-of-dept-of-eee-buet/#bookmarkify' rel='nofollow'><small>More&nbsp;&raquo;</small></a></div></div>

<p>Related posts:<ol><li><a href='http://www.sajidmc.net/bn/2009/05/efficient-matlab-coding/' rel='bookmark' title='Permanent Link: দক্ষ ম্যাটল্যাব কোডিং'>দক্ষ ম্যাটল্যাব কোডিং</a></li>
<li><a href='http://www.sajidmc.net/bn/2008/05/the-ieee-region-10-student-congress-2008/' rel='bookmark' title='Permanent Link: The IEEE Region 10 Student Congress 2008'>The IEEE Region 10 Student Congress 2008</a></li>
<li><a href='http://www.sajidmc.net/bn/2009/02/creating-a-pcb-the-toru-bhai-style/' rel='bookmark' title='Permanent Link: Creating a PCB: The Toru Bhai Style'>Creating a PCB: The Toru Bhai Style</a></li>
</ol></p>]]></content:encoded>
			<wfw:commentRss>http://www.sajidmc.net/bn/2010/05/matlab-code-for-major-minor-grouping-of-students-of-dept-of-eee-buet/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>Auto Routing in Single Layer &#8211; Proteus Isis and Ares</title>
		<link>http://www.sajidmc.net/bn/2010/04/auto-routing-in-single-layer-proteus-isis-and-ares/</link>
		<comments>http://www.sajidmc.net/bn/2010/04/auto-routing-in-single-layer-proteus-isis-and-ares/#comments</comments>
		<pubDate>Tue, 06 Apr 2010 13:00:26 +0000</pubDate>
		<dc:creator>সাজিদ মুহাইমিন চৌধুরী</dc:creator>
				<category><![CDATA[পি.সি.বি বিন্যাস]]></category>

		<guid isPermaLink="false">http://www.sajidmc.net/bn/?p=417</guid>
		<description><![CDATA[www.youtube.com/watch?v=03dlGIDw6kM বুকমার্ক More&#160;&#187; Related posts:A Tutorial of Proteus Isis and Proteus Ares Microcontroller Based Automatic Object Sorting by Length


Related posts:<ol><li><a href='http://www.sajidmc.net/bn/2009/04/tutorial-of-proteus-isis-ares/' rel='bookmark' title='Permanent Link: A Tutorial of Proteus Isis and Proteus Ares'>A Tutorial of Proteus Isis and Proteus Ares</a></li>
<li><a href='http://www.sajidmc.net/bn/2008/11/microcontroller-based-automatic-object-sorting-by-length/' rel='bookmark' title='Permanent Link: Microcontroller Based Automatic Object Sorting by Length'>Microcontroller Based Automatic Object Sorting by Length</a></li>
</ol>]]></description>
			<content:encoded><![CDATA[<p> <span class="youtube">
<object width="425" height="355">
<param name="movie" value="http://www.youtube.com/v/03dlGIDw6kM&amp;color1=d6d6d6&amp;color2=f0f0f0&amp;border=0&amp;fs=1&amp;hl=en&amp;autoplay=0&amp;showinfo=0&amp;iv_load_policy=3&amp;showsearch=0?rel=1" />
<param name="allowFullScreen" value="true" />
<embed wmode="transparent" src="http://www.youtube.com/v/03dlGIDw6kM&amp;color1=d6d6d6&amp;color2=f0f0f0&amp;border=0&amp;fs=1&amp;hl=en&amp;autoplay=0&amp;showinfo=0&amp;iv_load_policy=3&amp;showsearch=0?rel=1" type="application/x-shockwave-flash" allowfullscreen="true" width="425" height="355"></embed>
<param name="wmode" value="transparent" />
</object>
</span><p><a href="http://www.youtube.com/watch?v=03dlGIDw6kM">www.youtube.com/watch?v=03dlGIDw6kM</a></p></p>
<div class='bookmarkify'><a name='bookmarkify'></a><div class='title' title='Use these links to share this page with others'><h3>বুকমার্ক</h3></div><div class='linkbuttons'><a href='http://www.bloglines.com/sub/http://www.sajidmc.net/bn/2010/04/auto-routing-in-single-layer-proteus-isis-and-ares/' title='Save to Bloglines' onclick='target="_blank";' rel='nofollow'><img src='http://www.sajidmc.net/wp-content/plugins/bookmarkify/bloglines.png' style='width:16px; height:16px;' alt='[Bloglines] ' /></a> <a href='http://del.icio.us/post?url=http://www.sajidmc.net/bn/2010/04/auto-routing-in-single-layer-proteus-isis-and-ares/&amp;title=Auto Routing in Single Layer -- Proteus Isis and Ares' title='Save to del.icio.us' onclick='target="_blank";' rel='nofollow'><img src='http://www.sajidmc.net/wp-content/plugins/bookmarkify/delicious.png' style='width:16px; height:16px;' alt='[del.icio.us] ' /></a> <a href='http://digg.com/submit?phase=2&amp;url=http://www.sajidmc.net/bn/2010/04/auto-routing-in-single-layer-proteus-isis-and-ares/&amp;title=Auto Routing in Single Layer -- Proteus Isis and Ares' title='Digg It!' onclick='target="_blank";' rel='nofollow'><img src='http://www.sajidmc.net/wp-content/plugins/bookmarkify/digg.png' style='width:16px; height:16px;' alt='[Digg] ' /></a> <a href='http://www.facebook.com/share.php?u=http://www.sajidmc.net/bn/2010/04/auto-routing-in-single-layer-proteus-isis-and-ares/' title='Save to Facebook' onclick='target="_blank";' rel='nofollow'><img src='http://www.sajidmc.net/wp-content/plugins/bookmarkify/facebook.png' style='width:16px; height:16px;' alt='[Facebook] ' /></a> <a href='http://www.google.com/bookmarks/mark?op=edit&amp;output=popup&amp;bkmk=http://www.sajidmc.net/bn/2010/04/auto-routing-in-single-layer-proteus-isis-and-ares/&amp;title=Auto Routing in Single Layer -- Proteus Isis and Ares' title='Save to Google Bookmarks' onclick='target="_blank";' rel='nofollow'><img src='http://www.sajidmc.net/wp-content/plugins/bookmarkify/google.png' style='width:16px; height:16px;' alt='[Google] ' /></a> <a href='http://twitter.com/home/?status=Auto Routing in Single Layer -- Proteus Isis and Ares+http://www.sajidmc.net/bn/2010/04/auto-routing-in-single-layer-proteus-isis-and-ares/' title='Save to Twitter' onclick='target="_blank";' rel='nofollow'><img src='http://www.sajidmc.net/wp-content/plugins/bookmarkify/twitter.png' style='width:16px; height:16px;' alt='[Twitter] ' /></a> <a href='http://bookmarks.yahoo.com/toolbar/savebm?opener=tb&amp;u=http://www.sajidmc.net/bn/2010/04/auto-routing-in-single-layer-proteus-isis-and-ares/&amp;t=Auto Routing in Single Layer -- Proteus Isis and Ares' title='Save to Yahoo! Bookmarks' onclick='target="_blank";' rel='nofollow'><img src='http://www.sajidmc.net/wp-content/plugins/bookmarkify/yahoo.png' style='width:16px; height:16px;' alt='[Yahoo!] ' /></a> <a href='http://www.feedburner.com/fb/a/emailFlare?itemTitle=Auto Routing in Single Layer -- Proteus Isis and Ares&amp;uri=http://www.sajidmc.net/bn/2010/04/auto-routing-in-single-layer-proteus-isis-and-ares/&amp;loc=en_US' title='Email this to a friend' onclick='target="_blank";' rel='nofollow'><img src='http://www.sajidmc.net/wp-content/plugins/bookmarkify/email.png' style='width:16px; height:16px;' alt='[Email] ' /></a>  <a title='See more bookmark and sharing options...' href='http://www.sajidmc.net/bn/2010/04/auto-routing-in-single-layer-proteus-isis-and-ares/#bookmarkify' rel='nofollow'><small>More&nbsp;&raquo;</small></a></div></div>

<p>Related posts:<ol><li><a href='http://www.sajidmc.net/bn/2009/04/tutorial-of-proteus-isis-ares/' rel='bookmark' title='Permanent Link: A Tutorial of Proteus Isis and Proteus Ares'>A Tutorial of Proteus Isis and Proteus Ares</a></li>
<li><a href='http://www.sajidmc.net/bn/2008/11/microcontroller-based-automatic-object-sorting-by-length/' rel='bookmark' title='Permanent Link: Microcontroller Based Automatic Object Sorting by Length'>Microcontroller Based Automatic Object Sorting by Length</a></li>
</ol></p>]]></content:encoded>
			<wfw:commentRss>http://www.sajidmc.net/bn/2010/04/auto-routing-in-single-layer-proteus-isis-and-ares/feed/</wfw:commentRss>
		<slash:comments>6</slash:comments>
		</item>
		<item>
		<title>Switched my academic website to webnode</title>
		<link>http://www.sajidmc.net/bn/2010/04/switched-my-academic-website-to-webnode/</link>
		<comments>http://www.sajidmc.net/bn/2010/04/switched-my-academic-website-to-webnode/#comments</comments>
		<pubDate>Mon, 05 Apr 2010 19:06:10 +0000</pubDate>
		<dc:creator>সাজিদ মুহাইমিন চৌধুরী</dc:creator>
				<category><![CDATA[অশ্রেণীভুক্ত]]></category>

		<guid isPermaLink="false">http://www.sajidmc.net/bn/2010/04/switched-my-academic-website-to-webnode/</guid>
		<description><![CDATA[As I mentioned earlier, I used Google Sites to maintain my academic website. The google sites is a great choice with unlimited bandwidth of site, but the layout and themes of the site is quite restricted. I was looking for some alternative to that. Weebly posed as an impressive alternative, but wasn’t quite that good. [...]


Related posts:<ol><li><a href='http://www.sajidmc.net/bn/2009/12/google-sites-home-of-my-academic-website/' rel='bookmark' title='Permanent Link: Google Sites &ndash; Home of my academic website'>Google Sites &ndash; Home of my academic website</a></li>
<li><a href='http://www.sajidmc.net/bn/2009/03/hosting-in-nxserve-the-best-free-hostinghosting-in-nxserve-the-best-free-hosting/' rel='bookmark' title='Permanent Link: Hosting in nxserve, the best free hosting!'>Hosting in nxserve, the best free hosting!</a></li>
<li><a href='http://www.sajidmc.net/bn/2009/04/moved-out-of-nx-serve-to-free-bee-hostingmoved-out-of-nx-serve-to-free-bee-hosting/' rel='bookmark' title='Permanent Link: Moved out of NX-Serve to Free Bee Hosting'>Moved out of NX-Serve to Free Bee Hosting</a></li>
</ol>]]></description>
			<content:encoded><![CDATA[<p>As I <a href="http://www.sajidmc.net/bn/2009/12/google-sites-home-of-my-academic-website/">mentioned earlier</a>, I used Google Sites to maintain my academic website. The google sites is a great choice with unlimited bandwidth of site, but the layout and themes of the site is quite restricted. I was looking for some alternative to that. Weebly posed as an impressive alternative, but wasn’t quite that good. I stumbled upon <a href="http://www.webnode.com">webnode</a>. It’s interface and default themes are really impressive. Moreover, they allow you to edit the default css of the themes.</p>
<p>This is a custom made theme for my present website, (still <a href="http://teacher.buet.ac.bd/sajid">teacher.buet.ac.bd/sajid</a>)</p>
<p><a href="http://www.sajidmc.net/wp-content/uploads/2010/04/image.png"><img style="border-bottom: 0px; border-left: 0px; display: inline; border-top: 0px; border-right: 0px" title="image" border="0" alt="image" src="http://www.sajidmc.net/wp-content/uploads/2010/04/image_thumb.png" width="404" height="298" /></a> </p>
<p>&#160;</p>
<p>The header of the site is taken from a CC website, possibly free web headers or some website.</p>
<p>There is one catch of webnode. Since it earns its revenue by web hosting, the free package comes with only 1GB bandwidth. So, the site is not quite suitable for hosting large files. I’ll try to use some other disk services for the file sharing part. Otherwise webnode is just fine.</p>
<div class='bookmarkify'><a name='bookmarkify'></a><div class='title' title='Use these links to share this page with others'><h3>বুকমার্ক</h3></div><div class='linkbuttons'><a href='http://www.bloglines.com/sub/http://www.sajidmc.net/bn/2010/04/switched-my-academic-website-to-webnode/' title='Save to Bloglines' onclick='target="_blank";' rel='nofollow'><img src='http://www.sajidmc.net/wp-content/plugins/bookmarkify/bloglines.png' style='width:16px; height:16px;' alt='[Bloglines] ' /></a> <a href='http://del.icio.us/post?url=http://www.sajidmc.net/bn/2010/04/switched-my-academic-website-to-webnode/&amp;title=Switched my academic website to webnode' title='Save to del.icio.us' onclick='target="_blank";' rel='nofollow'><img src='http://www.sajidmc.net/wp-content/plugins/bookmarkify/delicious.png' style='width:16px; height:16px;' alt='[del.icio.us] ' /></a> <a href='http://digg.com/submit?phase=2&amp;url=http://www.sajidmc.net/bn/2010/04/switched-my-academic-website-to-webnode/&amp;title=Switched my academic website to webnode' title='Digg It!' onclick='target="_blank";' rel='nofollow'><img src='http://www.sajidmc.net/wp-content/plugins/bookmarkify/digg.png' style='width:16px; height:16px;' alt='[Digg] ' /></a> <a href='http://www.facebook.com/share.php?u=http://www.sajidmc.net/bn/2010/04/switched-my-academic-website-to-webnode/' title='Save to Facebook' onclick='target="_blank";' rel='nofollow'><img src='http://www.sajidmc.net/wp-content/plugins/bookmarkify/facebook.png' style='width:16px; height:16px;' alt='[Facebook] ' /></a> <a href='http://www.google.com/bookmarks/mark?op=edit&amp;output=popup&amp;bkmk=http://www.sajidmc.net/bn/2010/04/switched-my-academic-website-to-webnode/&amp;title=Switched my academic website to webnode' title='Save to Google Bookmarks' onclick='target="_blank";' rel='nofollow'><img src='http://www.sajidmc.net/wp-content/plugins/bookmarkify/google.png' style='width:16px; height:16px;' alt='[Google] ' /></a> <a href='http://twitter.com/home/?status=Switched my academic website to webnode+http://www.sajidmc.net/bn/2010/04/switched-my-academic-website-to-webnode/' title='Save to Twitter' onclick='target="_blank";' rel='nofollow'><img src='http://www.sajidmc.net/wp-content/plugins/bookmarkify/twitter.png' style='width:16px; height:16px;' alt='[Twitter] ' /></a> <a href='http://bookmarks.yahoo.com/toolbar/savebm?opener=tb&amp;u=http://www.sajidmc.net/bn/2010/04/switched-my-academic-website-to-webnode/&amp;t=Switched my academic website to webnode' title='Save to Yahoo! Bookmarks' onclick='target="_blank";' rel='nofollow'><img src='http://www.sajidmc.net/wp-content/plugins/bookmarkify/yahoo.png' style='width:16px; height:16px;' alt='[Yahoo!] ' /></a> <a href='http://www.feedburner.com/fb/a/emailFlare?itemTitle=Switched my academic website to webnode&amp;uri=http://www.sajidmc.net/bn/2010/04/switched-my-academic-website-to-webnode/&amp;loc=en_US' title='Email this to a friend' onclick='target="_blank";' rel='nofollow'><img src='http://www.sajidmc.net/wp-content/plugins/bookmarkify/email.png' style='width:16px; height:16px;' alt='[Email] ' /></a>  <a title='See more bookmark and sharing options...' href='http://www.sajidmc.net/bn/2010/04/switched-my-academic-website-to-webnode/#bookmarkify' rel='nofollow'><small>More&nbsp;&raquo;</small></a></div></div>

<p>Related posts:<ol><li><a href='http://www.sajidmc.net/bn/2009/12/google-sites-home-of-my-academic-website/' rel='bookmark' title='Permanent Link: Google Sites &ndash; Home of my academic website'>Google Sites &ndash; Home of my academic website</a></li>
<li><a href='http://www.sajidmc.net/bn/2009/03/hosting-in-nxserve-the-best-free-hostinghosting-in-nxserve-the-best-free-hosting/' rel='bookmark' title='Permanent Link: Hosting in nxserve, the best free hosting!'>Hosting in nxserve, the best free hosting!</a></li>
<li><a href='http://www.sajidmc.net/bn/2009/04/moved-out-of-nx-serve-to-free-bee-hostingmoved-out-of-nx-serve-to-free-bee-hosting/' rel='bookmark' title='Permanent Link: Moved out of NX-Serve to Free Bee Hosting'>Moved out of NX-Serve to Free Bee Hosting</a></li>
</ol></p>]]></content:encoded>
			<wfw:commentRss>http://www.sajidmc.net/bn/2010/04/switched-my-academic-website-to-webnode/feed/</wfw:commentRss>
		<slash:comments>2</slash:comments>
		</item>
		<item>
		<title>Bookmarklet for Google Dictionary</title>
		<link>http://www.sajidmc.net/bn/2009/12/bookmarklet-for-google-dictionary/</link>
		<comments>http://www.sajidmc.net/bn/2009/12/bookmarklet-for-google-dictionary/#comments</comments>
		<pubDate>Tue, 22 Dec 2009 17:06:51 +0000</pubDate>
		<dc:creator>সাজিদ মুহাইমিন চৌধুরী</dc:creator>
				<category><![CDATA[অশ্রেণীভুক্ত]]></category>
		<category><![CDATA[ওয়েব তৈরি]]></category>
		<category><![CDATA[বৃকমার্কলেট]]></category>

		<guid isPermaLink="false">http://www.sajidmc.net/bn/2009/12/bookmarklet-for-google-dictionary/</guid>
		<description><![CDATA[A reader of my blog was kind to let me know by telephone that he was eager to use Google dictionary with my inline dictionary bookmarklet. So today I am launching the Google version of my bookmarklet. As usual, drag them to your browser bar to use. The English to Bangla dictionary is still being [...]


Related posts:<ol><li><a href='http://www.sajidmc.net/bn/2009/12/google-brings-indic-ime/' rel='bookmark' title='Permanent Link: Google Brings Indic IME'>Google Brings Indic IME</a></li>
<li><a href='http://www.sajidmc.net/bn/2009/07/prothom-alo-and-ascii-websites-using-chrome-and-firefox/' rel='bookmark' title='Permanent Link: প্রথম আলো ও অন্যান্য বাংলা অ-ইউনিকোডীয় সাইট গুগল ক্রোম ও মজিলা ফায়ারফক্স দিয়ে দেখুন'>প্রথম আলো ও অন্যান্য বাংলা অ-ইউনিকোডীয় সাইট গুগল ক্রোম ও মজিলা ফায়ারফক্স দিয়ে দেখুন</a></li>
<li><a href='http://www.sajidmc.net/bn/2009/05/google-bangla-transliteration/' rel='bookmark' title='Permanent Link: গুগল বাংলা আক্ষরিক অনুবাদ'>গুগল বাংলা আক্ষরিক অনুবাদ</a></li>
</ol>]]></description>
			<content:encoded><![CDATA[<p>A reader of my blog was kind to let me know by telephone that he was eager to use Google dictionary with my <a href="http://www.sajidmc.net/en/2009/10/get-definitions-of-words-in-your-web-browser/">inline dictionary bookmarklet</a>. So today I am launching the Google version of my bookmarklet. As usual, drag them to your browser bar to use. The English to Bangla dictionary is still being developed, and not that robust.</p>
<p><a href="javascript:(function(){function%20toggleItem(id){var%20existing_iframe=document.getElementById(id);if(existing_iframe){existing_iframe.parentNode.removeChild(existing_iframe);}%20return;}(function(){var%20t;try{t=((window.getSelection&amp;&amp;window.getSelection())||(document.getSelection&amp;&amp;document.getSelection())||(document.selection&amp;&amp;document.selection.createRange&amp;&amp;document.selection.createRange().text));}catch(e){t=&quot;&quot;;}var%20iframe_url=&quot;http://www.google.com/dictionary?langpair=en|bn&amp;q=&quot;+t%20+%20&quot;+&amp;hl=en&amp;aq=f&quot;;if(t===&quot;&quot;||t===&quot;%20&quot;){return;}var%20existing_iframe=document.getElementById('instacalc_bookmarklet');if(existing_iframe){now_iframe=document.getElementById('instacalc_bookmarklet_iframe');now_iframe.src=iframe_url;document.getElementById(&quot;instacalc_bookmarklet&quot;).style.display=&quot;&quot;;}else{var%20div=document.createElement(&quot;div&quot;);div.id=&quot;instacalc_bookmarklet&quot;;var%20str=&quot;&quot;;str+=&quot;&lt;table%20id='instacalc_bookmarklet_table'%20valign='top'%20width='350'%20cellspacing='0'%20cellpadding='0'&gt;&lt;tr&gt;&lt;td%20width%20='350'%20height='350'&gt;&quot;;str+=&quot;&lt;iframe%20frameborder='0'%20scrolling='auto'%20name='instacalc_bookmarklet_iframe'%20onLoad='window.frames.instacalc_bookmarklet_iframe.scrollBy(0,90)'%20%20%20id='instacalc_bookmarklet_iframe'%20src='&quot;+iframe_url+&quot;'%20width='350px'%20height='350px'%20style='textalign:right;%20backgroundColor:%20white;'&gt;&lt;/iframe&gt;&quot;;str+=&quot;&lt;/td&gt;&lt;td%20onClick='toggleItem(\&quot;instacalc_bookmarklet\&quot;);'%20style='background:%20#FFDDDD;'%20title='click%20to%20close%20window'%20valign='top'%20align='center'%20width='20px'&gt;&quot;;str+=&quot;&lt;a%20href='javascript:document.getElementById(\&quot;instacalc_bookmarklet\&quot;).style.display%20=%20\&quot;none\&quot;;'%20%20onClick='toggleItem(\&quot;instacalc_bookmarklet\&quot;);'%20%20style='width:100%;%20text-align:%20middle;%20color:%20#FF0000;%20font-family:%20Arial;'&gt;x&lt;/a&gt;&quot;;str+=&quot;&lt;/td&gt;&lt;/tr&gt;&lt;tr&gt;&lt;td&gt;&lt;i&gt;Bookmarklet%20Created%20by%20&lt;/i&gt;&lt;a%20href='http://www.sajidmc.net'&gt;Sajid%20Muhaimin%20Choudhury&lt;/a&gt;&lt;/td&gt;&lt;/tr&gt;&lt;/table&gt;&quot;;div.innerHTML=str;document.body.insertBefore(div,document.body.firstChild);r=document.getElementById('instacalc_bookmarklet_table').style;r.border=&quot;3px%20solid%20#333&quot;;r.position=&quot;fixed&quot;;r._position=&quot;absolute&quot;;r.top=&quot;0&quot;;r.right=&quot;0&quot;;r.width=&quot;350px&quot;;r.height=&quot;350px&quot;;r.zindex=&quot;1000000000&quot;;r.margin=&quot;0&quot;;r.padding=&quot;0&quot;;r.background=&quot;white&quot;;r.onLoad%20=%20&quot;window.frames.instacalc_bookmarklet_iframe.scrollBy(0,90)&quot;;}})();})();">[English to Bangla]</a></p>
<p><a href="javascript:(function(){function%20toggleItem(id){var%20existing_iframe=document.getElementById(id);if(existing_iframe){existing_iframe.parentNode.removeChild(existing_iframe);}%20return;}(function(){var%20t;try{t=((window.getSelection&amp;&amp;window.getSelection())||(document.getSelection&amp;&amp;document.getSelection())||(document.selection&amp;&amp;document.selection.createRange&amp;&amp;document.selection.createRange().text));}catch(e){t=&quot;&quot;;}var%20iframe_url=&quot;http://www.google.com/dictionary?langpair=en|en&amp;q=&quot;+t%20+%20&quot;+&amp;hl=en&amp;aq=f&quot;;if(t===&quot;&quot;||t===&quot;%20&quot;){return;}var%20existing_iframe=document.getElementById('instacalc_bookmarklet');if(existing_iframe){now_iframe=document.getElementById('instacalc_bookmarklet_iframe');now_iframe.src=iframe_url;document.getElementById(&quot;instacalc_bookmarklet&quot;).style.display=&quot;&quot;;}else{var%20div=document.createElement(&quot;div&quot;);div.id=&quot;instacalc_bookmarklet&quot;;var%20str=&quot;&quot;;str+=&quot;&lt;table%20id='instacalc_bookmarklet_table'%20valign='top'%20width='350'%20cellspacing='0'%20cellpadding='0'&gt;&lt;tr&gt;&lt;td%20width%20='350'%20height='350'&gt;&quot;;str+=&quot;&lt;iframe%20frameborder='0'%20scrolling='auto'%20name='instacalc_bookmarklet_iframe'%20onLoad='window.frames.instacalc_bookmarklet_iframe.scrollBy(0,90)'%20%20%20id='instacalc_bookmarklet_iframe'%20src='&quot;+iframe_url+&quot;'%20width='350px'%20height='350px'%20style='textalign:right;%20backgroundColor:%20white;'&gt;&lt;/iframe&gt;&quot;;str+=&quot;&lt;/td&gt;&lt;td%20onClick='toggleItem(\&quot;instacalc_bookmarklet\&quot;);'%20style='background:%20#FFDDDD;'%20title='click%20to%20close%20window'%20valign='top'%20align='center'%20width='20px'&gt;&quot;;str+=&quot;&lt;a%20href='javascript:document.getElementById(\&quot;instacalc_bookmarklet\&quot;).style.display%20=%20\&quot;none\&quot;;'%20%20onClick='toggleItem(\&quot;instacalc_bookmarklet\&quot;);'%20%20style='width:100%;%20text-align:%20middle;%20color:%20#FF0000;%20font-family:%20Arial;'&gt;x&lt;/a&gt;&quot;;str+=&quot;&lt;/td&gt;&lt;/tr&gt;&lt;tr&gt;&lt;td&gt;&lt;i&gt;Bookmarklet%20Created%20by%20&lt;/i&gt;&lt;a%20href='http://www.sajidmc.net'&gt;Sajid%20Muhaimin%20Choudhury&lt;/a&gt;&lt;/td&gt;&lt;/tr&gt;&lt;/table&gt;&quot;;div.innerHTML=str;document.body.insertBefore(div,document.body.firstChild);r=document.getElementById('instacalc_bookmarklet_table').style;r.border=&quot;3px%20solid%20#333&quot;;r.position=&quot;fixed&quot;;r._position=&quot;absolute&quot;;r.top=&quot;0&quot;;r.right=&quot;0&quot;;r.width=&quot;350px&quot;;r.height=&quot;350px&quot;;r.zindex=&quot;1000000000&quot;;r.margin=&quot;0&quot;;r.padding=&quot;0&quot;;r.background=&quot;white&quot;;r.onLoad%20=%20&quot;window.frames.instacalc_bookmarklet_iframe.scrollBy(0,90)&quot;;}})();})();">[English to English]</a></p>
<p><a href="http://www.sajidmc.net/wp-content/uploads/2009/12/image1.png"><img style="display: inline; border: 0px;" title="image" src="http://www.sajidmc.net/wp-content/uploads/2009/12/image_thumb1.png" border="0" alt="image" width="445" height="289" /></a></p>
<div class='bookmarkify'><a name='bookmarkify'></a><div class='title' title='Use these links to share this page with others'><h3>বুকমার্ক</h3></div><div class='linkbuttons'><a href='http://www.bloglines.com/sub/http://www.sajidmc.net/bn/2009/12/bookmarklet-for-google-dictionary/' title='Save to Bloglines' onclick='target="_blank";' rel='nofollow'><img src='http://www.sajidmc.net/wp-content/plugins/bookmarkify/bloglines.png' style='width:16px; height:16px;' alt='[Bloglines] ' /></a> <a href='http://del.icio.us/post?url=http://www.sajidmc.net/bn/2009/12/bookmarklet-for-google-dictionary/&amp;title=Bookmarklet for Google Dictionary' title='Save to del.icio.us' onclick='target="_blank";' rel='nofollow'><img src='http://www.sajidmc.net/wp-content/plugins/bookmarkify/delicious.png' style='width:16px; height:16px;' alt='[del.icio.us] ' /></a> <a href='http://digg.com/submit?phase=2&amp;url=http://www.sajidmc.net/bn/2009/12/bookmarklet-for-google-dictionary/&amp;title=Bookmarklet for Google Dictionary' title='Digg It!' onclick='target="_blank";' rel='nofollow'><img src='http://www.sajidmc.net/wp-content/plugins/bookmarkify/digg.png' style='width:16px; height:16px;' alt='[Digg] ' /></a> <a href='http://www.facebook.com/share.php?u=http://www.sajidmc.net/bn/2009/12/bookmarklet-for-google-dictionary/' title='Save to Facebook' onclick='target="_blank";' rel='nofollow'><img src='http://www.sajidmc.net/wp-content/plugins/bookmarkify/facebook.png' style='width:16px; height:16px;' alt='[Facebook] ' /></a> <a href='http://www.google.com/bookmarks/mark?op=edit&amp;output=popup&amp;bkmk=http://www.sajidmc.net/bn/2009/12/bookmarklet-for-google-dictionary/&amp;title=Bookmarklet for Google Dictionary' title='Save to Google Bookmarks' onclick='target="_blank";' rel='nofollow'><img src='http://www.sajidmc.net/wp-content/plugins/bookmarkify/google.png' style='width:16px; height:16px;' alt='[Google] ' /></a> <a href='http://twitter.com/home/?status=Bookmarklet for Google Dictionary+http://www.sajidmc.net/bn/2009/12/bookmarklet-for-google-dictionary/' title='Save to Twitter' onclick='target="_blank";' rel='nofollow'><img src='http://www.sajidmc.net/wp-content/plugins/bookmarkify/twitter.png' style='width:16px; height:16px;' alt='[Twitter] ' /></a> <a href='http://bookmarks.yahoo.com/toolbar/savebm?opener=tb&amp;u=http://www.sajidmc.net/bn/2009/12/bookmarklet-for-google-dictionary/&amp;t=Bookmarklet for Google Dictionary' title='Save to Yahoo! Bookmarks' onclick='target="_blank";' rel='nofollow'><img src='http://www.sajidmc.net/wp-content/plugins/bookmarkify/yahoo.png' style='width:16px; height:16px;' alt='[Yahoo!] ' /></a> <a href='http://www.feedburner.com/fb/a/emailFlare?itemTitle=Bookmarklet for Google Dictionary&amp;uri=http://www.sajidmc.net/bn/2009/12/bookmarklet-for-google-dictionary/&amp;loc=en_US' title='Email this to a friend' onclick='target="_blank";' rel='nofollow'><img src='http://www.sajidmc.net/wp-content/plugins/bookmarkify/email.png' style='width:16px; height:16px;' alt='[Email] ' /></a>  <a title='See more bookmark and sharing options...' href='http://www.sajidmc.net/bn/2009/12/bookmarklet-for-google-dictionary/#bookmarkify' rel='nofollow'><small>More&nbsp;&raquo;</small></a></div></div>

<p>Related posts:<ol><li><a href='http://www.sajidmc.net/bn/2009/12/google-brings-indic-ime/' rel='bookmark' title='Permanent Link: Google Brings Indic IME'>Google Brings Indic IME</a></li>
<li><a href='http://www.sajidmc.net/bn/2009/07/prothom-alo-and-ascii-websites-using-chrome-and-firefox/' rel='bookmark' title='Permanent Link: প্রথম আলো ও অন্যান্য বাংলা অ-ইউনিকোডীয় সাইট গুগল ক্রোম ও মজিলা ফায়ারফক্স দিয়ে দেখুন'>প্রথম আলো ও অন্যান্য বাংলা অ-ইউনিকোডীয় সাইট গুগল ক্রোম ও মজিলা ফায়ারফক্স দিয়ে দেখুন</a></li>
<li><a href='http://www.sajidmc.net/bn/2009/05/google-bangla-transliteration/' rel='bookmark' title='Permanent Link: গুগল বাংলা আক্ষরিক অনুবাদ'>গুগল বাংলা আক্ষরিক অনুবাদ</a></li>
</ol></p>]]></content:encoded>
			<wfw:commentRss>http://www.sajidmc.net/bn/2009/12/bookmarklet-for-google-dictionary/feed/</wfw:commentRss>
		<slash:comments>3</slash:comments>
		</item>
		<item>
		<title>Google Sites &#8211; Home of my academic website</title>
		<link>http://www.sajidmc.net/bn/2009/12/google-sites-home-of-my-academic-website/</link>
		<comments>http://www.sajidmc.net/bn/2009/12/google-sites-home-of-my-academic-website/#comments</comments>
		<pubDate>Tue, 22 Dec 2009 16:01:47 +0000</pubDate>
		<dc:creator>সাজিদ মুহাইমিন চৌধুরী</dc:creator>
				<category><![CDATA[ব্যক্তিগত]]></category>

		<guid isPermaLink="false">http://www.sajidmc.net/bn/2009/12/google-sites-home-of-my-academic-website/</guid>
		<description><![CDATA[I like wordpress  as a blogging environment. And freebeehosting is a as great as a hosting platform can ever be. But for my academic materials, I need a hosting platform that is 24&#215;7 available without any interruption. Google sites seemed to be a good option. The BUET website management allows to upload 5 files at [...]


Related posts:<ol><li><a href='http://www.sajidmc.net/bn/2010/04/switched-my-academic-website-to-webnode/' rel='bookmark' title='Permanent Link: Switched my academic website to webnode'>Switched my academic website to webnode</a></li>
<li><a href='http://www.sajidmc.net/bn/2009/12/google-brings-indic-ime/' rel='bookmark' title='Permanent Link: Google Brings Indic IME'>Google Brings Indic IME</a></li>
<li><a href='http://www.sajidmc.net/bn/2009/07/prothom-alo-and-ascii-websites-using-chrome-and-firefox/' rel='bookmark' title='Permanent Link: প্রথম আলো ও অন্যান্য বাংলা অ-ইউনিকোডীয় সাইট গুগল ক্রোম ও মজিলা ফায়ারফক্স দিয়ে দেখুন'>প্রথম আলো ও অন্যান্য বাংলা অ-ইউনিকোডীয় সাইট গুগল ক্রোম ও মজিলা ফায়ারফক্স দিয়ে দেখুন</a></li>
</ol>]]></description>
			<content:encoded><![CDATA[<p>I like wordpress  as a blogging environment. And freebeehosting is a as great as a hosting platform can ever be. But for my academic materials, I need a hosting platform that is 24&#215;7 available without any interruption. Google sites seemed to be a good option.</p>
<p>The BUET website management allows to upload 5 files at a time. So all I did was to create an index.html file with iframe set to my google site page.</p>
<p><a href="http://www.sajidmc.net/wp-content/uploads/2009/12/image.png"><img style="display: inline; margin-left: 0px; margin-right: 0px; border: 0px;" title="image" src="http://www.sajidmc.net/wp-content/uploads/2009/12/image_thumb.png" border="0" alt="image" width="465" height="383" /></a></p>
<p>Google sites give options to rapidly create a website. I edited a default theme to incorporate the BUET logo into the banner. Problem is, you can’t have any custom CSS or javascript code, and if you are logged in, the google icons appear overhead.</p>
<p>Nevertheless, it is where I am hosting all my course related materials.</p>
<p>My BUET page: <a href="http://teacher.buet.ac.bd/sajid">teacher.buet.ac.bd/sajid</a></p>
<p>My actual Sites Page: <a href="http://sites.google.com/site/smcbuet/">sites.google.com/site/smcbuet/</a></p>
<p>Update: Some of my friends are also using this technique. I&#8217;ll keep link of their sites here:</p>
<p>Raisul  - <a href="http://teacher.buet.ac.bd/raisulislam/">http://teacher.buet.ac.bd/raisulislam</a> (Hosting24)</p>
<p>Shanto &#8211; <a href="http://teacher.buet.ac.bd/ashfanoor/">http://teacher.buet.ac.bd/ashfanoor</a> (Google Sites)</p>
<div class='bookmarkify'><a name='bookmarkify'></a><div class='title' title='Use these links to share this page with others'><h3>বুকমার্ক</h3></div><div class='linkbuttons'><a href='http://www.bloglines.com/sub/http://www.sajidmc.net/bn/2009/12/google-sites-home-of-my-academic-website/' title='Save to Bloglines' onclick='target="_blank";' rel='nofollow'><img src='http://www.sajidmc.net/wp-content/plugins/bookmarkify/bloglines.png' style='width:16px; height:16px;' alt='[Bloglines] ' /></a> <a href='http://del.icio.us/post?url=http://www.sajidmc.net/bn/2009/12/google-sites-home-of-my-academic-website/&amp;title=Google Sites &ndash; Home of my academic website' title='Save to del.icio.us' onclick='target="_blank";' rel='nofollow'><img src='http://www.sajidmc.net/wp-content/plugins/bookmarkify/delicious.png' style='width:16px; height:16px;' alt='[del.icio.us] ' /></a> <a href='http://digg.com/submit?phase=2&amp;url=http://www.sajidmc.net/bn/2009/12/google-sites-home-of-my-academic-website/&amp;title=Google Sites &ndash; Home of my academic website' title='Digg It!' onclick='target="_blank";' rel='nofollow'><img src='http://www.sajidmc.net/wp-content/plugins/bookmarkify/digg.png' style='width:16px; height:16px;' alt='[Digg] ' /></a> <a href='http://www.facebook.com/share.php?u=http://www.sajidmc.net/bn/2009/12/google-sites-home-of-my-academic-website/' title='Save to Facebook' onclick='target="_blank";' rel='nofollow'><img src='http://www.sajidmc.net/wp-content/plugins/bookmarkify/facebook.png' style='width:16px; height:16px;' alt='[Facebook] ' /></a> <a href='http://www.google.com/bookmarks/mark?op=edit&amp;output=popup&amp;bkmk=http://www.sajidmc.net/bn/2009/12/google-sites-home-of-my-academic-website/&amp;title=Google Sites &ndash; Home of my academic website' title='Save to Google Bookmarks' onclick='target="_blank";' rel='nofollow'><img src='http://www.sajidmc.net/wp-content/plugins/bookmarkify/google.png' style='width:16px; height:16px;' alt='[Google] ' /></a> <a href='http://twitter.com/home/?status=Google Sites &ndash; Home of my academic website+http://www.sajidmc.net/bn/2009/12/google-sites-home-of-my-academic-website/' title='Save to Twitter' onclick='target="_blank";' rel='nofollow'><img src='http://www.sajidmc.net/wp-content/plugins/bookmarkify/twitter.png' style='width:16px; height:16px;' alt='[Twitter] ' /></a> <a href='http://bookmarks.yahoo.com/toolbar/savebm?opener=tb&amp;u=http://www.sajidmc.net/bn/2009/12/google-sites-home-of-my-academic-website/&amp;t=Google Sites &ndash; Home of my academic website' title='Save to Yahoo! Bookmarks' onclick='target="_blank";' rel='nofollow'><img src='http://www.sajidmc.net/wp-content/plugins/bookmarkify/yahoo.png' style='width:16px; height:16px;' alt='[Yahoo!] ' /></a> <a href='http://www.feedburner.com/fb/a/emailFlare?itemTitle=Google Sites &ndash; Home of my academic website&amp;uri=http://www.sajidmc.net/bn/2009/12/google-sites-home-of-my-academic-website/&amp;loc=en_US' title='Email this to a friend' onclick='target="_blank";' rel='nofollow'><img src='http://www.sajidmc.net/wp-content/plugins/bookmarkify/email.png' style='width:16px; height:16px;' alt='[Email] ' /></a>  <a title='See more bookmark and sharing options...' href='http://www.sajidmc.net/bn/2009/12/google-sites-home-of-my-academic-website/#bookmarkify' rel='nofollow'><small>More&nbsp;&raquo;</small></a></div></div>

<p>Related posts:<ol><li><a href='http://www.sajidmc.net/bn/2010/04/switched-my-academic-website-to-webnode/' rel='bookmark' title='Permanent Link: Switched my academic website to webnode'>Switched my academic website to webnode</a></li>
<li><a href='http://www.sajidmc.net/bn/2009/12/google-brings-indic-ime/' rel='bookmark' title='Permanent Link: Google Brings Indic IME'>Google Brings Indic IME</a></li>
<li><a href='http://www.sajidmc.net/bn/2009/07/prothom-alo-and-ascii-websites-using-chrome-and-firefox/' rel='bookmark' title='Permanent Link: প্রথম আলো ও অন্যান্য বাংলা অ-ইউনিকোডীয় সাইট গুগল ক্রোম ও মজিলা ফায়ারফক্স দিয়ে দেখুন'>প্রথম আলো ও অন্যান্য বাংলা অ-ইউনিকোডীয় সাইট গুগল ক্রোম ও মজিলা ফায়ারফক্স দিয়ে দেখুন</a></li>
</ol></p>]]></content:encoded>
			<wfw:commentRss>http://www.sajidmc.net/bn/2009/12/google-sites-home-of-my-academic-website/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>Google Brings Indic IME</title>
		<link>http://www.sajidmc.net/bn/2009/12/google-brings-indic-ime/</link>
		<comments>http://www.sajidmc.net/bn/2009/12/google-brings-indic-ime/#comments</comments>
		<pubDate>Tue, 22 Dec 2009 13:10:53 +0000</pubDate>
		<dc:creator>সাজিদ মুহাইমিন চৌধুরী</dc:creator>
				<category><![CDATA[সফটওয়্যার]]></category>

		<guid isPermaLink="false">http://www.sajidmc.net/bn/2009/12/google-brings-indic-ime/</guid>
		<description><![CDATA[Avro and other phonetic typing software enabled us to forget about memorizing the so called “Bijoy Keyboard”, where h means ba and l means da. Any way, I don’t like their keyboard for one reason: you have to keep pressing the shift key to switch between letters. To me, phonetic typing means I’ll type the [...]


Related posts:<ol><li><a href='http://www.sajidmc.net/bn/2009/05/google-bangla-transliteration/' rel='bookmark' title='Permanent Link: গুগল বাংলা আক্ষরিক অনুবাদ'>গুগল বাংলা আক্ষরিক অনুবাদ</a></li>
<li><a href='http://www.sajidmc.net/bn/2009/12/bookmarklet-for-google-dictionary/' rel='bookmark' title='Permanent Link: Bookmarklet for Google Dictionary'>Bookmarklet for Google Dictionary</a></li>
<li><a href='http://www.sajidmc.net/bn/2009/04/moved-out-of-nx-serve-to-free-bee-hostingmoved-out-of-nx-serve-to-free-bee-hosting/' rel='bookmark' title='Permanent Link: Moved out of NX-Serve to Free Bee Hosting'>Moved out of NX-Serve to Free Bee Hosting</a></li>
</ol>]]></description>
			<content:encoded><![CDATA[<p>Avro and other phonetic typing software enabled us to forget about memorizing the so called “Bijoy Keyboard”, where h means ba and l means da. Any way, I don’t like their keyboard for one reason: you have to keep pressing the shift key to switch between letters. To me, phonetic typing means I’ll type the pronunciation in English, and computer will understand what I mean. That is when Google Transliteration came. First it started as a browser based text only editor. Then it brought rich text editor support and bookmarklets to support any web based text editor. But it still isn’t enough. I do a lot of typing using windows live writer and Microsoft Word. So I was still somewhat dependent on Ekushey and Avro. Now google has decided to end that misery. Google has launched it’s own version of Ekushey, the <strong>Google Indic IME</strong>.  Imagine what google has to offer:</p>
<ul>
<li><strong>Offline Support &#8211; </strong>No dependency on internet connection.</li>
<li><strong>Word Completions &#8211; </strong>Dictionary based word completions for prefixes.</li>
<li><strong>Personalized Choices &#8211; </strong>Remember user corrections for personalized service.</li>
<li><strong>Easy Keyboard &#8211; </strong>Dictionary enabled keyboard to enter rare and complex words.</li>
<li><strong>Cool Customization &#8211; </strong>Customize suggestions page size, display font and more.</li>
</ul>
<p>Beware, however that Google will be able to access every word you type, so careful what you are typing.  Download it from : <a href="http://www.google.com/ime/transliteration/index.html">http://www.google.com/ime/transliteration/index.html</a> Some people may have some difficulty with google update behind a firewall. (Especially my BUET colleagues). For them, here is a direct link to the installer.  <a title="http://sites.google.com/site/sajiduc/my-files/googlebengaliinputsetup.zip?attredirects=0&amp;d=1" href="http://sites.google.com/site/sajiduc/my-files/googlebengaliinputsetup.zip?attredirects=0&amp;d=1">http://sites.google.com/site/sajiduc/my-files/googlebengaliinputsetup.zip</a></p>
<p><img style="float: left; border: 0px initial initial;" title="Google Indic IME" src="http://www.sajidmc.net/wp-content/uploads/2009/12/gogon.png" alt="Google Indic IME" width="819" height="593" /></p>
<div class='bookmarkify'><a name='bookmarkify'></a><div class='title' title='Use these links to share this page with others'><h3>বুকমার্ক</h3></div><div class='linkbuttons'><a href='http://www.bloglines.com/sub/http://www.sajidmc.net/bn/2009/12/google-brings-indic-ime/' title='Save to Bloglines' onclick='target="_blank";' rel='nofollow'><img src='http://www.sajidmc.net/wp-content/plugins/bookmarkify/bloglines.png' style='width:16px; height:16px;' alt='[Bloglines] ' /></a> <a href='http://del.icio.us/post?url=http://www.sajidmc.net/bn/2009/12/google-brings-indic-ime/&amp;title=Google Brings Indic IME' title='Save to del.icio.us' onclick='target="_blank";' rel='nofollow'><img src='http://www.sajidmc.net/wp-content/plugins/bookmarkify/delicious.png' style='width:16px; height:16px;' alt='[del.icio.us] ' /></a> <a href='http://digg.com/submit?phase=2&amp;url=http://www.sajidmc.net/bn/2009/12/google-brings-indic-ime/&amp;title=Google Brings Indic IME' title='Digg It!' onclick='target="_blank";' rel='nofollow'><img src='http://www.sajidmc.net/wp-content/plugins/bookmarkify/digg.png' style='width:16px; height:16px;' alt='[Digg] ' /></a> <a href='http://www.facebook.com/share.php?u=http://www.sajidmc.net/bn/2009/12/google-brings-indic-ime/' title='Save to Facebook' onclick='target="_blank";' rel='nofollow'><img src='http://www.sajidmc.net/wp-content/plugins/bookmarkify/facebook.png' style='width:16px; height:16px;' alt='[Facebook] ' /></a> <a href='http://www.google.com/bookmarks/mark?op=edit&amp;output=popup&amp;bkmk=http://www.sajidmc.net/bn/2009/12/google-brings-indic-ime/&amp;title=Google Brings Indic IME' title='Save to Google Bookmarks' onclick='target="_blank";' rel='nofollow'><img src='http://www.sajidmc.net/wp-content/plugins/bookmarkify/google.png' style='width:16px; height:16px;' alt='[Google] ' /></a> <a href='http://twitter.com/home/?status=Google Brings Indic IME+http://www.sajidmc.net/bn/2009/12/google-brings-indic-ime/' title='Save to Twitter' onclick='target="_blank";' rel='nofollow'><img src='http://www.sajidmc.net/wp-content/plugins/bookmarkify/twitter.png' style='width:16px; height:16px;' alt='[Twitter] ' /></a> <a href='http://bookmarks.yahoo.com/toolbar/savebm?opener=tb&amp;u=http://www.sajidmc.net/bn/2009/12/google-brings-indic-ime/&amp;t=Google Brings Indic IME' title='Save to Yahoo! Bookmarks' onclick='target="_blank";' rel='nofollow'><img src='http://www.sajidmc.net/wp-content/plugins/bookmarkify/yahoo.png' style='width:16px; height:16px;' alt='[Yahoo!] ' /></a> <a href='http://www.feedburner.com/fb/a/emailFlare?itemTitle=Google Brings Indic IME&amp;uri=http://www.sajidmc.net/bn/2009/12/google-brings-indic-ime/&amp;loc=en_US' title='Email this to a friend' onclick='target="_blank";' rel='nofollow'><img src='http://www.sajidmc.net/wp-content/plugins/bookmarkify/email.png' style='width:16px; height:16px;' alt='[Email] ' /></a>  <a title='See more bookmark and sharing options...' href='http://www.sajidmc.net/bn/2009/12/google-brings-indic-ime/#bookmarkify' rel='nofollow'><small>More&nbsp;&raquo;</small></a></div></div>

<p>Related posts:<ol><li><a href='http://www.sajidmc.net/bn/2009/05/google-bangla-transliteration/' rel='bookmark' title='Permanent Link: গুগল বাংলা আক্ষরিক অনুবাদ'>গুগল বাংলা আক্ষরিক অনুবাদ</a></li>
<li><a href='http://www.sajidmc.net/bn/2009/12/bookmarklet-for-google-dictionary/' rel='bookmark' title='Permanent Link: Bookmarklet for Google Dictionary'>Bookmarklet for Google Dictionary</a></li>
<li><a href='http://www.sajidmc.net/bn/2009/04/moved-out-of-nx-serve-to-free-bee-hostingmoved-out-of-nx-serve-to-free-bee-hosting/' rel='bookmark' title='Permanent Link: Moved out of NX-Serve to Free Bee Hosting'>Moved out of NX-Serve to Free Bee Hosting</a></li>
</ol></p>]]></content:encoded>
			<wfw:commentRss>http://www.sajidmc.net/bn/2009/12/google-brings-indic-ime/feed/</wfw:commentRss>
		<slash:comments>1</slash:comments>
		</item>
		<item>
		<title>কতদিন দেখিনা মায়ের মুখ</title>
		<link>http://www.sajidmc.net/bn/2009/11/%e0%a6%95%e0%a6%a4%e0%a6%a6%e0%a6%bf%e0%a6%a8-%e0%a6%a6%e0%a7%87%e0%a6%96%e0%a6%bf%e0%a6%a8%e0%a6%be-%e0%a6%ae%e0%a6%be%e0%a6%af%e0%a6%bc%e0%a7%87%e0%a6%b0-%e0%a6%ae%e0%a7%81%e0%a6%96/</link>
		<comments>http://www.sajidmc.net/bn/2009/11/%e0%a6%95%e0%a6%a4%e0%a6%a6%e0%a6%bf%e0%a6%a8-%e0%a6%a6%e0%a7%87%e0%a6%96%e0%a6%bf%e0%a6%a8%e0%a6%be-%e0%a6%ae%e0%a6%be%e0%a6%af%e0%a6%bc%e0%a7%87%e0%a6%b0-%e0%a6%ae%e0%a7%81%e0%a6%96/#comments</comments>
		<pubDate>Wed, 18 Nov 2009 14:09:03 +0000</pubDate>
		<dc:creator>সাজিদ মুহাইমিন চৌধুরী</dc:creator>
				<category><![CDATA[সাহিত্য]]></category>

		<guid isPermaLink="false">http://www.sajidmc.net/bn/?p=392</guid>
		<description><![CDATA[খালিদ হাসান মিলুর গাওয়া  অসাধারণ একটি গান&#124; কতদিন দেখিনা মায়ের মুখ শুনি না সেই কোকিল নামের কালা পাখির গান হায়রে পরান হায় রে আমার গাঁয়ের বাড়ি সারি সারি গরুর গাড়ি মরা নদীর চর দিঘির জলে হাঁসের খেলা ঘরের চালে দুপুর বেলা রঙ্গিলা কইতাম উঠানে ছরাইনা সোনার ধান হায়রে পরান কতদিন ধরিনা ডোবায় মাছ করি না [...]


No related posts.]]></description>
			<content:encoded><![CDATA[<p>খালিদ হাসান মিলুর গাওয়া  অসাধারণ একটি গান|</p>
<p>কতদিন দেখিনা মায়ের মুখ<br />
শুনি না সেই কোকিল নামের<br />
কালা পাখির গান<br />
হায়রে পরান</p>
<p>হায় রে আমার গাঁয়ের বাড়ি<br />
সারি সারি গরুর গাড়ি<br />
মরা নদীর চর</p>
<p>দিঘির জলে হাঁসের খেলা<br />
ঘরের চালে দুপুর বেলা<br />
রঙ্গিলা কইতাম</p>
<p>উঠানে ছরাইনা   সোনার ধান<br />
হায়রে পরান</p>
<p>কতদিন ধরিনা ডোবায় মাছ<br />
করি না সেই মরা নদীর<br />
মিঠা পানি পান<br />
হায়রে পরান</p>
<p>হায়রে আমার রাখল মিয়া<br />
কাজলা গরুর গোসল দিয়া<br />
মাঠে নিয়া যায়<br />
বিকাল বেলা বাঁশের বনে<br />
ঝিকি মিকি রোদের সনে<br />
মন মিলাইতে চায়</p>
<p>ভুলিতে পারি না মাটির টান<br />
হায় হায়রে পরান</p>
<p>কতদিন রাখিনা চাঁদের খোঁজ<br />
দেখিনা সেই তারার চকের<br />
মিছা অভিমান<br />
হায় রে পরান</p>
<div class='bookmarkify'><a name='bookmarkify'></a><div class='title' title='Use these links to share this page with others'><h3>বুকমার্ক</h3></div><div class='linkbuttons'><a href='http://www.bloglines.com/sub/http://www.sajidmc.net/bn/2009/11/%e0%a6%95%e0%a6%a4%e0%a6%a6%e0%a6%bf%e0%a6%a8-%e0%a6%a6%e0%a7%87%e0%a6%96%e0%a6%bf%e0%a6%a8%e0%a6%be-%e0%a6%ae%e0%a6%be%e0%a6%af%e0%a6%bc%e0%a7%87%e0%a6%b0-%e0%a6%ae%e0%a7%81%e0%a6%96/' title='Save to Bloglines' onclick='target="_blank";' rel='nofollow'><img src='http://www.sajidmc.net/wp-content/plugins/bookmarkify/bloglines.png' style='width:16px; height:16px;' alt='[Bloglines] ' /></a> <a href='http://del.icio.us/post?url=http://www.sajidmc.net/bn/2009/11/%e0%a6%95%e0%a6%a4%e0%a6%a6%e0%a6%bf%e0%a6%a8-%e0%a6%a6%e0%a7%87%e0%a6%96%e0%a6%bf%e0%a6%a8%e0%a6%be-%e0%a6%ae%e0%a6%be%e0%a6%af%e0%a6%bc%e0%a7%87%e0%a6%b0-%e0%a6%ae%e0%a7%81%e0%a6%96/&amp;title=কতদিন দেখিনা মায়ের মুখ' title='Save to del.icio.us' onclick='target="_blank";' rel='nofollow'><img src='http://www.sajidmc.net/wp-content/plugins/bookmarkify/delicious.png' style='width:16px; height:16px;' alt='[del.icio.us] ' /></a> <a href='http://digg.com/submit?phase=2&amp;url=http://www.sajidmc.net/bn/2009/11/%e0%a6%95%e0%a6%a4%e0%a6%a6%e0%a6%bf%e0%a6%a8-%e0%a6%a6%e0%a7%87%e0%a6%96%e0%a6%bf%e0%a6%a8%e0%a6%be-%e0%a6%ae%e0%a6%be%e0%a6%af%e0%a6%bc%e0%a7%87%e0%a6%b0-%e0%a6%ae%e0%a7%81%e0%a6%96/&amp;title=কতদিন দেখিনা মায়ের মুখ' title='Digg It!' onclick='target="_blank";' rel='nofollow'><img src='http://www.sajidmc.net/wp-content/plugins/bookmarkify/digg.png' style='width:16px; height:16px;' alt='[Digg] ' /></a> <a href='http://www.facebook.com/share.php?u=http://www.sajidmc.net/bn/2009/11/%e0%a6%95%e0%a6%a4%e0%a6%a6%e0%a6%bf%e0%a6%a8-%e0%a6%a6%e0%a7%87%e0%a6%96%e0%a6%bf%e0%a6%a8%e0%a6%be-%e0%a6%ae%e0%a6%be%e0%a6%af%e0%a6%bc%e0%a7%87%e0%a6%b0-%e0%a6%ae%e0%a7%81%e0%a6%96/' title='Save to Facebook' onclick='target="_blank";' rel='nofollow'><img src='http://www.sajidmc.net/wp-content/plugins/bookmarkify/facebook.png' style='width:16px; height:16px;' alt='[Facebook] ' /></a> <a href='http://www.google.com/bookmarks/mark?op=edit&amp;output=popup&amp;bkmk=http://www.sajidmc.net/bn/2009/11/%e0%a6%95%e0%a6%a4%e0%a6%a6%e0%a6%bf%e0%a6%a8-%e0%a6%a6%e0%a7%87%e0%a6%96%e0%a6%bf%e0%a6%a8%e0%a6%be-%e0%a6%ae%e0%a6%be%e0%a6%af%e0%a6%bc%e0%a7%87%e0%a6%b0-%e0%a6%ae%e0%a7%81%e0%a6%96/&amp;title=কতদিন দেখিনা মায়ের মুখ' title='Save to Google Bookmarks' onclick='target="_blank";' rel='nofollow'><img src='http://www.sajidmc.net/wp-content/plugins/bookmarkify/google.png' style='width:16px; height:16px;' alt='[Google] ' /></a> <a href='http://twitter.com/home/?status=কতদিন দেখিনা মায়ের মুখ+http://www.sajidmc.net/bn/2009/11/%e0%a6%95%e0%a6%a4%e0%a6%a6%e0%a6%bf%e0%a6%a8-%e0%a6%a6%e0%a7%87%e0%a6%96%e0%a6%bf%e0%a6%a8%e0%a6%be-%e0%a6%ae%e0%a6%be%e0%a6%af%e0%a6%bc%e0%a7%87%e0%a6%b0-%e0%a6%ae%e0%a7%81%e0%a6%96/' title='Save to Twitter' onclick='target="_blank";' rel='nofollow'><img src='http://www.sajidmc.net/wp-content/plugins/bookmarkify/twitter.png' style='width:16px; height:16px;' alt='[Twitter] ' /></a> <a href='http://bookmarks.yahoo.com/toolbar/savebm?opener=tb&amp;u=http://www.sajidmc.net/bn/2009/11/%e0%a6%95%e0%a6%a4%e0%a6%a6%e0%a6%bf%e0%a6%a8-%e0%a6%a6%e0%a7%87%e0%a6%96%e0%a6%bf%e0%a6%a8%e0%a6%be-%e0%a6%ae%e0%a6%be%e0%a6%af%e0%a6%bc%e0%a7%87%e0%a6%b0-%e0%a6%ae%e0%a7%81%e0%a6%96/&amp;t=কতদিন দেখিনা মায়ের মুখ' title='Save to Yahoo! Bookmarks' onclick='target="_blank";' rel='nofollow'><img src='http://www.sajidmc.net/wp-content/plugins/bookmarkify/yahoo.png' style='width:16px; height:16px;' alt='[Yahoo!] ' /></a> <a href='http://www.feedburner.com/fb/a/emailFlare?itemTitle=কতদিন দেখিনা মায়ের মুখ&amp;uri=http://www.sajidmc.net/bn/2009/11/%e0%a6%95%e0%a6%a4%e0%a6%a6%e0%a6%bf%e0%a6%a8-%e0%a6%a6%e0%a7%87%e0%a6%96%e0%a6%bf%e0%a6%a8%e0%a6%be-%e0%a6%ae%e0%a6%be%e0%a6%af%e0%a6%bc%e0%a7%87%e0%a6%b0-%e0%a6%ae%e0%a7%81%e0%a6%96/&amp;loc=en_US' title='Email this to a friend' onclick='target="_blank";' rel='nofollow'><img src='http://www.sajidmc.net/wp-content/plugins/bookmarkify/email.png' style='width:16px; height:16px;' alt='[Email] ' /></a>  <a title='See more bookmark and sharing options...' href='http://www.sajidmc.net/bn/2009/11/কতদিন-দেখিনা-মায়ের-মুখ/#bookmarkify' rel='nofollow'><small>More&nbsp;&raquo;</small></a></div></div>

<p>No related posts.</p>]]></content:encoded>
			<wfw:commentRss>http://www.sajidmc.net/bn/2009/11/%e0%a6%95%e0%a6%a4%e0%a6%a6%e0%a6%bf%e0%a6%a8-%e0%a6%a6%e0%a7%87%e0%a6%96%e0%a6%bf%e0%a6%a8%e0%a6%be-%e0%a6%ae%e0%a6%be%e0%a6%af%e0%a6%bc%e0%a7%87%e0%a6%b0-%e0%a6%ae%e0%a7%81%e0%a6%96/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>আভিধানিক অর্থ সরাসরি আপনার ব্রাউজারে দেখুন</title>
		<link>http://www.sajidmc.net/bn/2009/10/get-definitions-of-words-in-your-web-browser/</link>
		<comments>http://www.sajidmc.net/bn/2009/10/get-definitions-of-words-in-your-web-browser/#comments</comments>
		<pubDate>Thu, 01 Oct 2009 14:30:59 +0000</pubDate>
		<dc:creator>সাজিদ মুহাইমিন চৌধুরী</dc:creator>
				<category><![CDATA[বৃকমার্কলেট]]></category>

		<guid isPermaLink="false">http://www.sajidmc.net/bn/2009/10/get-definitions-of-words-in-your-web-browser/</guid>
		<description><![CDATA[আপনি যদি কোন শব্দের আভিধানিক অর্থ পেতে চান, তবে ব্রাউজার উইন্ডোতে সরাসরি তা পেতে পারেন। এই বুকমার্কলেটটি ব্যবহার করুন: Define It ব্যবহার: লেখা থেকে কোনও শব্দ নির্বাচন করুন ও Define It!  এ ক্লিক করুন। আপনার ব্রাউজার উইন্ডোতে সরাসরি শব্দের অর্থ দেখাবে বুকমার্ক More&#160;&#187; Related posts:গুগল বাংলা আক্ষরিক অনুবাদ প্রথম আলো ও অন্যান্য বাংলা অ-ইউনিকোডীয় সাইট [...]


Related posts:<ol><li><a href='http://www.sajidmc.net/bn/2009/05/google-bangla-transliteration/' rel='bookmark' title='Permanent Link: গুগল বাংলা আক্ষরিক অনুবাদ'>গুগল বাংলা আক্ষরিক অনুবাদ</a></li>
<li><a href='http://www.sajidmc.net/bn/2009/07/prothom-alo-and-ascii-websites-using-chrome-and-firefox/' rel='bookmark' title='Permanent Link: প্রথম আলো ও অন্যান্য বাংলা অ-ইউনিকোডীয় সাইট গুগল ক্রোম ও মজিলা ফায়ারফক্স দিয়ে দেখুন'>প্রথম আলো ও অন্যান্য বাংলা অ-ইউনিকোডীয় সাইট গুগল ক্রোম ও মজিলা ফায়ারফক্স দিয়ে দেখুন</a></li>
<li><a href='http://www.sajidmc.net/bn/2008/07/%e0%a6%89%e0%a6%ac%e0%a7%81%e0%a6%a8%e0%a7%8d%e0%a6%9f%e0%a7%81-%e0%a7%ae%e0%a7%a6%e0%a7%aa-ubuntu-804-%e0%a6%87%e0%a6%a8%e0%a7%8d%e0%a6%b8%e0%a6%9f%e0%a6%b2-%e0%a6%95%e0%a6%b0%e0%a6%b2%e0%a6%be/' rel='bookmark' title='Permanent Link: উবুন্টু ৮.০৪ (Ubuntu 8.04) ইন্সটল করলাম'>উবুন্টু ৮.০৪ (Ubuntu 8.04) ইন্সটল করলাম</a></li>
</ol>]]></description>
			<content:encoded><![CDATA[<p>আপনি যদি কোন শব্দের আভিধানিক অর্থ পেতে চান, তবে ব্রাউজার উইন্ডোতে সরাসরি তা পেতে  পারেন। এই বুকমার্কলেটটি ব্যবহার করুন:</p>
<p><a href="javascript:(function(){function%20toggleItem(id){var%20item=document.getElementById(id);if(item){if(item.style.display==&quot;none&quot;){item.style.display=&quot;&quot;}else{item.style.display=&quot;none&quot;}}}function%20addCSS(url){var%20headID=document.getElementsByTagName(&quot;head&quot;)[0];var%20cssNode=document.createElement('link');cssNode.type='text/css';cssNode.rel='stylesheet';cssNode.href=url;cssNode.media='screen';headID.appendChild(cssNode)}(function(){var%20t;try{t=((window.getSelection&amp;&amp;window.getSelection())||(document.getSelection&amp;&amp;document.getSelection())||(document.selection&amp;&amp;document.selection.createRange&amp;&amp;document.selection.createRange().text))}catch(e){t=&quot;&quot;}var%20iframe_url=&quot;http://www.thefreedictionary.com/p/&quot;+t;if(t===&quot;&quot;||t===&quot;%20&quot;){return}var%20existing_iframe=document.getElementById('instacalc_bookmarklet');if(existing_iframe){now_iframe=document.getElementById('instacalc_bookmarklet_iframe');now_iframe.src=iframe_url;document.getElementById(&quot;instacalc_bookmarklet&quot;).style.display=&quot;&quot;}else{var%20div=document.createElement(&quot;div&quot;);div.id=&quot;instacalc_bookmarklet&quot;;var%20str=&quot;&quot;;str+=&quot;&lt;table%20id='instacalc_bookmarklet_table'%20valign='top'%20width='570'%20cellspacing='0'%20cellpadding='0'&gt;&lt;tr&gt;&lt;td%20width%20='550'%20height='200'&gt;&quot;;str+=&quot;&lt;iframe%20frameborder='0'%20scrolling='auto'%20name='instacalc_bookmarklet_iframe'%20id='instacalc_bookmarklet_iframe'%20src='&quot;+iframe_url+&quot;'%20width='550px'%20height='195px'%20style='textalign:right;%20backgroundColor:%20white;'&gt;&lt;/iframe&gt;&quot;;str+=&quot;&lt;/td&gt;&lt;td%20onClick='javascript:document.getElementById(\&quot;instacalc_bookmarklet\&quot;).style.display%20=%20\&quot;none\&quot;;'%20style='background:%20#FFDDDD;'%20title='click%20to%20close%20window'%20valign='top'%20align='center'%20width='20px'&gt;&quot;;str+=&quot;&lt;a%20href='javascript:void();'%20%20onClick='toggleItem(\&quot;instacalc_bookmarklet\&quot;);'%20%20style='width:100%;%20text-align:%20middle;%20color:%20#FF0000;%20font-family:%20Arial;'&gt;x&lt;/a&gt;&quot;;str+=&quot;&lt;/td&gt;&lt;/tr&gt;&lt;tr&gt;&lt;td&gt;&lt;i&gt;Bookmarklet%20Created%20by%20&lt;/i&gt;&lt;a%20href='http://www.sajidmc.net'&gt;Sajid%20Muhaimin%20Choudhury&lt;/a&gt;&lt;/td&gt;&lt;/tr&gt;&lt;/table&gt;&quot;;div.innerHTML=str;document.body.insertBefore(div,document.body.firstChild);addCSS(&quot;http://instacalc.com/gadget/styles/instacalc.bookmarklet.mini.css&quot;)}})();})();">Define It</a></p>
<p>ব্যবহার:</p>
<p>লেখা থেকে কোনও শব্দ নির্বাচন করুন ও Define It!  এ ক্লিক করুন। আপনার ব্রাউজার  উইন্ডোতে সরাসরি শব্দের অর্থ দেখাবে</p>
<p><a href="http://www.sajidmc.net/wp-content/uploads/2009/10/image.png"><img style="border-bottom: 0px; border-left: 0px; display: inline; border-top: 0px; border-right: 0px" title="image" src="http://www.sajidmc.net/wp-content/uploads/2009/10/image_thumb.png" border="0" alt="image" width="477" height="400" /></a></p>
<div class='bookmarkify'><a name='bookmarkify'></a><div class='title' title='Use these links to share this page with others'><h3>বুকমার্ক</h3></div><div class='linkbuttons'><a href='http://www.bloglines.com/sub/http://www.sajidmc.net/bn/2009/10/get-definitions-of-words-in-your-web-browser/' title='Save to Bloglines' onclick='target="_blank";' rel='nofollow'><img src='http://www.sajidmc.net/wp-content/plugins/bookmarkify/bloglines.png' style='width:16px; height:16px;' alt='[Bloglines] ' /></a> <a href='http://del.icio.us/post?url=http://www.sajidmc.net/bn/2009/10/get-definitions-of-words-in-your-web-browser/&amp;title=আভিধানিক অর্থ সরাসরি আপনার ব্রাউজারে দেখুন' title='Save to del.icio.us' onclick='target="_blank";' rel='nofollow'><img src='http://www.sajidmc.net/wp-content/plugins/bookmarkify/delicious.png' style='width:16px; height:16px;' alt='[del.icio.us] ' /></a> <a href='http://digg.com/submit?phase=2&amp;url=http://www.sajidmc.net/bn/2009/10/get-definitions-of-words-in-your-web-browser/&amp;title=আভিধানিক অর্থ সরাসরি আপনার ব্রাউজারে দেখুন' title='Digg It!' onclick='target="_blank";' rel='nofollow'><img src='http://www.sajidmc.net/wp-content/plugins/bookmarkify/digg.png' style='width:16px; height:16px;' alt='[Digg] ' /></a> <a href='http://www.facebook.com/share.php?u=http://www.sajidmc.net/bn/2009/10/get-definitions-of-words-in-your-web-browser/' title='Save to Facebook' onclick='target="_blank";' rel='nofollow'><img src='http://www.sajidmc.net/wp-content/plugins/bookmarkify/facebook.png' style='width:16px; height:16px;' alt='[Facebook] ' /></a> <a href='http://www.google.com/bookmarks/mark?op=edit&amp;output=popup&amp;bkmk=http://www.sajidmc.net/bn/2009/10/get-definitions-of-words-in-your-web-browser/&amp;title=আভিধানিক অর্থ সরাসরি আপনার ব্রাউজারে দেখুন' title='Save to Google Bookmarks' onclick='target="_blank";' rel='nofollow'><img src='http://www.sajidmc.net/wp-content/plugins/bookmarkify/google.png' style='width:16px; height:16px;' alt='[Google] ' /></a> <a href='http://twitter.com/home/?status=আভিধানিক অর্থ সরাসরি আপনার ব্রাউজারে দেখুন+http://www.sajidmc.net/bn/2009/10/get-definitions-of-words-in-your-web-browser/' title='Save to Twitter' onclick='target="_blank";' rel='nofollow'><img src='http://www.sajidmc.net/wp-content/plugins/bookmarkify/twitter.png' style='width:16px; height:16px;' alt='[Twitter] ' /></a> <a href='http://bookmarks.yahoo.com/toolbar/savebm?opener=tb&amp;u=http://www.sajidmc.net/bn/2009/10/get-definitions-of-words-in-your-web-browser/&amp;t=আভিধানিক অর্থ সরাসরি আপনার ব্রাউজারে দেখুন' title='Save to Yahoo! Bookmarks' onclick='target="_blank";' rel='nofollow'><img src='http://www.sajidmc.net/wp-content/plugins/bookmarkify/yahoo.png' style='width:16px; height:16px;' alt='[Yahoo!] ' /></a> <a href='http://www.feedburner.com/fb/a/emailFlare?itemTitle=আভিধানিক অর্থ সরাসরি আপনার ব্রাউজারে দেখুন&amp;uri=http://www.sajidmc.net/bn/2009/10/get-definitions-of-words-in-your-web-browser/&amp;loc=en_US' title='Email this to a friend' onclick='target="_blank";' rel='nofollow'><img src='http://www.sajidmc.net/wp-content/plugins/bookmarkify/email.png' style='width:16px; height:16px;' alt='[Email] ' /></a>  <a title='See more bookmark and sharing options...' href='http://www.sajidmc.net/bn/2009/10/get-definitions-of-words-in-your-web-browser/#bookmarkify' rel='nofollow'><small>More&nbsp;&raquo;</small></a></div></div>

<p>Related posts:<ol><li><a href='http://www.sajidmc.net/bn/2009/05/google-bangla-transliteration/' rel='bookmark' title='Permanent Link: গুগল বাংলা আক্ষরিক অনুবাদ'>গুগল বাংলা আক্ষরিক অনুবাদ</a></li>
<li><a href='http://www.sajidmc.net/bn/2009/07/prothom-alo-and-ascii-websites-using-chrome-and-firefox/' rel='bookmark' title='Permanent Link: প্রথম আলো ও অন্যান্য বাংলা অ-ইউনিকোডীয় সাইট গুগল ক্রোম ও মজিলা ফায়ারফক্স দিয়ে দেখুন'>প্রথম আলো ও অন্যান্য বাংলা অ-ইউনিকোডীয় সাইট গুগল ক্রোম ও মজিলা ফায়ারফক্স দিয়ে দেখুন</a></li>
<li><a href='http://www.sajidmc.net/bn/2008/07/%e0%a6%89%e0%a6%ac%e0%a7%81%e0%a6%a8%e0%a7%8d%e0%a6%9f%e0%a7%81-%e0%a7%ae%e0%a7%a6%e0%a7%aa-ubuntu-804-%e0%a6%87%e0%a6%a8%e0%a7%8d%e0%a6%b8%e0%a6%9f%e0%a6%b2-%e0%a6%95%e0%a6%b0%e0%a6%b2%e0%a6%be/' rel='bookmark' title='Permanent Link: উবুন্টু ৮.০৪ (Ubuntu 8.04) ইন্সটল করলাম'>উবুন্টু ৮.০৪ (Ubuntu 8.04) ইন্সটল করলাম</a></li>
</ol></p>]]></content:encoded>
			<wfw:commentRss>http://www.sajidmc.net/bn/2009/10/get-definitions-of-words-in-your-web-browser/feed/</wfw:commentRss>
		<slash:comments>4</slash:comments>
		</item>
	</channel>
</rss>
