Sunday, February 1, 2009

JOIN OSUM!!!!!


OSUM(open source university meetup)(pronounced "awesome") is a global community of students that are passionate about Free and Open Source Software (FOSS) and how it is Changing (Y)Our World. We call it a "Meetup" to encourage collaboration between student groups to create an even stronger open source community.
In OSUM you will get to learn the different latest technologies that are being developed by the enginners present at the SUN MICROSYSTEMS and you will also get the solutions directly from the sun which is a very great thing to learn...
Do join it as you will get a lots of knowledge about the open source technologies...
Thank you!!!!!

Wednesday, January 28, 2009

"Techfest 2009"

We went to IIT Powai ( Techfest 2009 ). It was really a very good experience as we got to learn many new things and the latest technologies that are created by the engineering students in the whole world. Many students were from foreign countries..
There were many outstanding exhibitions held in techfest.
These exhibitions were awesome...The workshops coducted by the professors were also very good.
But the technoholix was the one I liked the most. In this the different stunt scenes were performed by the foreigners. On the first night the team from France showed the gymnastics skills and the team form Turkey showed the 3 Run skills at the basketballwhich were out of the world.
On the second day there was a quiz organised which was very good.
On the third day the laser show was performed by the so called Laser man which was looking like a man in the world of lightening...
The overall experience was marvellous and I would love to organise such events in my college also..
Thank you..

Tuesday, December 2, 2008

WAD FEEDBACK

After attending WAD it seems like a new begining to the life. The first day of WAD was too boring as we were not used to sit for 12 hours a day and to attend the lectures but we started enjoying the WAD as the days passed.
The first lecture was from Mr.Vilas Kale sir. He told us that it is an intellect with values that creates a man..and also attiude that keeps track of altitude that you achieve..It was a good lecture but not the awesome lecture as it was the first day..Then in the afternoon Prof.Q.H.Jeevaji sir took the lecture on Mind Set..he said that you should be pro-active not reactive.and he also told us that you should be principle centered..It was a very nice lecture after having it on post lunch we didn't felt boring...
Next day Mr. Javed Khan Rana took the first lecture in the morning.. He told us the formula..
I=intelligent, Innovative, Interesting
L=Lovable, Long vision, language
U=uniqueness, usable/utility, Understanding
This lecture was as good as any lecture we have attended for a long time..
The post lunch session was of Mr. Nikhil Malhotra. he told us about the Quantitative skills and how to improve them.. He also took some examples which were very good and interesting....
Next day Banerje took the lecture on the english speaking and writing english..I was very fascinated by his english accent..He was speaking like a American person... But the total lecture was ok..ok..
Then there was a lecture by Dr. Suresh Chari sir... He was very much interacting with the students...He also took the Mock GD which helped us to improve our GD skills...The session was very very good....
Then many professors came and took their sessions...Our organizers really worked hard to make WAD more successful..
In the Ad campaign, we have given the product LIPSTICK ...We started our work on the first day itself..GD sessions were held regularly everyday for our practice..I improved in every GD...
Then on the last day our GD and PI were held and they were very good but Pi was ok because in PI I was asked the hardware questions and they were very tough for me..
But I am in first 50 in WAD and this is most important for me...
Thanks for reading...
Bye...

Tuesday, November 18, 2008

Workshop on Aptitude Development

WAD(Workshop on Aptitude Develoment) is held in RKNEC, nagpur from 24'th Nov to 1'st Dec. It is a very popular workshop held every year in Ramdeobaba Kamla Nehru College. I am participating in this workshop. This workshop is basically held to improve the aptitude of the people and make them understand the idea of the campus interview..
It also helps in preparing the for GD and PI. Registration fees are Rs.2000/ only..
Let's see what will be the expereince of WAD..
I will definately share every moment I enjoiyed in WAD..

Sunday, November 16, 2008

CYPHER program in C

/* This program was made by SAURABH MAHESHWARI & HRUSHIKESH ZADGAONKAR
on 13'th nov,2008 as mini-project
 CYPHER 
*/# include "conio.h"

# include "stdio.h"

# include "stdlib.h"

# include "ctype.h"

void main()

