3 Months Of Training

Its almost done with my project, here at mumbai. And i have noticed a gr8 change in myself, my ideas have expanded and knowledge as well. Thanks to my TL vijay khambalkar who is not only a good person, but a very good Team Leader as well, he has helped me a lot in improving my programming knoweldge also my Team members, my senior Devloper vinay pillay who has really showed me how to do short cuts in work and how to work smartly. Also my good friends here with me Vivek, Ameya and Mangesh has been a very good company…. cheers guys… and thanks for being a good company…People here have now started calling GURUBHAI, they find me a buisness minded person.

Now what best i can do presently with my knowledge and talent i have to think…

Me and my friends have been a lot inspired by YouTube’s succes story. I have also gone through its video, and we are also inspired my Google story

the best i will do for myself and people around me will be to run in the same race where all giants and all individuals are running… but guys Screw it,Lets do it and i promise tht we will be doing something gr8 in nearest future,And remember we know what we are but we dont know what we can be.

Thanks all friends at mumbai.

6 comments April 6, 2007

some of useful tips to prepare for campus interviews, for freshers.

Hi, this post m writing for my juniour students who have constantly asked me about how to prepare for Campus interview test, this are my personal which may or may not be useful to anybody who uses follows this,

Well people in 5th and 6th SEM of their engineering, be mentally prepared to give the tough fight in campus.. there is lot of compitions in campus.

make your mind set to only single thing, tht is any how you have to crack the test,

remember your little efforts can lead you to good life,

build your vocab  first, then with quantitative section, reasoning, analytical writing and so on. but the thing is you must do it well and thourghly,

some of the books used in major of the campus preparation m listing bellow

1.Quantitative Maths by R.S.Agrawal(for maths)

2.Verbal & Non Verbal reasoning by R.S.Agrawal(for reasoning and very important book)

3.Word power made easy by Norman Lewis(for english)

4.GRE barrons(multi purpose book)

atleast prepare from this.. people appearing for major companies like Satyam,TCS,Patni,Syntel,Zensar,CSC,Accenture,IBM. and many more follow the list of books above mentioned

prepare hard and complete,

people preparing for Infosys. do follow Puzzels from Shakundla Devi,

no company is bad to work, but a personal suggestion at the beggining dont look how big company you get but important is wht knowledge you get at the beggining,

and mind it at the time of campus.. companies are least concerend if you are technical good or bad they just check your mental ability and confidence level… and the most important is your communication skills, so be confident and prepare well from above books for campus interview.

and yes..

bellow are list of sites useful for getting information about campus,

www.freshersworld.com

www.koolkampus.com

www.efreshers.com

some of groups of yahoo useful are chetna’s groups, vijaypvp and there are lot more

you just subscribe to it and you can get a lot site…

chalo good luck to you all,

for any difficulties feel free to ask

20 comments February 18, 2007

simple steps to configure Red5 on windows

1. Install Apache ANT version 1.6.2 available at  http://archive.apache.org/dist/ant/binaries/

2.Install jdk1.5.0 available at http://archive.apache.org/dist/ant/binaries/

3.Download and install Red5 setup 6rc1 available at http://svn1.cvsdude.com/osflash/red5/

4.create a folder on your C drive(folder on the directory where OS is installed) and give the name ant or anything you like

5. copy source of ant you downloaded

6.setup ANT_HOME variable

set ANT_HOME = C:\ant;(my case)

7.Instal jdk1.5.0 and set JAVA_HOME and JAVA_VERSION variables

set JAVA_HOME = C:\program files\ java\jdk1.5.0;

set JAVA+VERSION = 1.5

8. And its all done… check your Red5 configuration weather it is working or not

just http://localhost:5080/  if the page gets loded your Red5 is configured…

now smile and enjoy ;)

5 comments February 16, 2007

ffmpeg

bellow is the link for ffmpeg doc
ffmpeg is used in conversion of several file formats from one to another
you can just check the bellow for more information
http://ffmpeg.mplayerhq.hu/ffmpeg-doc.html

this command will convert mpg to picture files...
ffmpeg -r 1 -i gentleman.mpg -r 1 -s 80x80 out%d.gif
the bellow command will capture the video and audio from devices to mpg files
 ffmpeg -f audio_device -i /dev/dsp -f video4linux2 -i /dev/video0 /tmp/out.mpg

Add comment February 16, 2007

Flex-PHP using Httpservices

while loading data from PHP to Flex using http services….

flex code or http services will be as bellow

<mx:HTTPService id=”countryLoad” url=”{URL1}” showBusyCursor=”true” method=”POST” useProxy=”false” result=”regObj.countryLoad(event)” fault=”regObj.faultHandler(event)” >

</mx:HTTPService>

the function where the result will be obtian will be the array collection the code goes bellow

public function countryLoad(resultObj:Object):void{

var tempArray:ArrayCollection = resultObj.result.count.name as ArrayCollection;
registeredCtrl.country.dataProvider=tempArray;
//registeredCtrl.callcity();
init();

}

the PHP code where the complex object is send as array collection is given bellow

<?php
//header(“Content-Type: text/xml”);
$dbhost = ‘localhost’;
$dbusername = ‘root’;
$dbuserpassword = ”;
$default_dbname = ‘databasename’;

$link_id = mysql_connect($dbhost, $dbusername, $dbuserpassword);
mysql_select_db(“databasename”,$link_id);
$query=”select code, name from country”;
$result=mysql_query($query);
$i=0;
$return=”<count>”;
while($row=mysql_fetch_array($result))
{
$contry[$i]=$row[0];
$i++;
$return.=”<name><label>”;
$return.=$row[1];
$return.=”</label><data>.$row[0].</data></name>”;
//echo $contry[i];
}
$return.=”</count>”;
echo $return;

?>

it is very easy to use the XML and HTTPSERVICES if you are begginer,

if object is complex use above method…

no need of serializing even just check it out and enjoy…

;)

Add comment February 14, 2007

Next Posts


Categories

  • Blogroll

  • Feeds