<?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; Norway</title>
	<atom:link href="http://www.shahabfm.com/archives/tag/norway/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>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>Super Crawler back on track &#8230;</title>
		<link>http://www.shahabfm.com/archives/2010/07/super-crawler-back-on-track/</link>
		<comments>http://www.shahabfm.com/archives/2010/07/super-crawler-back-on-track/#comments</comments>
		<pubDate>Tue, 06 Jul 2010 21:35:36 +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[Norway]]></category>
		<category><![CDATA[Oslo]]></category>
		<category><![CDATA[Robotica Osloensis]]></category>
		<category><![CDATA[Robotics]]></category>
		<category><![CDATA[Super Crawler]]></category>

		<guid isPermaLink="false">http://www.shahabfm.com/?p=661</guid>
		<description><![CDATA[As the one in projects manager in Robotica Osloensis student robotic community, I am leading the summer project 2010 called Super Crawler. After planning and team building for the summer projects, my team members &#38; I have made a very good progress up to now &#38; we are working with full speed. The programming of &#8230; <a href="http://www.shahabfm.com/archives/2010/07/super-crawler-back-on-track/">Read more <span class="meta-nav">&#8594;</span></a>]]></description>
			<content:encoded><![CDATA[<p>As the one in projects manager in Robotica Osloensis student robotic community, I am leading the summer project 2010 called Super Crawler. After planning and team building for the summer projects, my team members &amp; I have made a very good progress up to now &amp; we are working with full speed. The programming of the micro-controllers &amp; the navigation program in Java has finished.  Right now Design team is<a href="http://www.shahabfm.com/wp-content/uploads/2010/07/super_Crawler1_resized.jpg"><img class="alignright size-full wp-image-662" title="super_Crawler1_resized" src="http://www.shahabfm.com/wp-content/uploads/2010/07/super_Crawler1_resized.jpg" alt="" width="300" height="501" /></a>working on design &amp; we are searching for the right design and materials for our super crawler. We should soon start <strong>video-streaming</strong> part as well and then we are finished with the first phase of super crawler :-)</p>
<p>Super Crawler <strong>weblog</strong> : <a title="Super Crawler Weblog" href="http://supercrawler.blogspot.com/" target="_blank">http://supercrawler.blogspot.com/</a><br />
Super Crawler <strong>worklog</strong> : <a title="Super Crawler Worklog" href="http://robotica.ifi.uio.no/forum/viewtopic.php?f=8&amp;t=5" target="_blank">http://robotica.ifi.uio.no/forum/viewtopic.php?f=8&amp;t=5</a></p>
<p><strong>Subprojects in Super Crawler :</strong></p>
<ul>
<li><strong>Design / Redesign :</strong> Magnus, Shahab F., Andrei</li>
<li><strong>Micro-controller Programming :</strong> Puya, Jonas, Ole Marius, Shahab F., Magnus</li>
<li><strong>Navigation Program :</strong> Shahab F., Jonas, Shahab B.</li>
<li><strong>Video Streaming :</strong> Jonas, Ole Marius, Shahab F.</li>
</ul>
<p><strong>Design -&gt; SolidWorks</strong><br />
<strong>Micro-Controller</strong> <strong>-&gt;</strong> <strong>Arduino boards</strong><br />
<strong>Video Streaming</strong><strong> -&gt;</strong> <strong>Not Decided</strong><br />
<strong>Navigation(Control) program -&gt; Java<br />
</strong></p>
<div style="float: right; margin-left: 10px;"><a href="http://twitter.com/share?url=http://www.shahabfm.com/archives/2010/07/super-crawler-back-on-track/&via=shahabfm&text=Super Crawler 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/2010/07/super-crawler-back-on-track/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>UiOToolbar 0.2, small update</title>
		<link>http://www.shahabfm.com/archives/2009/04/uiotoolbar-02-small-update/</link>
		<comments>http://www.shahabfm.com/archives/2009/04/uiotoolbar-02-small-update/#comments</comments>
		<pubDate>Tue, 28 Apr 2009 13:52:10 +0000</pubDate>
		<dc:creator>Shahab</dc:creator>
				<category><![CDATA[Shahab]]></category>
		<category><![CDATA[hobby]]></category>
		<category><![CDATA[javascript]]></category>
		<category><![CDATA[My Projects]]></category>
		<category><![CDATA[Norway]]></category>
		<category><![CDATA[UiO]]></category>
		<category><![CDATA[University of Oslo]]></category>

		<guid isPermaLink="false">http://www.shahabfm.com/?p=278</guid>
		<description><![CDATA[UioToolbar Version 0.2 is available. For downloading you can click here. There are few small improvments and the most usefull one is that by pressing Enter key the user would see the search result at university of Oslo&#8217;s database and not Google which is not the main purpose of making this toolbar.
Tweet]]></description>
			<content:encoded><![CDATA[<p><strong><a href="http://www.shahabfm.com/my-projects/uiotoolbar/" target="_self">UioToolbar</a></strong> Version 0.2 is available. For downloading you can <strong><a title="UiOToolbar 0.2" href="http://shahabfm.com/projects/javascript/uiotoolbar/0.2/uiotoolbar.zip">click here</a></strong>. There are few small improvments and the most usefull one is that by pressing Enter key the user would see the search result at university of Oslo&#8217;s database and not Google which is not the main purpose of making this toolbar.</p>
<div style="float: right; margin-left: 10px;"><a href="http://twitter.com/share?url=http://www.shahabfm.com/archives/2009/04/uiotoolbar-02-small-update/&via=shahabfm&text=UiOToolbar 0.2, small update&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/04/uiotoolbar-02-small-update/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>UiOToolbar project &#8230;</title>
		<link>http://www.shahabfm.com/archives/2009/04/uiotoolbar-project/</link>
		<comments>http://www.shahabfm.com/archives/2009/04/uiotoolbar-project/#comments</comments>
		<pubDate>Mon, 27 Apr 2009 12:36:46 +0000</pubDate>
		<dc:creator>Shahab</dc:creator>
				<category><![CDATA[Shahab]]></category>
		<category><![CDATA[hobby]]></category>
		<category><![CDATA[My Projects]]></category>
		<category><![CDATA[Norway]]></category>
		<category><![CDATA[Oslo]]></category>
		<category><![CDATA[Projects]]></category>
		<category><![CDATA[UiO]]></category>
		<category><![CDATA[University of Oslo]]></category>

		<guid isPermaLink="false">http://www.shahabfm.com/?p=268</guid>
		<description><![CDATA[UiOToolbar is a mini project of mine and is developed to be used by few users at my work. This toolbar is a Firefox toolbar and is developed by Javascript codes. You can download the file by clicking here.

The toolbar has number of buttons which makes daily surfing easier for staffs at university of Oslo. &#8230; <a href="http://www.shahabfm.com/archives/2009/04/uiotoolbar-project/">Read more <span class="meta-nav">&#8594;</span></a>]]></description>
			<content:encoded><![CDATA[<p>UiOToolbar is a mini project of mine and is developed to be used by few users at my work. This toolbar is a Firefox toolbar and is developed by Javascript codes. You can download the file by <a title="UiOToolbar 0.1" href="http://shahabfm.com/projects/javascript/uiotoolbar/0.1/uiotoolbar.zip"><strong>clicking here</strong></a>.</p>
<p style="text-align: center;">
<div id="attachment_270" class="wp-caption aligncenter" style="width: 820px"><a href="http://www.shahabfm.com/wp-content/uploads/2009/04/uiotoolbar2.jpg"><img class="size-full wp-image-270" title="uiotoolbar2" src="http://www.shahabfm.com/wp-content/uploads/2009/04/uiotoolbar2.jpg" alt="UiOToolbar" width="810" height="37" /></a><p class="wp-caption-text">UiOToolbar 0.1</p></div>
<p>The toolbar has number of buttons which makes daily surfing easier for staffs at university of Oslo. The buttons would give the user the power to search directly from the toolbar in universities(UiO) database. User can also search both Google and Google images database directly from the toolbar.</p>
<p style="text-align: left;">
<div id="attachment_269" class="wp-caption aligncenter" style="width: 310px"><a href="http://www.shahabfm.com/wp-content/uploads/2009/04/uiotoolbar.jpg"><img class="size-medium wp-image-269" title="uiotoolbar" src="http://www.shahabfm.com/wp-content/uploads/2009/04/uiotoolbar-300x47.jpg" alt="UiOToolbar" width="300" height="47" /></a><p class="wp-caption-text">UiOToolbar</p></div>
<p>I should mention that this is not an official University of Oslo pakcage and it was just developed locally by me to help some of my colleagues.</p>
<div style="float: right; margin-left: 10px;"><a href="http://twitter.com/share?url=http://www.shahabfm.com/archives/2009/04/uiotoolbar-project/&via=shahabfm&text=UiOToolbar 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/04/uiotoolbar-project/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>Earth Hour 2009</title>
		<link>http://www.shahabfm.com/archives/2009/03/earth-hour-2009/</link>
		<comments>http://www.shahabfm.com/archives/2009/03/earth-hour-2009/#comments</comments>
		<pubDate>Mon, 30 Mar 2009 06:47:32 +0000</pubDate>
		<dc:creator>Shahab</dc:creator>
				<category><![CDATA[Others]]></category>
		<category><![CDATA[Photography]]></category>
		<category><![CDATA[Shahab]]></category>
		<category><![CDATA[environment friendly]]></category>
		<category><![CDATA[green]]></category>
		<category><![CDATA[Norway]]></category>
		<category><![CDATA[Oslo]]></category>
		<category><![CDATA[photo]]></category>

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

Earth Hour project took place on 28th of March all around the world in 375 cities and 1,000,000,000 people took part in it. On this day people turned off their lights for one hour at 20:30 their own local time to show politicians how much they do care about being Green. On 28th I voted &#8230; <a href="http://www.shahabfm.com/archives/2009/03/earth-hour-2009/">Read more <span class="meta-nav">&#8594;</span></a>]]></description>
			<content:encoded><![CDATA[<div style="margin: 0px auto 10px; font-weight: bold; font-family: arial; text-align: left;">
<div style="margin: 0px auto 10px; text-align: center;">
<div style="margin: 0px auto 10px; text-align: left;">Earth Hour project took place on 28th of March all around the world in 375 cities and 1,000,000,000 people took part in it. On this day people turned off their lights for one hour at 20:30 their own local time to show politicians how much they do care about <strong><span style="color: #008000;">being Green</span></strong>. On 28th I voted for earth as many others did all around the earth. It&#8217;s beautiful that despite our differences how much we care about our old cradle, Earth&#8230;</div>
<div style="margin: 0px auto 10px; text-align: center;"><a href="http://4.bp.blogspot.com/_yFCWPawZNdA/Sc-klCLyaGI/AAAAAAAABC8/O7TuU3PmT9s/s1600-h/DSC_0044.JPG"><img src="http://4.bp.blogspot.com/_yFCWPawZNdA/Sc-klCLyaGI/AAAAAAAABC8/O7TuU3PmT9s/s320/DSC_0044.JPG" border="0" alt="" width="148" height="223" /></a></div>
<div style="text-align: center;"><span style="font-family: verdana; font-size: 78%;"><span style="font-weight: bold;"><span id="more-35"></span>Shot taken @ :</span><span style="font-weight: bold;"><br />
28th of March 2009</span><span style="font-weight: bold;"><br />
Akershus, Norway</span></span></div>
</div>
<div style="margin: 0px auto 10px; text-align: center;"><span style="font-size: 78%;"><a href="http://1.bp.blogspot.com/_yFCWPawZNdA/Sc-jQs3pEII/AAAAAAAABC0/fOIbTvm2Zjk/s1600-h/DSC_0035.JPG"><img src="http://1.bp.blogspot.com/_yFCWPawZNdA/Sc-jQs3pEII/AAAAAAAABC0/fOIbTvm2Zjk/s320/DSC_0035.JPG" border="0" alt="" /></a></span></div>
<p style="text-align: center;"><span style="font-size: 78%;">Earth Hour 2009<br />
shot taken @ :<br />
28th of March 2009<br />
Akershus, Norway<br />
<a href="http://1.bp.blogspot.com/_yFCWPawZNdA/Sc-jQO0XD9I/AAAAAAAABCc/5dG_DrAfuYk/s1600-h/DSC_0025.JPG"><img src="http://1.bp.blogspot.com/_yFCWPawZNdA/Sc-jQO0XD9I/AAAAAAAABCc/5dG_DrAfuYk/s320/DSC_0025.JPG" border="0" alt="" /></a></span></p>
</div>
<div style="font-weight: bold; font-family: arial; text-align: center;"><span style="font-size: 78%;">Earth Hour 2009<br />
shot taken @ :<br />
28th of March 2009<br />
Akershus, Norway</span></div>
<div style="margin-top: 0px; margin-right: auto; margin-bottom: 10px; margin-left: auto; font-weight: bold; font-family: arial; text-align: center;"><span style="font-size: 78%;"><a href="http://3.bp.blogspot.com/_yFCWPawZNdA/Sc-jQb6QhpI/AAAAAAAABCk/fgUY14rwrks/s1600-h/DSC_0028.JPG"><img src="http://3.bp.blogspot.com/_yFCWPawZNdA/Sc-jQb6QhpI/AAAAAAAABCk/fgUY14rwrks/s320/DSC_0028.JPG" border="0" alt="" /></a></span></div>
<div style="font-weight: bold; font-family: arial; text-align: center;"><span style="font-size: 78%;">Earth Hour 2009<br />
shot taken @ :<br />
28th of March 2009<br />
Akershus, Norway</span></div>
<div style="margin-top: 0px; margin-right: auto; margin-bottom: 10px; margin-left: auto; font-weight: bold; font-family: arial; text-align: center;"><span style="font-size: 78%;"><a href="http://4.bp.blogspot.com/_yFCWPawZNdA/Sc-jQQhltHI/AAAAAAAABCs/IDRA-6nckaY/s1600-h/DSC_0032.JPG"><img src="http://4.bp.blogspot.com/_yFCWPawZNdA/Sc-jQQhltHI/AAAAAAAABCs/IDRA-6nckaY/s320/DSC_0032.JPG" border="0" alt="" /></a></span></div>
<p style="text-align: center;"><span style="font-size: 78%;">Earth Hour 2009<br />
shot taken @ :<br />
28th of March 2009<br />
Akershus, Norway</span><span style="font-size: 78%;"><br />
</span></p>
<div style="float: right; margin-left: 10px;"><a href="http://twitter.com/share?url=http://www.shahabfm.com/archives/2009/03/earth-hour-2009/&via=shahabfm&text=Earth Hour 2009&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/03/earth-hour-2009/feed/</wfw:commentRss>
		<slash:comments>1</slash:comments>
		</item>
		<item>
		<title>Philosophy Project, Spring 2009</title>
		<link>http://www.shahabfm.com/archives/2009/03/philosophy-project-spring-2009/</link>
		<comments>http://www.shahabfm.com/archives/2009/03/philosophy-project-spring-2009/#comments</comments>
		<pubDate>Sat, 28 Mar 2009 19:19: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[Descartes]]></category>
		<category><![CDATA[essay]]></category>
		<category><![CDATA[Norway]]></category>
		<category><![CDATA[oppgave]]></category>
		<category><![CDATA[philosophy]]></category>
		<category><![CDATA[University of Oslo]]></category>

		<guid isPermaLink="false">http://www.shahabfm.com/?p=15</guid>
		<description><![CDATA[This is my philosophy project about Descartes meditations and how it effected our world and meditation afterwards. The post comes in a post afterwards and you can also download the ZIP file by clicking here. The essay discusses the way Descartes new fundemental unit(I think, therefore I exist) changed our point of view and guided &#8230; <a href="http://www.shahabfm.com/archives/2009/03/philosophy-project-spring-2009/">Read more <span class="meta-nav">&#8594;</span></a>]]></description>
			<content:encoded><![CDATA[<p>This is my philosophy project about <strong>Descartes meditations</strong> and how it effected our world and meditation afterwards. The post comes in a post afterwards and you can also download the ZIP file by <strong><a title="Exphil03 Essay" href="http://www.shahabfm.com/projects/literature/exphil03.zip" target="_self">clicking here</a></strong>. The essay discusses the way Descartes new fundemental unit(I think, therefore I exist) changed our point of view and guided humanity to individualism.</p>
<div style="float: right; margin-left: 10px;"><a href="http://twitter.com/share?url=http://www.shahabfm.com/archives/2009/03/philosophy-project-spring-2009/&via=shahabfm&text=Philosophy Project, Spring 2009&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/03/philosophy-project-spring-2009/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
	</channel>
</rss>

