Skip to main content

The Engineers Voice (The Story of an Engineer )

The Engineers Voice (The Story of an Engineer ) --

Found somewhere on Facebook

Message to P.M from ENGINEERS.:-

Sir ,we have done 22 years of hard workcommitments and with hope..our parents have
invested lakhs of rupees for our education..But sir what is the use of it..Even after hard work for such a long time we are unemployed..My college dint even call up for a single company in campus drive.My seniors asked me to create account in naukri..But no use.. I only get updates for b.p.o and tech supports..sir s.s.l.c is more than enough to work in a b.p.o Seniors then asked me to go in search of a job myself..I did.. BUT companies today don't need fresher's they only need experience candidate..Companies are hiring fresher's only if they have good reference..But I don't have reference or influence :-I failed...Then some people asked me to approach some industries and to hand over my resumes  to watch man's.. I even did that..But watch man answers me that our company has vacancies only for I.t.I and diplomas,we don't need engineers..I failed...
Then some people suggested me to join some consultancy..I even did that..consultancy showed me a ray of hope. They arranged me for an interview.. I went there..first question asked by h.r was :- what will u do from morning til evening. I answered that I SEARCH jobs..he laughed at me and suggested to join some courses.. Okie..I even did that by investing some more money to complete my dreams. Then consultancy arranged me for one more interview I went there...it was a small scale industry.. I got selected in 3 rounds of interview. .H.R offered me 8000 to 10000 rupees per month with a two years bond in a metropolitan city where I at least need 10000 rupees to fulfill my basic needs has a bachelor..Respected sir would u accept this type of a  job..I guess NO..My friend who has secured very less marks than me us working in a M.N.C wil a package of 25000 because he had influence..Sir we have invested lakhs and have done hard work not to earn 8000.we avoid attending family programmes not because we have EGO but its because we don't have job.. First question asked by relatives is WHAT R U DOING NW..sir I feel ashamed to answer this question..Whenever I call my parents the first question they asked me is DID U GET A JOB.I again feel ashamed. .I have to ask money from my dad atleast for food and shelter.. This is the most worst moment.. I feel ashamed..  One small request sir if India don't have potential to give employment stop giving license to new colleges..100 new engineering college are been permitted every year in our country.. Is that important.. Around 15 lakh students are joining for engineering every year in our country.. Y is that sir..I have lost all my faith because I have gone through very bad times and failures..But I AM PROUD TO BE A ENGINEER.. This is not only my story ..but every engineer who don't have money and influence.. WE BADLY NEED YOUR HELP...U R OUR ONLY HOPE SIR @ NARENDRABHAI MODI Send it to everyone and One Day it will reach to our Pm.......

Comments

Popular posts from this blog

AngularJs call one method of controller in another controller .

I have seen many question about calling one method of one controller in another controller or extending scope of one controller in another controller.so here are the ways. if you want to call one controller into another or extending scope of controllers there are four methods available $rootScope.$emit() and $rootScope.$broadcast() If Second controller is child ,you can use Parent child communication . Use Services Kind of hack - with the help of angular.element() 1. $rootScope.$emit() and $rootScope.$broadcast() Controller and its scope can get destroyed, but the $rootScope remains across the application, that's why we are taking $rootScope because $rootScope is parent of all scopes . If you are performing communication from parent to child and even child wants to communicate with its siblings, you can use $broadcast If you are performing communication from child to parent ,no siblings invovled then you can use $rootScope.$emit HTML <body ng-app = ...

Closures in javascript and how do they work ?

JavaScript Closures for Dummies  Closures Are Not Magic This page explains closures so that a programmer can understand them — using working JavaScript code. It is not for gurus or functional programmers. Closures are  not hard  to understand once the core concept is grokked. However, they are impossible to understand by reading any academic papers or academically oriented information about them! This article is intended for programmers with some programming experience in a mainstream language, and who can read the following JavaScript function: function sayHello ( name ) { var text = 'Hello ' + name ; var sayAlert = function () { alert ( text ); } sayAlert (); } An Example of a Closure Two one sentence summaries: a closure is the local variables for a function — kept alive  after  the function has returned, or a closure is a stack-frame which is  not deallocated  when the function returns (as if a 'stack-fr...

Working with $scope.$emit , $scope.$broadcast and $scope.$on

First of all, parent-child scope relation does matter. You have two possibilities to emit some event: $broadcast  -- dispatches the event downwards to all child scopes, $emit  -- dispatches the event upwards through the scope hierarchy. If scope of  firstCtrl  is parent of the  secondCtrl  scope, your code should work by replacing  $emit  by  $broadcast  in  firstCtrl : function firstCtrl ( $scope ) { $scope . $broadcast ( 'someEvent' , [ 1 , 2 , 3 ]); } function secondCtrl ( $scope ) { $scope . $on ( 'someEvent' , function ( event , mass ) { console . log ( mass ); }); } In case there is no parent-child relation between your scopes you can inject  $rootScope  into the controller and broadcast the event to all child scopes (i.e. also  secondCtrl ). function firstCtrl ( $rootScope ) { $rootScope . $broadcast ( 'someEvent' , [ 1 , 2 , 3 ]); } Finally, when you need to ...