Skip to main content

My first self-review of my performance & work in my first job

Below is my email that I'd emailed to my Boss before my first performance review and it was before I got permanent in the G-Cube Solution. It was my first survey of my performance & work to show it to my Boss on 24th May 2007. After reading this email my boss was surprised because nobody (no employee) had ever done this type of work in his life. My boss Kapil Sir with another director Ankit Jain (Hr head) talked to me about this email and many other things with that. The reaction I'd got was just amazing. Have a look at my email that is given below:


I’ve asked people about the cases when someone out of their colleagues got promotion or salary hike then what happened, what type of problems they faced, what was the reaction of their colleagues, etc., before I’d joined the company. And on the basis of those cases, I have analysed this.

 

Possible problems arise when someone (an employee, say A) gets promotion or salary hike and if their colleagues do not accept that:-

 

  • colleagues behaviour changes towards A
  • politics gets a root to grow against A

 

Probable reason behind these problems:-

 

  • colleagues have doubt on A’s capability
  • colleagues think that they are more capable than A
  • colleagues think that they are equally capable but haven’t get the chance to show their capability
  • colleagues have done an incomplete calculation about A’s ability/performance on their side

 

Probable solutions for these problems:-

 

  • they should know, on what basis A’s got this
  • ask them for their views regarding A’s performance if they know anything regarding this

 

So, I’ve done a survey.

 

I showed them (my colleagues) my work and asked for their views and few more questions like:-

 

  • How was this work?
  • What should be its difficulty level in your view?
  • Can you be able to do this in the same time span?
  • What should I expect in return of this from the company?
  • What would you’ve done if you would be my senior/head?

 

Their replies can be shown via this table:-

 

 

1

2

3

Type of work

Good work

Good work

Excellent work

Difficulty level

I don’t know

High

High

Can they be able

I’m not sure

I can

I can’t

Expect

You know better

Good hike

Good hike

 

It can also be shown via this diagram:-

  1. I don’t know
  2. I can but don’t want to devote so much time on R&D
  3. I can’t

 

So by doing this I’ve made them understand my work and they’ve accepted it too.


As per what you had told me yesterday, I think that the problem is now solved at least for my case.


Comments

Popular posts from this blog

Unlock protected blocks in Siemens SIMATIC Step 7

Recently I'd been called by Hindalco's Fabrication Plant division to unlock the protected blocks in Siemens SIMATIC Step 7. They were in need to unlock those blocks since an year because of 1 million Rupees of loss per month. They want to re-program those blocks but it was locked by the man who'd done the setup. From the people working in that department, I came to know that they were trying to call that man (someone from Italy) right here but he's not coming. Actually, what he'd done was that he'd locked some of the blocks and deleted the source file. And Siemens didn't provide any feature to unlock. Department people also told me that even the people working in Siemens don't know how to do it. Being a software engineer I know that any thing can be reverse engineered. So I took up the challenge. How did I unlocked the blocks? The first thing I'd done was searched about this software at Google and read about what is this software all about. Aft...

Launching a Jupyter Notebook with TensorFlow using Docker

This article will walk you through setting up a Jupyter Notebook environment with TensorFlow pre-installed using Docker. Docker allows you to run isolated containerized applications, providing a consistent environment regardless of your underlying operating system. Prerequisites: Docker: Ensure you have Docker installed and running on your system. You can download and install it from the official Docker website ( https://www.docker.com/ ). Steps: Start Docker: Open your Docker application (Docker Desktop for Windows/macOS or the command line if using Linux). Run the Jupyter Notebook container: For macOS/Linux: Open your terminal application and run the following command: docker run -it --rm -p 8888:8888 -v "${PWD}":/home/jovyan/work jupyter/tensorflow-notebook For Windows: Open your Command Prompt application and run the following command: docker run -it --rm -p 8888:8888 -v "%CD%":/home/jovyan/work jupyter/tensorflow-notebook Explanation of the command flags: -...

JS: The complete code example of Crypto.js (DES)

For one of the project I was trying to use crypto.js but I found that the Quick-start Guide have some deficiency in terms of library usage. So I am writing it here as a useful note for memory recap. <script src="http://crypto-js.googlecode.com/svn/tags/3.1.2/build/rollups/tripledes.js"></script> <script> var encrypted = CryptoJS.DES.encrypt("The secret message", "secret_key"); var e_msg = encrypted.toString(); console.log(e_msg); var decrypted = CryptoJS.DES.decrypt(e_msg, "secret_key"); var d_msg = decrypted.toString(CryptoJS.enc.Utf8); console.log(d_msg); </script>