<?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; Shahab</title>
	<atom:link href="http://www.shahabfm.com/archives/tag/shahab/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>Ignite Oslo, Rapid Prototyping</title>
		<link>http://www.shahabfm.com/archives/2011/04/ignite-oslo-rapid-prototyping/</link>
		<comments>http://www.shahabfm.com/archives/2011/04/ignite-oslo-rapid-prototyping/#comments</comments>
		<pubDate>Fri, 01 Apr 2011 00:54:39 +0000</pubDate>
		<dc:creator>Shahab</dc:creator>
				<category><![CDATA[My Presentations]]></category>
		<category><![CDATA[My Projects]]></category>
		<category><![CDATA[Shahab]]></category>
		<category><![CDATA[UiO]]></category>
		<category><![CDATA[3D Design]]></category>
		<category><![CDATA[ignite oslo]]></category>
		<category><![CDATA[Norway]]></category>
		<category><![CDATA[Oslo]]></category>
		<category><![CDATA[Rapid Prototyping]]></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=761</guid>
		<description><![CDATA[On Thursday I hold one of the most difficult presentations of my life. I was representing Robotica Osloensis, a student community which I am deputy chairman of, at Ignite Oslo. I talked about Rapid Prototyping which we use as our main method at Robotica in our projects. Ignite is a style of presentation where participants are given five minutes to &#8230; <a href="http://www.shahabfm.com/archives/2011/04/ignite-oslo-rapid-prototyping/">Read more <span class="meta-nav">&#8594;</span></a>]]></description>
			<content:encoded><![CDATA[<p>On Thursday I hold one of the most difficult presentations of my life. I was representing Robotica Osloensis, a student community which I am deputy chairman of, at <a href="http://igniteoslo.no/">Ignite Oslo</a>. I talked about <strong><a href="http://en.wikipedia.org/wiki/Rapid_prototyping">Rapid Prototyping</a></strong> which we use as our main method at Robotica in our projects. <a href="http://en.wikipedia.org/wiki/Ignite_(event)">Ignite</a> is a style of presentation where participants are given five minutes to speak on a subject accompanied by 20 slides. Each slide is displayed for 15 seconds, and slides are automatically advanced. The Ignite format is similar to Pecha Kucha, which features 20 slides displayed for 20 seconds each.</p>
<p>The Ignite Oslo was a very nice event. They had 5 minutes presentations about different topics which were very interesting. Presentations about art, film making, music composition with applications on iPad, 3D printing, air balloons and fashion, etc. It was pretty stressful when it came to my turn. The whole idea of 15 seconds intervals and having a lot to say about a subject that actually belongs to the nerd world made me very nervous. Thanks to my friends <em><a href="http://magnus-thesis.blogspot.com/">Magnus Lange</a></em> and <em>Ole Jacob</em>, who helped me both about the content and preparing in advance for the presentation, I was well prepared. Also I should thank my friends who came there to support me when I was actually holding the presentation. My presentation can be downloaded by <a href="http://www.shahabfm.com/projects/presentation/final_ignite_rapid_prototyping.pptx" target="_blank"><strong>clicking here</strong></a>.<br/><br />
<iframe title="YouTube video player" width="640" height="390" src="http://www.youtube.com/embed/sL6Ci31nJYY" frameborder="0" allowfullscreen></iframe></p>
<p style="text-align: center;"><img class="aligncenter" src="http://2.bp.blogspot.com/-zhyh5wcJVmE/TVc3t9MWQVI/AAAAAAAABk0/GNOUJNszTew/s320/firstpage.PNG" border="0" alt="" width="320" height="198" /></p>
<div style="float: right; margin-left: 10px;"><a href="http://twitter.com/share?url=http://www.shahabfm.com/archives/2011/04/ignite-oslo-rapid-prototyping/&via=shahabfm&text=Ignite Oslo, Rapid Prototyping&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/04/ignite-oslo-rapid-prototyping/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>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>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>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>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>
	</channel>
</rss>

