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

<channel>
	<title>Ehsan Nourbakhsh’s Blog &#187; General</title>
	<atom:link href="http://www.nourbakhsh.ir/blog/category/general/feed/" rel="self" type="application/rss+xml" />
	<link>http://www.nourbakhsh.ir/blog</link>
	<description></description>
	<lastBuildDate>Thu, 12 Jan 2012 22:12:11 +0000</lastBuildDate>
	<language>en</language>
	<sy:updatePeriod>hourly</sy:updatePeriod>
	<sy:updateFrequency>1</sy:updateFrequency>
	<generator>http://wordpress.org/?v=3.1.3</generator>
		<item>
		<title>Symbol Table Manipulation in TinyOS</title>
		<link>http://www.nourbakhsh.ir/blog/2012/01/symbol-table-manipulation-in-tinyos/</link>
		<comments>http://www.nourbakhsh.ir/blog/2012/01/symbol-table-manipulation-in-tinyos/#comments</comments>
		<pubDate>Tue, 10 Jan 2012 01:13:25 +0000</pubDate>
		<dc:creator>Ehsan</dc:creator>
				<category><![CDATA[General]]></category>

		<guid isPermaLink="false">http://www.nourbakhsh.ir/blog/?p=141</guid>
		<description><![CDATA[I realized one of the hacks we had used in our testbed is of use to other researchers as well. When running an experiment using MEMSIC Motes, it is possible that you need a large number of images which only differ in some variable values. For example, only the variable indicating start time for each [...]]]></description>
			<content:encoded><![CDATA[<p>I realized one of the hacks we had used in <a href="http://assert.utdallas.edu/">our testbed</a> is of use to other researchers as well. When running an experiment using MEMSIC Motes, it is possible that you need a large number of images which only differ in some variable values. For example, only the variable indicating start time for each of them is different.</p>
<p>Instead of changing the variable and recompiling, you can do the following. Declare your desired variable(s) as</p>
<pre class="code">extern const uint8_t myVar;</pre>
<p>After compiling the main image, take a look at your symbol table by typing</p>
<pre class="code"> tos-set-symbols --read /path/to/main.exe</pre>
<p>This will show a table like following:</p>
<pre class="code">AMQueueImplP__0__current             :  01  [.]  (1)
AMQueueImplP__1__current             :  01  [.]  (1)
ActiveMessageAddressC__addr          :  01 00  [..]  (1)
ArbiterP__0__resId                   :  01  [.]  (1)
CC1000RssiP__currentOp               :  04  [.]  (4)
CC1000SendReceiveP__BIT_CORRECTION   :  1b 1c 1e 20 22 24 26 28  [... "$&amp;(]
CC1000SendReceiveP__rxBufPtr         :  5c 02  [\.]  (604)
CC1000SquelchP__clearThreshold       :  20 01  [ .]  (288)
<strong>MyModule__myVar              :  00 00  [..]  (500)
</strong>SerialDispatcherP__0__messagePtrs    :  fb 02 2a 03  [..*.]  (53084923)
SerialDispatcherP__0__receiveBuffer  :  fb 02  [..]  (763)
SerialDispatcherP__0__recvType       :  ff  [.]  (255)
TOS_NODE_ID                          :  01 00  [..]  (1)
atm128_stdout                        :  00 00 00 02 00 00 00 00 fb
00 00 00 00  [..............]</pre>
<div>Now you can set the value of corresponding variable in the symbol table using the following command:</div>
<pre class="code">tos-set-symbol /path/to/main.exe MyModule__myVar=1234</pre>
<p>This allows you to directly set the value of your desired variable. Just be careful, as any programmer should be, about variable types.<br />
<strong>tos-set-symbols</strong> is part of the <strong>avr-gcc</strong> environment, and uses <strong>avr-objdump</strong>. </p>
<p>Initially we used this method to generate new images with different node IDs (TOS_NODE_ID variable) from the same base image. Now our testbed&#8217;s <a href="http://assert.utdallas.edu/index.php/GUI_Components">web based interface</a> allows the user to draw a topology visually and assign such variable values to each of the nodes. It can also automatically map your desired topology to available nodes in the testbed. </p>
]]></content:encoded>
			<wfw:commentRss>http://www.nourbakhsh.ir/blog/2012/01/symbol-table-manipulation-in-tinyos/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>Finals week in Austin</title>
		<link>http://www.nourbakhsh.ir/blog/2011/12/finals-week-in-austin/</link>
		<comments>http://www.nourbakhsh.ir/blog/2011/12/finals-week-in-austin/#comments</comments>
		<pubDate>Sun, 11 Dec 2011 19:31:00 +0000</pubDate>
		<dc:creator>Ehsan</dc:creator>
				<category><![CDATA[fun]]></category>
		<category><![CDATA[General]]></category>
		<category><![CDATA[life]]></category>
		<category><![CDATA[austin]]></category>
		<category><![CDATA[finals]]></category>
		<category><![CDATA[photo]]></category>

		<guid isPermaLink="false">http://www.nourbakhsh.ir/blog/2011/12/finals-week-in-austin/</guid>
		<description><![CDATA[Nice view Thank goodness I don&#8217;t have exams anymore.]]></description>
			<content:encoded><![CDATA[<p><img style="display:block;margin-right:auto;margin-left:auto;" alt="image" src="http://www.nourbakhsh.ir/blog/wp-content/uploads/wpid-2011-12-10_01-13-09_153.jpg" /></p>
<p>Nice view <img src='http://www.nourbakhsh.ir/blog/wp-includes/images/smilies/icon_smile.gif' alt=':)' class='wp-smiley' />  Thank goodness I don&#8217;t have exams anymore.</p>
]]></content:encoded>
			<wfw:commentRss>http://www.nourbakhsh.ir/blog/2011/12/finals-week-in-austin/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>Google: Engineers vs. Brand Loyalty</title>
		<link>http://www.nourbakhsh.ir/blog/2011/12/googles-engineers-vs-loyalty/</link>
		<comments>http://www.nourbakhsh.ir/blog/2011/12/googles-engineers-vs-loyalty/#comments</comments>
		<pubDate>Mon, 05 Dec 2011 04:47:29 +0000</pubDate>
		<dc:creator>Ehsan</dc:creator>
				<category><![CDATA[General]]></category>
		<category><![CDATA[life]]></category>
		<category><![CDATA[review]]></category>
		<category><![CDATA[android]]></category>
		<category><![CDATA[brand]]></category>
		<category><![CDATA[google]]></category>
		<category><![CDATA[ios]]></category>
		<category><![CDATA[iphone]]></category>
		<category><![CDATA[reader]]></category>
		<category><![CDATA[windows]]></category>
		<category><![CDATA[wp7]]></category>

		<guid isPermaLink="false">http://www.nourbakhsh.ir/blog/?p=124</guid>
		<description><![CDATA[Almost a month ago Google changed its Google Reader product by removing one of its core features: social sharing. This feature allowed you to share items you had read in Reader with your &#8216;friends&#8217; in Reader community. You could also follow them, comment on their items and so on. Since your comments and notes were [...]]]></description>
			<content:encoded><![CDATA[<p>Almost a month ago Google <a href="http://googlereader.blogspot.com/2011/10/new-in-reader-fresh-design-and-google.html">changed its Google Reader</a> product by removing one of its core features: social sharing. This feature allowed you to share items you had read in Reader with your &#8216;friends&#8217; in Reader community. You could also follow them, comment on their items and so on. Since your comments and notes were only text, the communities were formed around type of ideas they embraced rather than looks. Furthermore, your semi-anonymous Reader identity made the concentration on context more emphasized. In my personal opinion, the resulting network enjoyed a much more intellectual atmosphere than other more sophisticated social networks do.</p>
<p>In order to promote their main socail network, Google Plus, they eliminiated Reader&#8217;s features with no provision of seemless migration. I can see this as an engineer&#8217;s assumption that new &#8220;toys&#8221; automatically attract new people. Marketing people might disagree, pointing to brand loyalty.<br />
<span id="more-124"></span><br />
The engineering versus marketing approach Google took towards Reader reminds me of their Android operating system. In October Michael DeGusta of <a href="http://theunderstatement.com/">The Understatement</a> summarized his observations about Android updates for devices shipped between 2008 and 2010 as a chart. His visualization shows a clear message: Google does not intend to support their older devices. </p>
<p><center><a href="http://www.nourbakhsh.ir/blog/wp-content/uploads/016a_android_orphans.png" rel="lightbox"><img src="http://www.nourbakhsh.ir/blog/wp-content/uploads/016a_android_orphans-218x300.png" alt="" title="Android Orphans from http://theunderstatement.com" width="218" height="300" class="size-medium wp-image-128" /></a></center></p>
<p>My own experience supports this horrifying observation. While I am not sure about internals of Android&#8217;s framework and drivers, the ending result for users like me has been shaky reliance on courtesy of application developers to include my device in their small list of supported devices.</p>
<p>My experience with iPhone and Windows Mobile/Phone have been clearly different. The fact that I still receive updates for my 4 years old device says a lot. But the problem with iOS is it only has one active line of devices. You can get a newer version of iPhone but that is your only choice. However, Windows Phone has been more welcoming. My observation was WP7 suffered a poor release process, including <a href="http://www.phonearena.com/news/WP7-developers-report-paymentanalytics-problems_id14999">poor support of developers in the early days</a> and taking months before <a href="http://www.zdnet.com/blog/microsoft/windows-phone-7-will-nodo-show-has-mango-gone-soft/8856">releasing copy &#038; paste capability</a> in an <a href="http://blogs.computerworld.com/18024/microsoft_windows_phone_7_nodo_update_ready_ish">update</a>. I hope they don&#8217;t make the same mistake again, and I can safely return to Windows Mobile family!</p>
<p>Update: I ran into <a href="http://www.netinstructions.com/2011/12/all-the-ways-to-send-instant-messages-through-google-and-no-go-to-solution/">another article</a> discussing how internal instant messaging products of Google are not &#8220;synchronized&#8221; with each other. In my opinion it shows lack of a unified standard layer between users and Google products. As a friend pointed out, Google has been more concerned about shipping new products faster rather than keeping them synchronized.</p>
]]></content:encoded>
			<wfw:commentRss>http://www.nourbakhsh.ir/blog/2011/12/googles-engineers-vs-loyalty/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>IMAP and Microsoft Office Outlook 2007</title>
		<link>http://www.nourbakhsh.ir/blog/2010/12/imap-and-microsoft-office-outlook-2007/</link>
		<comments>http://www.nourbakhsh.ir/blog/2010/12/imap-and-microsoft-office-outlook-2007/#comments</comments>
		<pubDate>Thu, 30 Dec 2010 07:51:24 +0000</pubDate>
		<dc:creator>Ehsan</dc:creator>
				<category><![CDATA[General]]></category>
		<category><![CDATA[outlook microsoft mozilla thunderbird imap webex email]]></category>

		<guid isPermaLink="false">http://www.nourbakhsh.ir/blog/?p=121</guid>
		<description><![CDATA[This summer I had to use Outlook 2007 with Microsoft Exchange server. It was also integrated with Cisco&#8217;s WebEx. This combination was so efficient that I started to wonder why I did not use Outlook in school. But after a one semester trial, I am completely disappointed. Apparently Outlook is not intended for use with [...]]]></description>
			<content:encoded><![CDATA[<p>This summer I had to use Outlook 2007 with Microsoft Exchange server. It was also integrated with Cisco&#8217;s WebEx. This combination was so efficient that I started to wonder why I did not use Outlook in school.</p>
<p>But after a one semester trial, I am  completely disappointed. Apparently Outlook is not intended for use with an IMAP server. Each time it would take almost minutes to load messages. For Thunderbird, it was merely seconds on the same server.</p>
<p>Apparently Microsoft developers <a href="http://social.msdn.microsoft.com/Forums/en/innovateonoffice/thread/82024df4-d5ec-4f89-b268-f824dc26c370">are aware of this problem</a>, but it is not fixed yet. There are hacks and suggestion to improve it, <a href="http://www.labnol.org/software/tutorials/solutions-for-slow-gmail-imap-with-microsoft-outlook/1761/">such as this one</a>. Unfortunately these &#8220;solutions&#8221; don&#8217;t fit my needs and I am back to using good old Mozilla Thunderbird.</p>
]]></content:encoded>
			<wfw:commentRss>http://www.nourbakhsh.ir/blog/2010/12/imap-and-microsoft-office-outlook-2007/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>Just Testing</title>
		<link>http://www.nourbakhsh.ir/blog/2010/05/just-testing/</link>
		<comments>http://www.nourbakhsh.ir/blog/2010/05/just-testing/#comments</comments>
		<pubDate>Tue, 18 May 2010 00:08:35 +0000</pubDate>
		<dc:creator>Ehsan</dc:creator>
				<category><![CDATA[General]]></category>

		<guid isPermaLink="false">http://www.nourbakhsh.ir/blog/2010/05/just-testing/</guid>
		<description><![CDATA[]]></description>
			<content:encoded><![CDATA[<p><object width="480" height="385"><param name="movie" value="http://www.youtube.com/v/nYY4P04cUvM&#038;hl=en_US&#038;fs=1&#038;"></param><param name="allowFullScreen" value="true"></param><param name="allowscriptaccess" value="always"></param><embed src="http://www.youtube.com/v/nYY4P04cUvM&#038;hl=en_US&#038;fs=1&#038;" type="application/x-shockwave-flash" allowscriptaccess="always" allowfullscreen="true" width="480" height="385"></embed></object></p>
]]></content:encoded>
			<wfw:commentRss>http://www.nourbakhsh.ir/blog/2010/05/just-testing/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>Home eNB: Great Oppotunity for 3GPP LTE</title>
		<link>http://www.nourbakhsh.ir/blog/2009/04/home-enb-great-oppotunity-for-3gpp-lte/</link>
		<comments>http://www.nourbakhsh.ir/blog/2009/04/home-enb-great-oppotunity-for-3gpp-lte/#comments</comments>
		<pubDate>Sat, 11 Apr 2009 02:38:01 +0000</pubDate>
		<dc:creator>Ehsan</dc:creator>
				<category><![CDATA[General]]></category>
		<category><![CDATA[review]]></category>
		<category><![CDATA[wireless]]></category>
		<category><![CDATA[cell]]></category>
		<category><![CDATA[femtocell]]></category>

		<guid isPermaLink="false">http://www.nourbakhsh.ir/blog/?p=99</guid>
		<description><![CDATA[In the recent years more and more wireless providers have started to provide femtocells to their customers. The customer can deploy the femtocell in any location that the coverage of normal towers are weak or absent.  Consider a product like Samsung&#8217;s Ubicell. The user can plug this femtocell in their home internet switch, and use [...]]]></description>
			<content:encoded><![CDATA[<p style="text-align: justify;"><!--[if gte mso 9]><xml> <w:WordDocument> <w:View>Normal</w:View> <w:Zoom>0</w:Zoom> <w:TrackMoves /> <w:TrackFormatting /> <w:PunctuationKerning /> <w:ValidateAgainstSchemas /> <w:SaveIfXMLInvalid>false</w:SaveIfXMLInvalid> <w:IgnoreMixedContent>false</w:IgnoreMixedContent> <w:AlwaysShowPlaceholderText>false</w:AlwaysShowPlaceholderText> <w:DoNotPromoteQF /> <w:LidThemeOther>EN-US</w:LidThemeOther> <w:LidThemeAsian>X-NONE</w:LidThemeAsian> <w:LidThemeComplexScript>AR-SA</w:LidThemeComplexScript> <w:Compatibility> <w:BreakWrappedTables /> <w:SnapToGridInCell /> <w:WrapTextWithPunct /> <w:UseAsianBreakRules /> <w:DontGrowAutofit /> <w:SplitPgBreakAndParaMark /> <w:DontVertAlignCellWithSp /> <w:DontBreakConstrainedForcedTables /> <w:DontVertAlignInTxbx /> <w:Word11KerningPairs /> <w:CachedColBalance /> </w:Compatibility> <w:BrowserLevel>MicrosoftInternetExplorer4</w:BrowserLevel> <m:mathPr> <m:mathFont m:val="Cambria Math" /> <m:brkBin m:val="before" /> <m:brkBinSub m:val="&#45;-" /> <m:smallFrac m:val="off" /> <m:dispDef /> <m:lMargin m:val="0" /> <m:rMargin m:val="0" /> <m:defJc m:val="centerGroup" /> <m:wrapIndent m:val="1440" /> <m:intLim m:val="subSup" /> <m:naryLim m:val="undOvr" /> </m:mathPr></w:WordDocument> </xml><![endif]--><!--[if gte mso 9]><xml> <w:LatentStyles DefLockedState="false" DefUnhideWhenUsed="true"   DefSemiHidden="true" DefQFormat="false" DefPriority="99"   LatentStyleCount="267"> <w:LsdException Locked="false" Priority="0" SemiHidden="false"    UnhideWhenUsed="false" QFormat="true" Name="Normal" /> <w:LsdException Locked="false" Priority="9" SemiHidden="false"    UnhideWhenUsed="false" QFormat="true" Name="heading 1" /> <w:LsdException Locked="false" Priority="9" QFormat="true" Name="heading 2" /> <w:LsdException Locked="false" Priority="9" QFormat="true" Name="heading 3" /> <w:LsdException Locked="false" Priority="9" QFormat="true" Name="heading 4" /> <w:LsdException Locked="false" Priority="9" QFormat="true" Name="heading 5" /> <w:LsdException Locked="false" Priority="9" QFormat="true" Name="heading 6" /> <w:LsdException Locked="false" Priority="9" QFormat="true" Name="heading 7" /> <w:LsdException Locked="false" Priority="9" QFormat="true" Name="heading 8" /> <w:LsdException Locked="false" Priority="9" QFormat="true" Name="heading 9" /> <w:LsdException Locked="false" Priority="39" Name="toc 1" /> <w:LsdException Locked="false" Priority="39" Name="toc 2" /> <w:LsdException Locked="false" Priority="39" Name="toc 3" /> <w:LsdException Locked="false" Priority="39" Name="toc 4" /> <w:LsdException Locked="false" Priority="39" Name="toc 5" /> <w:LsdException Locked="false" Priority="39" Name="toc 6" /> <w:LsdException Locked="false" Priority="39" Name="toc 7" /> <w:LsdException Locked="false" Priority="39" Name="toc 8" /> <w:LsdException Locked="false" Priority="39" Name="toc 9" /> <w:LsdException Locked="false" Priority="35" QFormat="true" Name="caption" /> <w:LsdException Locked="false" Priority="10" SemiHidden="false"    UnhideWhenUsed="false" QFormat="true" Name="Title" /> <w:LsdException Locked="false" Priority="1" Name="Default Paragraph Font" /> <w:LsdException Locked="false" Priority="11" SemiHidden="false"    UnhideWhenUsed="false" QFormat="true" Name="Subtitle" /> <w:LsdException Locked="false" Priority="22" SemiHidden="false"    UnhideWhenUsed="false" QFormat="true" Name="Strong" /> <w:LsdException Locked="false" Priority="20" SemiHidden="false"    UnhideWhenUsed="false" QFormat="true" Name="Emphasis" /> <w:LsdException Locked="false" Priority="59" SemiHidden="false"    UnhideWhenUsed="false" Name="Table Grid" /> <w:LsdException Locked="false" UnhideWhenUsed="false" Name="Placeholder Text" /> <w:LsdException Locked="false" Priority="1" SemiHidden="false"    UnhideWhenUsed="false" QFormat="true" Name="No Spacing" /> <w:LsdException Locked="false" Priority="60" SemiHidden="false"    UnhideWhenUsed="false" Name="Light Shading" /> <w:LsdException Locked="false" Priority="61" SemiHidden="false"    UnhideWhenUsed="false" Name="Light List" /> <w:LsdException Locked="false" Priority="62" SemiHidden="false"    UnhideWhenUsed="false" Name="Light Grid" /> <w:LsdException Locked="false" Priority="63" SemiHidden="false"    UnhideWhenUsed="false" Name="Medium Shading 1" /> <w:LsdException Locked="false" Priority="64" SemiHidden="false"    UnhideWhenUsed="false" Name="Medium Shading 2" /> <w:LsdException Locked="false" Priority="65" SemiHidden="false"    UnhideWhenUsed="false" Name="Medium List 1" /> <w:LsdException Locked="false" Priority="66" SemiHidden="false"    UnhideWhenUsed="false" Name="Medium List 2" /> <w:LsdException Locked="false" Priority="67" SemiHidden="false"    UnhideWhenUsed="false" Name="Medium Grid 1" /> <w:LsdException Locked="false" Priority="68" SemiHidden="false"    UnhideWhenUsed="false" Name="Medium Grid 2" /> <w:LsdException Locked="false" Priority="69" SemiHidden="false"    UnhideWhenUsed="false" Name="Medium Grid 3" /> <w:LsdException Locked="false" Priority="70" SemiHidden="false"    UnhideWhenUsed="false" Name="Dark List" /> <w:LsdException Locked="false" Priority="71" SemiHidden="false"    UnhideWhenUsed="false" Name="Colorful Shading" /> <w:LsdException Locked="false" Priority="72" SemiHidden="false"    UnhideWhenUsed="false" Name="Colorful List" /> <w:LsdException Locked="false" Priority="73" SemiHidden="false"    UnhideWhenUsed="false" Name="Colorful Grid" /> <w:LsdException Locked="false" Priority="60" SemiHidden="false"    UnhideWhenUsed="false" Name="Light Shading Accent 1" /> <w:LsdException Locked="false" Priority="61" SemiHidden="false"    UnhideWhenUsed="false" Name="Light List Accent 1" /> <w:LsdException Locked="false" Priority="62" SemiHidden="false"    UnhideWhenUsed="false" Name="Light Grid Accent 1" /> <w:LsdException Locked="false" Priority="63" SemiHidden="false"    UnhideWhenUsed="false" Name="Medium Shading 1 Accent 1" /> <w:LsdException Locked="false" Priority="64" SemiHidden="false"    UnhideWhenUsed="false" Name="Medium Shading 2 Accent 1" /> <w:LsdException Locked="false" Priority="65" SemiHidden="false"    UnhideWhenUsed="false" Name="Medium List 1 Accent 1" /> <w:LsdException Locked="false" UnhideWhenUsed="false" Name="Revision" /> <w:LsdException Locked="false" Priority="34" SemiHidden="false"    UnhideWhenUsed="false" QFormat="true" Name="List Paragraph" /> <w:LsdException Locked="false" Priority="29" SemiHidden="false"    UnhideWhenUsed="false" QFormat="true" Name="Quote" /> <w:LsdException Locked="false" Priority="30" SemiHidden="false"    UnhideWhenUsed="false" QFormat="true" Name="Intense Quote" /> <w:LsdException Locked="false" Priority="66" SemiHidden="false"    UnhideWhenUsed="false" Name="Medium List 2 Accent 1" /> <w:LsdException Locked="false" Priority="67" SemiHidden="false"    UnhideWhenUsed="false" Name="Medium Grid 1 Accent 1" /> <w:LsdException Locked="false" Priority="68" SemiHidden="false"    UnhideWhenUsed="false" Name="Medium Grid 2 Accent 1" /> <w:LsdException Locked="false" Priority="69" SemiHidden="false"    UnhideWhenUsed="false" Name="Medium Grid 3 Accent 1" /> <w:LsdException Locked="false" Priority="70" SemiHidden="false"    UnhideWhenUsed="false" Name="Dark List Accent 1" /> <w:LsdException Locked="false" Priority="71" SemiHidden="false"    UnhideWhenUsed="false" Name="Colorful Shading Accent 1" /> <w:LsdException Locked="false" Priority="72" SemiHidden="false"    UnhideWhenUsed="false" Name="Colorful List Accent 1" /> <w:LsdException Locked="false" Priority="73" SemiHidden="false"    UnhideWhenUsed="false" Name="Colorful Grid Accent 1" /> <w:LsdException Locked="false" Priority="60" SemiHidden="false"    UnhideWhenUsed="false" Name="Light Shading Accent 2" /> <w:LsdException Locked="false" Priority="61" SemiHidden="false"    UnhideWhenUsed="false" Name="Light List Accent 2" /> <w:LsdException Locked="false" Priority="62" SemiHidden="false"    UnhideWhenUsed="false" Name="Light Grid Accent 2" /> <w:LsdException Locked="false" Priority="63" SemiHidden="false"    UnhideWhenUsed="false" Name="Medium Shading 1 Accent 2" /> <w:LsdException Locked="false" Priority="64" SemiHidden="false"    UnhideWhenUsed="false" Name="Medium Shading 2 Accent 2" /> <w:LsdException Locked="false" Priority="65" SemiHidden="false"    UnhideWhenUsed="false" Name="Medium List 1 Accent 2" /> <w:LsdException Locked="false" Priority="66" SemiHidden="false"    UnhideWhenUsed="false" Name="Medium List 2 Accent 2" /> <w:LsdException Locked="false" Priority="67" SemiHidden="false"    UnhideWhenUsed="false" Name="Medium Grid 1 Accent 2" /> <w:LsdException Locked="false" Priority="68" SemiHidden="false"    UnhideWhenUsed="false" Name="Medium Grid 2 Accent 2" /> <w:LsdException Locked="false" Priority="69" SemiHidden="false"    UnhideWhenUsed="false" Name="Medium Grid 3 Accent 2" /> <w:LsdException Locked="false" Priority="70" SemiHidden="false"    UnhideWhenUsed="false" Name="Dark List Accent 2" /> <w:LsdException Locked="false" Priority="71" SemiHidden="false"    UnhideWhenUsed="false" Name="Colorful Shading Accent 2" /> <w:LsdException Locked="false" Priority="72" SemiHidden="false"    UnhideWhenUsed="false" Name="Colorful List Accent 2" /> <w:LsdException Locked="false" Priority="73" SemiHidden="false"    UnhideWhenUsed="false" Name="Colorful Grid Accent 2" /> <w:LsdException Locked="false" Priority="60" SemiHidden="false"    UnhideWhenUsed="false" Name="Light Shading Accent 3" /> <w:LsdException Locked="false" Priority="61" SemiHidden="false"    UnhideWhenUsed="false" Name="Light List Accent 3" /> <w:LsdException Locked="false" Priority="62" SemiHidden="false"    UnhideWhenUsed="false" Name="Light Grid Accent 3" /> <w:LsdException Locked="false" Priority="63" SemiHidden="false"    UnhideWhenUsed="false" Name="Medium Shading 1 Accent 3" /> <w:LsdException Locked="false" Priority="64" SemiHidden="false"    UnhideWhenUsed="false" Name="Medium Shading 2 Accent 3" /> <w:LsdException Locked="false" Priority="65" SemiHidden="false"    UnhideWhenUsed="false" Name="Medium List 1 Accent 3" /> <w:LsdException Locked="false" Priority="66" SemiHidden="false"    UnhideWhenUsed="false" Name="Medium List 2 Accent 3" /> <w:LsdException Locked="false" Priority="67" SemiHidden="false"    UnhideWhenUsed="false" Name="Medium Grid 1 Accent 3" /> <w:LsdException Locked="false" Priority="68" SemiHidden="false"    UnhideWhenUsed="false" Name="Medium Grid 2 Accent 3" /> <w:LsdException Locked="false" Priority="69" SemiHidden="false"    UnhideWhenUsed="false" Name="Medium Grid 3 Accent 3" /> <w:LsdException Locked="false" Priority="70" SemiHidden="false"    UnhideWhenUsed="false" Name="Dark List Accent 3" /> <w:LsdException Locked="false" Priority="71" SemiHidden="false"    UnhideWhenUsed="false" Name="Colorful Shading Accent 3" /> <w:LsdException Locked="false" Priority="72" SemiHidden="false"    UnhideWhenUsed="false" Name="Colorful List Accent 3" /> <w:LsdException Locked="false" Priority="73" SemiHidden="false"    UnhideWhenUsed="false" Name="Colorful Grid Accent 3" /> <w:LsdException Locked="false" Priority="60" SemiHidden="false"    UnhideWhenUsed="false" Name="Light Shading Accent 4" /> <w:LsdException Locked="false" Priority="61" SemiHidden="false"    UnhideWhenUsed="false" Name="Light List Accent 4" /> <w:LsdException Locked="false" Priority="62" SemiHidden="false"    UnhideWhenUsed="false" Name="Light Grid Accent 4" /> <w:LsdException Locked="false" Priority="63" SemiHidden="false"    UnhideWhenUsed="false" Name="Medium Shading 1 Accent 4" /> <w:LsdException Locked="false" Priority="64" SemiHidden="false"    UnhideWhenUsed="false" Name="Medium Shading 2 Accent 4" /> <w:LsdException Locked="false" Priority="65" SemiHidden="false"    UnhideWhenUsed="false" Name="Medium List 1 Accent 4" /> <w:LsdException Locked="false" Priority="66" SemiHidden="false"    UnhideWhenUsed="false" Name="Medium List 2 Accent 4" /> <w:LsdException Locked="false" Priority="67" SemiHidden="false"    UnhideWhenUsed="false" Name="Medium Grid 1 Accent 4" /> <w:LsdException Locked="false" Priority="68" SemiHidden="false"    UnhideWhenUsed="false" Name="Medium Grid 2 Accent 4" /> <w:LsdException Locked="false" Priority="69" SemiHidden="false"    UnhideWhenUsed="false" Name="Medium Grid 3 Accent 4" /> <w:LsdException Locked="false" Priority="70" SemiHidden="false"    UnhideWhenUsed="false" Name="Dark List Accent 4" /> <w:LsdException Locked="false" Priority="71" SemiHidden="false"    UnhideWhenUsed="false" Name="Colorful Shading Accent 4" /> <w:LsdException Locked="false" Priority="72" SemiHidden="false"    UnhideWhenUsed="false" Name="Colorful List Accent 4" /> <w:LsdException Locked="false" Priority="73" SemiHidden="false"    UnhideWhenUsed="false" Name="Colorful Grid Accent 4" /> <w:LsdException Locked="false" Priority="60" SemiHidden="false"    UnhideWhenUsed="false" Name="Light Shading Accent 5" /> <w:LsdException Locked="false" Priority="61" SemiHidden="false"    UnhideWhenUsed="false" Name="Light List Accent 5" /> <w:LsdException Locked="false" Priority="62" SemiHidden="false"    UnhideWhenUsed="false" Name="Light Grid Accent 5" /> <w:LsdException Locked="false" Priority="63" SemiHidden="false"    UnhideWhenUsed="false" Name="Medium Shading 1 Accent 5" /> <w:LsdException Locked="false" Priority="64" SemiHidden="false"    UnhideWhenUsed="false" Name="Medium Shading 2 Accent 5" /> <w:LsdException Locked="false" Priority="65" SemiHidden="false"    UnhideWhenUsed="false" Name="Medium List 1 Accent 5" /> <w:LsdException Locked="false" Priority="66" SemiHidden="false"    UnhideWhenUsed="false" Name="Medium List 2 Accent 5" /> <w:LsdException Locked="false" Priority="67" SemiHidden="false"    UnhideWhenUsed="false" Name="Medium Grid 1 Accent 5" /> <w:LsdException Locked="false" Priority="68" SemiHidden="false"    UnhideWhenUsed="false" Name="Medium Grid 2 Accent 5" /> <w:LsdException Locked="false" Priority="69" SemiHidden="false"    UnhideWhenUsed="false" Name="Medium Grid 3 Accent 5" /> <w:LsdException Locked="false" Priority="70" SemiHidden="false"    UnhideWhenUsed="false" Name="Dark List Accent 5" /> <w:LsdException Locked="false" Priority="71" SemiHidden="false"    UnhideWhenUsed="false" Name="Colorful Shading Accent 5" /> <w:LsdException Locked="false" Priority="72" SemiHidden="false"    UnhideWhenUsed="false" Name="Colorful List Accent 5" /> <w:LsdException Locked="false" Priority="73" SemiHidden="false"    UnhideWhenUsed="false" Name="Colorful Grid Accent 5" /> <w:LsdException Locked="false" Priority="60" SemiHidden="false"    UnhideWhenUsed="false" Name="Light Shading Accent 6" /> <w:LsdException Locked="false" Priority="61" SemiHidden="false"    UnhideWhenUsed="false" Name="Light List Accent 6" /> <w:LsdException Locked="false" Priority="62" SemiHidden="false"    UnhideWhenUsed="false" Name="Light Grid Accent 6" /> <w:LsdException Locked="false" Priority="63" SemiHidden="false"    UnhideWhenUsed="false" Name="Medium Shading 1 Accent 6" /> <w:LsdException Locked="false" Priority="64" SemiHidden="false"    UnhideWhenUsed="false" Name="Medium Shading 2 Accent 6" /> <w:LsdException Locked="false" Priority="65" SemiHidden="false"    UnhideWhenUsed="false" Name="Medium List 1 Accent 6" /> <w:LsdException Locked="false" Priority="66" SemiHidden="false"    UnhideWhenUsed="false" Name="Medium List 2 Accent 6" /> <w:LsdException Locked="false" Priority="67" SemiHidden="false"    UnhideWhenUsed="false" Name="Medium Grid 1 Accent 6" /> <w:LsdException Locked="false" Priority="68" SemiHidden="false"    UnhideWhenUsed="false" Name="Medium Grid 2 Accent 6" /> <w:LsdException Locked="false" Priority="69" SemiHidden="false"    UnhideWhenUsed="false" Name="Medium Grid 3 Accent 6" /> <w:LsdException Locked="false" Priority="70" SemiHidden="false"    UnhideWhenUsed="false" Name="Dark List Accent 6" /> <w:LsdException Locked="false" Priority="71" SemiHidden="false"    UnhideWhenUsed="false" Name="Colorful Shading Accent 6" /> <w:LsdException Locked="false" Priority="72" SemiHidden="false"    UnhideWhenUsed="false" Name="Colorful List Accent 6" /> <w:LsdException Locked="false" Priority="73" SemiHidden="false"    UnhideWhenUsed="false" Name="Colorful Grid Accent 6" /> <w:LsdException Locked="false" Priority="19" SemiHidden="false"    UnhideWhenUsed="false" QFormat="true" Name="Subtle Emphasis" /> <w:LsdException Locked="false" Priority="21" SemiHidden="false"    UnhideWhenUsed="false" QFormat="true" Name="Intense Emphasis" /> <w:LsdException Locked="false" Priority="31" SemiHidden="false"    UnhideWhenUsed="false" QFormat="true" Name="Subtle Reference" /> <w:LsdException Locked="false" Priority="32" SemiHidden="false"    UnhideWhenUsed="false" QFormat="true" Name="Intense Reference" /> <w:LsdException Locked="false" Priority="33" SemiHidden="false"    UnhideWhenUsed="false" QFormat="true" Name="Book Title" /> <w:LsdException Locked="false" Priority="37" Name="Bibliography" /> <w:LsdException Locked="false" Priority="39" QFormat="true" Name="TOC Heading" /> </w:LatentStyles> </xml><![endif]--><!--  /* Font Definitions */  @font-face 	{font-family:"Cambria Math"; 	panose-1:2 4 5 3 5 4 6 3 2 4; 	mso-font-charset:0; 	mso-generic-font-family:roman; 	mso-font-pitch:variable; 	mso-font-signature:-1610611985 1107304683 0 0 159 0;} @font-face 	{font-family:Calibri; 	panose-1:2 15 5 2 2 2 4 3 2 4; 	mso-font-charset:0; 	mso-generic-font-family:swiss; 	mso-font-pitch:variable; 	mso-font-signature:-1610611985 1073750139 0 0 159 0;}  /* Style Definitions */  p.MsoNormal, li.MsoNormal, div.MsoNormal 	{mso-style-unhide:no; 	mso-style-qformat:yes; 	mso-style-parent:""; 	margin-top:0in; 	margin-right:0in; 	margin-bottom:10.0pt; 	margin-left:0in; 	line-height:115%; 	mso-pagination:widow-orphan; 	font-size:11.0pt; 	font-family:"Calibri","sans-serif"; 	mso-ascii-font-family:Calibri; 	mso-ascii-theme-font:minor-latin; 	mso-fareast-font-family:Calibri; 	mso-fareast-theme-font:minor-latin; 	mso-hansi-font-family:Calibri; 	mso-hansi-theme-font:minor-latin; 	mso-bidi-font-family:Arial; 	mso-bidi-theme-font:minor-bidi;} .MsoChpDefault 	{mso-style-type:export-only; 	mso-default-props:yes; 	mso-ascii-font-family:Calibri; 	mso-ascii-theme-font:minor-latin; 	mso-fareast-font-family:Calibri; 	mso-fareast-theme-font:minor-latin; 	mso-hansi-font-family:Calibri; 	mso-hansi-theme-font:minor-latin; 	mso-bidi-font-family:Arial; 	mso-bidi-theme-font:minor-bidi;} .MsoPapDefault 	{mso-style-type:export-only; 	margin-bottom:10.0pt; 	line-height:115%;} @page Section1 	{size:8.5in 11.0in; 	margin:1.0in 1.0in 1.0in 1.0in; 	mso-header-margin:.5in; 	mso-footer-margin:.5in; 	mso-paper-source:0;} div.Section1 	{page:Section1;} --><!--[if gte mso 10]> <mce:style><!   /* Style Definitions */  table.MsoNormalTable 	{mso-style-name:"Table Normal"; 	mso-tstyle-rowband-size:0; 	mso-tstyle-colband-size:0; 	mso-style-noshow:yes; 	mso-style-priority:99; 	mso-style-qformat:yes; 	mso-style-parent:""; 	mso-padding-alt:0in 5.4pt 0in 5.4pt; 	mso-para-margin-top:0in; 	mso-para-margin-right:0in; 	mso-para-margin-bottom:10.0pt; 	mso-para-margin-left:0in; 	line-height:115%; 	mso-pagination:widow-orphan; 	font-size:11.0pt; 	font-family:"Calibri","sans-serif"; 	mso-ascii-font-family:Calibri; 	mso-ascii-theme-font:minor-latin; 	mso-fareast-font-family:"Times New Roman"; 	mso-fareast-theme-font:minor-fareast; 	mso-hansi-font-family:Calibri; 	mso-hansi-theme-font:minor-latin;} --> <!--[endif]--></p>
<p class="MsoNormal" style="text-align: justify; line-height: normal;"><span style="font-size: 12pt; font-family: &quot;Times New Roman&quot;,&quot;serif&quot;;">In the recent years more and more wireless providers have started to provide femtocells to their customers. The customer can deploy the femtocell in any location that the coverage of normal towers are weak or absent.  Consider a product like <a href="http://www.samsung.com/global/business/telecommunication/productInfo.do?ctgry_group=11&amp;ctgry_type=20&amp;b2b_prd_id=201"><span style="color: blue;">Samsung&#8217;s Ubicell</span></a>. The user can plug this femtocell in their home internet switch, and use their regular cell phone to connect to the final service provider, e.g. Sprint.</span></p>
<p style="text-align: justify;">
<div id="attachment_102" class="wp-caption aligncenter" style="width: 467px"><img class="size-full wp-image-102" title="E-UTRAN" src="http://www.nourbakhsh.ir/blog/wp-content/uploads/e-utran.png" alt="E-UTRAN architecture from 3GPP document 36.300-880" width="457" height="274" /><p class="wp-caption-text">E-UTRAN architecture from 3GPP document 36.300-880</p></div>
<p><!--[if gte mso 9]><xml> <w:WordDocument> <w:View>Normal</w:View> <w:Zoom>0</w:Zoom> <w:TrackMoves /> <w:TrackFormatting /> <w:PunctuationKerning /> <w:ValidateAgainstSchemas /> <w:SaveIfXMLInvalid>false</w:SaveIfXMLInvalid> <w:IgnoreMixedContent>false</w:IgnoreMixedContent> <w:AlwaysShowPlaceholderText>false</w:AlwaysShowPlaceholderText> <w:DoNotPromoteQF /> <w:LidThemeOther>EN-US</w:LidThemeOther> <w:LidThemeAsian>X-NONE</w:LidThemeAsian> <w:LidThemeComplexScript>AR-SA</w:LidThemeComplexScript> <w:Compatibility> <w:BreakWrappedTables /> <w:SnapToGridInCell /> <w:WrapTextWithPunct /> <w:UseAsianBreakRules /> <w:DontGrowAutofit /> <w:SplitPgBreakAndParaMark /> <w:DontVertAlignCellWithSp /> <w:DontBreakConstrainedForcedTables /> <w:DontVertAlignInTxbx /> <w:Word11KerningPairs /> <w:CachedColBalance /> </w:Compatibility> <w:BrowserLevel>MicrosoftInternetExplorer4</w:BrowserLevel> <m:mathPr> <m:mathFont m:val="Cambria Math" /> <m:brkBin m:val="before" /> <m:brkBinSub m:val="&#45;-" /> <m:smallFrac m:val="off" /> <m:dispDef /> <m:lMargin m:val="0" /> <m:rMargin m:val="0" /> <m:defJc m:val="centerGroup" /> <m:wrapIndent m:val="1440" /> <m:intLim m:val="subSup" /> <m:naryLim m:val="undOvr" /> </m:mathPr></w:WordDocument> </xml><![endif]--><!--[if gte mso 9]><xml> <w:LatentStyles DefLockedState="false" DefUnhideWhenUsed="true"   DefSemiHidden="true" DefQFormat="false" DefPriority="99"   LatentStyleCount="267"> <w:LsdException Locked="false" Priority="0" SemiHidden="false"    UnhideWhenUsed="false" QFormat="true" Name="Normal" /> <w:LsdException Locked="false" Priority="9" SemiHidden="false"    UnhideWhenUsed="false" QFormat="true" Name="heading 1" /> <w:LsdException Locked="false" Priority="9" QFormat="true" Name="heading 2" /> <w:LsdException Locked="false" Priority="9" QFormat="true" Name="heading 3" /> <w:LsdException Locked="false" Priority="9" QFormat="true" Name="heading 4" /> <w:LsdException Locked="false" Priority="9" QFormat="true" Name="heading 5" /> <w:LsdException Locked="false" Priority="9" QFormat="true" Name="heading 6" /> <w:LsdException Locked="false" Priority="9" QFormat="true" Name="heading 7" /> <w:LsdException Locked="false" Priority="9" QFormat="true" Name="heading 8" /> <w:LsdException Locked="false" Priority="9" QFormat="true" Name="heading 9" /> <w:LsdException Locked="false" Priority="39" Name="toc 1" /> <w:LsdException Locked="false" Priority="39" Name="toc 2" /> <w:LsdException Locked="false" Priority="39" Name="toc 3" /> <w:LsdException Locked="false" Priority="39" Name="toc 4" /> <w:LsdException Locked="false" Priority="39" Name="toc 5" /> <w:LsdException Locked="false" Priority="39" Name="toc 6" /> <w:LsdException Locked="false" Priority="39" Name="toc 7" /> <w:LsdException Locked="false" Priority="39" Name="toc 8" /> <w:LsdException Locked="false" Priority="39" Name="toc 9" /> <w:LsdException Locked="false" Priority="35" QFormat="true" Name="caption" /> <w:LsdException Locked="false" Priority="10" SemiHidden="false"    UnhideWhenUsed="false" QFormat="true" Name="Title" /> <w:LsdException Locked="false" Priority="1" Name="Default Paragraph Font" /> <w:LsdException Locked="false" Priority="11" SemiHidden="false"    UnhideWhenUsed="false" QFormat="true" Name="Subtitle" /> <w:LsdException Locked="false" Priority="22" SemiHidden="false"    UnhideWhenUsed="false" QFormat="true" Name="Strong" /> <w:LsdException Locked="false" Priority="20" SemiHidden="false"    UnhideWhenUsed="false" QFormat="true" Name="Emphasis" /> <w:LsdException Locked="false" Priority="59" SemiHidden="false"    UnhideWhenUsed="false" Name="Table Grid" /> <w:LsdException Locked="false" UnhideWhenUsed="false" Name="Placeholder Text" /> <w:LsdException Locked="false" Priority="1" SemiHidden="false"    UnhideWhenUsed="false" QFormat="true" Name="No Spacing" /> <w:LsdException Locked="false" Priority="60" SemiHidden="false"    UnhideWhenUsed="false" Name="Light Shading" /> <w:LsdException Locked="false" Priority="61" SemiHidden="false"    UnhideWhenUsed="false" Name="Light List" /> <w:LsdException Locked="false" Priority="62" SemiHidden="false"    UnhideWhenUsed="false" Name="Light Grid" /> <w:LsdException Locked="false" Priority="63" SemiHidden="false"    UnhideWhenUsed="false" Name="Medium Shading 1" /> <w:LsdException Locked="false" Priority="64" SemiHidden="false"    UnhideWhenUsed="false" Name="Medium Shading 2" /> <w:LsdException Locked="false" Priority="65" SemiHidden="false"    UnhideWhenUsed="false" Name="Medium List 1" /> <w:LsdException Locked="false" Priority="66" SemiHidden="false"    UnhideWhenUsed="false" Name="Medium List 2" /> <w:LsdException Locked="false" Priority="67" SemiHidden="false"    UnhideWhenUsed="false" Name="Medium Grid 1" /> <w:LsdException Locked="false" Priority="68" SemiHidden="false"    UnhideWhenUsed="false" Name="Medium Grid 2" /> <w:LsdException Locked="false" Priority="69" SemiHidden="false"    UnhideWhenUsed="false" Name="Medium Grid 3" /> <w:LsdException Locked="false" Priority="70" SemiHidden="false"    UnhideWhenUsed="false" Name="Dark List" /> <w:LsdException Locked="false" Priority="71" SemiHidden="false"    UnhideWhenUsed="false" Name="Colorful Shading" /> <w:LsdException Locked="false" Priority="72" SemiHidden="false"    UnhideWhenUsed="false" Name="Colorful List" /> <w:LsdException Locked="false" Priority="73" SemiHidden="false"    UnhideWhenUsed="false" Name="Colorful Grid" /> <w:LsdException Locked="false" Priority="60" SemiHidden="false"    UnhideWhenUsed="false" Name="Light Shading Accent 1" /> <w:LsdException Locked="false" Priority="61" SemiHidden="false"    UnhideWhenUsed="false" Name="Light List Accent 1" /> <w:LsdException Locked="false" Priority="62" SemiHidden="false"    UnhideWhenUsed="false" Name="Light Grid Accent 1" /> <w:LsdException Locked="false" Priority="63" SemiHidden="false"    UnhideWhenUsed="false" Name="Medium Shading 1 Accent 1" /> <w:LsdException Locked="false" Priority="64" SemiHidden="false"    UnhideWhenUsed="false" Name="Medium Shading 2 Accent 1" /> <w:LsdException Locked="false" Priority="65" SemiHidden="false"    UnhideWhenUsed="false" Name="Medium List 1 Accent 1" /> <w:LsdException Locked="false" UnhideWhenUsed="false" Name="Revision" /> <w:LsdException Locked="false" Priority="34" SemiHidden="false"    UnhideWhenUsed="false" QFormat="true" Name="List Paragraph" /> <w:LsdException Locked="false" Priority="29" SemiHidden="false"    UnhideWhenUsed="false" QFormat="true" Name="Quote" /> <w:LsdException Locked="false" Priority="30" SemiHidden="false"    UnhideWhenUsed="false" QFormat="true" Name="Intense Quote" /> <w:LsdException Locked="false" Priority="66" SemiHidden="false"    UnhideWhenUsed="false" Name="Medium List 2 Accent 1" /> <w:LsdException Locked="false" Priority="67" SemiHidden="false"    UnhideWhenUsed="false" Name="Medium Grid 1 Accent 1" /> <w:LsdException Locked="false" Priority="68" SemiHidden="false"    UnhideWhenUsed="false" Name="Medium Grid 2 Accent 1" /> <w:LsdException Locked="false" Priority="69" SemiHidden="false"    UnhideWhenUsed="false" Name="Medium Grid 3 Accent 1" /> <w:LsdException Locked="false" Priority="70" SemiHidden="false"    UnhideWhenUsed="false" Name="Dark List Accent 1" /> <w:LsdException Locked="false" Priority="71" SemiHidden="false"    UnhideWhenUsed="false" Name="Colorful Shading Accent 1" /> <w:LsdException Locked="false" Priority="72" SemiHidden="false"    UnhideWhenUsed="false" Name="Colorful List Accent 1" /> <w:LsdException Locked="false" Priority="73" SemiHidden="false"    UnhideWhenUsed="false" Name="Colorful Grid Accent 1" /> <w:LsdException Locked="false" Priority="60" SemiHidden="false"    UnhideWhenUsed="false" Name="Light Shading Accent 2" /> <w:LsdException Locked="false" Priority="61" SemiHidden="false"    UnhideWhenUsed="false" Name="Light List Accent 2" /> <w:LsdException Locked="false" Priority="62" SemiHidden="false"    UnhideWhenUsed="false" Name="Light Grid Accent 2" /> <w:LsdException Locked="false" Priority="63" SemiHidden="false"    UnhideWhenUsed="false" Name="Medium Shading 1 Accent 2" /> <w:LsdException Locked="false" Priority="64" SemiHidden="false"    UnhideWhenUsed="false" Name="Medium Shading 2 Accent 2" /> <w:LsdException Locked="false" Priority="65" SemiHidden="false"    UnhideWhenUsed="false" Name="Medium List 1 Accent 2" /> <w:LsdException Locked="false" Priority="66" SemiHidden="false"    UnhideWhenUsed="false" Name="Medium List 2 Accent 2" /> <w:LsdException Locked="false" Priority="67" SemiHidden="false"    UnhideWhenUsed="false" Name="Medium Grid 1 Accent 2" /> <w:LsdException Locked="false" Priority="68" SemiHidden="false"    UnhideWhenUsed="false" Name="Medium Grid 2 Accent 2" /> <w:LsdException Locked="false" Priority="69" SemiHidden="false"    UnhideWhenUsed="false" Name="Medium Grid 3 Accent 2" /> <w:LsdException Locked="false" Priority="70" SemiHidden="false"    UnhideWhenUsed="false" Name="Dark List Accent 2" /> <w:LsdException Locked="false" Priority="71" SemiHidden="false"    UnhideWhenUsed="false" Name="Colorful Shading Accent 2" /> <w:LsdException Locked="false" Priority="72" SemiHidden="false"    UnhideWhenUsed="false" Name="Colorful List Accent 2" /> <w:LsdException Locked="false" Priority="73" SemiHidden="false"    UnhideWhenUsed="false" Name="Colorful Grid Accent 2" /> <w:LsdException Locked="false" Priority="60" SemiHidden="false"    UnhideWhenUsed="false" Name="Light Shading Accent 3" /> <w:LsdException Locked="false" Priority="61" SemiHidden="false"    UnhideWhenUsed="false" Name="Light List Accent 3" /> <w:LsdException Locked="false" Priority="62" SemiHidden="false"    UnhideWhenUsed="false" Name="Light Grid Accent 3" /> <w:LsdException Locked="false" Priority="63" SemiHidden="false"    UnhideWhenUsed="false" Name="Medium Shading 1 Accent 3" /> <w:LsdException Locked="false" Priority="64" SemiHidden="false"    UnhideWhenUsed="false" Name="Medium Shading 2 Accent 3" /> <w:LsdException Locked="false" Priority="65" SemiHidden="false"    UnhideWhenUsed="false" Name="Medium List 1 Accent 3" /> <w:LsdException Locked="false" Priority="66" SemiHidden="false"    UnhideWhenUsed="false" Name="Medium List 2 Accent 3" /> <w:LsdException Locked="false" Priority="67" SemiHidden="false"    UnhideWhenUsed="false" Name="Medium Grid 1 Accent 3" /> <w:LsdException Locked="false" Priority="68" SemiHidden="false"    UnhideWhenUsed="false" Name="Medium Grid 2 Accent 3" /> <w:LsdException Locked="false" Priority="69" SemiHidden="false"    UnhideWhenUsed="false" Name="Medium Grid 3 Accent 3" /> <w:LsdException Locked="false" Priority="70" SemiHidden="false"    UnhideWhenUsed="false" Name="Dark List Accent 3" /> <w:LsdException Locked="false" Priority="71" SemiHidden="false"    UnhideWhenUsed="false" Name="Colorful Shading Accent 3" /> <w:LsdException Locked="false" Priority="72" SemiHidden="false"    UnhideWhenUsed="false" Name="Colorful List Accent 3" /> <w:LsdException Locked="false" Priority="73" SemiHidden="false"    UnhideWhenUsed="false" Name="Colorful Grid Accent 3" /> <w:LsdException Locked="false" Priority="60" SemiHidden="false"    UnhideWhenUsed="false" Name="Light Shading Accent 4" /> <w:LsdException Locked="false" Priority="61" SemiHidden="false"    UnhideWhenUsed="false" Name="Light List Accent 4" /> <w:LsdException Locked="false" Priority="62" SemiHidden="false"    UnhideWhenUsed="false" Name="Light Grid Accent 4" /> <w:LsdException Locked="false" Priority="63" SemiHidden="false"    UnhideWhenUsed="false" Name="Medium Shading 1 Accent 4" /> <w:LsdException Locked="false" Priority="64" SemiHidden="false"    UnhideWhenUsed="false" Name="Medium Shading 2 Accent 4" /> <w:LsdException Locked="false" Priority="65" SemiHidden="false"    UnhideWhenUsed="false" Name="Medium List 1 Accent 4" /> <w:LsdException Locked="false" Priority="66" SemiHidden="false"    UnhideWhenUsed="false" Name="Medium List 2 Accent 4" /> <w:LsdException Locked="false" Priority="67" SemiHidden="false"    UnhideWhenUsed="false" Name="Medium Grid 1 Accent 4" /> <w:LsdException Locked="false" Priority="68" SemiHidden="false"    UnhideWhenUsed="false" Name="Medium Grid 2 Accent 4" /> <w:LsdException Locked="false" Priority="69" SemiHidden="false"    UnhideWhenUsed="false" Name="Medium Grid 3 Accent 4" /> <w:LsdException Locked="false" Priority="70" SemiHidden="false"    UnhideWhenUsed="false" Name="Dark List Accent 4" /> <w:LsdException Locked="false" Priority="71" SemiHidden="false"    UnhideWhenUsed="false" Name="Colorful Shading Accent 4" /> <w:LsdException Locked="false" Priority="72" SemiHidden="false"    UnhideWhenUsed="false" Name="Colorful List Accent 4" /> <w:LsdException Locked="false" Priority="73" SemiHidden="false"    UnhideWhenUsed="false" Name="Colorful Grid Accent 4" /> <w:LsdException Locked="false" Priority="60" SemiHidden="false"    UnhideWhenUsed="false" Name="Light Shading Accent 5" /> <w:LsdException Locked="false" Priority="61" SemiHidden="false"    UnhideWhenUsed="false" Name="Light List Accent 5" /> <w:LsdException Locked="false" Priority="62" SemiHidden="false"    UnhideWhenUsed="false" Name="Light Grid Accent 5" /> <w:LsdException Locked="false" Priority="63" SemiHidden="false"    UnhideWhenUsed="false" Name="Medium Shading 1 Accent 5" /> <w:LsdException Locked="false" Priority="64" SemiHidden="false"    UnhideWhenUsed="false" Name="Medium Shading 2 Accent 5" /> <w:LsdException Locked="false" Priority="65" SemiHidden="false"    UnhideWhenUsed="false" Name="Medium List 1 Accent 5" /> <w:LsdException Locked="false" Priority="66" SemiHidden="false"    UnhideWhenUsed="false" Name="Medium List 2 Accent 5" /> <w:LsdException Locked="false" Priority="67" SemiHidden="false"    UnhideWhenUsed="false" Name="Medium Grid 1 Accent 5" /> <w:LsdException Locked="false" Priority="68" SemiHidden="false"    UnhideWhenUsed="false" Name="Medium Grid 2 Accent 5" /> <w:LsdException Locked="false" Priority="69" SemiHidden="false"    UnhideWhenUsed="false" Name="Medium Grid 3 Accent 5" /> <w:LsdException Locked="false" Priority="70" SemiHidden="false"    UnhideWhenUsed="false" Name="Dark List Accent 5" /> <w:LsdException Locked="false" Priority="71" SemiHidden="false"    UnhideWhenUsed="false" Name="Colorful Shading Accent 5" /> <w:LsdException Locked="false" Priority="72" SemiHidden="false"    UnhideWhenUsed="false" Name="Colorful List Accent 5" /> <w:LsdException Locked="false" Priority="73" SemiHidden="false"    UnhideWhenUsed="false" Name="Colorful Grid Accent 5" /> <w:LsdException Locked="false" Priority="60" SemiHidden="false"    UnhideWhenUsed="false" Name="Light Shading Accent 6" /> <w:LsdException Locked="false" Priority="61" SemiHidden="false"    UnhideWhenUsed="false" Name="Light List Accent 6" /> <w:LsdException Locked="false" Priority="62" SemiHidden="false"    UnhideWhenUsed="false" Name="Light Grid Accent 6" /> <w:LsdException Locked="false" Priority="63" SemiHidden="false"    UnhideWhenUsed="false" Name="Medium Shading 1 Accent 6" /> <w:LsdException Locked="false" Priority="64" SemiHidden="false"    UnhideWhenUsed="false" Name="Medium Shading 2 Accent 6" /> <w:LsdException Locked="false" Priority="65" SemiHidden="false"    UnhideWhenUsed="false" Name="Medium List 1 Accent 6" /> <w:LsdException Locked="false" Priority="66" SemiHidden="false"    UnhideWhenUsed="false" Name="Medium List 2 Accent 6" /> <w:LsdException Locked="false" Priority="67" SemiHidden="false"    UnhideWhenUsed="false" Name="Medium Grid 1 Accent 6" /> <w:LsdException Locked="false" Priority="68" SemiHidden="false"    UnhideWhenUsed="false" Name="Medium Grid 2 Accent 6" /> <w:LsdException Locked="false" Priority="69" SemiHidden="false"    UnhideWhenUsed="false" Name="Medium Grid 3 Accent 6" /> <w:LsdException Locked="false" Priority="70" SemiHidden="false"    UnhideWhenUsed="false" Name="Dark List Accent 6" /> <w:LsdException Locked="false" Priority="71" SemiHidden="false"    UnhideWhenUsed="false" Name="Colorful Shading Accent 6" /> <w:LsdException Locked="false" Priority="72" SemiHidden="false"    UnhideWhenUsed="false" Name="Colorful List Accent 6" /> <w:LsdException Locked="false" Priority="73" SemiHidden="false"    UnhideWhenUsed="false" Name="Colorful Grid Accent 6" /> <w:LsdException Locked="false" Priority="19" SemiHidden="false"    UnhideWhenUsed="false" QFormat="true" Name="Subtle Emphasis" /> <w:LsdException Locked="false" Priority="21" SemiHidden="false"    UnhideWhenUsed="false" QFormat="true" Name="Intense Emphasis" /> <w:LsdException Locked="false" Priority="31" SemiHidden="false"    UnhideWhenUsed="false" QFormat="true" Name="Subtle Reference" /> <w:LsdException Locked="false" Priority="32" SemiHidden="false"    UnhideWhenUsed="false" QFormat="true" Name="Intense Reference" /> <w:LsdException Locked="false" Priority="33" SemiHidden="false"    UnhideWhenUsed="false" QFormat="true" Name="Book Title" /> <w:LsdException Locked="false" Priority="37" Name="Bibliography" /> <w:LsdException Locked="false" Priority="39" QFormat="true" Name="TOC Heading" /> </w:LatentStyles> </xml><![endif]--><!--  /* Font Definitions */  @font-face 	{font-family:"Cambria Math"; 	panose-1:2 4 5 3 5 4 6 3 2 4; 	mso-font-charset:0; 	mso-generic-font-family:roman; 	mso-font-pitch:variable; 	mso-font-signature:-1610611985 1107304683 0 0 159 0;} @font-face 	{font-family:Calibri; 	panose-1:2 15 5 2 2 2 4 3 2 4; 	mso-font-charset:0; 	mso-generic-font-family:swiss; 	mso-font-pitch:variable; 	mso-font-signature:-1610611985 1073750139 0 0 159 0;}  /* Style Definitions */  p.MsoNormal, li.MsoNormal, div.MsoNormal 	{mso-style-unhide:no; 	mso-style-qformat:yes; 	mso-style-parent:""; 	margin-top:0in; 	margin-right:0in; 	margin-bottom:10.0pt; 	margin-left:0in; 	line-height:115%; 	mso-pagination:widow-orphan; 	font-size:11.0pt; 	font-family:"Calibri","sans-serif"; 	mso-ascii-font-family:Calibri; 	mso-ascii-theme-font:minor-latin; 	mso-fareast-font-family:Calibri; 	mso-fareast-theme-font:minor-latin; 	mso-hansi-font-family:Calibri; 	mso-hansi-theme-font:minor-latin; 	mso-bidi-font-family:Arial; 	mso-bidi-theme-font:minor-bidi;} .MsoChpDefault 	{mso-style-type:export-only; 	mso-default-props:yes; 	mso-ascii-font-family:Calibri; 	mso-ascii-theme-font:minor-latin; 	mso-fareast-font-family:Calibri; 	mso-fareast-theme-font:minor-latin; 	mso-hansi-font-family:Calibri; 	mso-hansi-theme-font:minor-latin; 	mso-bidi-font-family:Arial; 	mso-bidi-theme-font:minor-bidi;} .MsoPapDefault 	{mso-style-type:export-only; 	margin-bottom:10.0pt; 	line-height:115%;} @page Section1 	{size:8.5in 11.0in; 	margin:1.0in 1.0in 1.0in 1.0in; 	mso-header-margin:.5in; 	mso-footer-margin:.5in; 	mso-paper-source:0;} div.Section1 	{page:Section1;} --></p>
<p><!--[if gte mso 10]> <mce:style><!   /* Style Definitions */  table.MsoNormalTable 	{mso-style-name:"Table Normal"; 	mso-tstyle-rowband-size:0; 	mso-tstyle-colband-size:0; 	mso-style-noshow:yes; 	mso-style-priority:99; 	mso-style-qformat:yes; 	mso-style-parent:""; 	mso-padding-alt:0in 5.4pt 0in 5.4pt; 	mso-para-margin-top:0in; 	mso-para-margin-right:0in; 	mso-para-margin-bottom:10.0pt; 	mso-para-margin-left:0in; 	line-height:115%; 	mso-pagination:widow-orphan; 	font-size:11.0pt; 	font-family:"Calibri","sans-serif"; 	mso-ascii-font-family:Calibri; 	mso-ascii-theme-font:minor-latin; 	mso-fareast-font-family:"Times New Roman"; 	mso-fareast-theme-font:minor-fareast; 	mso-hansi-font-family:Calibri; 	mso-hansi-theme-font:minor-latin;} --></p>
<p><!--[endif]--></p>
<p class="MsoNormal" style="text-align: justify; line-height: normal;"><span style="font-size: 12pt; font-family: &quot;Times New Roman&quot;,&quot;serif&quot;;">As of December 2008, 3GPP documentation for Long Term Evolution networks has started to mention <strong>Home eNB</strong> as part of the Evolved UTRAN. This move can be a significant advantage for the final users, only if service providers fully recognize the extent of service this final addition can offer. This recognition might require a careful study of 802.11a/b/g Access Points, considering the similarities of the two products. Both these products are the front end of a network to final customers. While these final points are accessible to the customers, the actual network is not controlled by them.</span></p>
<p class="MsoNormal" style="text-align: justify; line-height: normal;"><span style="font-size: 12pt; font-family: &quot;Times New Roman&quot;,&quot;serif&quot;;"><span id="more-99"></span><br />
</span></p>
<p class="MsoNormal" style="text-align: justify; line-height: normal;"><span style="font-size: 12pt; font-family: &quot;Times New Roman&quot;,&quot;serif&quot;;">Most APs initially were merely wireless transmitters, but they soon started evolving into more sophisticated equipments. The need to provide more functionality for the end user to adjust settings, e.g. channel or user access rules, resulted in simple interfaces to configure the AP. Currently wireless APs are commonly acting as firewalls, switches, DSL modems.  But the true revolution for the APs happened when vendors such as Linksys started to provide open source firmware for their products. Because of the delay in this revolution, many golden opportunities are gone and we do not see as many diverse applications.</span></p>
<p class="MsoNormal" style="text-align: justify; line-height: normal;"><span style="font-size: 12pt; font-family: &quot;Times New Roman&quot;,&quot;serif&quot;;">Given how larger organization such as universities might consider deploying a number of Home eNBs throughout their campus, there is a high level of interaction that would be only limited to these eNBs. As an example, in a university campus many calls and data interactions would be between students on the same area. Or consider an event like SXSW. While this year AT&amp;T added enough resources to guarantee good coverage, smaller scale events do not motivate service provider to make such adjustments. Instead the organizing institute is well aware of the scale and the available resources and would be able to allocate more eNBs to the event area. One other aspect is access control: if I am paying for a Home eNB, I may not want my neighbor to user it for free unless it is an emergency call.</span></p>
<p class="MsoNormal" style="text-align: justify; line-height: normal;"><span style="font-size: 12pt; font-family: &quot;Times New Roman&quot;,&quot;serif&quot;;">By providing good configuration options to the deploying organization, all sides of such scenario would benefit: the organization would enjoy faster service on their campus, the service provider would not have to worry about resource management and the manufacturer would ensure better sale of its products.</span></p>
<p class="MsoNormal" style="text-align: justify; line-height: normal;"><span style="font-size: 12pt; font-family: &quot;Times New Roman&quot;,&quot;serif&quot;;">There are many challenges in providing such control to the final user. However, I believe the designers of 3GPP LTE have started taking initial steps and now the manufacturers need to move forward.</span></p>
<h3>Related:</h3>
<ul>
<li><span style="font-size: 12pt; font-family: &quot;Times New Roman&quot;,&quot;serif&quot;;"><a href="http://www.nextel.com/en/services/airave/index.shtml">Sprint Airave</a></span></li>
<li><span style="font-size: 12pt; font-family: &quot;Times New Roman&quot;,&quot;serif&quot;;"><a href="http://www.t-mobile.com/shop/addons/services/information.aspx?tp=Svc_Tab_TMobileAtHome">T-Mobile @Home</a></span></li>
<li><span style="font-size: 12pt; font-family: &quot;Times New Roman&quot;,&quot;serif&quot;;"><a href="http://www.verizonwireless.com/b2c/store/accessory?action=gotoFemtocell">Verizon Wireless Network Extender</a></span></li>
<li><span style="font-size: 12pt; font-family: &quot;Times New Roman&quot;,&quot;serif&quot;;"><a href="http://www.dslreports.com/shownews/ATT-Femtocell-Service-Website-Goes-Live-100445">AT&amp;T: 3G Microcell?<br />
</a></span></li>
<li><span style="font-size: 12pt; font-family: &quot;Times New Roman&quot;,&quot;serif&quot;;"><a href="http://www.dailywireless.org/2009/01/26/femtocells-for-everyone/">Femtocells for Everyone</a><br />
</span></li>
</ul>
]]></content:encoded>
			<wfw:commentRss>http://www.nourbakhsh.ir/blog/2009/04/home-enb-great-oppotunity-for-3gpp-lte/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>Atomicity</title>
		<link>http://www.nourbakhsh.ir/blog/2008/04/atomicity/</link>
		<comments>http://www.nourbakhsh.ir/blog/2008/04/atomicity/#comments</comments>
		<pubDate>Thu, 01 May 2008 01:03:13 +0000</pubDate>
		<dc:creator>Ehsan</dc:creator>
				<category><![CDATA[General]]></category>
		<category><![CDATA[atm]]></category>
		<category><![CDATA[atomic-transaction]]></category>
		<category><![CDATA[atomicity]]></category>
		<category><![CDATA[wells-fargo]]></category>

		<guid isPermaLink="false">http://www.nourbakhsh.ir/blog/?p=90</guid>
		<description><![CDATA[During my undergrad Database course, our professor explained atomicity of transactions with the very trivial example of withdrawing cash from ATM machines: either your whole transaction should fail or it should completely succeed. It means your account balance should not change unless you have got your money, and if you have received the cash your [...]]]></description>
			<content:encoded><![CDATA[<p>During my undergrad Database course, our professor explained <a title="Wikipedia on Atomcitiy" href="http://en.wikipedia.org/wiki/Atomicity_%28database_systems%29" target="_blank">atomicity of transactions</a> with the very trivial example of withdrawing cash from ATM machines: either your whole transaction should fail or it should completely succeed. It means your account balance should not change unless you have got your money, and if you have received the cash your account balance should have also decreased.</p>
<p>Unfortunately some of the people who actually design ATM machines have not passed this course it seems. Last Wednesday I withdrew some cash from an ordinary ATM, and the machine failed to return my cash. But my account balance was reduced! The machine actually was able to tell me that it had failed and the operation was canceled, but it seems it forgot to tell its friends back in the Wells Fargo network to cancel the operation. I had to call the customer service a couple of times to get my money back.</p>
<p>There is no conclusion from this post. It just surprised me that a simple basic idea we are taught in classes is not actually implemented in real life.</p>
<p><span style="text-decoration: underline;"><span style="color: #ff0000;">UPDATE:</span></span> My old friend <a title="Pooya Karimian" href="http://www.pooyak.com">Pooya</a> asked in the comments if the ATM in question was a <a title="Diebold on Wikipedia" href="http://en.wikipedia.org/wiki/Diebold">Diebold</a> ATM. Diebold is the company that also makes voting machines in US. Next time I was in Student Union I checked the ATM, and guess what: it is a Diebold ATM! I now have some serious questions in my mind!</p>
<p>I should mention that Wells Fargo checking people were very nice and quick and solved my issue by a couple of phone calls.</p>
<p><a href="http://www.nourbakhsh.ir/blog/wp-content/uploads/diebold_1.jpg" rel="lightbox"><img class="alignleft size-medium wp-image-91" title="diebold_1" src="http://www.nourbakhsh.ir/blog/wp-content/uploads/diebold_1-225x300.jpg" alt="Diebold ATM machine" width="225" height="300" /></a><a href="http://www.nourbakhsh.ir/blog/wp-content/uploads/diebold_2.jpg" rel="lightbox"><img class="alignright size-medium wp-image-92" title="diebold_2" src="http://www.nourbakhsh.ir/blog/wp-content/uploads/diebold_2-300x225.jpg" alt="Dieold Sign on their ATM" width="300" height="225" /></a></p>
]]></content:encoded>
			<wfw:commentRss>http://www.nourbakhsh.ir/blog/2008/04/atomicity/feed/</wfw:commentRss>
		<slash:comments>1</slash:comments>
		</item>
		<item>
		<title>Capability Maturity Model Integration (CMMI)</title>
		<link>http://www.nourbakhsh.ir/blog/2007/09/capability-maturity-model-integration-cmmi/</link>
		<comments>http://www.nourbakhsh.ir/blog/2007/09/capability-maturity-model-integration-cmmi/#comments</comments>
		<pubDate>Wed, 26 Sep 2007 16:10:28 +0000</pubDate>
		<dc:creator>Ehsan</dc:creator>
				<category><![CDATA[General]]></category>

		<guid isPermaLink="false">http://www.nourbakhsh.ir/blog/archives/71</guid>
		<description><![CDATA[There are concepts that seem to be obvious when you read them in a book. But when you try to practically perform them in the real world, you see the many details that you did not notice before. Software engineering is one area in which this happens a lot. Most of the topics look very [...]]]></description>
			<content:encoded><![CDATA[<p> There are concepts that seem to be obvious when you read them in a book. But when you try to practically perform them in the real world, you see the many details that you did not notice before. Software engineering is one area in which this happens a lot. Most of the topics look very <em>basic</em> and you think by yourself that these are what we do <em>naturally</em>. But if an institute is not really careful, they will soon find out that routines have gone out of control. Divisions start to short-cut the procedures to get faster results. So the necessary details needed for the intended perfection of final product or service are not achieved. And if an assessment is performed, everyone is sure they &#8216;almost&#8217; did all the procedures precisely.</p>
<p>CMMI, from my point of view, is the key to solving this problem. If this model is used it focuses on identifying processes, refining them and then keeps tuning them and revising them over time. This way you can expect to reach your standards after a time, instead of wildly applying different software engineering methods.</p>
<p>During my Software Project Management course with Dr. Mili, me and my two other teammates Jason and Shiva did a presentation on the CMMI topic. This was one of the many topics covered in the course, some of them by students in the form of presentations. I had already taken this course during my undergrad, but my short work experience showed me how important it is to know these things. From my point of view, this course is one of the things that distinguishes a manager from a developer. Also knowing topics covered in this course enables you to talk to higher management fluently.</p>
<p>Anyways, we used a <a href="http://subversion.tigris.org/" title="Subversion website">Subversion</a> repository for revision control. It was not very efficient in terms of conflict resolution because of the fact that we could not use diff on powerpoint files. But using subversion was definitely advantageous since we could update each other without sending messy emails with huge attachments.</p>
<p>The final presentation is available <a href="http://www.nourbakhsh.ir/cmmi/CMMI%20Project%20Team.ppt" title="CMMI presentation, UTD Summer 2007">here</a>, printable version <a href="http://www.nourbakhsh.ir/cmmi/CMMI%20Project%20Team-print.pdf" title="CMMI presentation, print version">here</a>. I highly recommend  the course in case you are considering computer related jobs in future.</p>
]]></content:encoded>
			<wfw:commentRss>http://www.nourbakhsh.ir/blog/2007/09/capability-maturity-model-integration-cmmi/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>diggy night</title>
		<link>http://www.nourbakhsh.ir/blog/2007/05/diggy-night/</link>
		<comments>http://www.nourbakhsh.ir/blog/2007/05/diggy-night/#comments</comments>
		<pubDate>Wed, 02 May 2007 03:52:18 +0000</pubDate>
		<dc:creator>Ehsan</dc:creator>
				<category><![CDATA[fun]]></category>
		<category><![CDATA[General]]></category>
		<category><![CDATA[life]]></category>
		<category><![CDATA[Web]]></category>

		<guid isPermaLink="false">http://www.nourbakhsh.ir/blog/archives/48</guid>
		<description><![CDATA[I can&#8217;t resist writing it. Takes 5 minutes of my qualifier exam time, but is worth it. A digg user posted an item about a HD-DVD code, and the fact it was taken down because of a takedown notice. Digg removed that. People noticed that and informed each other of Digg&#8217;s removing the dugg story. [...]]]></description>
			<content:encoded><![CDATA[<p>I can&#8217;t resist writing it. Takes 5 minutes of my qualifier exam time, but is worth it.</p>
<p>A digg user posted an item about a HD-DVD code, and the fact it was taken down because of a takedown notice. Digg removed that. People noticed that and informed each other of Digg&#8217;s removing the dugg story. But Digg removed those too. People dugg all of this again, Digg un-dugged. People dugg, &#8230;.</p>
<p>The result? Look at this:</p>
<p><a href="http://www.nourbakhsh.ir/blog/wp-content/uploads/2007/05/digg-top.JPG" title="Direct link to file"></a></p>
<p style="text-align: center"><a href="http://www.nourbakhsh.ir/blog/wp-content/uploads/2007/05/digg-top.JPG" onclick="return false;" title="Direct link to file" rel="lightbox"><img src="http://www.nourbakhsh.ir/blog/wp-content/uploads/2007/05/digg-top.thumbnail.JPG" title="Digg attack" alt="Digg attack" border="0" height="128" width="83" /></a></p>
<p>You think it is over? NO! The same is happening with Wikipedia: <a href="http://en.wikipedia.org/wiki/HDDVD_Night" title="Wiki on HDDVD_Night" target="_blank">http://en.wikipedia.org/wiki/HDDVD_Night</a>. People [write in] wiki, Wiki removes. People (write in) wiki, &#8230;.</p>
]]></content:encoded>
			<wfw:commentRss>http://www.nourbakhsh.ir/blog/2007/05/diggy-night/feed/</wfw:commentRss>
		<slash:comments>1</slash:comments>
		</item>
		<item>
		<title>Tragedy at Virginia Tech</title>
		<link>http://www.nourbakhsh.ir/blog/2007/04/tragedy-at-virginia-tech/</link>
		<comments>http://www.nourbakhsh.ir/blog/2007/04/tragedy-at-virginia-tech/#comments</comments>
		<pubDate>Wed, 18 Apr 2007 03:41:57 +0000</pubDate>
		<dc:creator>Ehsan</dc:creator>
				<category><![CDATA[General]]></category>
		<category><![CDATA[life]]></category>

		<guid isPermaLink="false">http://www.nourbakhsh.ir/blog/archives/47</guid>
		<description><![CDATA[This is so sad to witness people lose their lives. There is no need to say how depressing, shocking and terrible it is to know they were some young students, attending their daily classes. This is so sad, so unacceptable. Even in something like this some people show courage: Liviu Librescu, 76, an engineering science [...]]]></description>
			<content:encoded><![CDATA[<p>This is so sad to witness people lose their lives. There is no need to say how depressing<span style="font-size: 12pt"></span>, shocking and terrible it is to know they were some young students, attending their daily classes.  This is so sad, so unacceptable.</p>
<p>Even in something like this some people show  courage:</p>
<blockquote><p> Liviu Librescu, 76, an engineering science and mathematics lecturer, tried to stop the gunman from entering his classroom by blocking the door before he was fatally shot, his son said Tuesday from Tel Aviv. [<a href="http://news.yahoo.com/s/ap/20070418/ap_on_re_eu/virginia_tech_world_view" target="_blank">Yahoo! news</a>]</p></blockquote>
<p>I truly  sympathize with families of the victims.</p>
<ul>
<li><a href="http://www.time.com/time/nation/article/0,8599,1611569,00.html">Time.com Report</a></li>
<li><a href="http://www/spotlight/virginia-tech.html">UT Dallas Responds</a></li>
<li><a href="http://www2.irna.com/en/news/view/line-22/0704178264163914.htm">Iran expressing sentiments of condolence<br />
</a></li>
</ul>
]]></content:encoded>
			<wfw:commentRss>http://www.nourbakhsh.ir/blog/2007/04/tragedy-at-virginia-tech/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
	</channel>
</rss>

