Success Has No Fixed Formula You Need To Find Your Own

Phone Was Always A Dream,Until and Unless Someone Developed It.

Success Has Its Own Algorithm

Computer Is Not a Tool,But someone's Desire which has grown Bigger

This is default featured slide 3 title

Go to Blogger edit html and find these sentences.Now replace these sentences with your own descriptions.

This is default featured slide 4 title

Go to Blogger edit html and find these sentences.Now replace these sentences with your own descriptions.

This is default featured slide 5 title

Go to Blogger edit html and find these sentences.Now replace these sentences with your own descriptions.

Labels

Monday, 21 January 2013

How I braved Annu Aunty

A good book by Varun Aggarwal : A Must read for all Entrepreneurs.


                                  


To Buy Your Book : Click Here :::::: GET IT DELIVERED AT YOUR HOME


Book Details ::::
Twenty-something Varun is in a fix: he shuns the corporate rat race and dreams of becoming an entrepreneur. Armed with an unwanted engineering degree, his hours are filled with friends, pub-hopping, and ‘stalking’ the girl he loves on Facebook.
But when the formidable Anu Aunty enters his life, his languorous existence spirals out of control. She tries steering the course of Varun’s destiny by scheming to bring him on ‘track’. His mother turns on the Bollywood histrionics and drags him to a counsellor. Feeling cornered, Varun hatches a strategy to hoodwink the canny aunty at her own game. But as the chase heats up, who will have the last word? Will Anu Aunty thwart his plans to found a million dollar company Or will he succeed Along the way, Varun learns his best business lessons from kitty parties and the ubiquitous Indian aunty.
Hilarious, informative and filled with nuggets of everyday wisdom, this page-turner will inspire budding entrepreneurs not to give up on their dreams


Book Reviews :::

"Fast-paced and irreverent " - The New York Times
"Vibrant and inspiring" - The Times of India
"A book that you can connect with" - The Hindu
"A story about achieving your dreams and living it" - The Deccan Chronicle
"A true story about going after your dreams" - Outlook India
"Inspiring the young to reach for the stars. A true success" - The Indian Express
"Fascinating and Entertaining" - The Indian Today Group


A Review :::
Varun Agarwal- Inspiring, Innovating, Achieving
The book starts with 20 something Varun who’s freshly out of engineering and unemployed. And Varun takes you through his journey to being the Co-founder of a Million Dollar Company. But the journey is not an easy one. One of the biggest obstacles in his path is the famed ‘Anu Aunty’ , The typical nosy Indian aunt. And then there are the usual incidents in every college graduates life, late nights, incidents with cops, stalking your crush on facebook and much more. The book is in simple English and is narrated so effortlessly it’s like a friend telling you the story of his life. And there are times when you think to yourself, damn all this has happened to me too! The book encapsulates todays generation and shows the older generations that we’re just not all fun and enjoyment and when we put our minds to something we can truly own this world.
A truly entertaining book filled with all the traditional Indian and Bangalore words like ‘Enthu-cutlet’ and ‘Putting Kai’.
But entertainment aside, the book is one of the most inspiring books I’ve read and Varun has done his best to motivate & inspire anyone reading the book to follow their dreams and never give up. Something i firmly believe in, and being an entrepreneur myself there’s so much i could relate to n the book and id recommend it to anyone who has their own thing going or is planning to start up.
Varuns even taken the trouble to add a post script with do and don’ts for wannabe entrepreneurs.
Closing verdict is that this book it truly a must read for every student (especially those struggling under VTU ). So go and get your copy right now and get rid of the Anu Aunty in your life! 

Tuesday, 15 January 2013

My First Catch....PART - 1

My father was a worker in a income tax office and didnot had good income at the time I was in class 5 like every other Indian boy I loved cricket more than anything in the world but beacuse of my fathers inablitity to buy me equipments I was upset and depressed.My neighbor were rich so obviously his son could afford every rich luxury of cricket.Above all my neighbour was himself a Cricket player and played for Railways.So he made his enrolled on the Cricket Coaching.Everyday he would go to the cricket ground in his white uniform holding a cricket kit.This used to make me depressed and disheartened.But no one can win over fate.


 So I started going to university campus where everyday university students used to play their daily games and I used to field the balls that came on boundaries and used to pass to the players. As soon as I touched the leather ball the fragrance it just memorized me.....I just like the touch and feel of the ball the true feeling is  not describable no word fit that point.