{

clrscr();

int i,j;

FILE *source_file,*first_encrypt,*second_encrypt,*third_encrypt;

char a;

source_file=fopen("s.txt","r"); //sorce file is opened in read only mode.

first_encrypt=fopen("s1.txt","w+"); //first destination file is opened.

second_encrypt=fopen("s2.txt","w+"); //second destination file is opened.

third_encrypt=fopen("s3.txt","w"); //Third destination file is opened. printf("******************************* CYPHER *******************************\n"); printf("\n\n\n\nGiven File Contents are : \n");
//This While loop is checking that source file contains alphabets only //Printing the source file contents to the console
while (1) { a=fgetc(source_file); if(a==EOF) break; else { if ((a<65>122 || (a>90 && a<97)) && a!=32) { printf("\n\n\nÞ Please check...File contains Invalid character after this wordÞ "); fclose(source_file); goto A; } else { printf("%c",a); } } } printf("\n\nFirst encrypted File Contents are :\n");
fseek(source_file,0,SEEK_SET); //File pointer is set to initial position
//This while loop is giving the first encryption A to C and so on...
while (1) { a=fgetc(source_file); if (a==EOF) break; else { if (a!=32) { a=toupper(a); for(i=0;i<2;i++) { a=a+1; if (a==91) a=65; } fputc(a,first_encrypt); } else fputc(a,first_encrypt); printf("%c",a); } } printf("\n\nThe Second Encrypted File Contents are :\n"); fclose(source_file); // Closing the source file
fseek(first_encrypt,0,SEEK_SET); //File pointer is set to initial

//This While Loop Gives 2nd Encrypted File Contents
while (1) { a=fgetc(first_encrypt); if (a==EOF) break; else { if (a!=32) { for (i=0;i<3;i++) { a=a-1; if (a==64) a=90; } fputc(a,second_encrypt); } else fputc(a,second_encrypt); printf("%c",a); } }
printf("\n\nThe Third File Encrypted Contents are : \n");
fclose(first_encrypt); //Closing First File
fseek(second_encrypt,0,SEEK_SET); //Setting File Pointer to initial
//This While Loop Gives 3rd Encrypted File Contents
while (1) { a=fgetc(second_encrypt); if (a==EOF) break; else { if (a!=32) {
for (i=0;i<12;i++) { a=a+1; if (a==91) a=65; }
fputc(a,third_encrypt); } else fputc(a,third_encrypt); printf("%c",a); } }
A:
fclose(second_encrypt); //Closing Second File
fclose(third_encrypt); //Closing Third File
printf(" \n\n\n\n\n\n\n\n  SAURABH and HRUSHIKESH  ");getch();
}

Friday, November 14, 2008

OPEN SOURCE WORKSHOP

This workshop was held from 12'th nov to 14'th nov, 2008 in RKNEC which was conducted by our HOD Chandak Sir.
This workshop was basically held to introduce the Open Source to the students. The Open Source Technologies such as Netbeans 6.1 IDE, Glass Fish, Open Solaris, Open Solaris, Java technologies, and its mobility applications etc...
Jay Mahadeokar, Vasusen Patil, Sumit Mudliar have orghanized this workshop.
This workshop was basically held for 2nd year students....From our class 30 students were taken a part and 2 EDT branch students and 2 Raisoni college students had attended the workshop.
It was a very good experience being a part of this workshop.
Many interesting sessions were held in this worksho..
Jay bhaiya conducted the session of Virtual Box installation on hard disk..It is very good software.We enjoiyed this session very much...
Then Vasusen Bhaiya conducted the Netbeans session in which he taught us the use of netbeans and how to do the c programming in netbeans with CYGWIN software.
Sumit bhaiya took the session in which he taught the problem analysis and c puzzles....
The puzzles were very awesome..It was very exciting to solve them...
Then Mr. Rohan Ranade took the session directly from US to tell us the importance of OPEN SOURCE which was very good ...
A guy from VNIT took the session of how the internet works in the backhand.. IT was very awesome session as it cleared our doubts..
The whole experience was very good and we enjoyed the workshop. Thanks to our seniors and may they attain the same workshops again and again...:-)

Friday, November 7, 2008

"CAMPUS ALISTAR"


This is the event which is going to be organised by STC. The basic aim of this event is to increase the aptitude of the people and make them more comfortable in campus interview.

This event is going to be held in RKNEC,Nagpur between 1'st of december to 8'th of december. The registration fees for this event are Rs.1000/- only..

For registration you can contact


Hrushikesh Zadgaonkar -9096960825

Manish Sejpal - 9766376080

Jitendra Lalwani-9970398117