Thursday, October 10, 2013

Shared Folder on Virtualbox on Linux Host

There are  a lot of people who use windows on virtualbox which is hosted by a linux distribution. For example, I installed virtualbox on Linux Mint 1.14 to setup Windows XP on it and use this for some software that I need for my education on Electrical & Electronics Engineering. Let's start with the most known problem. Problem : When we use virtualbox the most important problem is that how to share folders or directories...
Read More

Tuesday, August 27, 2013

Modeling a Whale Call with Matlab

I did my computer probation in a company called FIGES last year. In one of these days, my job was modeling a whale call of a blue whale. To do this firstly I did a long research, because I have needed some equations to represent whale call. According to my research: Befitting the largest mammal on earth, the call of an adult blue whale...
Read More

Wednesday, August 21, 2013

Firefox Babylon Add-on and More

Everyone knows Babylon dictionary, it is one of the most common dictionary that used in the world. A free babylon extension for firefox is available here. It works quite enough, the requirement is just clicking the word that you wanna search twice. Babylon Dictionary But missing part is that: It doesn't save the word you search...
Read More

Monday, August 19, 2013

Loops in Matlab ( for in matlab, while matlab, for matlab)

There are two loops in matlab: For loops  While loops For loops are used when the number of loop is certain whereas while loops are used when the condition is specified for a loop to terminate the code in it.  You can see the usage form of for loops and while loops from given examples below: Example 1: For loop for i=1:4, i end Example 2: While loop a=0; while(a<10) a= a+1; a For information in detail...
Read More

Sunday, August 18, 2013

Flash for Linux

Hi guys, most of the linux distributions do not include flash as default installed software. Mint comes with flash but such as in ubuntu it is not preinstalled. So we have to install it. There are a few ways to install flash in linux: 1.   - open software center         - enter 'adobe flashplugin        ...
Read More

Monday, August 12, 2013

Flashlight Android Application

Hi guys, today I wanna tell about one of my experince on android app development. A couple of days ago, I wrote a Flashlight android app using docs in developer.android.com, I checked the app in two different phones: first in a Motorola phone: my app worked perfect, it did its job. (turning on and turning off flash of the camera) second...
Read More

Saturday, August 10, 2013

Initial Arrangement Example in Matlab

str2=input('','s');<br /> if strmatch('do the arrangements\n',str2)<br /> <br />     disp('Yes Sir')<br /> end<br /> <br /> <br /> cd 'path'<br /> winopen('path');<br /> fprintf('Welcome to Matlab, Mr. 'name'\nCurrent Directory is rearranged, and the mlbe file is opened.\n');<br /> <br /> str1=input('','s');<br /> if strmatch('thanks',str1)<br...
Read More