<?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; My Projects</title>
	<atom:link href="http://www.shahabfm.com/archives/tag/my-projects/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>courseApp</title>
		<link>http://www.shahabfm.com/archives/2011/02/courseapp/</link>
		<comments>http://www.shahabfm.com/archives/2011/02/courseapp/#comments</comments>
		<pubDate>Fri, 18 Feb 2011 13:22:54 +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[Android]]></category>
		<category><![CDATA[Java programing]]></category>
		<category><![CDATA[Mobile Programming]]></category>
		<category><![CDATA[Norway]]></category>
		<category><![CDATA[University of Oslo]]></category>

		<guid isPermaLink="false">http://www.shahabfm.com/?p=764</guid>
		<description><![CDATA[This is a school project for a course(INF5261 &#8211; Development of mobile information systems and services) I take at department of Informatics at University of Oslo. courseApp is an android mobile application which allows the users(students at University of Oslo) to add their courses to this application and respectivley receive the latest updates about the &#8230; <a href="http://www.shahabfm.com/archives/2011/02/courseapp/">Read more <span class="meta-nav">&#8594;</span></a>]]></description>
			<content:encoded><![CDATA[<p><span style="font-family: calibri; font-size: 16px; white-space: pre-wrap;">This is a school project for a course(<a title="INF5261" href="http://www.uio.no/studier/emner/matnat/ifi/INF5261/index-eng.xml" target="_blank">INF5261 &#8211; Development of mobile information systems and services</a>) I take at department of Informatics at University of Oslo. <a style="font-weight: bold;" title="courseApp project" href="http://www.uio.no/studier/emner/matnat/ifi/INF5261/v11/studentprojects/android/index.html" target="_blank">courseApp</a> is an android mobile application which allows the users(students at University of Oslo) to add their courses to this application and respectivley receive the latest updates about the course on their cellphone. We also are thinking about integerating the time &amp; place of the courses with the students android calender. We have plans for further development of this application but this is all dependent on if we can get access to the database in StudentWeb. If we do so we would be able to let students add courses to navigate through the courses and join the course by just one touch click &#8230;</span><span style="font-family: calibri; font-size: 16px; white-space: pre-wrap;"> </span></p>
<p><span style="font-family: calibri; font-size: 16px; white-space: pre-wrap;">We have thought to have following functionalities on our program(numbers show also priority).</span></p>
<ol>
<li style="background-color: transparent; margin: 0px;"> <span style="background-color: transparent; font-style: normal; font-family: calibri; white-space: pre-wrap; color: #000000; font-size: 12pt; vertical-align: baseline; font-weight: normal; text-decoration: none;">My courses</span></li>
<li style="background-color: transparent; margin: 0px;"> <span style="background-color: transparent; font-style: normal; font-family: calibri; white-space: pre-wrap; color: #000000; font-size: 12pt; vertical-align: baseline; font-weight: normal; text-decoration: none;">Latest messages on course page</span></li>
<li style="background-color: transparent; margin: 0px;"> Warning on Email</li>
<li style="background-color: transparent; margin: 0px;"> Integration with Android Calender</li>
<li style="background-color: transparent; margin: 0px;"> Friends taking same course</li>
</ol>
<p>read more about our project at <a href="http://www.uio.no/studier/emner/matnat/ifi/INF5261/v11/studentprojects/android/Androidproject.pdf">Our Wonder Document</a>.</p>
<p>People innvolved :</p>
<ul>
<li> <strong>Akbar(Shahab) Faghihi Mughaddam &#8211; shahabfm( at )usit.uio.no</strong></li>
<li> <strong>Shahab Bakhtiyari Saravan &#8211; shahabb( at )ifi.uio.no</strong></li>
<li> <strong>Ummair Tahir - ummairt( at )ifi.uio.no</strong></li>
<li> <strong>Piraba Kaugathasan - pirabak( at )ifi.uio.no</strong></li>
</ul>
<div style="float: right; margin-left: 10px;"><a href="http://twitter.com/share?url=http://www.shahabfm.com/archives/2011/02/courseapp/&via=shahabfm&text=courseApp&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/02/courseapp/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>Student Robotic Community, Robotica Osloensis</title>
		<link>http://www.shahabfm.com/archives/2010/05/student-robotic-community-robotica/</link>
		<comments>http://www.shahabfm.com/archives/2010/05/student-robotic-community-robotica/#comments</comments>
		<pubDate>Mon, 24 May 2010 21:52:34 +0000</pubDate>
		<dc:creator>Shahab</dc:creator>
				<category><![CDATA[My Projects]]></category>
		<category><![CDATA[My Studies]]></category>
		<category><![CDATA[Shahab]]></category>
		<category><![CDATA[hobby]]></category>
		<category><![CDATA[Robotics]]></category>
		<category><![CDATA[Super Crawler]]></category>
		<category><![CDATA[University of Oslo]]></category>

		<guid isPermaLink="false">http://www.shahabfm.com/?p=638</guid>
		<description><![CDATA[I am now a member of student robotics community at university of Oslo, called Roboitca Osloensis. I have joined the board team and currently I am in charge of all projects at the community. Our first project will be my summer project from last year( Super Crawler ), which we did not finish it &#8230;

Community &#8230; <a href="http://www.shahabfm.com/archives/2010/05/student-robotic-community-robotica/">Read more <span class="meta-nav">&#8594;</span></a>]]></description>
			<content:encoded><![CDATA[<p>I am now a member of student robotics community at university of Oslo, called <a href="http://robotica.ifi.uio.no" target="_blank"><strong>Roboitca Osloensis</strong></a>. I have joined the board team and currently I am in charge of all projects at the community. Our <a href="supercrawler.blogspot.com/" target="_blank">first project</a> will be my summer project from last year( <a href="supercrawler.blogspot.com/" target="_blank"><strong>Super Crawler</strong></a> ), which we did not finish it &#8230;</p>
<ul>
<li>Community <strong>webpage</strong> : <a href="http://robotica.ifi.uio.no " target="_blank">http://robotica.ifi.uio.no </a></li>
<li>Community <strong>wiki</strong> pages : <a href="http://robotica.wiki.ifi.uio.no" target="_blank">http://robotica.wiki.ifi.uio.no</a></li>
<li>Community <strong>forum</strong> : <a title="Robotica Osloensis Forum" href="http://robotica.ifi.uio.no/forum" target="_blank">http://robotica.ifi.uio.no/forum</a></li>
<li>Twitter :  <a href="http://twitter.com/robotica_oslo">http://twitter.com/robotica_oslo</a></li>
<li>Robotica Osloensis <strong><em><a href="http://www.google.no/search?hl=no&amp;rlz=1C1_____enNO374NO375&amp;tbs=vid:1&amp;q=robotica+osloensis&amp;aq=f&amp;aqi=&amp;aql=&amp;oq=&amp;gs_rfai=" target="_blank">on Youtube</a></em></strong></li>
<li>Robotica Osloensis <strong><a href="http://www.google.com/calendar/feeds/robotica-styret@studorg.uio.no/public/basic" target="_blank">Calender</a></strong></li>
</ul>
<div style="float: right; margin-left: 10px;"><a href="http://twitter.com/share?url=http://www.shahabfm.com/archives/2010/05/student-robotic-community-robotica/&via=shahabfm&text=Student Robotic Community, Robotica Osloensis&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/05/student-robotic-community-robotica/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>PHP project, report #1</title>
		<link>http://www.shahabfm.com/archives/2009/12/php-project-report-1/</link>
		<comments>http://www.shahabfm.com/archives/2009/12/php-project-report-1/#comments</comments>
		<pubDate>Sun, 20 Dec 2009 18:51:58 +0000</pubDate>
		<dc:creator>Shahab</dc:creator>
				<category><![CDATA[My Projects]]></category>
		<category><![CDATA[Shahab]]></category>
		<category><![CDATA[PHP]]></category>
		<category><![CDATA[Projects]]></category>
		<category><![CDATA[web]]></category>
		<category><![CDATA[web designing]]></category>

		<guid isPermaLink="false">http://www.shahabfm.com/?p=449</guid>
		<description><![CDATA[I have already made a login system successfully with ability to login for users and root. The login system can redirect users to user pages and root to administration page. The root user has the power to delete or update the user informations(facing some difficulties here). The goal with this part was gaining experience with &#8230; <a href="http://www.shahabfm.com/archives/2009/12/php-project-report-1/">Read more <span class="meta-nav">&#8594;</span></a>]]></description>
			<content:encoded><![CDATA[<p>I have already made a login system successfully with ability to login for users and root. The login system can redirect users to user pages and root to administration page. The root user has the power to delete or update the user informations(facing some difficulties here). The goal with this part was gaining experience with PHP and Mysql database.</p>
<p>Next step in this project will be debugging and securing the login system and designing the right database tables for the main project(game).</p>
<div style="float: right; margin-left: 10px;"><a href="http://twitter.com/share?url=http://www.shahabfm.com/archives/2009/12/php-project-report-1/&via=shahabfm&text=PHP 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/12/php-project-report-1/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>UiOToolbar v0.03 launched</title>
		<link>http://www.shahabfm.com/archives/2009/12/uio-toolbar/</link>
		<comments>http://www.shahabfm.com/archives/2009/12/uio-toolbar/#comments</comments>
		<pubDate>Tue, 15 Dec 2009 09:37:26 +0000</pubDate>
		<dc:creator>Shahab</dc:creator>
				<category><![CDATA[My Projects]]></category>
		<category><![CDATA[Shahab]]></category>
		<category><![CDATA[UiO]]></category>
		<category><![CDATA[Projects]]></category>
		<category><![CDATA[UiOToolbar]]></category>
		<category><![CDATA[University of Oslo]]></category>

		<guid isPermaLink="false">http://www.shahabfm.com/?p=389</guid>
		<description><![CDATA[UioToolbar Version 0.3 is available. For downloading the Firefox extension click here, for source files click here. This version contains upgrade for Firefox 3.5. I have added new buttons for searching at UiO&#8217;s library. I have also added useful links to different faculties and IT support and webmail at university. More info about UiO Toolbar &#8230; <a href="http://www.shahabfm.com/archives/2009/12/uio-toolbar/">Read more <span class="meta-nav">&#8594;</span></a>]]></description>
			<content:encoded><![CDATA[<p><strong>UioToolbar</strong> Version 0.3 is available. For downloading the Firefox extension <a href="http://shahabfm.com/projects/javascript/uiotoolbar/0.3/uiotoolbar_0_03.xpi">click here</a>, for source files <a href="http://shahabfm.com/projects/javascript/uiotoolbar/0.3/uiotoolbar_0_03.zip">click here</a>. This version contains upgrade for Firefox 3.5. I have added new buttons for searching at UiO&#8217;s library. I have also added useful links to different faculties and IT support and webmail at university. More info about UiO Toolbar can be found <a href="http://www.shahabfm.com/my-projects/uiotoolbar/">here</a>.</p>
<div style="float: right; margin-left: 10px;"><a href="http://twitter.com/share?url=http://www.shahabfm.com/archives/2009/12/uio-toolbar/&via=shahabfm&text=UiOToolbar v0.03 launched&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/12/uio-toolbar/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>PHP based website project</title>
		<link>http://www.shahabfm.com/archives/2009/12/php-based-website-project/</link>
		<comments>http://www.shahabfm.com/archives/2009/12/php-based-website-project/#comments</comments>
		<pubDate>Fri, 11 Dec 2009 12:02:42 +0000</pubDate>
		<dc:creator>Shahab</dc:creator>
				<category><![CDATA[My Projects]]></category>
		<category><![CDATA[Shahab]]></category>
		<category><![CDATA[web designing]]></category>

		<guid isPermaLink="false">http://www.shahabfm.com/?p=381</guid>
		<description><![CDATA[Recently I have been talking to a colleague to make a PHP based website with MySql database. The code with the database is supposed to make lists over users who play a roleplaying game online. More info about project later. Most likely it is going to be an opensource project.
Tweet]]></description>
			<content:encoded><![CDATA[<p>Recently I have been talking to a colleague to make a PHP based website with MySql database. The code with the database is supposed to make lists over users who play a roleplaying game online. More info about project later. Most likely it is going to be an opensource project.</p>
<div style="float: right; margin-left: 10px;"><a href="http://twitter.com/share?url=http://www.shahabfm.com/archives/2009/12/php-based-website-project/&via=shahabfm&text=PHP based website project&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/12/php-based-website-project/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>Mahibaz.ir back on track</title>
		<link>http://www.shahabfm.com/archives/2009/09/mahibaz-ir-back-on-track/</link>
		<comments>http://www.shahabfm.com/archives/2009/09/mahibaz-ir-back-on-track/#comments</comments>
		<pubDate>Tue, 29 Sep 2009 08:10:56 +0000</pubDate>
		<dc:creator>Shahab</dc:creator>
				<category><![CDATA[Shahab]]></category>
		<category><![CDATA[Fish keeping]]></category>
		<category><![CDATA[Forum]]></category>
		<category><![CDATA[hobby]]></category>
		<category><![CDATA[Mahibaz.ir]]></category>
		<category><![CDATA[My Projects]]></category>
		<category><![CDATA[web designing]]></category>

		<guid isPermaLink="false">http://www.shahabfm.com/?p=366</guid>
		<description><![CDATA[My website about fish keeping(specially Discus fish) with a Forum is back on track once again. After I didn&#8217;t get to take back my old domain name with .com postfix(www.mahibaz.com) back, I had to start over with a .ir postfix(www.mahibaz.ir). After all the website is in Persian and it doesn&#8217;t do anything to have a &#8230; <a href="http://www.shahabfm.com/archives/2009/09/mahibaz-ir-back-on-track/">Read more <span class="meta-nav">&#8594;</span></a>]]></description>
			<content:encoded><![CDATA[<p>My <a href="http://www.mahibaz.ir" target="_blank">website</a> about fish keeping(specially Discus fish) with a Forum is back on track once again. After I didn&#8217;t get to take back my old domain name with .com postfix<em>(www.mahibaz.com)</em> back, I had to start over with a .ir postfix<em>(www.mahibaz.ir)</em>. After all the website is in Persian and it doesn&#8217;t do anything to have a <em>.ir(iran)</em> domain name :-)</p>
<p>So the project is back on track with the domain name <strong><a href="http://www.mahibaz.ir" target="_blank"><em>www.mahibaz.ir</em></a></strong> and we have our fish keeping forum back online as well.</p>
<p><span style="color: #008000;"><em><strong>Mahibaz</strong></em></span> in <em>persian</em> means a person whose life is just <em>fish keeping</em>.</p>
<p>Shahab.</p>
<div style="float: right; margin-left: 10px;"><a href="http://twitter.com/share?url=http://www.shahabfm.com/archives/2009/09/mahibaz-ir-back-on-track/&via=shahabfm&text=Mahibaz.ir back on track&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/09/mahibaz-ir-back-on-track/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
	</channel>
</rss>