The ball just created a adrenaline rush in my body.This process continued day after the day and weeks after weeks I would each follow the same routine going to school and changing then back to casuals and going to university ground every day.Days slipped to weeks and weeks changed to months.I would go to the field each day with no fail and no return expected but I used go closer a inch every time.Now the sports person were also familiar with me.They used to give me tasks like ja paani bhar kar la and I used down the entire campus and fetch water in the bottle I got and run back the entire distance.It continued months changed to years and within time I was in class VII.
Then one day while I was outside boundary a fast pacer bowled the ball and he batsmen hit a massive shot the ball went pass in nic of a second over the fieldsmen and was flying over and high the ball again raised my spirit I dont how and why I started running towards the ball. And I caught the ball with a huge dive. the action was so severe that even I couldnot think of it and I was shocked all players started clapping the applauded were not stopping becoz catching that ball was next to impossible Every one was hypnotized I was yet in the state of shock.


Rest Is Pending stay tuned.........

Saturday, 17 November 2012

Want Any Lab Code

If U Want any lab code::::::



mail me :   adityadua1992@gmail.com

feedback are always welcome

LRU Page Replacement Algo in C

/* program to implement page replacement using LRU algorithm*/
#include<stdio.h>
int i,j=1,k,l,re[30],p[10],ch,no,nr,c,al=0,a,line=6;
struct re
{
          int st,l,ps;
}opr;
main()
{
          clrscr();
          printf("enter the length of the reference string:");
          scanf("%d",&nr);
          printf("enter the reference string:");
          for(i=1;i<=nr;i++)
          scanf("%d",&re[i]);
          printf("\n enter the number of frames:");
          scanf("%d",&no);
          clrscr();
          for(i=1;i<=no;i++)
          p[i]=-1;
          opr.st=0;
          for(i=1;i<=nr;i++)
          {
                   al=0;
                   opr.st=100;
                   for(c=1;c<=no;c++)
                   if(re[i]==p[c])
                   al++;
                   if(al==0)
                   {
                             if(j<=no)
                             {
                                      p[j]=re[i];
                                      j++;
                             }
                             else
                             {
                                      for(k=1;k<=no;k++)
                                      {
                                                for(ch=i-1;ch>=1;ch--)
                                                {
                                                          a=0;
                                                          if(p[k]==re[ch])
                                                          {
                                                                   a++;
                                                                   break;
                                                          }
                                                }
                                                if(a!=0)
                                                {
                                                          if(opr.st>ch)
                                                          {
                                                                   opr.st=ch;
                                                                   opr.l=re[ch];
                                                                   opr.ps=k;
                                                          }
                                                }
                                                else if(a==0)
                                                {
                                                          opr.ps=k;
                                                          break;
                                                }
                                      }
                                      p[(opr.ps)]=re[i];
                             }
                   }
                   display(no,p,i);
          }
          printf("\n");
          getch();
}

display(int no,int p[],int i)
{
          int k;
          if(i==1)
          {
                   printf("\t\t\t");
                   for(k=1;k<=no;k++)
                   printf("__");
          }
          printf("\n%d",re[i]);
          gotoxy(25,line++);
          for(k=1;k<=no;k++)
          {
                   printf("|");
                   printf("_");
                   if(p[k]!=-1)
                   printf("%d",p[k]);
                   else
                   printf(" ");
                   printf("_");
          }
          printf("|");
}

FCFS Disk Scheduling Algo implementation in C++

#include<iostream.h>
#include<conio.h>
#include<stdlib.h>
//#include<time.h>
int request[100],st,cylinders,n;
//time_t t;
void random(void )
{
  
    for(int i=0;i<n;i++)
    {
       //srand(request[(rand()%n)]);
       request[i]=rand()%cylinders+1;
    }
}  

