<?xml version="1.0" encoding="UTF-8"?>
<?xml-stylesheet type="text/xsl" media="screen" href="/~d/styles/atom10full.xsl"?><?xml-stylesheet type="text/css" media="screen" href="http://feeds.feedburner.com/~d/styles/itemcontent.css"?><feed xmlns="http://www.w3.org/2005/Atom" xmlns:openSearch="http://a9.com/-/spec/opensearch/1.1/" xmlns:georss="http://www.georss.org/georss" xmlns:gd="http://schemas.google.com/g/2005" xmlns:thr="http://purl.org/syndication/thread/1.0" xmlns:feedburner="http://rssnamespace.org/feedburner/ext/1.0" gd:etag="W/&quot;CEcBRnY-eCp7ImA9WhRRFEk.&quot;"><id>tag:blogger.com,1999:blog-7519039954647983130</id><updated>2011-11-28T07:00:57.850+06:00</updated><category term="glut" /><category term="pixel draw" /><category term="opengl" /><category term="installation on visual studio 2008" /><category term="c++" /><category term="c" /><title>Winning the battle but losing the war</title><subtitle type="html" /><link rel="http://schemas.google.com/g/2005#feed" type="application/atom+xml" href="http://amiabdullah.blogspot.com/feeds/posts/default" /><link rel="alternate" type="text/html" href="http://amiabdullah.blogspot.com/" /><link rel="next" type="application/atom+xml" href="http://www.blogger.com/feeds/7519039954647983130/posts/default?start-index=26&amp;max-results=25&amp;redirect=false&amp;v=2" /><author><name>abdullah</name><uri>http://www.blogger.com/profile/02442393507500280440</uri><email>noreply@blogger.com</email><gd:image rel="http://schemas.google.com/g/2005#thumbnail" width="29" height="32" src="http://2.bp.blogspot.com/_pDOJeEQqmb8/SiJ52--OfgI/AAAAAAAAAF0/BXK2Ivv0thw/S220/4.JPG" /></author><generator version="7.00" uri="http://www.blogger.com">Blogger</generator><openSearch:totalResults>33</openSearch:totalResults><openSearch:startIndex>1</openSearch:startIndex><openSearch:itemsPerPage>25</openSearch:itemsPerPage><atom10:link xmlns:atom10="http://www.w3.org/2005/Atom" rel="self" type="application/atom+xml" href="http://feeds.feedburner.com/WinningTheBattleButLosingTheWar" /><feedburner:info uri="winningthebattlebutlosingthewar" /><atom10:link xmlns:atom10="http://www.w3.org/2005/Atom" rel="hub" href="http://pubsubhubbub.appspot.com/" /><entry gd:etag="W/&quot;AkQDR3ozfCp7ImA9WxBTEko.&quot;"><id>tag:blogger.com,1999:blog-7519039954647983130.post-9013264486966617815</id><published>2009-12-07T14:26:00.018+07:00</published><updated>2009-12-08T20:19:36.484+07:00</updated><app:edited xmlns:app="http://www.w3.org/2007/app">2009-12-08T20:19:36.484+07:00</app:edited><category scheme="http://www.blogger.com/atom/ns#" term="c++" /><category scheme="http://www.blogger.com/atom/ns#" term="pixel draw" /><category scheme="http://www.blogger.com/atom/ns#" term="c" /><category scheme="http://www.blogger.com/atom/ns#" term="opengl" /><category scheme="http://www.blogger.com/atom/ns#" term="installation on visual studio 2008" /><category scheme="http://www.blogger.com/atom/ns#" term="glut" /><title>OpenGL Installation and Testing</title><content type="html">In this tutorial I will show how to install and running OpenGL on your windows machine. Here I will show how to setup OpenGL on visual Studio 2008. If you are using visual studio 2005 take a look here.&lt;br /&gt;&lt;a href="http://www.cecs.csulb.edu/%7Epnguyen/Using%20OpenGL%20in%20Visual%20Studio%202005.htm"&gt;&lt;br /&gt;OpenGL at visual studio 2005.&lt;/a&gt;&lt;br /&gt;&lt;br /&gt;If you are using visual c++ 6.0 take a look here&lt;br /&gt;&lt;br /&gt;&lt;a href="http://www.airport1.de/opengl.htm"&gt;OpenGL at visual c++ 6.0&lt;/a&gt;&lt;br /&gt;&lt;br /&gt;First of all you need to collect OpenGL library from here&lt;br /&gt;&lt;br /&gt;&lt;a href="http://www.xmission.com/%7Enate/glut.html"&gt;GLut Library&lt;/a&gt;&lt;br /&gt;&lt;br /&gt;Download the latest stable version (3.7.6 currently!). Download the bin.zip file.&lt;br /&gt;Unzip it. Here you get a library file, a header file and a dll file.&lt;br /&gt;&lt;br /&gt;Put the .lib (library) file on your visual studio library folder. If you install visual studio on it's default location it will be&lt;span style="color: rgb(255, 102, 102);"&gt; C:\Program Files\Microsoft Visual Studio 9.0\VC\lib&lt;/span&gt;&lt;br /&gt;&lt;br /&gt;At the same manner put the .h (header) in the include folder of your visual studio. It will be fine if you create a floder named 'GL' in the include folder and put the header file there. So the location like &lt;span style="color: rgb(255, 102, 102);"&gt;C:\Program Files\Microsoft Visual Studio 9.0\VC\include\GL&lt;/span&gt;&lt;span style="color: rgb(51, 51, 51);"&gt;&lt;br /&gt;&lt;br /&gt;Put the .dll file on system32. Like &lt;span style="color: rgb(255, 102, 102);"&gt;C:\Windows\System32&lt;br /&gt;&lt;br /&gt;&lt;span style="color: rgb(51, 51, 51);"&gt;Now you are ready for coding. Open your visual studio 2009. Go to the &lt;span style="color: rgb(255, 0, 0);"&gt;File-&gt;New-&gt;Project&lt;span style="color: rgb(51, 51, 51);"&gt; section. A new window comes select &lt;span style="color: rgb(255, 0, 0);"&gt;visual c++ -&gt; General -&gt; Empty Projec&lt;/span&gt;t.&lt;br /&gt;&lt;br /&gt;Now go to the  Solution Explorer. Right click on the project, select properties. From the Configuration tab select all configurations. Select &lt;span style="color: rgb(255, 0, 0);"&gt;Configuration properties -&gt; Linker -&gt; Input&lt;/span&gt;. Now on the left section copy "opengl32.lib glut32.lib glu32.lib" at additional dependencies. That's all.&lt;br /&gt;&lt;br /&gt;Now Download the &lt;a href="http://pastebin.com/m5fb3070f"&gt;code&lt;/a&gt;&lt;br /&gt;&lt;br /&gt;Reference and Additional Download:&lt;br /&gt;&lt;br /&gt;1. This tutorial is prepared with help of this &lt;a href="http://thoughtsfrommylife.com/article-748-OpenGL_and_Visual_Studio_Express_2008"&gt;site&lt;/a&gt;.&lt;br /&gt;&lt;br /&gt;&lt;span style="color: rgb(204, 0, 0);"&gt;Eooks Download Links&lt;/span&gt;&lt;br /&gt;&lt;br /&gt;2. &lt;a href="http://www.4shared.com/file/167090226/1597f2f2/OpenGL_SuperBible.html"&gt;OpenGL SuperBible&lt;/a&gt;&lt;br /&gt;&lt;/span&gt;&lt;/span&gt;3. &lt;a href="http://www.4shared.com/file/167093644/b87f336a/OpenGl_Programming_Guide.html"&gt;OpenGL Programming Guide&lt;/a&gt;&lt;br /&gt;4. &lt;a href="http://www.4shared.com/file/167093910/c939440b/OpenGL_graphics_through_Applic.html"&gt;OpenGL Graphics Through Application&lt;/a&gt;&lt;br /&gt;5. &lt;a href="http://www.4shared.com/file/167094755/4a766033/Fundamental_of_Computer_Graphi.html"&gt;Fundamentals of Computer Graphics&lt;/a&gt;&lt;br /&gt;6.&lt;a href="http://www.4shared.com/file/167095280/31c54f7f/OpenGL_Game_Programming.html"&gt; OpenGL Game Programming&lt;/a&gt;&lt;br /&gt;7. &lt;a href="http://www.4shared.com/file/167096192/d6230ea5/OpenGL_Game_ProgrammingBook_Co.html"&gt;OpenGL Game Programming -- Book Code&lt;/a&gt;&lt;br /&gt;8. &lt;a href="http://www.4shared.com/file/167096418/f8e4af58/OpenGL_API_Specification.html"&gt;OpenGL API specification&lt;/a&gt;&lt;br /&gt;&lt;br /&gt;&lt;span style="color: rgb(204, 0, 0);"&gt;Important Web Links&lt;/span&gt;&lt;br /&gt;&lt;br /&gt;&lt;a href="http://nehe.gamedev.net"&gt;nehe.gamedev.net&lt;/a&gt;&lt;br /&gt;&lt;a href="http://www.lighthouse3d.com/opengl/glut/"&gt;lighthouse3d.com&lt;/a&gt;&lt;br /&gt;&lt;/span&gt;&lt;span style="color: rgb(51, 51, 51);"&gt;&lt;br /&gt;I will try to post later how to install and configure OpenGL on Linux based platform.&lt;br /&gt;&lt;br /&gt;&lt;/span&gt;&lt;br /&gt;&lt;/span&gt;&lt;br /&gt;&lt;/span&gt;&lt;div class="blogger-post-footer"&gt;&lt;img width='1' height='1' src='https://blogger.googleusercontent.com/tracker/7519039954647983130-9013264486966617815?l=amiabdullah.blogspot.com' alt='' /&gt;&lt;/div&gt;
&lt;p&gt;&lt;a href="http://feedads.g.doubleclick.net/~a/9AlsaTPVY3o8zl_5WHPHJIXWDWM/0/da"&gt;&lt;img src="http://feedads.g.doubleclick.net/~a/9AlsaTPVY3o8zl_5WHPHJIXWDWM/0/di" border="0" ismap="true"&gt;&lt;/img&gt;&lt;/a&gt;&lt;br/&gt;
&lt;a href="http://feedads.g.doubleclick.net/~a/9AlsaTPVY3o8zl_5WHPHJIXWDWM/1/da"&gt;&lt;img src="http://feedads.g.doubleclick.net/~a/9AlsaTPVY3o8zl_5WHPHJIXWDWM/1/di" border="0" ismap="true"&gt;&lt;/img&gt;&lt;/a&gt;&lt;/p&gt;&lt;img src="http://feeds.feedburner.com/~r/WinningTheBattleButLosingTheWar/~4/49tiYhIkYkc" height="1" width="1"/&gt;</content><link rel="replies" type="application/atom+xml" href="http://amiabdullah.blogspot.com/feeds/9013264486966617815/comments/default" title="Post Comments" /><link rel="replies" type="text/html" href="http://www.blogger.com/comment.g?blogID=7519039954647983130&amp;postID=9013264486966617815&amp;isPopup=true" title="1 Comments" /><link rel="edit" type="application/atom+xml" href="http://www.blogger.com/feeds/7519039954647983130/posts/default/9013264486966617815?v=2" /><link rel="self" type="application/atom+xml" href="http://www.blogger.com/feeds/7519039954647983130/posts/default/9013264486966617815?v=2" /><link rel="alternate" type="text/html" href="http://feedproxy.google.com/~r/WinningTheBattleButLosingTheWar/~3/49tiYhIkYkc/opengl-installation-and-testing.html" title="OpenGL Installation and Testing" /><author><name>abdullah</name><uri>http://www.blogger.com/profile/02442393507500280440</uri><email>noreply@blogger.com</email><gd:image rel="http://schemas.google.com/g/2005#thumbnail" width="29" height="32" src="http://2.bp.blogspot.com/_pDOJeEQqmb8/SiJ52--OfgI/AAAAAAAAAF0/BXK2Ivv0thw/S220/4.JPG" /></author><thr:total>1</thr:total><feedburner:origLink>http://amiabdullah.blogspot.com/2009/12/opengl-installation-and-testing.html</feedburner:origLink></entry><entry gd:etag="W/&quot;DEEBQXo9fSp7ImA9WxNXF0Q.&quot;"><id>tag:blogger.com,1999:blog-7519039954647983130.post-1501334350750959578</id><published>2009-10-02T23:33:00.005+07:00</published><updated>2009-10-06T09:37:30.465+07:00</updated><app:edited xmlns:app="http://www.w3.org/2007/app">2009-10-06T09:37:30.465+07:00</app:edited><title>আমরা কোথায় যাচ্ছি</title><content type="html">"পৃথিবী বদলে গেছে, যা দেখি অবাক লাগে&lt;br /&gt; ঢাকা শহর এমন হবে, ভেবেছ কি কখনো আগে"&lt;br /&gt;&lt;br /&gt;উপরের এই দুটি গানের চরনের মত শুধু ঢাকা নয় সারা দুনিয়াই বদলে গেছে।এই যা একটা ভুল করলাম, পৃথিবী বদলাই নাই বদলে গেছি আমরা।গত কয়েক বছরের দিকে তাকালে কি দেখা য়ায - বন্যা,খরা,ভূমিকম্প অথবা সুনামির মত নুতন কোন মহা বিপর্যয়।আচ্ছা বলুন তো মানুষ যখন খুব রেগে যায় তখন কি করে।বিনাশের নেশা মাথায় চেপে বসে।প্রকৃতিরও এখন বিনাশের নেশা চেপে বসেছে।আমার মনে হয় যে মহা বিপর্যয় আমাদের দিকে এগিয়ে আসছে তা রোধ করা আমাদের পক্ষে সম্ভব নয়।তা হলে কি আমরা মুখে আঙ্গুল দিয়ে চুসবো।না,প্রকৃ্তিকে বাঁচাতে হবে।&lt;br /&gt;&lt;br /&gt;-----------------&lt;br /&gt;পরে আবার লিখব&lt;div class="blogger-post-footer"&gt;&lt;img width='1' height='1' src='https://blogger.googleusercontent.com/tracker/7519039954647983130-1501334350750959578?l=amiabdullah.blogspot.com' alt='' /&gt;&lt;/div&gt;
&lt;p&gt;&lt;a href="http://feedads.g.doubleclick.net/~a/96NZPRuUnq2efuuOrBhQz5P4o1g/0/da"&gt;&lt;img src="http://feedads.g.doubleclick.net/~a/96NZPRuUnq2efuuOrBhQz5P4o1g/0/di" border="0" ismap="true"&gt;&lt;/img&gt;&lt;/a&gt;&lt;br/&gt;
&lt;a href="http://feedads.g.doubleclick.net/~a/96NZPRuUnq2efuuOrBhQz5P4o1g/1/da"&gt;&lt;img src="http://feedads.g.doubleclick.net/~a/96NZPRuUnq2efuuOrBhQz5P4o1g/1/di" border="0" ismap="true"&gt;&lt;/img&gt;&lt;/a&gt;&lt;/p&gt;&lt;img src="http://feeds.feedburner.com/~r/WinningTheBattleButLosingTheWar/~4/6WWzVx9k0UY" height="1" width="1"/&gt;</content><link rel="replies" type="application/atom+xml" href="http://amiabdullah.blogspot.com/feeds/1501334350750959578/comments/default" title="Post Comments" /><link rel="replies" type="text/html" href="http://www.blogger.com/comment.g?blogID=7519039954647983130&amp;postID=1501334350750959578&amp;isPopup=true" title="1 Comments" /><link rel="edit" type="application/atom+xml" href="http://www.blogger.com/feeds/7519039954647983130/posts/default/1501334350750959578?v=2" /><link rel="self" type="application/atom+xml" href="http://www.blogger.com/feeds/7519039954647983130/posts/default/1501334350750959578?v=2" /><link rel="alternate" type="text/html" href="http://feedproxy.google.com/~r/WinningTheBattleButLosingTheWar/~3/6WWzVx9k0UY/blog-post.html" title="আমরা কোথায় যাচ্ছি" /><author><name>abdullah</name><uri>http://www.blogger.com/profile/02442393507500280440</uri><email>noreply@blogger.com</email><gd:image rel="http://schemas.google.com/g/2005#thumbnail" width="29" height="32" src="http://2.bp.blogspot.com/_pDOJeEQqmb8/SiJ52--OfgI/AAAAAAAAAF0/BXK2Ivv0thw/S220/4.JPG" /></author><thr:total>1</thr:total><feedburner:origLink>http://amiabdullah.blogspot.com/2009/10/blog-post.html</feedburner:origLink></entry><entry gd:etag="W/&quot;DkUBSXo-cCp7ImA9WxNTF0U.&quot;"><id>tag:blogger.com,1999:blog-7519039954647983130.post-4483366826655167960</id><published>2009-08-20T22:19:00.002+07:00</published><updated>2009-08-20T23:04:18.458+07:00</updated><app:edited xmlns:app="http://www.w3.org/2007/app">2009-08-20T23:04:18.458+07:00</app:edited><title>Internet Address: IPV4</title><content type="html">&lt;span xmlns=""&gt;&lt;p style="text-align: justify;"&gt;The Internet is a global network which connects several hundreds and thousands of local networks. In this tutorial I will discuss about internet addressing in IPV4. There are two address methods IPV4 and IPV6. IPV4 is 32 bits (4 bytes) long and IPV6 is 128 bits long. So by using IPV4 you can have at most 2^32 or four billions public IP address. A public IP address is accessible from any part of the network. Well private IP address is accessible from the local network, where it resides. The IPV4 addressing has two different formats to represent IP address.&lt;br /&gt;&lt;/p&gt;&lt;ol&gt;&lt;li&gt;&lt;div style="text-align: justify;"&gt;Class full IP address&lt;br /&gt;&lt;/div&gt;&lt;/li&gt;&lt;li&gt;&lt;div style="text-align: justify;"&gt;Class less IP address (CIDR)&lt;br /&gt;&lt;/div&gt;&lt;/li&gt;&lt;/ol&gt;&lt;p style="text-align: justify;"&gt;&lt;br /&gt; &lt;/p&gt;&lt;p style="text-align: justify;"&gt;&lt;span style="text-decoration: underline;"&gt;&lt;strong&gt;&lt;span style="font-size:14pt;"&gt;Class full IP address: &lt;/span&gt;&lt;br /&gt;     &lt;/strong&gt;&lt;/span&gt;&lt;/p&gt;&lt;p style="text-align: justify;"&gt;In class full addressing the IP address is partitioned in different sections with different block size. They are&lt;br /&gt;&lt;/p&gt;&lt;ul&gt;&lt;li&gt;&lt;div style="text-align: justify;"&gt;Class 'A'&lt;br /&gt;&lt;/div&gt;&lt;/li&gt;&lt;li&gt;&lt;div style="text-align: justify;"&gt;Class 'B'&lt;br /&gt;&lt;/div&gt;&lt;/li&gt;&lt;li&gt;&lt;div style="text-align: justify;"&gt;Class 'C'&lt;br /&gt;&lt;/div&gt;&lt;/li&gt;&lt;li&gt;&lt;div style="text-align: justify;"&gt;Class 'D'&lt;br /&gt;&lt;/div&gt;&lt;/li&gt;&lt;li&gt;&lt;div style="text-align: justify;"&gt;Class 'E'&lt;br /&gt;&lt;/div&gt;&lt;/li&gt;&lt;/ul&gt;&lt;p style="text-align: justify;"&gt;Actually class 'A','B' and 'C' are well-known to all. The first three classes are unicast address. Class 'D' is multicast and class 'E' is reserved for future use. Every class has associated IP address range.&lt;br /&gt;&lt;/p&gt;-------------------------------------------------------------------------------------------------&lt;br /&gt;Class | Start with  |      IP address range                        | Number of Blocks   |  Total Addresses   |&lt;br /&gt;-------------------------------------------------------------------------------------------------&lt;br /&gt;  A     |         0         |    0.0.0.0. to 127.255.255.255        |             128*             |  2147483648*        |&lt;br /&gt;&lt;p style="text-align: justify;"&gt;-------------------------------------------------------------------------------------------------&lt;/p&gt;&lt;p style="text-align: justify;"&gt;  B     |        10        |   128.0.0.0 to 191.255.255.255      |         16384**           | 1073741824**       |&lt;/p&gt;&lt;p style="text-align: justify;"&gt;-------------------------------------------------------------------------------------------------&lt;/p&gt;&lt;p style="text-align: justify;"&gt;  C     |      110        | 192.0.0.0 to 223.255.255.255        |       2097152***      | 536870912***       |&lt;/p&gt;&lt;p style="text-align: justify;"&gt;-------------------------------------------------------------------------------------------------&lt;/p&gt;&lt;p style="text-align: justify;"&gt;  D     |     1110       | 224.0.0.0 to 239.255.255.255        |            1                    |  268435456            |&lt;/p&gt;&lt;p style="text-align: justify;"&gt;-------------------------------------------------------------------------------------------------&lt;/p&gt;&lt;p style="text-align: justify;"&gt;  E     |     1111        | 240.0.0.0 to 255.255.255.255        |             1                   | 268435456             |&lt;/p&gt;&lt;p style="text-align: justify;"&gt;-------------------------------------------------------------------------------------------------&lt;br /&gt;&lt;/p&gt;&lt;p style="text-align: justify;"&gt;&lt;span style="font-size:85%;"&gt;*Actually the class 'A' has 125 blocks to use in the global internet. Three blocks are used for different purpose. The block with the starting address &lt;strong&gt;10&lt;/strong&gt;.0.0.0 to &lt;strong&gt;10&lt;/strong&gt;.255.255.255 is used for private network. That is this block of address are used in home network and the host with the private network address are not accessible from the outside of the network.&lt;br /&gt;&lt;/span&gt;&lt;/p&gt;&lt;p style="text-align: justify;"&gt;&lt;span style="font-size:85%;"&gt;The block with the address of 127.0.0.0 to 127.255.255.255 is used as loopback address. That is to test an application on the same machine. The datagrams are not gone out the host when using loopback address. It will come back at the same machine. If you run a server on your machine and at the browser type 'http: //127.x.y.z' (x, y, z are any number from 0~255), it will show you the server default page.&lt;br /&gt;&lt;/span&gt;&lt;/p&gt;&lt;p style="text-align: justify;"&gt;&lt;span style="font-size:85%;"&gt;The block with the address 0.0.0.0 to 0.255.255.255 is used for two different purposes. If all zero it is used as '&lt;strong&gt;The host on this network&lt;/strong&gt;'. When a host does not know its IP address it will send a datagram using the address 0.0.0.0 in its network. If DHCP or other method is established it will work with the datagram and lease a IP address to the host for specific amount of time.&lt;br /&gt;&lt;/span&gt;&lt;/p&gt;&lt;p style="text-align: justify;"&gt;&lt;span style="font-size:85%;"&gt;**Sixteen blocks of the class 'B' address are reserved for private addressing. The blocks with the address &lt;strong&gt;172.16&lt;/strong&gt;.0.0 to &lt;strong&gt;172.31.&lt;/strong&gt;255.255 are user for this purpose.&lt;br /&gt;&lt;/span&gt;&lt;/p&gt;&lt;p style="text-align: justify;"&gt;&lt;span style="font-size:85%;"&gt;***Two hundred fifty-six blocks are used for private addresses. The ranges are &lt;strong&gt;192.168.0&lt;/strong&gt;.0 to &lt;strong&gt;192.168.255&lt;/strong&gt;.255&lt;/span&gt;&lt;/p&gt;&lt;/span&gt;&lt;div class="blogger-post-footer"&gt;&lt;img width='1' height='1' src='https://blogger.googleusercontent.com/tracker/7519039954647983130-4483366826655167960?l=amiabdullah.blogspot.com' alt='' /&gt;&lt;/div&gt;
&lt;p&gt;&lt;a href="http://feedads.g.doubleclick.net/~a/z3PD4SzL8EBAw-c4EqATETapDrc/0/da"&gt;&lt;img src="http://feedads.g.doubleclick.net/~a/z3PD4SzL8EBAw-c4EqATETapDrc/0/di" border="0" ismap="true"&gt;&lt;/img&gt;&lt;/a&gt;&lt;br/&gt;
&lt;a href="http://feedads.g.doubleclick.net/~a/z3PD4SzL8EBAw-c4EqATETapDrc/1/da"&gt;&lt;img src="http://feedads.g.doubleclick.net/~a/z3PD4SzL8EBAw-c4EqATETapDrc/1/di" border="0" ismap="true"&gt;&lt;/img&gt;&lt;/a&gt;&lt;/p&gt;&lt;img src="http://feeds.feedburner.com/~r/WinningTheBattleButLosingTheWar/~4/rLpYE13PVFA" height="1" width="1"/&gt;</content><link rel="replies" type="application/atom+xml" href="http://amiabdullah.blogspot.com/feeds/4483366826655167960/comments/default" title="Post Comments" /><link rel="replies" type="text/html" href="http://www.blogger.com/comment.g?blogID=7519039954647983130&amp;postID=4483366826655167960&amp;isPopup=true" title="0 Comments" /><link rel="edit" type="application/atom+xml" href="http://www.blogger.com/feeds/7519039954647983130/posts/default/4483366826655167960?v=2" /><link rel="self" type="application/atom+xml" href="http://www.blogger.com/feeds/7519039954647983130/posts/default/4483366826655167960?v=2" /><link rel="alternate" type="text/html" href="http://feedproxy.google.com/~r/WinningTheBattleButLosingTheWar/~3/rLpYE13PVFA/internet-address-ipv4.html" title="Internet Address: IPV4" /><author><name>abdullah</name><uri>http://www.blogger.com/profile/02442393507500280440</uri><email>noreply@blogger.com</email><gd:image rel="http://schemas.google.com/g/2005#thumbnail" width="29" height="32" src="http://2.bp.blogspot.com/_pDOJeEQqmb8/SiJ52--OfgI/AAAAAAAAAF0/BXK2Ivv0thw/S220/4.JPG" /></author><thr:total>0</thr:total><feedburner:origLink>http://amiabdullah.blogspot.com/2009/08/internet-address-ipv4.html</feedburner:origLink></entry><entry gd:etag="W/&quot;DEIAR3Y7cSp7ImA9WxNTFkQ.&quot;"><id>tag:blogger.com,1999:blog-7519039954647983130.post-6341639595936620708</id><published>2009-08-13T21:52:00.002+07:00</published><updated>2009-08-19T22:42:26.809+07:00</updated><app:edited xmlns:app="http://www.w3.org/2007/app">2009-08-19T22:42:26.809+07:00</app:edited><title>Bridge, Router, Switch, Hub and Gateway</title><content type="html">&lt;span xmlns=""&gt;&lt;p style="text-align: center;"&gt;&lt;span style="font-size:18pt;"&gt;&lt;strong&gt;Bridge, Router, Switch, Hub and Gateway&lt;br /&gt;&lt;/strong&gt;&lt;/span&gt;&lt;/p&gt;&lt;p style="text-align: justify;"&gt;&lt;br /&gt; &lt;/p&gt;&lt;p style="text-align: justify;"&gt;The Internet is an interconnection of hundreds and thousands of networks.  At the bottom of this is the LAN (Local Area Network). Some computers are connected with each other to form a LAN. There are several methods to connect computers in a LAN. Ring, bus, start etc. are some of the popular form. In this tutorial I will describe some of the important concept regarding to interconnect networks (possible LAN segments).&lt;br /&gt;&lt;/p&gt;&lt;p style="text-align: justify;"&gt;&lt;br /&gt; &lt;/p&gt;&lt;p style="text-align: justify;"&gt;&lt;span style="font-size:12pt;"&gt;Bridge:&lt;br /&gt;&lt;/span&gt;&lt;/p&gt;&lt;p style="text-align: justify;"&gt;A bridge is used to connect LAN segments. It works on physical layer and used to relay MAC address. The purpose of the bridge can be explained by the following example:&lt;br /&gt;&lt;/p&gt;&lt;p style="text-align: justify;"&gt;Suppose you have 12 computers to connect with each other. You can make a LAN segments using your computers. On a LAN the computers shares the same collection domain and the bandwidth is divided equally to all the computers. So when a computer sends a packet to another computer then if another computer tries to send at the same time collision will occur. To solve this problem, we can use Bridge. We use a bridge in our LAN to partition it into two LAN segments. Now the collision domain is partitioned into two and bandwidth increase by two. So by using multiple bridges we can increase bandwidth as well as decrease collision domain.&lt;br /&gt;&lt;/p&gt;&lt;p style="text-align: justify;"&gt;&lt;span style="color:red;"&gt;Bridge is IP transparent&lt;/span&gt;. This means that, when a host wants to send a packet to another host in the LAN segment, it will send the packet (datagram) directly to the destination host.&lt;br /&gt;&lt;/p&gt;&lt;p style="text-align: justify;"&gt;&lt;br /&gt; Another feature of bridge is that- when a host emits a packet with the broadcast address as destination bridge will forward it to the LAN segment. But router will block it (limited broadcast address will be blocked).&lt;br /&gt;&lt;/p&gt;&lt;p style="text-align: justify;"&gt;&lt;span style="font-size:12pt;"&gt;Router:&lt;br /&gt;&lt;/span&gt;&lt;/p&gt;&lt;p style="text-align: justify;"&gt;Router is used to connect different networks. It works on the network layer. Every router has two interfaces associated with it, an input interface and an output interface. When a datagram is received by an input interface of a router, it will see its forwarding table to which output interface it will forward.&lt;br /&gt;&lt;/p&gt;&lt;p style="text-align: justify;"&gt;&lt;span style="color:red;"&gt;Router is visible to IP&lt;/span&gt;. That is, any host wants to send datagram can't send it directly to the destination host. The datagram first sends to the router and router will responsible to route it to the correct destination host.&lt;br /&gt;&lt;/p&gt;&lt;p style="text-align: justify;"&gt;&lt;br /&gt; &lt;/p&gt;&lt;p style="text-align: justify;"&gt;&lt;span style="font-size:12pt;"&gt;Switch:&lt;br /&gt;&lt;/span&gt;&lt;/p&gt;&lt;p style="text-align: justify;"&gt;Switch is also used to connect different LAN segments. Unlike bridge it has solved the problem of collision domain and bandwidth efficiently. A switch with 'N' LAN segments has 'N' different dedicated link with it. So it is possible to connect the entire host separately with the switch. The switch has the property – &lt;span style="color:red;"&gt;self learning&lt;/span&gt;. It has switching table which is updated automatically without and human initialization. Switch has also the advantages to connect different LAN with different link capacity. That is, if we have three LAN segments with link capacity of 10Mbps, 100Mbps and 1Gbps. We can connect them with a switch.&lt;br /&gt;&lt;/p&gt;&lt;p style="text-align: justify;"&gt;The self learning property has some problems too. Basically in wireless network where the wireless station (host) moves from one network to another network.&lt;br /&gt;&lt;/p&gt;&lt;p style="text-align: justify;"&gt;&lt;br /&gt; &lt;/p&gt;&lt;p style="text-align: justify;"&gt;&lt;span style="font-size:12pt;"&gt;Hub:&lt;br /&gt;&lt;/span&gt;&lt;/p&gt;&lt;p style="text-align: justify;"&gt;Hub is a device which is also used to connect LAN segments. But the purpose of Hub is to re-generate (re-create) each and every bit and &lt;span style="color:red;"&gt;broadcast&lt;/span&gt; it to the network. The collision domain in Hub is very huge. Hub&lt;span style="font-size:100%;"&gt; has no self lear&lt;/span&gt;ning capacity and it can't connect different LAN with different link capacity. Like switch it is auto configured without human initialization.&lt;br /&gt;&lt;/p&gt;&lt;p style="text-align: justify;"&gt;&lt;br /&gt; &lt;/p&gt;&lt;p style="text-align: justify;"&gt;&lt;span style="font-size:12pt;"&gt;Gateway:&lt;br /&gt;&lt;/span&gt;&lt;/p&gt;&lt;p style="text-align: justify;"&gt;&lt;span style="font-size:100%;"&gt;Gateway works on the upper layer on TCP/IP protocol suite. Such as, mail gateway in SMTP. It supports address mapping from one network to another, and&lt;/span&gt;&lt;span style=";font-family:Arial;font-size:10pt;"  &gt;&lt;span style="font-size:100%;"&gt; &lt;/span&gt;&lt;span style="font-size:100%;"&gt;may also provide transformation of the data between the environments to support end-to-end application connectivity.&lt;/span&gt;&lt;br /&gt;&lt;/span&gt;&lt;/p&gt;&lt;p style="text-align: justify;"&gt;A gateway can be said to be &lt;span style="color:red;"&gt;opaque&lt;/span&gt; to IP. That is, a host cannot send an IP datagram through a gateway; it can only send it to a gateway. The higher-level protocol information carried by the datagrams is then passed on by the gateway using whatever networking architecture is used on the other side of the gateway.&lt;br /&gt;&lt;/p&gt;&lt;p style="text-align: justify;"&gt; &lt;/p&gt;&lt;p style="text-align: justify;"&gt;&lt;span style="color:red;"&gt;*** Will update &lt;/span&gt;&lt;span xmlns=""&gt;&lt;span style="color:red;"&gt;periodically&lt;/span&gt;&lt;/span&gt;&lt;/p&gt;&lt;p style="text-align: justify;"&gt;&lt;span xmlns=""&gt;&lt;span style="color:red;"&gt;&lt;br /&gt;&lt;/span&gt;&lt;/span&gt;&lt;/p&gt;&lt;/span&gt;&lt;div class="blogger-post-footer"&gt;&lt;img width='1' height='1' src='https://blogger.googleusercontent.com/tracker/7519039954647983130-6341639595936620708?l=amiabdullah.blogspot.com' alt='' /&gt;&lt;/div&gt;
&lt;p&gt;&lt;a href="http://feedads.g.doubleclick.net/~a/jrzljRSob9tnBcsLdb8pqlPXF7w/0/da"&gt;&lt;img src="http://feedads.g.doubleclick.net/~a/jrzljRSob9tnBcsLdb8pqlPXF7w/0/di" border="0" ismap="true"&gt;&lt;/img&gt;&lt;/a&gt;&lt;br/&gt;
&lt;a href="http://feedads.g.doubleclick.net/~a/jrzljRSob9tnBcsLdb8pqlPXF7w/1/da"&gt;&lt;img src="http://feedads.g.doubleclick.net/~a/jrzljRSob9tnBcsLdb8pqlPXF7w/1/di" border="0" ismap="true"&gt;&lt;/img&gt;&lt;/a&gt;&lt;/p&gt;&lt;img src="http://feeds.feedburner.com/~r/WinningTheBattleButLosingTheWar/~4/WM9VxOrNXdk" height="1" width="1"/&gt;</content><link rel="replies" type="application/atom+xml" href="http://amiabdullah.blogspot.com/feeds/6341639595936620708/comments/default" title="Post Comments" /><link rel="replies" type="text/html" href="http://www.blogger.com/comment.g?blogID=7519039954647983130&amp;postID=6341639595936620708&amp;isPopup=true" title="0 Comments" /><link rel="edit" type="application/atom+xml" href="http://www.blogger.com/feeds/7519039954647983130/posts/default/6341639595936620708?v=2" /><link rel="self" type="application/atom+xml" href="http://www.blogger.com/feeds/7519039954647983130/posts/default/6341639595936620708?v=2" /><link rel="alternate" type="text/html" href="http://feedproxy.google.com/~r/WinningTheBattleButLosingTheWar/~3/WM9VxOrNXdk/bridge-router-switch-hub-and-gateway.html" title="Bridge, Router, Switch, Hub and Gateway" /><author><name>abdullah</name><uri>http://www.blogger.com/profile/02442393507500280440</uri><email>noreply@blogger.com</email><gd:image rel="http://schemas.google.com/g/2005#thumbnail" width="29" height="32" src="http://2.bp.blogspot.com/_pDOJeEQqmb8/SiJ52--OfgI/AAAAAAAAAF0/BXK2Ivv0thw/S220/4.JPG" /></author><thr:total>0</thr:total><feedburner:origLink>http://amiabdullah.blogspot.com/2009/08/bridge-router-switch-hub-and-gateway.html</feedburner:origLink></entry><entry gd:etag="W/&quot;CUcBR384fCp7ImA9WxJbF00.&quot;"><id>tag:blogger.com,1999:blog-7519039954647983130.post-5800536517032454234</id><published>2009-07-27T20:22:00.010+07:00</published><updated>2009-07-27T20:57:36.134+07:00</updated><app:edited xmlns:app="http://www.w3.org/2007/app">2009-07-27T20:57:36.134+07:00</app:edited><title>DNS: How it Works</title><content type="html">We know every thing which we access in the internet has a public ip address. That is suppose when you want to access a web site(www.gmail.com), you type it on your address bar of your browser and you find the pages. But host name is not used in the internet. Because host name may be variable of size, so storage is difficult. For this reason, we use ip based system. In this system, every host in the global internet has an ip(public or private) address. So some mechanism is needed to translate host name to it's corresponding ip address. DNS does the work.&lt;br /&gt;&lt;br /&gt;DNS-Domain Name Service is a client-server based software approach to solve the host name to ip address translation. But DNS does more than ip translating, which I will describe in another lesson.&lt;br /&gt;&lt;br /&gt;In the early time of the internet every computer stores a host file on it's hard disk which contains simply the mapping of host name to ip address. But when huge information have to store this system failed. So a centralized process is needed to solve the problem.&lt;br /&gt;&lt;br /&gt;There are some (around 13) root DNS server around the world. Every root DNS server contains info in a hierarchical manner.&lt;br /&gt;&lt;br /&gt;-&gt; At the top level the root&lt;br /&gt;-&gt; The top level domain(.com,.org,.bd,.in etc)&lt;br /&gt;-&gt; Authoritative domain (gmail)&lt;br /&gt;&lt;br /&gt;By this manner info is stored.&lt;br /&gt;&lt;br /&gt;&lt;span style="font-weight:bold;"&gt;So the question is how the DNS is resolved?&lt;/span&gt;&lt;br /&gt;&lt;br /&gt;Step 1: When you type the hostname(www.google.com) on your browser and hits ENTER then a DNS request message is send on the local DNS server.&lt;br /&gt;&lt;br /&gt;Step 2: If the local DNS server has the ip address of the hostname, it will forward the ip address as a DNS response message to you. So it acts like a cash between your machine and real DNS server.&lt;br /&gt;&lt;br /&gt;Step 3: If the local DNS server has no record regarding on the host name what you specified it calls one of the root DNS server to solve it. So the local DNS sever knows the (ip) address of the root DNS server.&lt;br /&gt;&lt;br /&gt;Step 4: The root DNS server looks the request and sees the it has the top level domain .com. The root DNS server knows the address the .com.&lt;br /&gt;&lt;br /&gt;Step 5: The .com finds the authoritative domain (google) and now actually we know the ip address of www.google.com.&lt;br /&gt;&lt;br /&gt;Step 6: The ip address is backpass and at a time it will come to the local DNS server. The local DNS server stores a copy of it and forwards it to you.&lt;br /&gt;&lt;br /&gt;Step 7: Now you see the web page www.google.com. All the works are done in fraction of seconds.&lt;br /&gt;&lt;br /&gt;Look at the picture for better understanding&lt;br /&gt;&lt;br /&gt;&lt;a onblur="try {parent.deselectBloggerImageGracefully();} catch(e) {}" href="http://2.bp.blogspot.com/_pDOJeEQqmb8/Sm2yLc4h8cI/AAAAAAAAAGU/NbJZs1zPlvo/s1600-h/Drawing1.jpg"&gt;&lt;img style="display:block; margin:0px auto 10px; text-align:center;cursor:pointer; cursor:hand;width: 320px; height: 242px;" src="http://2.bp.blogspot.com/_pDOJeEQqmb8/Sm2yLc4h8cI/AAAAAAAAAGU/NbJZs1zPlvo/s320/Drawing1.jpg" border="0" alt=""id="BLOGGER_PHOTO_ID_5363138641069732290" /&gt;&lt;/a&gt;&lt;div class="blogger-post-footer"&gt;&lt;img width='1' height='1' src='https://blogger.googleusercontent.com/tracker/7519039954647983130-5800536517032454234?l=amiabdullah.blogspot.com' alt='' /&gt;&lt;/div&gt;
&lt;p&gt;&lt;a href="http://feedads.g.doubleclick.net/~a/vkt8wrgyRNblmX1kO0MFHdYiOxM/0/da"&gt;&lt;img src="http://feedads.g.doubleclick.net/~a/vkt8wrgyRNblmX1kO0MFHdYiOxM/0/di" border="0" ismap="true"&gt;&lt;/img&gt;&lt;/a&gt;&lt;br/&gt;
&lt;a href="http://feedads.g.doubleclick.net/~a/vkt8wrgyRNblmX1kO0MFHdYiOxM/1/da"&gt;&lt;img src="http://feedads.g.doubleclick.net/~a/vkt8wrgyRNblmX1kO0MFHdYiOxM/1/di" border="0" ismap="true"&gt;&lt;/img&gt;&lt;/a&gt;&lt;/p&gt;&lt;img src="http://feeds.feedburner.com/~r/WinningTheBattleButLosingTheWar/~4/YoFyuMaBc9E" height="1" width="1"/&gt;</content><link rel="replies" type="application/atom+xml" href="http://amiabdullah.blogspot.com/feeds/5800536517032454234/comments/default" title="Post Comments" /><link rel="replies" type="text/html" href="http://www.blogger.com/comment.g?blogID=7519039954647983130&amp;postID=5800536517032454234&amp;isPopup=true" title="0 Comments" /><link rel="edit" type="application/atom+xml" href="http://www.blogger.com/feeds/7519039954647983130/posts/default/5800536517032454234?v=2" /><link rel="self" type="application/atom+xml" href="http://www.blogger.com/feeds/7519039954647983130/posts/default/5800536517032454234?v=2" /><link rel="alternate" type="text/html" href="http://feedproxy.google.com/~r/WinningTheBattleButLosingTheWar/~3/YoFyuMaBc9E/dns-how-it-works.html" title="DNS: How it Works" /><author><name>abdullah</name><uri>http://www.blogger.com/profile/02442393507500280440</uri><email>noreply@blogger.com</email><gd:image rel="http://schemas.google.com/g/2005#thumbnail" width="29" height="32" src="http://2.bp.blogspot.com/_pDOJeEQqmb8/SiJ52--OfgI/AAAAAAAAAF0/BXK2Ivv0thw/S220/4.JPG" /></author><media:thumbnail xmlns:media="http://search.yahoo.com/mrss/" url="http://2.bp.blogspot.com/_pDOJeEQqmb8/Sm2yLc4h8cI/AAAAAAAAAGU/NbJZs1zPlvo/s72-c/Drawing1.jpg" height="72" width="72" /><thr:total>0</thr:total><feedburner:origLink>http://amiabdullah.blogspot.com/2009/07/dns-how-it-works.html</feedburner:origLink></entry><entry gd:etag="W/&quot;DUYCQn89fCp7ImA9WxJbFEg.&quot;"><id>tag:blogger.com,1999:blog-7519039954647983130.post-308110714104496505</id><published>2009-07-25T00:29:00.002+07:00</published><updated>2009-07-25T00:39:23.164+07:00</updated><app:edited xmlns:app="http://www.w3.org/2007/app">2009-07-25T00:39:23.164+07:00</app:edited><title>Computer Network Term: Hub and Switch</title><content type="html">&lt;span style="font-weight:bold;"&gt;Hub&lt;/span&gt;&lt;br /&gt;Hub is a transparent device. If you have several computers and which you want to connect you can use a hub. There are many versions of hub. They may be 4 ports as well as much more ports then 4. Basically hub has some inherent problems. First of all, if you connect 10 computers with hub then if a packet comes from internet to your hub it will just re-generate the bits of the packet and send it to all (10 computers). So it has large traffic domain. Hub does not contains any mechanism of forwarding or hub table on it. &lt;br /&gt;&lt;br /&gt;&lt;span style="font-weight:bold;"&gt;Switch&lt;/span&gt; &lt;br /&gt;Switch is a device which can solve much of the problems of the hub. It has different traffic domain. The most important issue regarding switch that it makes a dedicated path between switch and the connecting computer. And at the same time you can use different bandwidth wires (standard ethernet, fast ethernet, gigabyte ethernet) with switch.&lt;div class="blogger-post-footer"&gt;&lt;img width='1' height='1' src='https://blogger.googleusercontent.com/tracker/7519039954647983130-308110714104496505?l=amiabdullah.blogspot.com' alt='' /&gt;&lt;/div&gt;
&lt;p&gt;&lt;a href="http://feedads.g.doubleclick.net/~a/MAGYdiwDgsYMWpta6KhfZnjzG-o/0/da"&gt;&lt;img src="http://feedads.g.doubleclick.net/~a/MAGYdiwDgsYMWpta6KhfZnjzG-o/0/di" border="0" ismap="true"&gt;&lt;/img&gt;&lt;/a&gt;&lt;br/&gt;
&lt;a href="http://feedads.g.doubleclick.net/~a/MAGYdiwDgsYMWpta6KhfZnjzG-o/1/da"&gt;&lt;img src="http://feedads.g.doubleclick.net/~a/MAGYdiwDgsYMWpta6KhfZnjzG-o/1/di" border="0" ismap="true"&gt;&lt;/img&gt;&lt;/a&gt;&lt;/p&gt;&lt;img src="http://feeds.feedburner.com/~r/WinningTheBattleButLosingTheWar/~4/B_pZoSB-D-A" height="1" width="1"/&gt;</content><link rel="replies" type="application/atom+xml" href="http://amiabdullah.blogspot.com/feeds/308110714104496505/comments/default" title="Post Comments" /><link rel="replies" type="text/html" href="http://www.blogger.com/comment.g?blogID=7519039954647983130&amp;postID=308110714104496505&amp;isPopup=true" title="1 Comments" /><link rel="edit" type="application/atom+xml" href="http://www.blogger.com/feeds/7519039954647983130/posts/default/308110714104496505?v=2" /><link rel="self" type="application/atom+xml" href="http://www.blogger.com/feeds/7519039954647983130/posts/default/308110714104496505?v=2" /><link rel="alternate" type="text/html" href="http://feedproxy.google.com/~r/WinningTheBattleButLosingTheWar/~3/B_pZoSB-D-A/computer-network-term-hub-and-switch.html" title="Computer Network Term: Hub and Switch" /><author><name>abdullah</name><uri>http://www.blogger.com/profile/02442393507500280440</uri><email>noreply@blogger.com</email><gd:image rel="http://schemas.google.com/g/2005#thumbnail" width="29" height="32" src="http://2.bp.blogspot.com/_pDOJeEQqmb8/SiJ52--OfgI/AAAAAAAAAF0/BXK2Ivv0thw/S220/4.JPG" /></author><thr:total>1</thr:total><feedburner:origLink>http://amiabdullah.blogspot.com/2009/07/computer-network-term-hub-and-switch.html</feedburner:origLink></entry><entry gd:etag="W/&quot;DUEFRXg9cSp7ImA9WxJSFEw.&quot;"><id>tag:blogger.com,1999:blog-7519039954647983130.post-7986898709395518847</id><published>2009-04-24T01:26:00.007+06:00</published><updated>2009-05-04T12:13:34.669+06:00</updated><app:edited xmlns:app="http://www.w3.org/2007/app">2009-05-04T12:13:34.669+06:00</app:edited><title>ATmega32 Tutorial in C - Part I</title><content type="html">Recently I have worked with ATmega32. I am using avr-gcc library(C program) to program ATmega32. When I first start to work I can't find good source or link to learn. So I have taken decision to write something about it.&lt;br /&gt;&lt;br /&gt;First off all you need some softwares and hardwares to start.&lt;br /&gt;&lt;br /&gt;1. C compiler(AVRGCC)&lt;br /&gt;2. AVR Studio&lt;br /&gt;3. Proteus --- For circuit simulation&lt;br /&gt;&lt;br /&gt;Proteus is not necessary. But if you want to check your design before making the hardware you can use this tool to simulate your circuit before burning.&lt;br /&gt;&lt;br /&gt;4. ATmega32/ATmega32L&lt;br /&gt;5. Some Leds(unipolar,bipolar)&lt;br /&gt;6. Resistors(470 ohms)&lt;br /&gt;7. Breadboard &lt;br /&gt;8. Switch(Toggle switch)&lt;br /&gt;&lt;br /&gt;So after collecting all of them it is now time to start work. At first you have to know details about ATmega32/L. So collect the data sheet of it and read first four or five pages. That's enough for now.&lt;br /&gt;&lt;br /&gt;&lt;a onblur="try {parent.deselectBloggerImageGracefully();} catch(e) {}" href="http://2.bp.blogspot.com/_pDOJeEQqmb8/SfEjUTjJaAI/AAAAAAAAAFs/MeKpwk5M8W0/s1600-h/atmega32.jpg"&gt;&lt;img style="display:block; margin:0px auto 10px; text-align:center;cursor:pointer; cursor:hand;width: 320px; height: 320px;" src="http://2.bp.blogspot.com/_pDOJeEQqmb8/SfEjUTjJaAI/AAAAAAAAAFs/MeKpwk5M8W0/s320/atmega32.jpg" border="0" alt=""id="BLOGGER_PHOTO_ID_5328078665908054018" /&gt;&lt;/a&gt;&lt;br /&gt;&lt;br /&gt;First of all some description of the ATmega32 IC. ATmega32 is a 40 pin package. It has 32KB of programmable memory. That is you can load a hex file maximum of 32 KB on your IC. For both hobbies and professional this is enough. It has four ports for input and output. Namely PORTA,PORTB,PORTC and PORTD. Every port has 8 pins for I/O. All the ports are capable of both input and output. That is you can use a port for both input and output.&lt;br /&gt;&lt;br /&gt;&lt;span style="font-weight:bold;"&gt;Software Installation:&lt;/span&gt;&lt;br /&gt;&lt;br /&gt;1. Install avr-gcc&lt;br /&gt;2. Install avr studio&lt;br /&gt;&lt;br /&gt;After installing the softwares, open avr studio. Select new project, select avr-gcc as your compiler, select avr simulator and the appropriate version of ATmega(for this tutorial it is ATmega32). That's all.&lt;br /&gt;&lt;br /&gt;It's the end of the first tutorial. In the next tutorial we dive into programming part. &lt;br /&gt;&lt;br /&gt;&lt;span style="font-weight:bold;"&gt;Download Link:&lt;br /&gt;&lt;/span&gt;&lt;br /&gt;&lt;a href="http://sourceforge.net/project/showfiles.php?group_id=68108"&gt;&lt;br /&gt;AVR-GCC Compiler&lt;/a&gt;&lt;br /&gt;&lt;a href="http://www.atmel.com/dyn/Products/tools_card.asp?tool_id=2725"&gt;AVR Studio 4&lt;/a&gt;&lt;br /&gt;&lt;br /&gt;All the next tutorial will be found at the following link&lt;br /&gt;&lt;a href="http://abdullah.0fees.net/atmega32_partII.php"&gt;ATmega32 Tutorial&lt;/a&gt;&lt;div class="blogger-post-footer"&gt;&lt;img width='1' height='1' src='https://blogger.googleusercontent.com/tracker/7519039954647983130-7986898709395518847?l=amiabdullah.blogspot.com' alt='' /&gt;&lt;/div&gt;
&lt;p&gt;&lt;a href="http://feedads.g.doubleclick.net/~a/JXAi5dmvV9270TulFQnaR7ACJzw/0/da"&gt;&lt;img src="http://feedads.g.doubleclick.net/~a/JXAi5dmvV9270TulFQnaR7ACJzw/0/di" border="0" ismap="true"&gt;&lt;/img&gt;&lt;/a&gt;&lt;br/&gt;
&lt;a href="http://feedads.g.doubleclick.net/~a/JXAi5dmvV9270TulFQnaR7ACJzw/1/da"&gt;&lt;img src="http://feedads.g.doubleclick.net/~a/JXAi5dmvV9270TulFQnaR7ACJzw/1/di" border="0" ismap="true"&gt;&lt;/img&gt;&lt;/a&gt;&lt;/p&gt;&lt;img src="http://feeds.feedburner.com/~r/WinningTheBattleButLosingTheWar/~4/ZW6n8dkds50" height="1" width="1"/&gt;</content><link rel="replies" type="application/atom+xml" href="http://amiabdullah.blogspot.com/feeds/7986898709395518847/comments/default" title="Post Comments" /><link rel="replies" type="text/html" href="http://www.blogger.com/comment.g?blogID=7519039954647983130&amp;postID=7986898709395518847&amp;isPopup=true" title="4 Comments" /><link rel="edit" type="application/atom+xml" href="http://www.blogger.com/feeds/7519039954647983130/posts/default/7986898709395518847?v=2" /><link rel="self" type="application/atom+xml" href="http://www.blogger.com/feeds/7519039954647983130/posts/default/7986898709395518847?v=2" /><link rel="alternate" type="text/html" href="http://feedproxy.google.com/~r/WinningTheBattleButLosingTheWar/~3/ZW6n8dkds50/atmega32-tutorial-in-c-part-i.html" title="ATmega32 Tutorial in C - Part I" /><author><name>abdullah</name><uri>http://www.blogger.com/profile/02442393507500280440</uri><email>noreply@blogger.com</email><gd:image rel="http://schemas.google.com/g/2005#thumbnail" width="29" height="32" src="http://2.bp.blogspot.com/_pDOJeEQqmb8/SiJ52--OfgI/AAAAAAAAAF0/BXK2Ivv0thw/S220/4.JPG" /></author><media:thumbnail xmlns:media="http://search.yahoo.com/mrss/" url="http://2.bp.blogspot.com/_pDOJeEQqmb8/SfEjUTjJaAI/AAAAAAAAAFs/MeKpwk5M8W0/s72-c/atmega32.jpg" height="72" width="72" /><thr:total>4</thr:total><feedburner:origLink>http://amiabdullah.blogspot.com/2009/04/atmega32-tutorial-in-c-part-i.html</feedburner:origLink></entry><entry gd:etag="W/&quot;CEABQXcyeyp7ImA9WxVTGEQ.&quot;"><id>tag:blogger.com,1999:blog-7519039954647983130.post-6843643320573707035</id><published>2009-01-02T16:29:00.002+06:00</published><updated>2009-01-02T16:39:10.993+06:00</updated><app:edited xmlns:app="http://www.w3.org/2007/app">2009-01-02T16:39:10.993+06:00</app:edited><title>নুতন বছর - পুরানো কথা</title><content type="html">দেখতে দেখতে একটি বছর কেটে গেল। আমি অনেকটা নিজেকে ব্লগ লেখা থেকে বিরত রেখেছি। আসলে আমার কোন কাজ বেশি দিন করতে ভাল লাগে না। তো ২০০৮ সালে আমার জন্য তেমন মহিমার না হলেও বাংলাদেশের জন্য ছিল অনেক important. নির্বাচন,সরকার পরিবর্তন ইত্যাদি অনেকের মত আমার কাছেও important. &lt;br /&gt;&lt;br /&gt;---- চলবে&lt;div class="blogger-post-footer"&gt;&lt;img width='1' height='1' src='https://blogger.googleusercontent.com/tracker/7519039954647983130-6843643320573707035?l=amiabdullah.blogspot.com' alt='' /&gt;&lt;/div&gt;
&lt;p&gt;&lt;a href="http://feedads.g.doubleclick.net/~a/b-Vzy52CY9HYarnXT6pXIFxzW7A/0/da"&gt;&lt;img src="http://feedads.g.doubleclick.net/~a/b-Vzy52CY9HYarnXT6pXIFxzW7A/0/di" border="0" ismap="true"&gt;&lt;/img&gt;&lt;/a&gt;&lt;br/&gt;
&lt;a href="http://feedads.g.doubleclick.net/~a/b-Vzy52CY9HYarnXT6pXIFxzW7A/1/da"&gt;&lt;img src="http://feedads.g.doubleclick.net/~a/b-Vzy52CY9HYarnXT6pXIFxzW7A/1/di" border="0" ismap="true"&gt;&lt;/img&gt;&lt;/a&gt;&lt;/p&gt;&lt;img src="http://feeds.feedburner.com/~r/WinningTheBattleButLosingTheWar/~4/yYAqrtR3BNY" height="1" width="1"/&gt;</content><link rel="replies" type="application/atom+xml" href="http://amiabdullah.blogspot.com/feeds/6843643320573707035/comments/default" title="Post Comments" /><link rel="replies" type="text/html" href="http://www.blogger.com/comment.g?blogID=7519039954647983130&amp;postID=6843643320573707035&amp;isPopup=true" title="0 Comments" /><link rel="edit" type="application/atom+xml" href="http://www.blogger.com/feeds/7519039954647983130/posts/default/6843643320573707035?v=2" /><link rel="self" type="application/atom+xml" href="http://www.blogger.com/feeds/7519039954647983130/posts/default/6843643320573707035?v=2" /><link rel="alternate" type="text/html" href="http://feedproxy.google.com/~r/WinningTheBattleButLosingTheWar/~3/yYAqrtR3BNY/blog-post.html" title="নুতন বছর - পুরানো কথা" /><author><name>abdullah</name><uri>http://www.blogger.com/profile/02442393507500280440</uri><email>noreply@blogger.com</email><gd:image rel="http://schemas.google.com/g/2005#thumbnail" width="29" height="32" src="http://2.bp.blogspot.com/_pDOJeEQqmb8/SiJ52--OfgI/AAAAAAAAAF0/BXK2Ivv0thw/S220/4.JPG" /></author><thr:total>0</thr:total><feedburner:origLink>http://amiabdullah.blogspot.com/2009/01/blog-post.html</feedburner:origLink></entry><entry gd:etag="W/&quot;C0AFQX84cSp7ImA9WxRRFU8.&quot;"><id>tag:blogger.com,1999:blog-7519039954647983130.post-1739721169236599976</id><published>2008-09-27T19:13:00.004+06:00</published><updated>2008-09-27T19:21:50.139+06:00</updated><app:edited xmlns:app="http://www.w3.org/2007/app">2008-09-27T19:21:50.139+06:00</app:edited><title>অন্ধকার</title><content type="html">আলোকের পথে তোমাদের যাত্রা বিলম্বিত হোক&lt;br /&gt;নিকষ কালো অন্ধকার তোমাদের চারপাশ থেকে গ্রাস করুক।&lt;br /&gt;অমাবস্যার রাতে ঝিঁঝিঁ পোকার ডাকে তোমাদের গা ছমছম করে উঠুক&lt;br /&gt;আলোকের পথে তোমাদের যাত্রা বিলম্বিত হোক।&lt;br /&gt;&lt;br /&gt;বিবর্তনের পথে পথে অন্ধকারের ছোপ-ছোপ দাগ লেগে থাকুক।&lt;br /&gt;শীতল চাঁদর গায়ে তোমাকে হাঁটতে হবে বার্ধ্যকের দাড়ে&lt;div class="blogger-post-footer"&gt;&lt;img width='1' height='1' src='https://blogger.googleusercontent.com/tracker/7519039954647983130-1739721169236599976?l=amiabdullah.blogspot.com' alt='' /&gt;&lt;/div&gt;
&lt;p&gt;&lt;a href="http://feedads.g.doubleclick.net/~a/fV5E7wk_uLP1MvGFwcNA9AM7tX8/0/da"&gt;&lt;img src="http://feedads.g.doubleclick.net/~a/fV5E7wk_uLP1MvGFwcNA9AM7tX8/0/di" border="0" ismap="true"&gt;&lt;/img&gt;&lt;/a&gt;&lt;br/&gt;
&lt;a href="http://feedads.g.doubleclick.net/~a/fV5E7wk_uLP1MvGFwcNA9AM7tX8/1/da"&gt;&lt;img src="http://feedads.g.doubleclick.net/~a/fV5E7wk_uLP1MvGFwcNA9AM7tX8/1/di" border="0" ismap="true"&gt;&lt;/img&gt;&lt;/a&gt;&lt;/p&gt;&lt;img src="http://feeds.feedburner.com/~r/WinningTheBattleButLosingTheWar/~4/DnxUd-GyuGs" height="1" width="1"/&gt;</content><link rel="replies" type="application/atom+xml" href="http://amiabdullah.blogspot.com/feeds/1739721169236599976/comments/default" title="Post Comments" /><link rel="replies" type="text/html" href="http://www.blogger.com/comment.g?blogID=7519039954647983130&amp;postID=1739721169236599976&amp;isPopup=true" title="1 Comments" /><link rel="edit" type="application/atom+xml" href="http://www.blogger.com/feeds/7519039954647983130/posts/default/1739721169236599976?v=2" /><link rel="self" type="application/atom+xml" href="http://www.blogger.com/feeds/7519039954647983130/posts/default/1739721169236599976?v=2" /><link rel="alternate" type="text/html" href="http://feedproxy.google.com/~r/WinningTheBattleButLosingTheWar/~3/DnxUd-GyuGs/blog-post.html" title="&lt;span style=&quot;font-weight:bold; font-size:40;&quot;&gt;অন্ধকার&lt;/span&gt;" /><author><name>abdullah</name><uri>http://www.blogger.com/profile/02442393507500280440</uri><email>noreply@blogger.com</email><gd:image rel="http://schemas.google.com/g/2005#thumbnail" width="29" height="32" src="http://2.bp.blogspot.com/_pDOJeEQqmb8/SiJ52--OfgI/AAAAAAAAAF0/BXK2Ivv0thw/S220/4.JPG" /></author><thr:total>1</thr:total><feedburner:origLink>http://amiabdullah.blogspot.com/2008/09/blog-post.html</feedburner:origLink></entry><entry gd:etag="W/&quot;C0QMRXk9fCp7ImA9WxdbE00.&quot;"><id>tag:blogger.com,1999:blog-7519039954647983130.post-4525648151655562241</id><published>2008-08-09T23:01:00.000+06:00</published><updated>2008-08-09T23:03:04.764+06:00</updated><app:edited xmlns:app="http://www.w3.org/2007/app">2008-08-09T23:03:04.764+06:00</app:edited><title>An introduction to USB</title><content type="html">In 1994, an alliance of four industrial partners (Compaq, Intel, Microsoft, and NEC) started specifying the USB protocol. The original goal of the protocol was to connect the PC to the telephone and to provide I/O interfaces that were easy to expand and reconfigure. In January 1996, the first version of the USB specification was released, and a subsequent revision (version 1.1) was released in September 1998. The specification allowed 127 devices to be connected together at the same time, with the total communication bandwidth limited to 12 Mbps. Later on, three more members (Hewlett-Packard, Lucent, and Philips) joined the alliance. In April 2000, version 2.0 of the USB specification, which supports transfer rates up to 480 Mbps, was released. Today, USB plays a key role in high-speed (video, imaging, storage) and full-speed (audio, broadband, microphone) data-transfer applications. It also connects a variety of low-speed devices (keyboards, mice, game peripherals, virtual reality peripherals) to the PC.&lt;br /&gt;&lt;br /&gt;The USB protocol is strictly hierarchical. In any USB system there is only a single host, and the USB interface to the host computer is referred to as the host controller. There are two standards for host controllers -- the Open Host Controller Interface (OHCI, by Compaq) and the Universal Host Controller Interface (UHCI, by Intel). Both standards provide the same capabilities and work with all USB devices; the hardware implementation of a UHCI is simpler, but requires a more complex device driver (and thus puts more load onto the CPU).&lt;br /&gt;&lt;br /&gt;The USB physical interconnect is a tiered star topology, with up to seven tiers. A hub is at the center of each star, and the USB host is considered the root hub. Each wired segment is a point-to-point connection between a hub and USB device; the latter can be either another hub that provides additional attachment points to the system, or a device of some sort that provides functional capabilities. The host uses a master/subordinate protocol to communicate with the USB devices. This approach solves the problem of packet collision but also prevents the attached devices from establishing direct communication with each other.&lt;br /&gt;&lt;br /&gt;All the data transfers are initiated by the host controller. Data directed from the host to a device is called downstream or out transfer; data directed from a device to the host is called upstream or in transfer. Data transfer occurs between the host and a particular endpoint on the USB device, and the data link between the host and the endpoint is called a pipe. A given USB device may have many endpoints, and the number of data pipes between the host and the device is the same as the number of endpoints on the device. A pipe may be uni-directional or bi-directional, and the data flow in one pipe is independent of the data flow in any other pipes.&lt;br /&gt;&lt;br /&gt;Communication on the USB network can use any one of four different data transfer types:&lt;br /&gt;&lt;br /&gt;    * Control transfers: These are short data packets for device control and configuration, particularly at attach time.&lt;br /&gt;    * Bulk transfers: These are data packets in relatively large quantities. Devices like scanners or SCSI adapters use this transfer type.&lt;br /&gt;    * Interrupt transfers: These are data packets that are polled periodically. The host controller will automatically post an interrupt at a specified interval.&lt;br /&gt;    * Isochronous transfers: These are data streams in real time with higher requirements for bandwidth than for reliability. Audio and video devices generally use this transfer type.&lt;br /&gt;&lt;br /&gt;Like a serial port, each USB port on a computer is assigned a unique identification number (port ID) by the USB controller. When a USB device is attached to a USB port, this unique port ID is assigned to the device and the device descriptor is read by the USB controller The device descriptor includes information that applies globally to the device, as well as information on the configuration of the device. A configuration defines the functionality and I/O behavior of a USB device. A USB device may have one or more configurations, which are described by their corresponding configuration descriptors. Each configuration has one or more interfaces, which can be considered as a physical communication channel; each interface has zero or more endpoints, which can be either data providers or data consumers, or both. Interfaces are described by interface descriptors, and endpoints are described by end-point descriptors. Furthermore, a USB device might also have string descriptors to provide additional information such as vendor name, device name, or serial numbers.&lt;br /&gt;&lt;span style="font-weight:bold;"&gt;&lt;br /&gt;Post Source&lt;/span&gt;&lt;a href="http://www.ibm.com/developerworks/linux/library/j-usb.html"&gt;&lt;br /&gt;&lt;br /&gt;http://www.ibm.com/developerworks/linux/library/j-usb.html&lt;/a&gt;&lt;div class="blogger-post-footer"&gt;&lt;img width='1' height='1' src='https://blogger.googleusercontent.com/tracker/7519039954647983130-4525648151655562241?l=amiabdullah.blogspot.com' alt='' /&gt;&lt;/div&gt;
&lt;p&gt;&lt;a href="http://feedads.g.doubleclick.net/~a/owUOvEscUngwT6Mk9iCb8LpiiHA/0/da"&gt;&lt;img src="http://feedads.g.doubleclick.net/~a/owUOvEscUngwT6Mk9iCb8LpiiHA/0/di" border="0" ismap="true"&gt;&lt;/img&gt;&lt;/a&gt;&lt;br/&gt;
&lt;a href="http://feedads.g.doubleclick.net/~a/owUOvEscUngwT6Mk9iCb8LpiiHA/1/da"&gt;&lt;img src="http://feedads.g.doubleclick.net/~a/owUOvEscUngwT6Mk9iCb8LpiiHA/1/di" border="0" ismap="true"&gt;&lt;/img&gt;&lt;/a&gt;&lt;/p&gt;&lt;img src="http://feeds.feedburner.com/~r/WinningTheBattleButLosingTheWar/~4/Xo6L64-aogc" height="1" width="1"/&gt;</content><link rel="replies" type="application/atom+xml" href="http://amiabdullah.blogspot.com/feeds/4525648151655562241/comments/default" title="Post Comments" /><link rel="replies" type="text/html" href="http://www.blogger.com/comment.g?blogID=7519039954647983130&amp;postID=4525648151655562241&amp;isPopup=true" title="0 Comments" /><link rel="edit" type="application/atom+xml" href="http://www.blogger.com/feeds/7519039954647983130/posts/default/4525648151655562241?v=2" /><link rel="self" type="application/atom+xml" href="http://www.blogger.com/feeds/7519039954647983130/posts/default/4525648151655562241?v=2" /><link rel="alternate" type="text/html" href="http://feedproxy.google.com/~r/WinningTheBattleButLosingTheWar/~3/Xo6L64-aogc/introduction-to-usb.html" title="An introduction to USB" /><author><name>abdullah</name><uri>http://www.blogger.com/profile/02442393507500280440</uri><email>noreply@blogger.com</email><gd:image rel="http://schemas.google.com/g/2005#thumbnail" width="29" height="32" src="http://2.bp.blogspot.com/_pDOJeEQqmb8/SiJ52--OfgI/AAAAAAAAAF0/BXK2Ivv0thw/S220/4.JPG" /></author><thr:total>0</thr:total><feedburner:origLink>http://amiabdullah.blogspot.com/2008/08/introduction-to-usb.html</feedburner:origLink></entry><entry gd:etag="W/&quot;DEIGR3wzfip7ImA9WxdUGU0.&quot;"><id>tag:blogger.com,1999:blog-7519039954647983130.post-1444939710091422380</id><published>2008-08-05T09:21:00.000+06:00</published><updated>2008-08-05T09:22:06.286+06:00</updated><app:edited xmlns:app="http://www.w3.org/2007/app">2008-08-05T09:22:06.286+06:00</app:edited><title>Second year microprocessor presentation</title><content type="html">&lt;iframe src='http://docs.google.com/EmbedSlideshow?docid=dfxs88mp_1dzbhjvdg' frameborder='0' width='410' height='342'&gt;&lt;/iframe&gt;&lt;div class="blogger-post-footer"&gt;&lt;img width='1' height='1' src='https://blogger.googleusercontent.com/tracker/7519039954647983130-1444939710091422380?l=amiabdullah.blogspot.com' alt='' /&gt;&lt;/div&gt;
&lt;p&gt;&lt;a href="http://feedads.g.doubleclick.net/~a/g589dq5wq3DyN0uhUUAoJGPzsQM/0/da"&gt;&lt;img src="http://feedads.g.doubleclick.net/~a/g589dq5wq3DyN0uhUUAoJGPzsQM/0/di" border="0" ismap="true"&gt;&lt;/img&gt;&lt;/a&gt;&lt;br/&gt;
&lt;a href="http://feedads.g.doubleclick.net/~a/g589dq5wq3DyN0uhUUAoJGPzsQM/1/da"&gt;&lt;img src="http://feedads.g.doubleclick.net/~a/g589dq5wq3DyN0uhUUAoJGPzsQM/1/di" border="0" ismap="true"&gt;&lt;/img&gt;&lt;/a&gt;&lt;/p&gt;&lt;img src="http://feeds.feedburner.com/~r/WinningTheBattleButLosingTheWar/~4/dxZgHLBP1WU" height="1" width="1"/&gt;</content><link rel="replies" type="application/atom+xml" href="http://amiabdullah.blogspot.com/feeds/1444939710091422380/comments/default" title="Post Comments" /><link rel="replies" type="text/html" href="http://www.blogger.com/comment.g?blogID=7519039954647983130&amp;postID=1444939710091422380&amp;isPopup=true" title="0 Comments" /><link rel="edit" type="application/atom+xml" href="http://www.blogger.com/feeds/7519039954647983130/posts/default/1444939710091422380?v=2" /><link rel="self" type="application/atom+xml" href="http://www.blogger.com/feeds/7519039954647983130/posts/default/1444939710091422380?v=2" /><link rel="alternate" type="text/html" href="http://feedproxy.google.com/~r/WinningTheBattleButLosingTheWar/~3/dxZgHLBP1WU/second-year-microprocessor-presentation.html" title="Second year microprocessor presentation" /><author><name>abdullah</name><uri>http://www.blogger.com/profile/02442393507500280440</uri><email>noreply@blogger.com</email><gd:image rel="http://schemas.google.com/g/2005#thumbnail" width="29" height="32" src="http://2.bp.blogspot.com/_pDOJeEQqmb8/SiJ52--OfgI/AAAAAAAAAF0/BXK2Ivv0thw/S220/4.JPG" /></author><thr:total>0</thr:total><feedburner:origLink>http://amiabdullah.blogspot.com/2008/08/second-year-microprocessor-presentation.html</feedburner:origLink></entry><entry gd:etag="W/&quot;DUYBR3o9cSp7ImA9WxdUFkQ.&quot;"><id>tag:blogger.com,1999:blog-7519039954647983130.post-8648295016880291121</id><published>2008-08-02T23:09:00.001+06:00</published><updated>2008-08-02T23:12:36.469+06:00</updated><app:edited xmlns:app="http://www.w3.org/2007/app">2008-08-02T23:12:36.469+06:00</app:edited><title>A new search engine - CUIL</title><content type="html">A new search engine has been launched at the internet - &lt;span style="font-weight:bold;"&gt;cuil&lt;/span&gt; by name. As the first glance it seems to me nice to search on it and it is as fast as google search engine.&lt;br /&gt;&lt;br /&gt;For more information read &lt;a href="http://www.cuil.com/info/"&gt;cuil&lt;/a&gt;&lt;div class="blogger-post-footer"&gt;&lt;img width='1' height='1' src='https://blogger.googleusercontent.com/tracker/7519039954647983130-8648295016880291121?l=amiabdullah.blogspot.com' alt='' /&gt;&lt;/div&gt;
&lt;p&gt;&lt;a href="http://feedads.g.doubleclick.net/~a/RSiisC9AyyNnwYIWxDKg1t48EEI/0/da"&gt;&lt;img src="http://feedads.g.doubleclick.net/~a/RSiisC9AyyNnwYIWxDKg1t48EEI/0/di" border="0" ismap="true"&gt;&lt;/img&gt;&lt;/a&gt;&lt;br/&gt;
&lt;a href="http://feedads.g.doubleclick.net/~a/RSiisC9AyyNnwYIWxDKg1t48EEI/1/da"&gt;&lt;img src="http://feedads.g.doubleclick.net/~a/RSiisC9AyyNnwYIWxDKg1t48EEI/1/di" border="0" ismap="true"&gt;&lt;/img&gt;&lt;/a&gt;&lt;/p&gt;&lt;img src="http://feeds.feedburner.com/~r/WinningTheBattleButLosingTheWar/~4/IPwXNTx_bpk" height="1" width="1"/&gt;</content><link rel="replies" type="application/atom+xml" href="http://amiabdullah.blogspot.com/feeds/8648295016880291121/comments/default" title="Post Comments" /><link rel="replies" type="text/html" href="http://www.blogger.com/comment.g?blogID=7519039954647983130&amp;postID=8648295016880291121&amp;isPopup=true" title="0 Comments" /><link rel="edit" type="application/atom+xml" href="http://www.blogger.com/feeds/7519039954647983130/posts/default/8648295016880291121?v=2" /><link rel="self" type="application/atom+xml" href="http://www.blogger.com/feeds/7519039954647983130/posts/default/8648295016880291121?v=2" /><link rel="alternate" type="text/html" href="http://feedproxy.google.com/~r/WinningTheBattleButLosingTheWar/~3/IPwXNTx_bpk/new-search-engine-cuil.html" title="A new search engine - CUIL" /><author><name>abdullah</name><uri>http://www.blogger.com/profile/02442393507500280440</uri><email>noreply@blogger.com</email><gd:image rel="http://schemas.google.com/g/2005#thumbnail" width="29" height="32" src="http://2.bp.blogspot.com/_pDOJeEQqmb8/SiJ52--OfgI/AAAAAAAAAF0/BXK2Ivv0thw/S220/4.JPG" /></author><thr:total>0</thr:total><feedburner:origLink>http://amiabdullah.blogspot.com/2008/08/new-search-engine-cuil.html</feedburner:origLink></entry><entry gd:etag="W/&quot;D0INQn0zcCp7ImA9WxdUFko.&quot;"><id>tag:blogger.com,1999:blog-7519039954647983130.post-3237573897218756433</id><published>2008-08-02T16:59:00.002+06:00</published><updated>2008-08-02T17:13:13.388+06:00</updated><app:edited xmlns:app="http://www.w3.org/2007/app">2008-08-02T17:13:13.388+06:00</app:edited><title>Public Universities of Bangladesh</title><content type="html">Though Bangladesh is a small country but it has large population.Now-a-days a lot of students in Bangladesh are trying to take higher education in different universities. Approximately there are 26 public universities in Bangladesh. The number is not enough to serve the ever growing demand. So many private universities are opened at the same time. But if you concern about quality education i can definitely say that,they are cent percent fail to give it.  Now private universities are the place to earn money for the teachers and give money for the students. So education is just like business here. &lt;br /&gt;&lt;br /&gt;It is very much unfortunate that many propaganda have been made against public universities. I think this is also a part of business of private universities. Public universities have also many problems. But the concern authority don't find time to solve the problems.&lt;a href="http://en.wikipedia.org/wiki/Category:Public_universities_of_Bangladesh"&gt;&lt;br /&gt;&lt;br /&gt;List of public universities of Bangladesh&lt;/a&gt;  &lt;br /&gt;&lt;a href="http://www.reportbd.com/blogs/4/List-of-Private-Universities-in-Bangladesh.html"&gt;List of private universities of Bangladesh&lt;/a&gt;&lt;div class="blogger-post-footer"&gt;&lt;img width='1' height='1' src='https://blogger.googleusercontent.com/tracker/7519039954647983130-3237573897218756433?l=amiabdullah.blogspot.com' alt='' /&gt;&lt;/div&gt;
&lt;p&gt;&lt;a href="http://feedads.g.doubleclick.net/~a/5N2LK5XJR94APjh8FPOXBxmLDbg/0/da"&gt;&lt;img src="http://feedads.g.doubleclick.net/~a/5N2LK5XJR94APjh8FPOXBxmLDbg/0/di" border="0" ismap="true"&gt;&lt;/img&gt;&lt;/a&gt;&lt;br/&gt;
&lt;a href="http://feedads.g.doubleclick.net/~a/5N2LK5XJR94APjh8FPOXBxmLDbg/1/da"&gt;&lt;img src="http://feedads.g.doubleclick.net/~a/5N2LK5XJR94APjh8FPOXBxmLDbg/1/di" border="0" ismap="true"&gt;&lt;/img&gt;&lt;/a&gt;&lt;/p&gt;&lt;img src="http://feeds.feedburner.com/~r/WinningTheBattleButLosingTheWar/~4/usYde3VuDYY" height="1" width="1"/&gt;</content><link rel="replies" type="application/atom+xml" href="http://amiabdullah.blogspot.com/feeds/3237573897218756433/comments/default" title="Post Comments" /><link rel="replies" type="text/html" href="http://www.blogger.com/comment.g?blogID=7519039954647983130&amp;postID=3237573897218756433&amp;isPopup=true" title="0 Comments" /><link rel="edit" type="application/atom+xml" href="http://www.blogger.com/feeds/7519039954647983130/posts/default/3237573897218756433?v=2" /><link rel="self" type="application/atom+xml" href="http://www.blogger.com/feeds/7519039954647983130/posts/default/3237573897218756433?v=2" /><link rel="alternate" type="text/html" href="http://feedproxy.google.com/~r/WinningTheBattleButLosingTheWar/~3/usYde3VuDYY/public-universities-of-bangladesh.html" title="Public Universities of Bangladesh" /><author><name>abdullah</name><uri>http://www.blogger.com/profile/02442393507500280440</uri><email>noreply@blogger.com</email><gd:image rel="http://schemas.google.com/g/2005#thumbnail" width="29" height="32" src="http://2.bp.blogspot.com/_pDOJeEQqmb8/SiJ52--OfgI/AAAAAAAAAF0/BXK2Ivv0thw/S220/4.JPG" /></author><thr:total>0</thr:total><feedburner:origLink>http://amiabdullah.blogspot.com/2008/08/public-universities-of-bangladesh.html</feedburner:origLink></entry><entry gd:etag="W/&quot;DUADQX05eip7ImA9WxdUFUw.&quot;"><id>tag:blogger.com,1999:blog-7519039954647983130.post-5699512624999510385</id><published>2008-07-31T21:18:00.002+06:00</published><updated>2008-07-31T21:22:50.322+06:00</updated><app:edited xmlns:app="http://www.w3.org/2007/app">2008-07-31T21:22:50.322+06:00</app:edited><title>Movie Title in Bangla</title><content type="html">I am now working to make the English subtitle of &lt;span style="font-weight:bold;"&gt;A Space Odyssey&lt;/span&gt; into Bangla. This is an interesting task for me. This will take a week to complete. After that I will publish it for all Bangla speaking user.&lt;div class="blogger-post-footer"&gt;&lt;img width='1' height='1' src='https://blogger.googleusercontent.com/tracker/7519039954647983130-5699512624999510385?l=amiabdullah.blogspot.com' alt='' /&gt;&lt;/div&gt;
&lt;p&gt;&lt;a href="http://feedads.g.doubleclick.net/~a/ciPQdo_L-AkGQ7PFz96ua0NMtE8/0/da"&gt;&lt;img src="http://feedads.g.doubleclick.net/~a/ciPQdo_L-AkGQ7PFz96ua0NMtE8/0/di" border="0" ismap="true"&gt;&lt;/img&gt;&lt;/a&gt;&lt;br/&gt;
&lt;a href="http://feedads.g.doubleclick.net/~a/ciPQdo_L-AkGQ7PFz96ua0NMtE8/1/da"&gt;&lt;img src="http://feedads.g.doubleclick.net/~a/ciPQdo_L-AkGQ7PFz96ua0NMtE8/1/di" border="0" ismap="true"&gt;&lt;/img&gt;&lt;/a&gt;&lt;/p&gt;&lt;img src="http://feeds.feedburner.com/~r/WinningTheBattleButLosingTheWar/~4/FT4P8HLoKU0" height="1" width="1"/&gt;</content><link rel="replies" type="application/atom+xml" href="http://amiabdullah.blogspot.com/feeds/5699512624999510385/comments/default" title="Post Comments" /><link rel="replies" type="text/html" href="http://www.blogger.com/comment.g?blogID=7519039954647983130&amp;postID=5699512624999510385&amp;isPopup=true" title="1 Comments" /><link rel="edit" type="application/atom+xml" href="http://www.blogger.com/feeds/7519039954647983130/posts/default/5699512624999510385?v=2" /><link rel="self" type="application/atom+xml" href="http://www.blogger.com/feeds/7519039954647983130/posts/default/5699512624999510385?v=2" /><link rel="alternate" type="text/html" href="http://feedproxy.google.com/~r/WinningTheBattleButLosingTheWar/~3/FT4P8HLoKU0/movie-title-in-bangla.html" title="Movie Title in Bangla" /><author><name>abdullah</name><uri>http://www.blogger.com/profile/02442393507500280440</uri><email>noreply@blogger.com</email><gd:image rel="http://schemas.google.com/g/2005#thumbnail" width="29" height="32" src="http://2.bp.blogspot.com/_pDOJeEQqmb8/SiJ52--OfgI/AAAAAAAAAF0/BXK2Ivv0thw/S220/4.JPG" /></author><thr:total>1</thr:total><feedburner:origLink>http://amiabdullah.blogspot.com/2008/07/movie-title-in-bangla.html</feedburner:origLink></entry><entry gd:etag="W/&quot;DkQFQX46fCp7ImA9WxdUE0U.&quot;"><id>tag:blogger.com,1999:blog-7519039954647983130.post-7174862652270489029</id><published>2008-07-30T08:06:00.004+06:00</published><updated>2008-07-30T08:18:30.014+06:00</updated><app:edited xmlns:app="http://www.w3.org/2007/app">2008-07-30T08:18:30.014+06:00</app:edited><title>My Favorite Two ScreenSaver</title><content type="html">A &lt;span style="font-weight: bold;"&gt;screen saver&lt;/span&gt; is a type of computer program initially designed to prevent "Phosphor burn-in" on CRT and plasma &lt;span class="mw-redirect"&gt;computer monitors&lt;/span&gt; by blanking the screen or filling it with moving images or patterns when the computer is not in use. Today, screen savers are also used for entertainment or security purposes.&lt;br /&gt;&lt;br /&gt;Here I want to give two of my favorite screen saver. One is from cricinfo about Bangladesh cricket team and another one is from new7wonders about 7wonders.&lt;br /&gt;&lt;br /&gt;Click the image to download.&lt;br /&gt;&lt;br /&gt;&lt;div style="text-align: left;"&gt;&lt;a onblur="try {parent.deselectBloggerImageGracefully();} catch(e) {}" href="http://ind.cricinfo.com/db/PHOTOS/screensaver.html"&gt;&lt;img style="cursor: pointer;" src="http://bp1.blogger.com/_pDOJeEQqmb8/SI_NvUYvDmI/AAAAAAAAAEI/3QaaqpB3dcM/s320/bdesh_189x142.jpg" alt="" id="BLOGGER_PHOTO_ID_5228623905210437218" border="0" /&gt;&lt;/a&gt;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&lt;a onblur="try {parent.deselectBloggerImageGracefully();} catch(e) {}" href="http://www.new7wonders.com/classic/en/kids_and_schools/screensaver/"&gt;&lt;img style="cursor: pointer; width: 275px; height: 162px;" src="http://bp3.blogger.com/_pDOJeEQqmb8/SI_OIR95F4I/AAAAAAAAAEQ/KtKnD8k7V9o/s320/Thumb290x162.jpg" alt="" id="BLOGGER_PHOTO_ID_5228624334057707394" border="0" /&gt;&lt;/a&gt;&lt;br /&gt;&lt;br /&gt;You can download the zip file from the &lt;a href="http://rapidshare.com/files/133467397/Favorite_Screen_saver.zip.html"&gt;link&lt;/a&gt;&lt;br /&gt;&lt;br /&gt;&lt;/div&gt;&lt;div class="blogger-post-footer"&gt;&lt;img width='1' height='1' src='https://blogger.googleusercontent.com/tracker/7519039954647983130-7174862652270489029?l=amiabdullah.blogspot.com' alt='' /&gt;&lt;/div&gt;
&lt;p&gt;&lt;a href="http://feedads.g.doubleclick.net/~a/VgFH13XgH03Jva8xStGCy7Lrscs/0/da"&gt;&lt;img src="http://feedads.g.doubleclick.net/~a/VgFH13XgH03Jva8xStGCy7Lrscs/0/di" border="0" ismap="true"&gt;&lt;/img&gt;&lt;/a&gt;&lt;br/&gt;
&lt;a href="http://feedads.g.doubleclick.net/~a/VgFH13XgH03Jva8xStGCy7Lrscs/1/da"&gt;&lt;img src="http://feedads.g.doubleclick.net/~a/VgFH13XgH03Jva8xStGCy7Lrscs/1/di" border="0" ismap="true"&gt;&lt;/img&gt;&lt;/a&gt;&lt;/p&gt;&lt;img src="http://feeds.feedburner.com/~r/WinningTheBattleButLosingTheWar/~4/QQgaMixWV-c" height="1" width="1"/&gt;</content><link rel="replies" type="application/atom+xml" href="http://amiabdullah.blogspot.com/feeds/7174862652270489029/comments/default" title="Post Comments" /><link rel="replies" type="text/html" href="http://www.blogger.com/comment.g?blogID=7519039954647983130&amp;postID=7174862652270489029&amp;isPopup=true" title="0 Comments" /><link rel="edit" type="application/atom+xml" href="http://www.blogger.com/feeds/7519039954647983130/posts/default/7174862652270489029?v=2" /><link rel="self" type="application/atom+xml" href="http://www.blogger.com/feeds/7519039954647983130/posts/default/7174862652270489029?v=2" /><link rel="alternate" type="text/html" href="http://feedproxy.google.com/~r/WinningTheBattleButLosingTheWar/~3/QQgaMixWV-c/my-favorite-two-screensaver.html" title="My Favorite Two ScreenSaver" /><author><name>abdullah</name><uri>http://www.blogger.com/profile/02442393507500280440</uri><email>noreply@blogger.com</email><gd:image rel="http://schemas.google.com/g/2005#thumbnail" width="29" height="32" src="http://2.bp.blogspot.com/_pDOJeEQqmb8/SiJ52--OfgI/AAAAAAAAAF0/BXK2Ivv0thw/S220/4.JPG" /></author><media:thumbnail xmlns:media="http://search.yahoo.com/mrss/" url="http://bp1.blogger.com/_pDOJeEQqmb8/SI_NvUYvDmI/AAAAAAAAAEI/3QaaqpB3dcM/s72-c/bdesh_189x142.jpg" height="72" width="72" /><thr:total>0</thr:total><feedburner:origLink>http://amiabdullah.blogspot.com/2008/07/my-favorite-two-screensaver.html</feedburner:origLink></entry><entry gd:etag="W/&quot;Ak4BR3w9fCp7ImA9WxdUE0w.&quot;"><id>tag:blogger.com,1999:blog-7519039954647983130.post-9044431321853488793</id><published>2008-07-29T13:56:00.004+06:00</published><updated>2008-07-29T14:09:16.264+06:00</updated><app:edited xmlns:app="http://www.w3.org/2007/app">2008-07-29T14:09:16.264+06:00</app:edited><title>International Mobile Equipment Identity(IMEI Number)</title><content type="html">&lt;p&gt;The &lt;b&gt;International Mobile Equipment Identity&lt;/b&gt; or &lt;b&gt;IMEI&lt;/b&gt; &lt;span title="Pronunciation in the International Phonetic Alphabet (IPA)" class="IPA"&gt;&lt;/span&gt;is a number unique to every GSM and &lt;span class="mw-redirect"&gt;UMTS&lt;/span&gt; mobile phone as well as some satellite phones. It is usually found printed on the phone underneath the battery.&lt;/p&gt; &lt;p&gt;The IMEI number is used by the GSM network to identify valid devices and therefore can be used to stop a stolen phone from accessing the network. For example, if a mobile phone is stolen, the owner can call his or her network provider and instruct them to "ban" the phone using its IMEI number. This renders the phone useless, regardless of whether the phone's SIM is changed.&lt;/p&gt;&lt;p class="normalText"&gt;The &lt;b&gt;International Mobile Equipment Identity&lt;/b&gt; - a unique 15-digit code used to identify an individual GSM mobile telephone to a mobile network. It can be displayed on most phones by dialling &lt;b&gt;*#06#&lt;/b&gt;. It is also usually printed on the compliance plate under the battery. &lt;/p&gt;           &lt;p&gt;&lt;span class="normalText"&gt;Prior to April 1st 2004 the numerical format of the code was:&lt;br /&gt;          &lt;/span&gt;111111-22-333333-4&lt;span class="normalText"&gt;&lt;/span&gt;&lt;/p&gt;&lt;p&gt;                     &lt;/p&gt;&lt;h2&gt;&lt;span class="highlight"&gt; &lt;/span&gt;&lt;/h2&gt;&lt;p&gt;&lt;span class="normalText"&gt;&lt;/span&gt;&lt;span class="normalText"&gt;                       &lt;/span&gt;&lt;/p&gt;                        &lt;table width="90%" border="1" cellpadding="0" cellspacing="1"&gt;&lt;tbody&gt;&lt;tr&gt;               &lt;td class="table" colspan="6"&gt;                 &lt;div align="center"&gt;TAC&lt;/div&gt;&lt;/td&gt;               &lt;td class="table" colspan="2"&gt;                 &lt;div align="center"&gt;FAC&lt;/div&gt;&lt;/td&gt;               &lt;td class="table" colspan="6"&gt;                 &lt;div align="center"&gt;SNR&lt;/div&gt;&lt;/td&gt;               &lt;td class="table"&gt;CD&lt;/td&gt;             &lt;/tr&gt;             &lt;tr&gt;               &lt;td class="table" bg="" style="color: rgb(255, 0, 0);"&gt;                 &lt;div align="center"&gt;&lt;span style="color: rgb(255, 255, 255);"&gt;D14&lt;/span&gt;&lt;/div&gt;&lt;/td&gt;               &lt;td class="table" bg="" style="color: rgb(255, 0, 0);"&gt;                 &lt;div align="center"&gt;&lt;span style="color: rgb(255, 255, 255);"&gt;D13&lt;/span&gt;&lt;/div&gt;&lt;/td&gt;               &lt;td class="table" bg="" style="color: rgb(255, 0, 0);"&gt;                 &lt;div align="center"&gt;&lt;span style="color: rgb(255, 255, 255);"&gt;D12&lt;/span&gt;&lt;/div&gt;&lt;/td&gt;               &lt;td class="table" bg="" style="color: rgb(255, 0, 0);"&gt;                 &lt;div align="center"&gt;&lt;span style="color: rgb(255, 255, 255);"&gt;D11&lt;/span&gt;&lt;/div&gt;&lt;/td&gt;               &lt;td class="table" bg="" style="color: rgb(255, 0, 0);"&gt;                 &lt;div align="center"&gt;&lt;span style="color: rgb(255, 255, 255);"&gt;D10&lt;/span&gt;&lt;/div&gt;&lt;/td&gt;               &lt;td class="table" bg="" style="color: rgb(255, 0, 0);"&gt;                 &lt;div align="center"&gt;&lt;span style="color: rgb(255, 255, 255);"&gt;D09&lt;/span&gt;&lt;/div&gt;&lt;/td&gt;               &lt;td class="table" bgcolor="#ffff00"&gt;                 &lt;div align="center"&gt;D08&lt;/div&gt;&lt;/td&gt;               &lt;td class="table" bgcolor="#ffff00"&gt;                 &lt;div align="center"&gt;D07&lt;/div&gt;&lt;/td&gt;               &lt;td class="table" bg="" style="color: rgb(0, 153, 51);"&gt;                 &lt;div align="center"&gt;&lt;span style="color: rgb(255, 255, 255);"&gt;D06&lt;/span&gt;&lt;/div&gt;&lt;/td&gt;               &lt;td class="table" bg="" style="color: rgb(0, 153, 51);"&gt;                 &lt;div align="center"&gt;&lt;span style="color: rgb(255, 255, 255);"&gt;D05&lt;/span&gt;&lt;/div&gt;&lt;/td&gt;               &lt;td class="table" bg="" style="color: rgb(0, 153, 51);"&gt;                 &lt;div align="center"&gt;&lt;span style="color: rgb(255, 255, 255);"&gt;D04&lt;/span&gt;&lt;/div&gt;&lt;/td&gt;               &lt;td class="table" bg="" style="color: rgb(0, 153, 51);"&gt;                 &lt;div align="center"&gt;&lt;span style="color: rgb(255, 255, 255);"&gt;D03&lt;/span&gt;&lt;/div&gt;&lt;/td&gt;               &lt;td class="table" bg="" style="color: rgb(0, 153, 51);"&gt;                 &lt;div align="center"&gt;&lt;span style="color: rgb(255, 255, 255);"&gt;D02&lt;/span&gt;&lt;/div&gt;&lt;/td&gt;               &lt;td class="table" bg="" style="color: rgb(0, 153, 51);"&gt;                 &lt;div align="center"&gt;&lt;span style="color: rgb(255, 255, 255);"&gt;D01&lt;/span&gt;&lt;/div&gt;&lt;/td&gt;               &lt;td class="table" bgcolor="#0000ff"&gt;              &lt;br /&gt;&lt;/td&gt;&lt;/tr&gt;&lt;/tbody&gt;&lt;/table&gt;&lt;ul&gt;&lt;li class="normalText"&gt;TAC: Type Approval Code&lt;/li&gt;&lt;li class="normalText"&gt;FAC: Final Assembly Code&lt;/li&gt;&lt;li class="normalText"&gt;SNR: Serial Number&lt;/li&gt;&lt;li class="normalText"&gt;CD: Check Digit&lt;/li&gt;&lt;/ul&gt;                         &lt;p class="normalText"&gt;The first six digits are the TAC (Type Approval Code), which identifies the country where type approval was sought for the phone, as well as the approval number. NOTE: since the 1st April 2004 the TAC will be the abbreviation for Type Allocation Code.&lt;/p&gt;             &lt;p&gt;&lt;span class="normalText"&gt;The FAC (Final Assembly Code) identifies the company that produced the mobile phone (eg: SonyEricsson or Nokia). NOTE: From 1st January 2003 a new code allocation procedure has been in place. The changes relate to the format - the Final Assembly Code (FAC) is obsolete and is set to 00 for the period from 1st January 2003 until 1st April 2004. The FAC is now obsolete, and the TAC is now eight instead of six digits, as follows: 11111111-222222-3&lt;/span&gt;&lt;br /&gt;          &lt;/p&gt;             &lt;table width="90%" border="1" cellpadding="0" cellspacing="1"&gt;               &lt;tbody&gt;&lt;tr&gt;                 &lt;td colspan="8" class="table"&gt;                   &lt;div align="center"&gt;TAC&lt;/div&gt;&lt;/td&gt;                 &lt;td class="table" colspan="6"&gt;                   &lt;div align="center"&gt;SNR&lt;/div&gt;&lt;/td&gt;                 &lt;td class="table"&gt;CD&lt;/td&gt;               &lt;/tr&gt;               &lt;tr&gt;                 &lt;td class="table" bg="" style="color: rgb(255, 0, 0);"&gt;                   &lt;div align="center"&gt;&lt;span style="color: rgb(255, 255, 255);"&gt;D14&lt;/span&gt;&lt;/div&gt;&lt;/td&gt;                 &lt;td class="table" bg="" style="color: rgb(255, 0, 0);"&gt;                   &lt;div align="center"&gt;&lt;span style="color: rgb(255, 255, 255);"&gt;D13&lt;/span&gt;&lt;/div&gt;&lt;/td&gt;                 &lt;td class="table" bg="" style="color: rgb(255, 0, 0);"&gt;                   &lt;div align="center"&gt;&lt;span style="color: rgb(255, 255, 255);"&gt;D12&lt;/span&gt;&lt;/div&gt;&lt;/td&gt;                 &lt;td class="table" bg="" style="color: rgb(255, 0, 0);"&gt;                   &lt;div align="center"&gt;&lt;span style="color: rgb(255, 255, 255);"&gt;D11&lt;/span&gt;&lt;/div&gt;&lt;/td&gt;                 &lt;td class="table" bg="" style="color: rgb(255, 0, 0);"&gt;                   &lt;div align="center"&gt;&lt;span style="color: rgb(255, 255, 255);"&gt;D10&lt;/span&gt;&lt;/div&gt;&lt;/td&gt;                 &lt;td class="table" bg="" style="color: rgb(255, 0, 0);"&gt;                   &lt;div align="center"&gt;&lt;span style="color: rgb(255, 255, 255);"&gt;D09&lt;/span&gt;&lt;/div&gt;&lt;/td&gt;                 &lt;td class="table" bg="" style="color: rgb(255, 0, 0);"&gt;                   &lt;div align="center"&gt;&lt;span style="color: rgb(255, 255, 255);"&gt;D08&lt;/span&gt;&lt;/div&gt;&lt;/td&gt;                 &lt;td class="table" bg="" style="color: rgb(255, 0, 0);"&gt;                   &lt;div align="center"&gt;&lt;span style="color: rgb(255, 255, 255);"&gt;D07&lt;/span&gt;&lt;/div&gt;&lt;/td&gt;                 &lt;td class="table" bg="" style="color: rgb(0, 153, 51);"&gt;                   &lt;div align="center"&gt;&lt;span style="color: rgb(255, 255, 255);"&gt;D06&lt;/span&gt;&lt;/div&gt;&lt;/td&gt;                 &lt;td class="table" bg="" style="color: rgb(0, 153, 51);"&gt;                   &lt;div align="center"&gt;&lt;span style="color: rgb(255, 255, 255);"&gt;D05&lt;/span&gt;&lt;/div&gt;&lt;/td&gt;                 &lt;td class="table" bg="" style="color: rgb(0, 153, 51);"&gt;                   &lt;div align="center"&gt;&lt;span style="color: rgb(255, 255, 255);"&gt;D04&lt;/span&gt;&lt;/div&gt;&lt;/td&gt;                 &lt;td class="table" bg="" style="color: rgb(0, 153, 51);"&gt;                   &lt;div align="center"&gt;&lt;span style="color: rgb(255, 255, 255);"&gt;D03&lt;/span&gt;&lt;/div&gt;&lt;/td&gt;                 &lt;td class="table" bg="" style="color: rgb(0, 153, 51);"&gt;                   &lt;div align="center"&gt;&lt;span style="color: rgb(255, 255, 255);"&gt;D02&lt;/span&gt;&lt;/div&gt;&lt;/td&gt;                 &lt;td class="table" bg="" style="color: rgb(0, 153, 51);"&gt;                   &lt;div align="center"&gt;&lt;span style="color: rgb(255, 255, 255);"&gt;D01&lt;/span&gt;&lt;/div&gt;&lt;/td&gt;                 &lt;td class="table" bgcolor="#0000ff"&gt;                &lt;br /&gt;&lt;/td&gt;               &lt;/tr&gt;             &lt;/tbody&gt;&lt;/table&gt;             &lt;p class="normalText"&gt;The 6 digit SNR (Serial Number) has been uniquely assigned to the specific type of handset. The CD (Check Digit) is used to check the code for its validity for Phase 2 and Phase 2+ handsets. Phase 1 GSM handsets, however, always have zero ("0") as check digit.&lt;/p&gt;             &lt;p class="normalText"&gt;&lt;b&gt;IMEISV&lt;/b&gt; (International Mobile Equipment Identity and Software Version number) is also sometimes used. It offers the possibility of adding the handset's original software version number. It adds a two digit SVN (Software Version Number) at the end of the code, so the numerical format is:&lt;br /&gt;  111111-22-333333-4-55, which changed to 11111111-222222-3-44 on 1st April 2004.&lt;br /&gt;&lt;/p&gt;&lt;p style="font-weight: bold;" class="normalText"&gt;&lt;a href="http://www.numberingplans.com/?page=analysis&amp;amp;sub=imeinr"&gt;---&gt; Analysis of IMEI numbers&lt;/a&gt;&lt;/p&gt;&lt;p class="normalText"&gt;Post Source:&lt;/p&gt;&lt;p class="normalText"&gt;&lt;a href="http://en.wikipedia.org/wiki/International_Mobile_Equipment_Identity"&gt;http://en.wikipedia.org/wiki/International_Mobile_Equipment_Identity&lt;/a&gt;&lt;/p&gt;&lt;p class="normalText"&gt;&lt;a href="http://www.numberingplans.com/?page=analysis&amp;amp;sub=imeinr"&gt;http://www.orate.co.uk/Mobiles/imei.html&lt;/a&gt;&lt;/p&gt;&lt;p class="normalText"&gt;&lt;a href="http://www.numberingplans.com/?page=analysis&amp;amp;sub=imeinr"&gt;http://www.numberingplans.com/?page=analysis&amp;amp;sub=imeinr&lt;/a&gt;&lt;/p&gt;&lt;p class="normalText"&gt;&lt;a href="http://www.numberingplans.com/?page=analysis&amp;amp;sub=imeinr"&gt;&lt;br /&gt;&lt;/a&gt;&lt;/p&gt;&lt;div class="blogger-post-footer"&gt;&lt;img width='1' height='1' src='https://blogger.googleusercontent.com/tracker/7519039954647983130-9044431321853488793?l=amiabdullah.blogspot.com' alt='' /&gt;&lt;/div&gt;
&lt;p&gt;&lt;a href="http://feedads.g.doubleclick.net/~a/c969nJ2vR9d7P794_x6GOo2Ysr8/0/da"&gt;&lt;img src="http://feedads.g.doubleclick.net/~a/c969nJ2vR9d7P794_x6GOo2Ysr8/0/di" border="0" ismap="true"&gt;&lt;/img&gt;&lt;/a&gt;&lt;br/&gt;
&lt;a href="http://feedads.g.doubleclick.net/~a/c969nJ2vR9d7P794_x6GOo2Ysr8/1/da"&gt;&lt;img src="http://feedads.g.doubleclick.net/~a/c969nJ2vR9d7P794_x6GOo2Ysr8/1/di" border="0" ismap="true"&gt;&lt;/img&gt;&lt;/a&gt;&lt;/p&gt;&lt;img src="http://feeds.feedburner.com/~r/WinningTheBattleButLosingTheWar/~4/86RDT29qTdw" height="1" width="1"/&gt;</content><link rel="replies" type="application/atom+xml" href="http://amiabdullah.blogspot.com/feeds/9044431321853488793/comments/default" title="Post Comments" /><link rel="replies" type="text/html" href="http://www.blogger.com/comment.g?blogID=7519039954647983130&amp;postID=9044431321853488793&amp;isPopup=true" title="0 Comments" /><link rel="edit" type="application/atom+xml" href="http://www.blogger.com/feeds/7519039954647983130/posts/default/9044431321853488793?v=2" /><link rel="self" type="application/atom+xml" href="http://www.blogger.com/feeds/7519039954647983130/posts/default/9044431321853488793?v=2" /><link rel="alternate" type="text/html" href="http://feedproxy.google.com/~r/WinningTheBattleButLosingTheWar/~3/86RDT29qTdw/international-mobile-equipment.html" title="International Mobile Equipment Identity(IMEI Number)" /><author><name>abdullah</name><uri>http://www.blogger.com/profile/02442393507500280440</uri><email>noreply@blogger.com</email><gd:image rel="http://schemas.google.com/g/2005#thumbnail" width="29" height="32" src="http://2.bp.blogspot.com/_pDOJeEQqmb8/SiJ52--OfgI/AAAAAAAAAF0/BXK2Ivv0thw/S220/4.JPG" /></author><thr:total>0</thr:total><feedburner:origLink>http://amiabdullah.blogspot.com/2008/07/international-mobile-equipment.html</feedburner:origLink></entry><entry gd:etag="W/&quot;CEINRXk5eCp7ImA9WxdUEks.&quot;"><id>tag:blogger.com,1999:blog-7519039954647983130.post-6271049739626960078</id><published>2008-07-28T22:20:00.002+06:00</published><updated>2008-07-28T22:29:54.720+06:00</updated><app:edited xmlns:app="http://www.w3.org/2007/app">2008-07-28T22:29:54.720+06:00</app:edited><title>Earthquake at Dhaka, Bangladesh</title><content type="html">Last Sunday at 00:52 AM there was an earthquake at Dhaka, Bangladesh. I was at that time preparing for sleep. Suddenly I feel that my bed was moving back and forth for few seconds. The earthquake is not so strong. It has the strength 5.6 at richter scale. Around 20 peoples are injured at &lt;a href="http://www.univdhaka.edu"&gt;Dhaka University&lt;/a&gt;.&lt;div class="blogger-post-footer"&gt;&lt;img width='1' height='1' src='https://blogger.googleusercontent.com/tracker/7519039954647983130-6271049739626960078?l=amiabdullah.blogspot.com' alt='' /&gt;&lt;/div&gt;
&lt;p&gt;&lt;a href="http://feedads.g.doubleclick.net/~a/PUDS0FvJL7CWgTkPkfcpGxgL0vM/0/da"&gt;&lt;img src="http://feedads.g.doubleclick.net/~a/PUDS0FvJL7CWgTkPkfcpGxgL0vM/0/di" border="0" ismap="true"&gt;&lt;/img&gt;&lt;/a&gt;&lt;br/&gt;
&lt;a href="http://feedads.g.doubleclick.net/~a/PUDS0FvJL7CWgTkPkfcpGxgL0vM/1/da"&gt;&lt;img src="http://feedads.g.doubleclick.net/~a/PUDS0FvJL7CWgTkPkfcpGxgL0vM/1/di" border="0" ismap="true"&gt;&lt;/img&gt;&lt;/a&gt;&lt;/p&gt;&lt;img src="http://feeds.feedburner.com/~r/WinningTheBattleButLosingTheWar/~4/40IwCYq9N5g" height="1" width="1"/&gt;</content><link rel="replies" type="application/atom+xml" href="http://amiabdullah.blogspot.com/feeds/6271049739626960078/comments/default" title="Post Comments" /><link rel="replies" type="text/html" href="http://www.blogger.com/comment.g?blogID=7519039954647983130&amp;postID=6271049739626960078&amp;isPopup=true" title="0 Comments" /><link rel="edit" type="application/atom+xml" href="http://www.blogger.com/feeds/7519039954647983130/posts/default/6271049739626960078?v=2" /><link rel="self" type="application/atom+xml" href="http://www.blogger.com/feeds/7519039954647983130/posts/default/6271049739626960078?v=2" /><link rel="alternate" type="text/html" href="http://feedproxy.google.com/~r/WinningTheBattleButLosingTheWar/~3/40IwCYq9N5g/earthquake-at-dhaka-bangladesh.html" title="Earthquake at Dhaka, Bangladesh" /><author><name>abdullah</name><uri>http://www.blogger.com/profile/02442393507500280440</uri><email>noreply@blogger.com</email><gd:image rel="http://schemas.google.com/g/2005#thumbnail" width="29" height="32" src="http://2.bp.blogspot.com/_pDOJeEQqmb8/SiJ52--OfgI/AAAAAAAAAF0/BXK2Ivv0thw/S220/4.JPG" /></author><thr:total>0</thr:total><feedburner:origLink>http://amiabdullah.blogspot.com/2008/07/earthquake-at-dhaka-bangladesh.html</feedburner:origLink></entry><entry gd:etag="W/&quot;DkYERnk5cSp7ImA9WxdUEEQ.&quot;"><id>tag:blogger.com,1999:blog-7519039954647983130.post-8617473044423043630</id><published>2008-07-26T23:32:00.002+06:00</published><updated>2008-07-26T23:41:47.729+06:00</updated><app:edited xmlns:app="http://www.w3.org/2007/app">2008-07-26T23:41:47.729+06:00</app:edited><title>A New Computer Virus</title><content type="html">I have to printout a document from my department yesterday and when I try to use my flash drive(pen drive) today I found a new virus. This is called "&lt;span style="color: rgb(255, 0, 0);"&gt;1yl2d.bat&lt;/span&gt;". I have searched about this virus and found interesting info. This virus was first seen at 15 July in Saudi Arabia. Now it spreads in Bangladesh and those who are not careful be caught with this nasty virus. So be careful about your removable device.&lt;br /&gt;&lt;br /&gt;For more read click the &lt;a href="http://www.prevx.com/filenames/X8229889512249"&gt;link&lt;/a&gt;&lt;div class="blogger-post-footer"&gt;&lt;img width='1' height='1' src='https://blogger.googleusercontent.com/tracker/7519039954647983130-8617473044423043630?l=amiabdullah.blogspot.com' alt='' /&gt;&lt;/div&gt;
&lt;p&gt;&lt;a href="http://feedads.g.doubleclick.net/~a/nqW8aE9WiPV6nN1y7tujQn9ba7U/0/da"&gt;&lt;img src="http://feedads.g.doubleclick.net/~a/nqW8aE9WiPV6nN1y7tujQn9ba7U/0/di" border="0" ismap="true"&gt;&lt;/img&gt;&lt;/a&gt;&lt;br/&gt;
&lt;a href="http://feedads.g.doubleclick.net/~a/nqW8aE9WiPV6nN1y7tujQn9ba7U/1/da"&gt;&lt;img src="http://feedads.g.doubleclick.net/~a/nqW8aE9WiPV6nN1y7tujQn9ba7U/1/di" border="0" ismap="true"&gt;&lt;/img&gt;&lt;/a&gt;&lt;/p&gt;&lt;img src="http://feeds.feedburner.com/~r/WinningTheBattleButLosingTheWar/~4/5bwFUCrPO34" height="1" width="1"/&gt;</content><link rel="replies" type="application/atom+xml" href="http://amiabdullah.blogspot.com/feeds/8617473044423043630/comments/default" title="Post Comments" /><link rel="replies" type="text/html" href="http://www.blogger.com/comment.g?blogID=7519039954647983130&amp;postID=8617473044423043630&amp;isPopup=true" title="0 Comments" /><link rel="edit" type="application/atom+xml" href="http://www.blogger.com/feeds/7519039954647983130/posts/default/8617473044423043630?v=2" /><link rel="self" type="application/atom+xml" href="http://www.blogger.com/feeds/7519039954647983130/posts/default/8617473044423043630?v=2" /><link rel="alternate" type="text/html" href="http://feedproxy.google.com/~r/WinningTheBattleButLosingTheWar/~3/5bwFUCrPO34/new-computer-virus.html" title="A New Computer Virus" /><author><name>abdullah</name><uri>http://www.blogger.com/profile/02442393507500280440</uri><email>noreply@blogger.com</email><gd:image rel="http://schemas.google.com/g/2005#thumbnail" width="29" height="32" src="http://2.bp.blogspot.com/_pDOJeEQqmb8/SiJ52--OfgI/AAAAAAAAAF0/BXK2Ivv0thw/S220/4.JPG" /></author><thr:total>0</thr:total><feedburner:origLink>http://amiabdullah.blogspot.com/2008/07/new-computer-virus.html</feedburner:origLink></entry><entry gd:etag="W/&quot;AkECSHk6fCp7ImA9WxdUEE0.&quot;"><id>tag:blogger.com,1999:blog-7519039954647983130.post-6018601573425218642</id><published>2008-07-25T23:47:00.002+06:00</published><updated>2008-07-25T23:57:49.714+06:00</updated><app:edited xmlns:app="http://www.w3.org/2007/app">2008-07-25T23:57:49.714+06:00</app:edited><title>Just Install Ubuntu</title><content type="html">&lt;div style="text-align: center;"&gt;&lt;br /&gt;&lt;a onblur="try {parent.deselectBloggerImageGracefully();} catch(e) {}" href="http://bp3.blogger.com/_pDOJeEQqmb8/SIoT0liNzJI/AAAAAAAAADk/OBLICq54MuM/s1600-h/Screenshot.png"&gt;&lt;img style="cursor: pointer;" src="http://bp3.blogger.com/_pDOJeEQqmb8/SIoT0liNzJI/AAAAAAAAADk/OBLICq54MuM/s320/Screenshot.png" alt="" id="BLOGGER_PHOTO_ID_5227012111666629778" border="0" /&gt;&lt;/a&gt;&lt;br /&gt;&lt;br /&gt;&lt;/div&gt;I have ordered Ubuntu 8.04 last month and yesterday I got it. I have installed it in my desktop. I am satisfied with the facilities and graphics provided by Ubuntu. Fast and efficient. Good looking face. And many more...&lt;br /&gt;&lt;br /&gt;Thanks Ubuntu. Ooh, Ubuntu is not shipped with audio and video support for windows file format. So I have downloaded &lt;a href="http://www.blogger.com/www.videolan.org/vlc/"&gt;VLC&lt;/a&gt; player to listen my favorite music as well as seeing videos.&lt;div class="blogger-post-footer"&gt;&lt;img width='1' height='1' src='https://blogger.googleusercontent.com/tracker/7519039954647983130-6018601573425218642?l=amiabdullah.blogspot.com' alt='' /&gt;&lt;/div&gt;
&lt;p&gt;&lt;a href="http://feedads.g.doubleclick.net/~a/YRZelTm94D_CtjXjE5OmDrjsin0/0/da"&gt;&lt;img src="http://feedads.g.doubleclick.net/~a/YRZelTm94D_CtjXjE5OmDrjsin0/0/di" border="0" ismap="true"&gt;&lt;/img&gt;&lt;/a&gt;&lt;br/&gt;
&lt;a href="http://feedads.g.doubleclick.net/~a/YRZelTm94D_CtjXjE5OmDrjsin0/1/da"&gt;&lt;img src="http://feedads.g.doubleclick.net/~a/YRZelTm94D_CtjXjE5OmDrjsin0/1/di" border="0" ismap="true"&gt;&lt;/img&gt;&lt;/a&gt;&lt;/p&gt;&lt;img src="http://feeds.feedburner.com/~r/WinningTheBattleButLosingTheWar/~4/xjxLeG-SOqk" height="1" width="1"/&gt;</content><link rel="replies" type="application/atom+xml" href="http://amiabdullah.blogspot.com/feeds/6018601573425218642/comments/default" title="Post Comments" /><link rel="replies" type="text/html" href="http://www.blogger.com/comment.g?blogID=7519039954647983130&amp;postID=6018601573425218642&amp;isPopup=true" title="0 Comments" /><link rel="edit" type="application/atom+xml" href="http://www.blogger.com/feeds/7519039954647983130/posts/default/6018601573425218642?v=2" /><link rel="self" type="application/atom+xml" href="http://www.blogger.com/feeds/7519039954647983130/posts/default/6018601573425218642?v=2" /><link rel="alternate" type="text/html" href="http://feedproxy.google.com/~r/WinningTheBattleButLosingTheWar/~3/xjxLeG-SOqk/just-install-ubuntu.html" title="Just Install Ubuntu" /><author><name>abdullah</name><uri>http://www.blogger.com/profile/02442393507500280440</uri><email>noreply@blogger.com</email><gd:image rel="http://schemas.google.com/g/2005#thumbnail" width="29" height="32" src="http://2.bp.blogspot.com/_pDOJeEQqmb8/SiJ52--OfgI/AAAAAAAAAF0/BXK2Ivv0thw/S220/4.JPG" /></author><media:thumbnail xmlns:media="http://search.yahoo.com/mrss/" url="http://bp3.blogger.com/_pDOJeEQqmb8/SIoT0liNzJI/AAAAAAAAADk/OBLICq54MuM/s72-c/Screenshot.png" height="72" width="72" /><thr:total>0</thr:total><feedburner:origLink>http://amiabdullah.blogspot.com/2008/07/just-install-ubuntu.html</feedburner:origLink></entry><entry gd:etag="W/&quot;DU8CQn09fip7ImA9WxdVGU8.&quot;"><id>tag:blogger.com,1999:blog-7519039954647983130.post-6124880390146541539</id><published>2008-07-25T00:55:00.003+06:00</published><updated>2008-07-25T01:31:03.366+06:00</updated><app:edited xmlns:app="http://www.w3.org/2007/app">2008-07-25T01:31:03.366+06:00</app:edited><title>Why Bangladesh is not at the Paypal country list</title><content type="html">Some days ago I want to open a &lt;a href="http://paypal.com"&gt;&lt;span style="text-decoration: underline;"&gt;PayPal&lt;/span&gt;&lt;/a&gt; account. At the beginning they give a chart of countries from where you select your country to open an account. It is the most devastating that Bangladesh is not at the country list. By the way, after seeing this I made a contact with PayPal about their police and why not they provide service in Bangladesh. They give a message saying that it is not possible now to provide service in Bangladesh. But my question is why not possible in Bangladesh?&lt;br /&gt;&lt;br /&gt;The problem is not at PayPal, the problem is in the polices of the Bangladesh government. They think that, if they allow PayPal or other online money transfer companies to provide their services than money will be transferred from Bangladesh to other countries. How nonsense thinking it is. But they don't think about the people who want to send money at online but they can't take the advantages of online payment. Please change the polices and take proper steps to solve the problem.&lt;br /&gt;&lt;br /&gt;Many banks in Bangladesh offer online banking. But by online banking what they want to mean? Banking inside a country. Look the present world in now very small in that sense that we can contact with anyone round the clock. But why not at online Banking.&lt;div class="blogger-post-footer"&gt;&lt;img width='1' height='1' src='https://blogger.googleusercontent.com/tracker/7519039954647983130-6124880390146541539?l=amiabdullah.blogspot.com' alt='' /&gt;&lt;/div&gt;
&lt;p&gt;&lt;a href="http://feedads.g.doubleclick.net/~a/kPwRvfl8sHn1DbP2TB5XV3I6LvQ/0/da"&gt;&lt;img src="http://feedads.g.doubleclick.net/~a/kPwRvfl8sHn1DbP2TB5XV3I6LvQ/0/di" border="0" ismap="true"&gt;&lt;/img&gt;&lt;/a&gt;&lt;br/&gt;
&lt;a href="http://feedads.g.doubleclick.net/~a/kPwRvfl8sHn1DbP2TB5XV3I6LvQ/1/da"&gt;&lt;img src="http://feedads.g.doubleclick.net/~a/kPwRvfl8sHn1DbP2TB5XV3I6LvQ/1/di" border="0" ismap="true"&gt;&lt;/img&gt;&lt;/a&gt;&lt;/p&gt;&lt;img src="http://feeds.feedburner.com/~r/WinningTheBattleButLosingTheWar/~4/cxSxqSs3sYU" height="1" width="1"/&gt;</content><link rel="replies" type="application/atom+xml" href="http://amiabdullah.blogspot.com/feeds/6124880390146541539/comments/default" title="Post Comments" /><link rel="replies" type="text/html" href="http://www.blogger.com/comment.g?blogID=7519039954647983130&amp;postID=6124880390146541539&amp;isPopup=true" title="0 Comments" /><link rel="edit" type="application/atom+xml" href="http://www.blogger.com/feeds/7519039954647983130/posts/default/6124880390146541539?v=2" /><link rel="self" type="application/atom+xml" href="http://www.blogger.com/feeds/7519039954647983130/posts/default/6124880390146541539?v=2" /><link rel="alternate" type="text/html" href="http://feedproxy.google.com/~r/WinningTheBattleButLosingTheWar/~3/cxSxqSs3sYU/why-bangladesh-is-not-at-paypal-country.html" title="Why Bangladesh is not at the Paypal country list" /><author><name>abdullah</name><uri>http://www.blogger.com/profile/02442393507500280440</uri><email>noreply@blogger.com</email><gd:image rel="http://schemas.google.com/g/2005#thumbnail" width="29" height="32" src="http://2.bp.blogspot.com/_pDOJeEQqmb8/SiJ52--OfgI/AAAAAAAAAF0/BXK2Ivv0thw/S220/4.JPG" /></author><thr:total>0</thr:total><feedburner:origLink>http://amiabdullah.blogspot.com/2008/07/why-bangladesh-is-not-at-paypal-country.html</feedburner:origLink></entry><entry gd:etag="W/&quot;DU4GQnYzeip7ImA9WxdVGEs.&quot;"><id>tag:blogger.com,1999:blog-7519039954647983130.post-4357700650623731460</id><published>2008-07-21T23:25:00.003+06:00</published><updated>2008-07-24T08:52:03.882+06:00</updated><app:edited xmlns:app="http://www.w3.org/2007/app">2008-07-24T08:52:03.882+06:00</app:edited><title>I want to make a movie</title><content type="html">Some days ago I had been talking with one of my friends to make a big budget movie in my country(which is not possible). The basic theme of the movie is  - New World. That is something like Big Bang which will be happened and all the human along with all other existence of the earth will be destroyed. But the hero of our movie manage to life(something miracle!).&lt;br /&gt;&lt;br /&gt;Now the mission starts. The mission of dreaming a new world. Where all the countries are equal at all sides and there will be only peace, no blood or weapons in the earth. How our hero will do this?&lt;br /&gt;&lt;br /&gt;Basically our hero is a scientist and he has studied in Humanoid Robot system. His mission is to collect some of the Human brain and digitally manage them to prepare the next generation robot - &lt;span style="font-weight: bold;"&gt;BisRots&lt;/span&gt;. The whole world is now his research place. And at last he has been successful to make this kind of robot. This robots will help him to make the new world.&lt;br /&gt;&lt;br /&gt;The world where no cry for food, The world where no weapons are thrown, The world where no economic crisis. So in one word - A STANDARD WORLD.&lt;br /&gt;&lt;br /&gt;It's my dream....&lt;div class="blogger-post-footer"&gt;&lt;img width='1' height='1' src='https://blogger.googleusercontent.com/tracker/7519039954647983130-4357700650623731460?l=amiabdullah.blogspot.com' alt='' /&gt;&lt;/div&gt;
&lt;p&gt;&lt;a href="http://feedads.g.doubleclick.net/~a/_ghUEYVqJtfWCMTUlNJQM9TOb4k/0/da"&gt;&lt;img src="http://feedads.g.doubleclick.net/~a/_ghUEYVqJtfWCMTUlNJQM9TOb4k/0/di" border="0" ismap="true"&gt;&lt;/img&gt;&lt;/a&gt;&lt;br/&gt;
&lt;a href="http://feedads.g.doubleclick.net/~a/_ghUEYVqJtfWCMTUlNJQM9TOb4k/1/da"&gt;&lt;img src="http://feedads.g.doubleclick.net/~a/_ghUEYVqJtfWCMTUlNJQM9TOb4k/1/di" border="0" ismap="true"&gt;&lt;/img&gt;&lt;/a&gt;&lt;/p&gt;&lt;img src="http://feeds.feedburner.com/~r/WinningTheBattleButLosingTheWar/~4/QNuKdXKO_Rw" height="1" width="1"/&gt;</content><link rel="replies" type="application/atom+xml" href="http://amiabdullah.blogspot.com/feeds/4357700650623731460/comments/default" title="Post Comments" /><link rel="replies" type="text/html" href="http://www.blogger.com/comment.g?blogID=7519039954647983130&amp;postID=4357700650623731460&amp;isPopup=true" title="1 Comments" /><link rel="edit" type="application/atom+xml" href="http://www.blogger.com/feeds/7519039954647983130/posts/default/4357700650623731460?v=2" /><link rel="self" type="application/atom+xml" href="http://www.blogger.com/feeds/7519039954647983130/posts/default/4357700650623731460?v=2" /><link rel="alternate" type="text/html" href="http://feedproxy.google.com/~r/WinningTheBattleButLosingTheWar/~3/QNuKdXKO_Rw/i-want-to-make-movie.html" title="I want to make a movie" /><author><name>abdullah</name><uri>http://www.blogger.com/profile/02442393507500280440</uri><email>noreply@blogger.com</email><gd:image rel="http://schemas.google.com/g/2005#thumbnail" width="29" height="32" src="http://2.bp.blogspot.com/_pDOJeEQqmb8/SiJ52--OfgI/AAAAAAAAAF0/BXK2Ivv0thw/S220/4.JPG" /></author><thr:total>1</thr:total><feedburner:origLink>http://amiabdullah.blogspot.com/2008/07/i-want-to-make-movie.html</feedburner:origLink></entry><entry gd:etag="W/&quot;AkYNRXo4fSp7ImA9WxdVGEs.&quot;"><id>tag:blogger.com,1999:blog-7519039954647983130.post-254067857602124711</id><published>2008-07-21T23:12:00.003+06:00</published><updated>2008-07-24T08:56:34.435+06:00</updated><app:edited xmlns:app="http://www.w3.org/2007/app">2008-07-24T08:56:34.435+06:00</app:edited><title>Journey 59</title><content type="html">Now I am telling you a story &lt;span style="font-weight: bold;"&gt;JOURNEY 59&lt;/span&gt;. Can you guess what will be contained in this story? Traditionally this journey does not cover much of the lands or rivers. This journey covers only some miles of distance. But the question obviously comes so why this journey takes 59 days. This journey are nothing but my second year final exam in my university. Almost two months I have been packed for this naughty exam. I have to appear twelve(12) papers for the year final exam. And it is one of my most boring period of life to stay so long time with a single topic. Now I am free from my theory exams. That is I have completed my all theory exams by 20th July.&lt;br /&gt;&lt;br /&gt;But there are also three exam remaining. One course viva and two projects. So pressures are not fully eliminated. But something can be say that I am free from the Journey 59.&lt;div class="blogger-post-footer"&gt;&lt;img width='1' height='1' src='https://blogger.googleusercontent.com/tracker/7519039954647983130-254067857602124711?l=amiabdullah.blogspot.com' alt='' /&gt;&lt;/div&gt;
&lt;p&gt;&lt;a href="http://feedads.g.doubleclick.net/~a/cQkX9pqrlUDV7mWoUMsfMAvgAXA/0/da"&gt;&lt;img src="http://feedads.g.doubleclick.net/~a/cQkX9pqrlUDV7mWoUMsfMAvgAXA/0/di" border="0" ismap="true"&gt;&lt;/img&gt;&lt;/a&gt;&lt;br/&gt;
&lt;a href="http://feedads.g.doubleclick.net/~a/cQkX9pqrlUDV7mWoUMsfMAvgAXA/1/da"&gt;&lt;img src="http://feedads.g.doubleclick.net/~a/cQkX9pqrlUDV7mWoUMsfMAvgAXA/1/di" border="0" ismap="true"&gt;&lt;/img&gt;&lt;/a&gt;&lt;/p&gt;&lt;img src="http://feeds.feedburner.com/~r/WinningTheBattleButLosingTheWar/~4/VZEkLmhANe8" height="1" width="1"/&gt;</content><link rel="replies" type="application/atom+xml" href="http://amiabdullah.blogspot.com/feeds/254067857602124711/comments/default" title="Post Comments" /><link rel="replies" type="text/html" href="http://www.blogger.com/comment.g?blogID=7519039954647983130&amp;postID=254067857602124711&amp;isPopup=true" title="0 Comments" /><link rel="edit" type="application/atom+xml" href="http://www.blogger.com/feeds/7519039954647983130/posts/default/254067857602124711?v=2" /><link rel="self" type="application/atom+xml" href="http://www.blogger.com/feeds/7519039954647983130/posts/default/254067857602124711?v=2" /><link rel="alternate" type="text/html" href="http://feedproxy.google.com/~r/WinningTheBattleButLosingTheWar/~3/VZEkLmhANe8/journey-59.html" title="Journey 59" /><author><name>abdullah</name><uri>http://www.blogger.com/profile/02442393507500280440</uri><email>noreply@blogger.com</email><gd:image rel="http://schemas.google.com/g/2005#thumbnail" width="29" height="32" src="http://2.bp.blogspot.com/_pDOJeEQqmb8/SiJ52--OfgI/AAAAAAAAAF0/BXK2Ivv0thw/S220/4.JPG" /></author><thr:total>0</thr:total><feedburner:origLink>http://amiabdullah.blogspot.com/2008/07/journey-59.html</feedburner:origLink></entry><entry gd:etag="W/&quot;CU4MQn4ycSp7ImA9WxdUE0k.&quot;"><id>tag:blogger.com,1999:blog-7519039954647983130.post-6390187149678953248</id><published>2008-07-20T23:23:00.010+06:00</published><updated>2008-07-29T21:06:23.099+06:00</updated><app:edited xmlns:app="http://www.w3.org/2007/app">2008-07-29T21:06:23.099+06:00</app:edited><title>Software Review - Adobe Digital Editions</title><content type="html">&lt;a onblur="try {parent.deselectBloggerImageGracefully();} catch(e) {}" href="http://bp2.blogger.com/_pDOJeEQqmb8/SIN20f1wwXI/AAAAAAAAADc/uwuEt2IOwi0/s1600-h/Adobe+Digital+Editions3.jpg"&gt;&lt;img style="margin: 0pt 10px 10px 0pt; float: left; cursor: pointer;" src="http://bp2.blogger.com/_pDOJeEQqmb8/SIN20f1wwXI/AAAAAAAAADc/uwuEt2IOwi0/s320/Adobe+Digital+Editions3.jpg" alt="" id="BLOGGER_PHOTO_ID_5225150636952174962" border="0" /&gt;&lt;/a&gt;&lt;br /&gt;&lt;a onblur="try {parent.deselectBloggerImageGracefully();} catch(e) {}" href="http://bp2.blogger.com/_pDOJeEQqmb8/SIN2wPUFs4I/AAAAAAAAADU/kFX5xEul66w/s1600-h/Adobe+Digital+Editions2.jpg"&gt;&lt;img style="margin: 0pt 10px 10px 0pt; float: left; cursor: pointer;" src="http://bp2.blogger.com/_pDOJeEQqmb8/SIN2wPUFs4I/AAAAAAAAADU/kFX5xEul66w/s320/Adobe+Digital+Editions2.jpg" alt="" id="BLOGGER_PHOTO_ID_5225150563796497282" border="0" /&gt;&lt;/a&gt;&lt;br /&gt;&lt;a onblur="try {parent.deselectBloggerImageGracefully();} catch(e) {}" href="http://bp1.blogger.com/_pDOJeEQqmb8/SIN2o9ahTsI/AAAAAAAAADM/th7_uYKH2cA/s1600-h/Adobe+Digital+Editions1.jpg"&gt;&lt;img style="margin: 0pt 10px 10px 0pt; float: left; cursor: pointer;" src="http://bp1.blogger.com/_pDOJeEQqmb8/SIN2o9ahTsI/AAAAAAAAADM/th7_uYKH2cA/s320/Adobe+Digital+Editions1.jpg" alt="" id="BLOGGER_PHOTO_ID_5225150438732549826" border="0" /&gt;&lt;/a&gt;&lt;br /&gt;&lt;br /&gt;Adobe® Digital Editions 1.5 software offers an engaging way to view and manage eBooks and other digital publications. Use it to download and purchase digital content, which can be read both online and offline. Transfer copy-protected publications from your PC to other computers or devices. Organize your content into a custom library and annotate pages. Digital Editions also supports industry-standard eBook formats, including PDF/A and EPUB.&lt;span style="font-weight: bold;"&gt;&lt;br /&gt;&lt;br /&gt;&lt;/span&gt;&lt;span&gt;&lt;span&gt;Top features&lt;/span&gt;&lt;br /&gt;&lt;br /&gt;&lt;span&gt;Interface designed for digital reading&lt;/span&gt;&lt;br /&gt;&lt;br /&gt;Take advantage of a clean, well-organized interface, expressly designed for reading digital publications. Use the Reading View to view bookmarks, annotations, and a table of contents. Display your PDF files in a double-page, single page, or fit-to-width view — or specify your own custom fit. You can also increase and decrease text size with EPUB content.&lt;br /&gt;&lt;br /&gt;&lt;span&gt;Fast, free download and installation&lt;/span&gt;&lt;br /&gt;&lt;br /&gt;Adobe® Digital Editions software is a free, lightweight client that takes less than a minute to download and install over a broadband connection. As a rich Internet application (RIA), it helps ensure that you always have the latest version, including any new features and security enhancements. Publishers can even integrate the Adobe Flash® based Digital Editions install badge with their web pages to provide a one-click install experience for their customers.&lt;br /&gt;&lt;br /&gt;&lt;span&gt;Content portability&lt;/span&gt;&lt;br /&gt;&lt;br /&gt;Manage digital publications across multiple computers and devices using your Adobe ID and a simple authorization process. Digital Editions also provides support for content portability on next-generation mobile devices, so you can take your eBooks with you wherever you go.&lt;br /&gt;&lt;br /&gt;&lt;span&gt;Powerful markup features&lt;/span&gt;&lt;br /&gt;&lt;br /&gt;Add bookmarks to PDF or EPUB documents so that you can quickly navigate around a document. You can also highlight text and add comments for future reference within your digital publications.&lt;br /&gt;&lt;br /&gt;&lt;span&gt;Support for PDF and EPUB, a reflow-centric XHTML-based format&lt;/span&gt;&lt;br /&gt;&lt;br /&gt;Digital Editions offers native support for PDF/A and EPUB formats. PDF/A is the ISO-approved standard for the long-term preservation of electronic documents. EPUB is an XHTML-based file format designed to reflow text according to screen and font size, which makes it optimal for reading content on mobile devices.&lt;br /&gt;&lt;br /&gt;&lt;span&gt;File organization&lt;/span&gt;&lt;br /&gt;&lt;br /&gt;Organize your digital publications and manage devices in the convenient Library View. Sort by title, author, and publisher, and view the covers of your favorite eBooks. You can also create custom bookshelves to further organize and manage your content.&lt;br /&gt;&lt;br /&gt;&lt;span&gt;Multiple platform support&lt;/span&gt;&lt;br /&gt;&lt;br /&gt;Digital Editions runs on many platforms for reading digital publications on laptop and desktop computers.&lt;br /&gt;&lt;br /&gt;&lt;span&gt;Multimedia support&lt;/span&gt;&lt;br /&gt;&lt;br /&gt;Digital Editions software supports embedded SWF files, making it easy to include rich multimedia experiences in digital publications.&lt;br /&gt;&lt;br /&gt;&lt;span&gt;Easy eBook creation&lt;/span&gt;&lt;br /&gt;&lt;br /&gt;With Adobe InDesign® CS3 software, you can create engaging content and output it to both the PDF/A and EPUB formats supported by Digital Editions.&lt;br /&gt;&lt;br /&gt;&lt;span&gt;Built-in copy protection&lt;/span&gt;&lt;br /&gt;&lt;br /&gt;Digital Editions works in conjunction with Adobe Digital Experience Protection Technology (ADEPT), a hosted service that provides publishers with copy protection in both retail and library environments.&lt;br /&gt;&lt;br /&gt;&lt;span&gt;Multilingual support&lt;/span&gt;&lt;br /&gt;&lt;br /&gt;Digital Editions is currently offered in English, French, and German versions and can display content in a wide range of languages.&lt;br /&gt;&lt;br /&gt;To download Adobe Digital Editions visit the following link&lt;/span&gt;&lt;span style="font-weight: bold;"&gt;&lt;br /&gt;&lt;a href="http://www.adobe.com/products/digitaleditions/"&gt;http://www.adobe.com/products/digitaleditions/&lt;/a&gt;&lt;br /&gt;&lt;br /&gt;Post Source:&lt;br /&gt;&lt;/span&gt;&lt;span style="font-weight: bold;"&gt;&lt;a href="http://www.adobe.com/products/digitaleditions/"&gt;http://www.adobe.com/products/digitaleditions/&lt;/a&gt;&lt;br /&gt;&lt;br /&gt;&lt;/span&gt;&lt;span style="font-weight: bold;"&gt;&lt;br /&gt;&lt;br /&gt;&lt;/span&gt;&lt;div class="blogger-post-footer"&gt;&lt;img width='1' height='1' src='https://blogger.googleusercontent.com/tracker/7519039954647983130-6390187149678953248?l=amiabdullah.blogspot.com' alt='' /&gt;&lt;/div&gt;
&lt;p&gt;&lt;a href="http://feedads.g.doubleclick.net/~a/Ysrm_hVt2wwolqmyPUvIVaJu7ps/0/da"&gt;&lt;img src="http://feedads.g.doubleclick.net/~a/Ysrm_hVt2wwolqmyPUvIVaJu7ps/0/di" border="0" ismap="true"&gt;&lt;/img&gt;&lt;/a&gt;&lt;br/&gt;
&lt;a href="http://feedads.g.doubleclick.net/~a/Ysrm_hVt2wwolqmyPUvIVaJu7ps/1/da"&gt;&lt;img src="http://feedads.g.doubleclick.net/~a/Ysrm_hVt2wwolqmyPUvIVaJu7ps/1/di" border="0" ismap="true"&gt;&lt;/img&gt;&lt;/a&gt;&lt;/p&gt;&lt;img src="http://feeds.feedburner.com/~r/WinningTheBattleButLosingTheWar/~4/aAP32N-hoas" height="1" width="1"/&gt;</content><link rel="replies" type="application/atom+xml" href="http://amiabdullah.blogspot.com/feeds/6390187149678953248/comments/default" title="Post Comments" /><link rel="replies" type="text/html" href="http://www.blogger.com/comment.g?blogID=7519039954647983130&amp;postID=6390187149678953248&amp;isPopup=true" title="0 Comments" /><link rel="edit" type="application/atom+xml" href="http://www.blogger.com/feeds/7519039954647983130/posts/default/6390187149678953248?v=2" /><link rel="self" type="application/atom+xml" href="http://www.blogger.com/feeds/7519039954647983130/posts/default/6390187149678953248?v=2" /><link rel="alternate" type="text/html" href="http://feedproxy.google.com/~r/WinningTheBattleButLosingTheWar/~3/aAP32N-hoas/software-review-adobe-digital-editions.html" title="Software Review - Adobe Digital Editions" /><author><name>abdullah</name><uri>http://www.blogger.com/profile/02442393507500280440</uri><email>noreply@blogger.com</email><gd:image rel="http://schemas.google.com/g/2005#thumbnail" width="29" height="32" src="http://2.bp.blogspot.com/_pDOJeEQqmb8/SiJ52--OfgI/AAAAAAAAAF0/BXK2Ivv0thw/S220/4.JPG" /></author><media:thumbnail xmlns:media="http://search.yahoo.com/mrss/" url="http://bp2.blogger.com/_pDOJeEQqmb8/SIN20f1wwXI/AAAAAAAAADc/uwuEt2IOwi0/s72-c/Adobe+Digital+Editions3.jpg" height="72" width="72" /><thr:total>0</thr:total><feedburner:origLink>http://amiabdullah.blogspot.com/2008/07/software-review-adobe-digital-editions.html</feedburner:origLink></entry><entry gd:etag="W/&quot;DUEAQH44fCp7ImA9WxdVGU8.&quot;"><id>tag:blogger.com,1999:blog-7519039954647983130.post-5142336054353562514</id><published>2008-07-19T23:49:00.005+06:00</published><updated>2008-07-25T01:27:21.034+06:00</updated><app:edited xmlns:app="http://www.w3.org/2007/app">2008-07-25T01:27:21.034+06:00</app:edited><title>Internet providers in Bangladesh</title><content type="html">Bangladesh is a growing economic country. It is now well known that for the economic development of a country technology plays a vital role. All of us know that internet is the ware house of knowledge. Now internet is also a great source of income. Data entry, call center etc. are some sectors which can play a big contribution at the country's economy. But for all of this we need stable internet connection and good internet providers in our country. Most of the providers give a very narrow bandwidth to the consumer and take huge money at every month. For the improve economy we have to do make proper plans and should try our best to achieve it.&lt;br /&gt;&lt;br /&gt;The government should pay proper attention on this matter immediately if Bangladesh wants to keep pace with other neighboring countries like India. At India the ISP(Internet Service Provider) gives much more better service than Bnagladesh.&lt;br /&gt;&lt;br /&gt;One of our professor says at class that - in Bangladesh we have to pay ten times than India as compared with the facilities provided by the providers.&lt;br /&gt;&lt;br /&gt;We the end users want good response from government for establishing an action plan for internet providing.&lt;br /&gt;&lt;br /&gt;Look the list of the isp in Bangladesh at the &lt;a href="http://www.sdnbd.org/sdi/issues/IT-computer/isp-bd.htm"&gt;link&lt;/a&gt;.&lt;div class="blogger-post-footer"&gt;&lt;img width='1' height='1' src='https://blogger.googleusercontent.com/tracker/7519039954647983130-5142336054353562514?l=amiabdullah.blogspot.com' alt='' /&gt;&lt;/div&gt;
&lt;p&gt;&lt;a href="http://feedads.g.doubleclick.net/~a/yK-NsGtrRybE2nx623EFxGFoH8Y/0/da"&gt;&lt;img src="http://feedads.g.doubleclick.net/~a/yK-NsGtrRybE2nx623EFxGFoH8Y/0/di" border="0" ismap="true"&gt;&lt;/img&gt;&lt;/a&gt;&lt;br/&gt;
&lt;a href="http://feedads.g.doubleclick.net/~a/yK-NsGtrRybE2nx623EFxGFoH8Y/1/da"&gt;&lt;img src="http://feedads.g.doubleclick.net/~a/yK-NsGtrRybE2nx623EFxGFoH8Y/1/di" border="0" ismap="true"&gt;&lt;/img&gt;&lt;/a&gt;&lt;/p&gt;&lt;img src="http://feeds.feedburner.com/~r/WinningTheBattleButLosingTheWar/~4/BGnjP6_jD2A" height="1" width="1"/&gt;</content><link rel="replies" type="application/atom+xml" href="http://amiabdullah.blogspot.com/feeds/5142336054353562514/comments/default" title="Post Comments" /><link rel="replies" type="text/html" href="http://www.blogger.com/comment.g?blogID=7519039954647983130&amp;postID=5142336054353562514&amp;isPopup=true" title="0 Comments" /><link rel="edit" type="application/atom+xml" href="http://www.blogger.com/feeds/7519039954647983130/posts/default/5142336054353562514?v=2" /><link rel="self" type="application/atom+xml" href="http://www.blogger.com/feeds/7519039954647983130/posts/default/5142336054353562514?v=2" /><link rel="alternate" type="text/html" href="http://feedproxy.google.com/~r/WinningTheBattleButLosingTheWar/~3/BGnjP6_jD2A/internet-providers-in-bangladesh.html" title="Internet providers in Bangladesh" /><author><name>abdullah</name><uri>http://www.blogger.com/profile/02442393507500280440</uri><email>noreply@blogger.com</email><gd:image rel="http://schemas.google.com/g/2005#thumbnail" width="29" height="32" src="http://2.bp.blogspot.com/_pDOJeEQqmb8/SiJ52--OfgI/AAAAAAAAAF0/BXK2Ivv0thw/S220/4.JPG" /></author><thr:total>0</thr:total><feedburner:origLink>http://amiabdullah.blogspot.com/2008/07/internet-providers-in-bangladesh.html</feedburner:origLink></entry><entry gd:etag="W/&quot;A0IGSX47fyp7ImA9WxdVFEU.&quot;"><id>tag:blogger.com,1999:blog-7519039954647983130.post-7049617840688403704</id><published>2008-06-08T23:06:00.004+06:00</published><updated>2008-07-19T23:45:28.007+06:00</updated><app:edited xmlns:app="http://www.w3.org/2007/app">2008-07-19T23:45:28.007+06:00</app:edited><title>Very sad news</title><content type="html">&lt;span style="font-size:130%;"&gt;অনেক দিন পর আবার লিখলাম।মনটা অনেক খারাপ।আমাদের এক বন্ধু আজ হঠাৎ আমাদের ছেড়ে চিরকালের জন্য চলে গেল।লিখন বেশ কিছু দিন ধরেই অসুস্থ ছিল। তবে ও যে ক্যান্সারে ভুগছিল,তা আমরা কেউ জানতাম না।৮ ই জুলাই তাই আমাদের জন্য বেদনার দিন হয়ে রইল।&lt;br /&gt;&lt;br /&gt;ওর বিদেহী আন্তা শান্তি পাক।আল্লাহ ওকে বেহেশেত নসিব করুক।আমীন।&lt;/span&gt;&lt;br /&gt;&lt;br /&gt;It is a heart breaking news that we have lost one of our beloved friends Likhon.He has no more with us.He has been suffering stomach cancer.&lt;br /&gt;&lt;br /&gt;May god gives his soul peace.&lt;div class="blogger-post-footer"&gt;&lt;img width='1' height='1' src='https://blogger.googleusercontent.com/tracker/7519039954647983130-7049617840688403704?l=amiabdullah.blogspot.com' alt='' /&gt;&lt;/div&gt;
&lt;p&gt;&lt;a href="http://feedads.g.doubleclick.net/~a/CoVyel9-X30S2y6w1ah-QuJV5SY/0/da"&gt;&lt;img src="http://feedads.g.doubleclick.net/~a/CoVyel9-X30S2y6w1ah-QuJV5SY/0/di" border="0" ismap="true"&gt;&lt;/img&gt;&lt;/a&gt;&lt;br/&gt;
&lt;a href="http://feedads.g.doubleclick.net/~a/CoVyel9-X30S2y6w1ah-QuJV5SY/1/da"&gt;&lt;img src="http://feedads.g.doubleclick.net/~a/CoVyel9-X30S2y6w1ah-QuJV5SY/1/di" border="0" ismap="true"&gt;&lt;/img&gt;&lt;/a&gt;&lt;/p&gt;&lt;img src="http://feeds.feedburner.com/~r/WinningTheBattleButLosingTheWar/~4/5i4nyDN5OSA" height="1" width="1"/&gt;</content><link rel="replies" type="application/atom+xml" href="http://amiabdullah.blogspot.com/feeds/7049617840688403704/comments/default" title="Post Comments" /><link rel="replies" type="text/html" href="http://www.blogger.com/comment.g?blogID=7519039954647983130&amp;postID=7049617840688403704&amp;isPopup=true" title="0 Comments" /><link rel="edit" type="application/atom+xml" href="http://www.blogger.com/feeds/7519039954647983130/posts/default/7049617840688403704?v=2" /><link rel="self" type="application/atom+xml" href="http://www.blogger.com/feeds/7519039954647983130/posts/default/7049617840688403704?v=2" /><link rel="alternate" type="text/html" href="http://feedproxy.google.com/~r/WinningTheBattleButLosingTheWar/~3/5i4nyDN5OSA/very-sad-new.html" title="Very sad news" /><author><name>abdullah</name><uri>http://www.blogger.com/profile/02442393507500280440</uri><email>noreply@blogger.com</email><gd:image rel="http://schemas.google.com/g/2005#thumbnail" width="29" height="32" src="http://2.bp.blogspot.com/_pDOJeEQqmb8/SiJ52--OfgI/AAAAAAAAAF0/BXK2Ivv0thw/S220/4.JPG" /></author><thr:total>0</thr:total><feedburner:origLink>http://amiabdullah.blogspot.com/2008/06/very-sad-new.html</feedburner:origLink></entry></feed>

