<?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>OFFICIALLY Shahab ... &#187; IFI</title>
	<atom:link href="http://www.shahabfm.com/archives/tag/ifi/feed/" rel="self" type="application/rss+xml" />
	<link>http://www.shahabfm.com</link>
	<description>Somewhere for me to express myself &#38; my works ...</description>
	<lastBuildDate>Wed, 31 Aug 2011 07:58:08 +0000</lastBuildDate>
	<language>en</language>
	<sy:updatePeriod>hourly</sy:updatePeriod>
	<sy:updateFrequency>1</sy:updateFrequency>
	<generator>http://wordpress.org/?v=3.3.1</generator>
		<item>
		<title>Android development tricks</title>
		<link>http://www.shahabfm.com/archives/2011/05/courseapp-android-development-tricks/</link>
		<comments>http://www.shahabfm.com/archives/2011/05/courseapp-android-development-tricks/#comments</comments>
		<pubDate>Thu, 19 May 2011 10:53:56 +0000</pubDate>
		<dc:creator>Shahab</dc:creator>
				<category><![CDATA[Android]]></category>
		<category><![CDATA[Java]]></category>
		<category><![CDATA[My Projects]]></category>
		<category><![CDATA[My Studies]]></category>
		<category><![CDATA[Programming]]></category>
		<category><![CDATA[Shahab]]></category>
		<category><![CDATA[UiO]]></category>
		<category><![CDATA[courseApp]]></category>
		<category><![CDATA[IFI]]></category>
		<category><![CDATA[Mobile application]]></category>
		<category><![CDATA[Mobile Programming]]></category>
		<category><![CDATA[Norway]]></category>
		<category><![CDATA[Programming Tricks]]></category>
		<category><![CDATA[Projects]]></category>
		<category><![CDATA[University of Oslo]]></category>

		<guid isPermaLink="false">http://www.shahabfm.com/?p=884</guid>
		<description><![CDATA[This is a summay of the tricks I have learned making an application called courseApp project.  This application was developed in the Mobile Information Systems that I took at University of Oslo. Eclipse is a very good tool to use for Android development. To start with you need to download Andriod SDK. After installing both &#8230; <a href="http://www.shahabfm.com/archives/2011/05/courseapp-android-development-tricks/">Read more <span class="meta-nav">&#8594;</span></a>]]></description>
			<content:encoded><![CDATA[<p>This is a summay of the tricks I have learned making an application called <a title="courseApp" href="http://www.uio.no/studier/emner/matnat/ifi/INF5261/v11/studentprojects/android/" target="_blank">courseApp project</a>.  This application was developed in the Mobile Information Systems that I took at University of Oslo. <a href="http://www.eclipse.org/downloads/" target="_blank">Eclipse </a>is a very good tool to use for Android development. To start with you need to download A<a title="Android SDK" href="http://developer.android.com/sdk/index.html" target="_blank">ndriod SDK</a>. After installing both of these(and ofcourse Java Development Kit, JDK which is a pre-requirement for both of these), you need to make Eclipse and Android SDK talk together. This is done by a plugin called &#8220;<a href="http://developer.android.com/sdk/eclipse-adt.html" target="_blank">ADT plugin for Eclipse</a>&#8221; from Google. You can read more about how to install this plugin by <a href="http://developer.android.com/sdk/eclipse-adt.html" target="_blank">clicking here</a>. <strong>In case of Android SDK installation(the exe file) doesn&#8217;t recognize JDK </strong>on your computer, you can simply download the <strong>zip </strong>file and <strong>extract </strong>it. Don&#8217;t forget <strong>appending that folder to the %PATH% environment variable</strong>. Now some more tips follows :</p>
<p><strong>background color for your layout :<br />
</strong>add the following code to your layout XML code(#ff32cf is the color code)<br />
<span style="font-family: Consolas, Monaco, 'Courier New', Courier, monospace; font-size: 12px; line-height: 18px; white-space: pre;"> </span></p>
<pre class="brush: java; title: ; notranslate">android:background=&quot;#ff23cf&quot;</pre>
<p>Background Image for your layout :<br />
1- Add the image you want to the layout folder of your project.<br />
2- Add the following code to your layout XML code<br />
<span style="font-family: Consolas, Monaco, 'Courier New', Courier, monospace; font-size: 12px; line-height: 18px; white-space: pre;"> </span></p>
<pre class="brush: java; title: ; notranslate">android:background=&quot;@drawable/bbg&quot;</pre>
<p><strong>EditText features :</strong><br />
one of the features I want to talk about is <strong><em>android:singleLine </em></strong>which is very useful. If you want to get some info from the user, this text box is a good tool to use, but make sure you set the SingleLine variable to true. If not if they paste a 20 lines of text by mistake your whole GUI gets out of shape. Also if you want to use this for example to write an email text, then this should be set to false as you want it to contain several lines. The good thing about several lines EditText is that they do have scrolling function.<span style="font-family: Consolas, Monaco, 'Courier New', Courier, monospace;"><span style="font-size: 12px; line-height: 18px; white-space: pre;"><br />
</span></span></p>
<pre class="brush: java; title: ; notranslate">&lt;EditText ... android:singleLine=&quot;true&quot;&gt;//Single Line box for getting email address
&lt;/span&gt;&lt;span style=&quot;font-family: Consolas, Monaco, 'Courier New', Courier, monospace; font-size: 12px; line-height: 18px; white-space: pre;&quot;&gt;&lt;EditText ... android:singleLine=&quot;false&quot;&gt;//Multi Line box for getting email text</pre>
<p>in case you want<strong> limit the number of lines</strong> of an EditText:</p>
<pre class="brush: java; title: ; notranslate">&lt;span style=&quot;font-family: monospace; font-size: 12px; line-height: 18px; white-space: pre;&quot;&gt;&lt;EditText android:layout_width=&quot;fill_parent&quot;&lt;/span&gt;
&lt;pre&gt;&lt;code&gt;            android:layout_height=&quot;wrap_content&quot; android:gravity=&quot;center&quot;
android:singleLine=&quot;false&quot; android:lines=&quot;5&quot;
android:layout_marginLeft=&quot;10dip&quot; android:layout_marginRight=&quot;10dip&quot;
/&gt;&lt;/code&gt;&lt;span style=&quot;font-family: Georgia, 'Times New Roman', 'Bitstream Charter', Times, serif; font-size: 13px; line-height: 19px; white-space: normal;&quot;&gt;</pre>
<p>&nbsp;</p>
<p><strong>Simple Item List :<br />
</strong>Setting up a simple Item list with an already filled Arrayadapter.</p>
<pre class="brush: java; title: ; notranslate">

static final String[] COUNTRIES = new String[] {&quot;Afghanistan&quot;, &quot;Albania&quot;, &quot;Algeria&quot;, &quot;American Samoa&quot;, &quot;Andorra&quot;,&quot;Angola&quot;, &quot;...&quot;}
&lt;pre&gt;setListAdapter(new ArrayAdapter&lt;String&gt;(this,
android.R.layout.simple_list_item_1, COUNTRIES));
getListView().setTextFilterEnabled(true);&lt;/pre&gt;
</pre>
<p><strong>Drop Down List :<br />
</strong>In Android drop down list is a little bit complicated to give value to. You first need to add one Spinner to your layout and then connect it to</p>
<pre class="brush: java; title: ; notranslate"> String[] Countries = { &quot;India&quot;, &quot;France&quot;, &quot;Japan&quot;, &quot;China&quot;, &quot;U.S&quot; };

// //////////////////Countries Spinner/////////////////////////////////
SpinnerCountries = (Spinner) findViewById(R.id.Spinner01);

// //////////////////////////////////////////////////////////////
// create an arrayAdapter an assign it to the spinner
AdapterCountries = new ArrayAdapter&lt;CharSequence&gt;(this,
android.R.layout.simple_spinner_item);
AdapterCountries
.setDropDownViewResource(android.R.layout.simple_spinner_dropdown_item);
SpinnerCountries.setAdapter(AdapterCountries);

int lenCountries = Countries.length;

for (int i = 0; i &lt; lenCountries; i++) {
// test += Areas[i] + &quot;\n&quot;;
AdapterCountries.add(Countries[i]);
}</pre>
<p><a title="Spinner &amp; drop down list in Android" href="http://www.dotnetexpertsforum.com/dropdownlist-or-combobox-or-spinner-in-android-t1352.html" target="_blank">source</a></p>
<p><a title="Spinner &amp; drop down list in Android" href="http://www.dotnetexpertsforum.com/dropdownlist-or-combobox-or-spinner-in-android-t1352.html" target="_blank"></a><strong>Disabling the Landscape Mode :</strong><br />
You have two ways to do this, either in the code, or in the XML layout file :</p>
<p>XML :<br />
<span style="font-family: Consolas, Monaco, 'Courier New', Courier, monospace; font-size: 12px; line-height: 18px; white-space: pre;"> </span></p>
<pre class="brush: java; title: ; notranslate">&lt;/span&gt;&lt;span style=&quot;font-family: monospace; font-size: 12px; line-height: 18px; white-space: pre;&quot;&gt;&lt;activity android:name=&quot;.SomeActivity&quot;&lt;/span&gt;
&lt;pre&gt;
&lt;pre&gt;&lt;code&gt;              android:label=&quot;@string/app_name&quot;
android:screenOrientation=&quot;portrait&quot;&gt;&lt;/code&gt;</pre>
<p>OR in the code :</p>
<p>[/java]</p>
<p><span style="font-family: monospace;">setRequestedOrientation (ActivityInfo.SCREEN_ORIENTATION_PORTRAIT);     //  Fixed Portrait orientation[</span>/java]</p>
<p><strong>Layouts in Android : </strong><br />
<strong>LinearLayout </strong>:<br />
<code><a href="http://developer.android.com/reference/android/widget/LinearLayout.html">LinearLayout</a></code> aligns all children in a single direction — vertically or horizontally, depending on how you define the <code>orientation</code> attribute. All children are stacked one after the other, so a vertical list will only have one child per row, no matter how wide they are, and a horizontal list will only be one row high (the height of the tallest child, plus padding). A <code><a href="http://developer.android.com/reference/android/widget/LinearLayout.html">LinearLayout</a></code> respects <em>margin</em>s between children and the <em>gravity</em> (right, center, or left alignment) of each child.</p>
<p><strong>TableLayout :<br />
</strong><code><a href="http://developer.android.com/reference/android/widget/TableLayout.html">TableLayout</a></code> positions its children into rows and columns. TableLayout containers do not display border lines for their rows, columns, or cells. The table will have as many columns as the row with the most cells. A table can leave cells empty, but cells cannot span columns, as they can in HTML.</p>
<p><strong>RelativeLayout<br />
</strong><code><a href="http://developer.android.com/reference/android/widget/RelativeLayout.html">RelativeLayout</a></code> lets child views specify their position relative to the parent view or to each other (specified by ID). So you can align two elements by right border, or make one below another, centered in the screen, centered left, and so on. Elements are rendered in the order given, so if the first element is centered in the screen, other elements aligning themselves to that element will be aligned relative to screen center. Also, because of this ordering, if using XML to specify this layout, the element that you will reference (in order to position other view objects) must be listed in the XML file before you refer to it from the other views via its reference ID.</p>
<div style="float: right; margin-left: 10px;"><a href="http://twitter.com/share?url=http://www.shahabfm.com/archives/2011/05/courseapp-android-development-tricks/&via=shahabfm&text=Android development tricks&related=:&lang=en&count=horizontal" class="twitter-share-button">Tweet</a><script type="text/javascript" src="http://platform.twitter.com/widgets.js"></script></div>]]></content:encoded>
			<wfw:commentRss>http://www.shahabfm.com/archives/2011/05/courseapp-android-development-tricks/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>Super Crawler entering the design phase</title>
		<link>http://www.shahabfm.com/archives/2010/07/super-crawler-entering-the-design-phase/</link>
		<comments>http://www.shahabfm.com/archives/2010/07/super-crawler-entering-the-design-phase/#comments</comments>
		<pubDate>Wed, 21 Jul 2010 10:07:30 +0000</pubDate>
		<dc:creator>Shahab</dc:creator>
				<category><![CDATA[My Projects]]></category>
		<category><![CDATA[My Studies]]></category>
		<category><![CDATA[Shahab]]></category>
		<category><![CDATA[UiO]]></category>
		<category><![CDATA[hobby]]></category>
		<category><![CDATA[IFI]]></category>
		<category><![CDATA[Norway]]></category>
		<category><![CDATA[Robotica Osloensis]]></category>
		<category><![CDATA[Robotics]]></category>
		<category><![CDATA[Super Crawler]]></category>
		<category><![CDATA[University of Oslo]]></category>

		<guid isPermaLink="false">http://www.shahabfm.com/?p=670</guid>
		<description><![CDATA[As the programming phase is almost finished, we have entered the design phase. We are working on our 3D design and plan to buy tracking belts and sprocket wheels. At the same time we are discussing the sponsorship of the project with RobotShop.com &#38; hope we receive a positive answer from them. You can read &#8230; <a href="http://www.shahabfm.com/archives/2010/07/super-crawler-entering-the-design-phase/">Read more <span class="meta-nav">&#8594;</span></a>]]></description>
			<content:encoded><![CDATA[<p>As the programming phase is almost finished, we have entered the design phase. We are working on our 3D design and plan to buy tracking belts and sprocket wheels. At the same time we are discussing the sponsorship of the project with RobotShop.com &amp; hope we receive a positive answer from them. You can read full reports on our activities &amp; have full access to our codes and designs on <a href="http://robotica.ifi.uio.no/forum/viewtopic.php?f=8&amp;t=5" target="_blank">Super Crawler worklog</a> at Robotica Osloensis forum or <a href="http://supercrawler.blogspot.com" target="_blank">the project weblog</a>.</p>
<p style="text-align: center;"><img src="http://i25.tinypic.com/5p4z2x.png" alt="Bilde" /></p>
<div style="float: right; margin-left: 10px;"><a href="http://twitter.com/share?url=http://www.shahabfm.com/archives/2010/07/super-crawler-entering-the-design-phase/&via=shahabfm&text=Super Crawler entering the design phase&related=:&lang=en&count=horizontal" class="twitter-share-button">Tweet</a><script type="text/javascript" src="http://platform.twitter.com/widgets.js"></script></div>]]></content:encoded>
			<wfw:commentRss>http://www.shahabfm.com/archives/2010/07/super-crawler-entering-the-design-phase/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>New Ideas on Robot feet &#8230;</title>
		<link>http://www.shahabfm.com/archives/2010/03/new-ideas/</link>
		<comments>http://www.shahabfm.com/archives/2010/03/new-ideas/#comments</comments>
		<pubDate>Fri, 19 Mar 2010 22:06:31 +0000</pubDate>
		<dc:creator>Shahab</dc:creator>
				<category><![CDATA[My Projects]]></category>
		<category><![CDATA[My Studies]]></category>
		<category><![CDATA[Shahab]]></category>
		<category><![CDATA[UiO]]></category>
		<category><![CDATA[IFI]]></category>
		<category><![CDATA[Master Project]]></category>
		<category><![CDATA[Robin Group]]></category>
		<category><![CDATA[Robotics]]></category>
		<category><![CDATA[University of Oslo]]></category>

		<guid isPermaLink="false">http://www.shahabfm.com/?p=548</guid>
		<description><![CDATA[I got some new wild ideas about how actually the hardware part of the climbing robot should look like. Well these are nothing that would come to real world but just some drawing form me in my free time &#8230;



 


 


Tweet]]></description>
			<content:encoded><![CDATA[<p style="text-align: left;">I got some new wild ideas about how actually the hardware part of the climbing robot should look like. Well these are nothing that would come to real world but just some drawing form me in my free time &#8230;</p>
<p style="text-align: center;"><span id="more-548"></span></p>
<div id="attachment_575" class="wp-caption aligncenter" style="width: 310px"><a href="http://www.shahabfm.com/wp-content/uploads/2010/03/robo_Page_4.jpg"><img class="size-medium wp-image-575" title="Front feet, climbing robot" src="http://www.shahabfm.com/wp-content/uploads/2010/03/robo_Page_4-300x257.jpg" alt="" width="300" height="257" /></a><p class="wp-caption-text">Front feet, climbing robot</p></div>
<div id="attachment_574" class="wp-caption aligncenter" style="width: 235px"><a href="http://www.shahabfm.com/wp-content/uploads/2010/03/robo_Page_3.jpg"><img class="size-medium wp-image-574" title="Back foot" src="http://www.shahabfm.com/wp-content/uploads/2010/03/robo_Page_3-225x300.jpg" alt="" width="225" height="300" /></a><p class="wp-caption-text">Back feet, climbing robot</p></div>
<div>
<div>
<dl id="attachment_574"> </dl>
</div>
<div class="mceIEcenter">
<dl id="attachment_578" class="aligncenter"> </dl>
</div>
</div>
<div style="float: right; margin-left: 10px;"><a href="http://twitter.com/share?url=http://www.shahabfm.com/archives/2010/03/new-ideas/&via=shahabfm&text=New Ideas on Robot feet ...&related=:&lang=en&count=horizontal" class="twitter-share-button">Tweet</a><script type="text/javascript" src="http://platform.twitter.com/widgets.js"></script></div>]]></content:encoded>
			<wfw:commentRss>http://www.shahabfm.com/archives/2010/03/new-ideas/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>Master student @ UiO</title>
		<link>http://www.shahabfm.com/archives/2010/01/master-student-uio/</link>
		<comments>http://www.shahabfm.com/archives/2010/01/master-student-uio/#comments</comments>
		<pubDate>Mon, 25 Jan 2010 22:27:18 +0000</pubDate>
		<dc:creator>Shahab</dc:creator>
				<category><![CDATA[My Projects]]></category>
		<category><![CDATA[My Studies]]></category>
		<category><![CDATA[Shahab]]></category>
		<category><![CDATA[UiO]]></category>
		<category><![CDATA[IFI]]></category>
		<category><![CDATA[Projects]]></category>
		<category><![CDATA[University of Oslo]]></category>

		<guid isPermaLink="false">http://www.shahabfm.com/?p=453</guid>
		<description><![CDATA[I am admitted as a master student at university of Oslo. I can choose between many different fields, but I guess I am going to stick to Robotics. I think I&#8217;ll be writing my thesis in algorithm optimalization of intelligent systems.
Wish me lots of LUCK.
Tweet]]></description>
			<content:encoded><![CDATA[<p>I am admitted as a master student at university of Oslo. I can choose between many different fields, but I guess I am going to stick to Robotics. I think I&#8217;ll be writing my thesis in algorithm optimalization of intelligent systems.</p>
<p>Wish me lots of LUCK.</p>
<div style="float: right; margin-left: 10px;"><a href="http://twitter.com/share?url=http://www.shahabfm.com/archives/2010/01/master-student-uio/&via=shahabfm&text=Master student @ UiO&related=:&lang=en&count=horizontal" class="twitter-share-button">Tweet</a><script type="text/javascript" src="http://platform.twitter.com/widgets.js"></script></div>]]></content:encoded>
			<wfw:commentRss>http://www.shahabfm.com/archives/2010/01/master-student-uio/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>Compiler for a simplified C</title>
		<link>http://www.shahabfm.com/archives/2009/11/done-coding-a-compiler-for-a-simplified-language/</link>
		<comments>http://www.shahabfm.com/archives/2009/11/done-coding-a-compiler-for-a-simplified-language/#comments</comments>
		<pubDate>Sat, 21 Nov 2009 16:20:02 +0000</pubDate>
		<dc:creator>Shahab</dc:creator>
				<category><![CDATA[Shahab]]></category>
		<category><![CDATA[IFI]]></category>
		<category><![CDATA[Java programing]]></category>
		<category><![CDATA[My Projects]]></category>
		<category><![CDATA[My Studies]]></category>
		<category><![CDATA[UiO]]></category>
		<category><![CDATA[University of Oslo]]></category>

		<guid isPermaLink="false">http://www.shahabfm.com/archives/2009/11/done-coding-a-compiler-for-a-simplified-language/</guid>
		<description><![CDATA[My friend (Jim) and I are finally finished with coding for a compiler in Java. The compiler is implemented in Java to run the code written in a language called Rusc wich is a kind of simplified C. The language contains integer, variables, functions, IF, Else, While, for, expressions, names, libraries of pre-coded functions. We &#8230; <a href="http://www.shahabfm.com/archives/2009/11/done-coding-a-compiler-for-a-simplified-language/">Read more <span class="meta-nav">&#8594;</span></a>]]></description>
			<content:encoded><![CDATA[<p>My friend (Jim) and I are finally finished with coding for a compiler in Java. The compiler is implemented in Java to run the code written in a language called Rusc wich is a kind of simplified C. The language contains integer, variables, functions, IF, Else, While, for, expressions, names, libraries of pre-coded functions. We finished testing and running the code. This code was written for a course at <a href="http://uio.no">university of Oslo</a>, <a href="http://ifi.uio.no">IFI</a>, called <a title="INF2100, programming project" href="http://www.uio.no/studier/emner/matnat/ifi/INF2100/index-eng.xml" target="_blank">INF2100</a>-Programming project. The code is available <a href="http://www.shahabfm.com/projects/java/compiler/akbarf_jimrj_inf2100_oblig2.tgz">here</a>.</p>
<div style="float: right; margin-left: 10px;"><a href="http://twitter.com/share?url=http://www.shahabfm.com/archives/2009/11/done-coding-a-compiler-for-a-simplified-language/&via=shahabfm&text=Compiler for a simplified C&related=:&lang=en&count=horizontal" class="twitter-share-button">Tweet</a><script type="text/javascript" src="http://platform.twitter.com/widgets.js"></script></div>]]></content:encoded>
			<wfw:commentRss>http://www.shahabfm.com/archives/2009/11/done-coding-a-compiler-for-a-simplified-language/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>Tank Type Design, Robot report #4</title>
		<link>http://www.shahabfm.com/archives/2009/08/tank-type-design-robot/</link>
		<comments>http://www.shahabfm.com/archives/2009/08/tank-type-design-robot/#comments</comments>
		<pubDate>Sun, 16 Aug 2009 22:49:14 +0000</pubDate>
		<dc:creator>Shahab</dc:creator>
				<category><![CDATA[My Projects]]></category>
		<category><![CDATA[Shahab]]></category>
		<category><![CDATA[IFI]]></category>
		<category><![CDATA[Robotics]]></category>
		<category><![CDATA[Super Crawler]]></category>
		<category><![CDATA[UiO]]></category>

		<guid isPermaLink="false">http://www.shahabfm.com/?p=344</guid>
		<description><![CDATA[

Tweet]]></description>
			<content:encoded><![CDATA[<p style="text-align: center;"><a href="http://www.shahabfm.com/wp-content/uploads/2009/08/tank_asemb.jpg"><img class="aligncenter size-large wp-image-345" title="Tank style Assembled robot" src="http://www.shahabfm.com/wp-content/uploads/2009/08/tank_asemb-1024x498.jpg" alt="Tank style Assembled robot" width="614" height="299" /></a></p>
<p style="text-align: center;"><a href="http://www.shahabfm.com/wp-content/uploads/2009/08/tank_asemb2.jpg"><img class="aligncenter size-large wp-image-346" title="Tank style Assembled robot" src="http://www.shahabfm.com/wp-content/uploads/2009/08/tank_asemb2-1024x498.jpg" alt="Tank style Assembled robot" width="614" height="299" /></a></p>
<div style="float: right; margin-left: 10px;"><a href="http://twitter.com/share?url=http://www.shahabfm.com/archives/2009/08/tank-type-design-robot/&via=shahabfm&text=Tank Type Design, Robot report #4&related=:&lang=en&count=horizontal" class="twitter-share-button">Tweet</a><script type="text/javascript" src="http://platform.twitter.com/widgets.js"></script></div>]]></content:encoded>
			<wfw:commentRss>http://www.shahabfm.com/archives/2009/08/tank-type-design-robot/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>Robotic Project Report #3</title>
		<link>http://www.shahabfm.com/archives/2009/08/robotic-project-report/</link>
		<comments>http://www.shahabfm.com/archives/2009/08/robotic-project-report/#comments</comments>
		<pubDate>Sun, 16 Aug 2009 00:04:05 +0000</pubDate>
		<dc:creator>Shahab</dc:creator>
				<category><![CDATA[My Projects]]></category>
		<category><![CDATA[Shahab]]></category>
		<category><![CDATA[3D Design]]></category>
		<category><![CDATA[IFI]]></category>
		<category><![CDATA[Robotics]]></category>
		<category><![CDATA[Super Crawler]]></category>
		<category><![CDATA[University of Oslo]]></category>

		<guid isPermaLink="false">http://www.shahabfm.com/?p=338</guid>
		<description><![CDATA[Tank Type Design

Top Cover Sample

Tweet]]></description>
			<content:encoded><![CDATA[<p style="text-align: center;">Tank Type Design</p>
<p style="text-align: center;"><a href="http://www.shahabfm.com/wp-content/uploads/2009/08/tank_type1.jpg"><img class="aligncenter size-large wp-image-340" title="Tank type design" src="http://www.shahabfm.com/wp-content/uploads/2009/08/tank_type1-1024x496.jpg" alt="Tank type design" width="614" height="298" /></a></p>
<p style="text-align: center;">Top Cover Sample</p>
<p style="text-align: center;"><a href="http://www.shahabfm.com/wp-content/uploads/2009/08/top_cover.jpg"><img class="aligncenter size-large wp-image-341" title="Top Cover" src="http://www.shahabfm.com/wp-content/uploads/2009/08/top_cover-1024x496.jpg" alt="Top Cover" width="614" height="298" /></a></p>
<div style="float: right; margin-left: 10px;"><a href="http://twitter.com/share?url=http://www.shahabfm.com/archives/2009/08/robotic-project-report/&via=shahabfm&text=Robotic Project Report #3&related=:&lang=en&count=horizontal" class="twitter-share-button">Tweet</a><script type="text/javascript" src="http://platform.twitter.com/widgets.js"></script></div>]]></content:encoded>
			<wfw:commentRss>http://www.shahabfm.com/archives/2009/08/robotic-project-report/feed/</wfw:commentRss>
		<slash:comments>1</slash:comments>
		</item>
		<item>
		<title>Robot Project Report, report #2</title>
		<link>http://www.shahabfm.com/archives/2009/07/robot-project-report-report-2/</link>
		<comments>http://www.shahabfm.com/archives/2009/07/robot-project-report-report-2/#comments</comments>
		<pubDate>Mon, 27 Jul 2009 15:04:29 +0000</pubDate>
		<dc:creator>Shahab</dc:creator>
				<category><![CDATA[My Projects]]></category>
		<category><![CDATA[Shahab]]></category>
		<category><![CDATA[UiO]]></category>
		<category><![CDATA[IFI]]></category>
		<category><![CDATA[Robotics]]></category>
		<category><![CDATA[Super Crawler]]></category>
		<category><![CDATA[University of Oslo]]></category>

		<guid isPermaLink="false">http://www.shahabfm.com/?p=333</guid>
		<description><![CDATA[This is the newest design of the robot chassis getting more and more closer to reallity &#8230; Now we have places for Motor#1 &#38; #2, sprock wheels, Microcontroller and laptop inside the robot for Image Processing. The 3D design was designed at SolidWorks 2008 and will be printed by a 3D printed with a mixture of &#8230; <a href="http://www.shahabfm.com/archives/2009/07/robot-project-report-report-2/">Read more <span class="meta-nav">&#8594;</span></a>]]></description>
			<content:encoded><![CDATA[<p>This is the newest design of the robot chassis getting more and more closer to reallity &#8230; Now we have places for Motor#1 &amp; #2, sprock wheels, Microcontroller and laptop inside the robot for Image Processing. The 3D design was designed at SolidWorks 2008 and will be printed by a 3D printed with a mixture of plastics material.</p>
<p style="text-align: center;"><a href="http://www.shahabfm.com/wp-content/uploads/2009/07/chasis2.jpg"><img class="aligncenter size-large wp-image-334" title="Robotic project, shahab" src="http://www.shahabfm.com/wp-content/uploads/2009/07/chasis2-1024x749.jpg" alt="Robotic project, shahab" width="430" height="314" /></a></p>
<div style="float: right; margin-left: 10px;"><a href="http://twitter.com/share?url=http://www.shahabfm.com/archives/2009/07/robot-project-report-report-2/&via=shahabfm&text=Robot Project Report, report #2&related=:&lang=en&count=horizontal" class="twitter-share-button">Tweet</a><script type="text/javascript" src="http://platform.twitter.com/widgets.js"></script></div>]]></content:encoded>
			<wfw:commentRss>http://www.shahabfm.com/archives/2009/07/robot-project-report-report-2/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>Live broadcast of Robot&#8217;s environment</title>
		<link>http://www.shahabfm.com/archives/2009/07/live-broadcast-of-robots-environment/</link>
		<comments>http://www.shahabfm.com/archives/2009/07/live-broadcast-of-robots-environment/#comments</comments>
		<pubDate>Wed, 15 Jul 2009 22:14:49 +0000</pubDate>
		<dc:creator>Shahab</dc:creator>
				<category><![CDATA[My Projects]]></category>
		<category><![CDATA[Shahab]]></category>
		<category><![CDATA[UiO]]></category>
		<category><![CDATA[IFI]]></category>
		<category><![CDATA[image processing]]></category>
		<category><![CDATA[Robotics]]></category>
		<category><![CDATA[University of Oslo]]></category>
		<category><![CDATA[video streaming]]></category>

		<guid isPermaLink="false">http://www.shahabfm.com/?p=325</guid>
		<description><![CDATA[The Image processing part of the Robotic project, in hardware point of view contains a camera and laptop. The laptop is placed inside the robot chassis for Image Processing applications to run on it. The camera is going to be place on an arm which is not exactly decided how it is going to be &#8230; <a href="http://www.shahabfm.com/archives/2009/07/live-broadcast-of-robots-environment/">Read more <span class="meta-nav">&#8594;</span></a>]]></description>
			<content:encoded><![CDATA[<p>The Image processing part of the Robotic project, in hardware point of view contains a camera and laptop. The laptop is placed inside the robot chassis for Image Processing applications to run on it. The camera is going to be place on an arm which is not exactly decided how it is going to be and how much would we reach to make. But for sure there is going to be an arm, probably with one prismatic and two revolute joint(we are probably going to remove one revolute joint as the robot is able to turn around itself 360 degrees). This will give the camera a very good workspace which would be alittle less than a sphere on bottom and top.</p>
<p>As this project is a summer project and we do not have much time left, we have decided to go for easiest solutions for time being. Everything that makes the project to take one more step toward the goal is acceptable. Now I am trying to find ways how we can broadcast the stream of video we get from Robot&#8217;s cameras online. Our choices up to now are as followed :</p>
<ol>
<li>USTREAM.COM website which let you to stream live videos and people are able to watch it online in flash format. It&#8217;s not the best choice to make, but it is a possible choice.</li>
<li>RealPlayer</li>
</ol>
<div style="float: right; margin-left: 10px;"><a href="http://twitter.com/share?url=http://www.shahabfm.com/archives/2009/07/live-broadcast-of-robots-environment/&via=shahabfm&text=Live broadcast of Robot's environment&related=:&lang=en&count=horizontal" class="twitter-share-button">Tweet</a><script type="text/javascript" src="http://platform.twitter.com/widgets.js"></script></div>]]></content:encoded>
			<wfw:commentRss>http://www.shahabfm.com/archives/2009/07/live-broadcast-of-robots-environment/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>Robotic Project Report #1</title>
		<link>http://www.shahabfm.com/archives/2009/07/robotic-project-report-1/</link>
		<comments>http://www.shahabfm.com/archives/2009/07/robotic-project-report-1/#comments</comments>
		<pubDate>Tue, 14 Jul 2009 08:31:02 +0000</pubDate>
		<dc:creator>Shahab</dc:creator>
				<category><![CDATA[My Projects]]></category>
		<category><![CDATA[My Studies]]></category>
		<category><![CDATA[Shahab]]></category>
		<category><![CDATA[UiO]]></category>
		<category><![CDATA[3D Design]]></category>
		<category><![CDATA[IFI]]></category>
		<category><![CDATA[Robotics]]></category>
		<category><![CDATA[Super Crawler]]></category>
		<category><![CDATA[University of Oslo]]></category>

		<guid isPermaLink="false">http://www.shahabfm.com/?p=313</guid>
		<description><![CDATA[Well as said before, we are 4 students working on this Robotic project and things have been much more clear than the imaginary robot I was talking about last time. Now we know what kind of micro controller are we going to use, although still we have troubles setting it up(Vegard). We have designed the &#8230; <a href="http://www.shahabfm.com/archives/2009/07/robotic-project-report-1/">Read more <span class="meta-nav">&#8594;</span></a>]]></description>
			<content:encoded><![CDATA[<p>Well as said before, we are 4 students working on this Robotic project and things have been much more clear than the imaginary robot I was talking about last time. Now we know what kind of micro controller are we going to use, although still we have troubles setting it up(Vegard). We have designed the basic circuit for controlling the robots movement as well, but not tested yet(Kjetil). Also we are working on the body. My friend Magnus is designing the belt and the wheels ! Yep it&#8217;s gonno drive around with the help of 2 belts and 8 wheels. My responsibility is to design the chassis up to now. Here is a very basic version of it that I am just playing around to learn more how to work with Solidworks. When we are finished we are going to print this out with the help of a 3D printer that the robotic group has(in a quite nice resistible plastic material). Image processing part has not even started yet !!!</p>
<p style="text-align: center;"><a href="http://www.shahabfm.com/wp-content/uploads/2009/07/chasis.jpg"><img class="aligncenter size-medium wp-image-314" title="chasis" src="http://www.shahabfm.com/wp-content/uploads/2009/07/chasis-300x177.jpg" alt="chasis" width="300" height="177" /></a>Basic Chassis with 4 holes on each sides for placing the wheels.</p>
<p style="text-align: left;">Haha, before I forget, Vegard wants to name robot, Superman :-D Dunno if she is gonno be named that, but that&#8217;s what he is saying around ;-)</p>
<div style="float: right; margin-left: 10px;"><a href="http://twitter.com/share?url=http://www.shahabfm.com/archives/2009/07/robotic-project-report-1/&via=shahabfm&text=Robotic Project Report #1&related=:&lang=en&count=horizontal" class="twitter-share-button">Tweet</a><script type="text/javascript" src="http://platform.twitter.com/widgets.js"></script></div>]]></content:encoded>
			<wfw:commentRss>http://www.shahabfm.com/archives/2009/07/robotic-project-report-1/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
	</channel>
</rss>