void display(void )
{
     cout<<"\nThe requests are : \n";
     for(int i=0;i<n;i++)
        cout<<" "<<request[i]<<" ";
}
  
          
  
int main()
{
   int choice;
   void fcfs(void );
   void scan(void );
   cout<<"\nEnter no. of cylinders in hard disk and starting cylinder : ";
   cin>>cylinders>>st;
 
 
   cout<<"\npress 0 to generate random disk requests and any other no. to give your own requests : ";
   cin>>choice;
   if(choice==0)
   {
       cout<<"\nEnter no. of requests to generate randomly : ";
       cin>>n;
       random();
   }
   else
   {
       cout<<"\nEnter the cylinders requested (0 to break): \n";
       while(1)
       {
          cin>>request[n++];
          if(request[n-1]==0||n==100)
          {
              n--;
              break;
          
          }
      
       }    
   }
 
   cout<<"\nEnter the scheduling algo that you want to implement(0:FCFS,1:Scan) : ";              
   cin>>choice;
   switch(choice)
   {
      case 0:
           fcfs();
           break;    
      case 1:
           scan();
           break;  
      default:
         break;
   }
 
   getch();
   return 0;
}      
          
void fcfs(void )
{
     int total=0,i;              //no of cylinders traversed
     display();
     cout<<"\n\n The traversal is shown below : \n\n"<<st;
     for(i=0;i<n;i++)
     {
         cout<<"-->"<<request[i];
         total=total+abs(request[i]-st);
         st=request[i];  
     }
     cout<<"\n\nNo. of cylinders traversed : "<<total;
}                    

void scan(void )
{
     int total=0,i,j,temp;
     display();
     for(i=0;i<n;i++)
        for(j=0;j<n-1-i;j++)
        {
            if(request[j]>request[j+1])
            {
               temp=request[j];
               request[j]=request[j+1];
               request[j+1]=temp;
            }
        }
     display();
  
     cout<<" \nThe traversal is shown below : \n\n"<<st;
  
     if(st<request[0])
     {
        for(i=0;i<n;i++)
        {
           cout<<"-->"<<request[i];
           total+=abs(request[i]-st);
           st=request[i];
        }
     }
     else
     {
      
         i=0;
         temp=0;
         while(st>request[i++])
            temp++;
         for(i=temp;i<n;i++)
         {
          
                  
        
               cout<<"-->"<<request[i];
               total+=abs(request[i]-st);
               st=request[i];
  
               if(i==n-1)
               {
                
                  total=total+2*cylinders-request[i];
                  st=0;
                  i=0;
                  n=temp;
                  if(st!=cylinders)
                  {
                     cout<<"-->"<<cylinders;
                     cout<<"-->"<<1;
                  }
               }
          }    
                  
       }              
      
       cout<<"\nTotal cylinders traversed : "<<total;
  
}    

Saturday, 3 November 2012

What Is A Leader????

WHAT IS A LEADER?
Yes what is a leader.
Some might think as a strange question but my question is correct.

Leader : A term which in our dictionary refers to 40+ old aged person who carries with himself his experience and knowledge who can tackle difficulties.

But Is he actually worthy of being called a Leader I doubt ?

We often see such characteristics in leader but the reverse is just true.

All those 40+ old mangers who are being talked of are just the power in position.A leader is one who inspire and motivates !!!!! Ya a bit bookish.
Lets simplfy In terms of Aditya Dua you are not a leader :

1.If you take the credit of your win.
2.If you fail you blame your team
3.If you believe you should head the team
4.If you believe you can get the work done by anger.

A person who heads the team is actually just a power head he may or may not be a good leader.
A leader is one who takes responsibility of all the failures that happens but forwards his teammates when it comes to collecting laurels.Even a junior level person in a team may be a leader because it requires skills of composure and able to tackle problems.

Dont worry I am not a leader I am doing just what I wish to convey




Sunday, 26 August 2012

MSP Programme ...

Help Me In being the MSP



Do comment On Youtube