Skip to main content

Constructive Feedback

GROWTH is being able to deal with Criticisms as well as you do Praises.

Constructive feedback is information-specific, issue-focused, and based on observations. It can come in the form of Praise(favorable) or Criticism(unfavorable). One important point to note is that it is based on opinions or feelings. My feedback to you on somethings is my opinion about it, relative to you or the actions taken. I am direct with my feedback. Being direct and sincere when delivering feedback is very important as your feedback could be misinterpreted if not delivered in the right manner.

I love feedback as much as I do chocolates. Examples of constructive feedbacks I have gotten:

  • Jenkins: The Jenkins build for my first Wikimedia contribution failed because I had trailing spaces and commas in my code. I would normally have ignored it but I had to make conscious efforts from that point onward.
  • My technical mentor from the Facebook Mentoring Program: To think out loud whenever I am trying to solve a problem with someone especially during technical interviews.
  • My Pastoral mentor from the Facebook Mentoring Program: To communicate with my teammates at all times as it makes working in a team easier. I have never worked with mind readers...would love to one of these days.
  • My Wikimedia mentors: Although, debugging is a cool skill but it is very important to know when you need help.
Negative feedback does not mean I performed woefully, it is simply communicating that I should do better.
You are in no way obligated to work on feedbacks received; exceptions being the ones that are tied to your Organization's KPI(Key Performance Index) but it is advised.

One thing I can assure you is the fact that GIVING/RECEIVING FEEDBACK DOES MAKE A DIFFERENCE.

Comments

Popular posts from this blog

Entangled Strings - Some JavaScript wisdom for when you get entangled

I get these Strings entangled sometimes. You gotta know your stuff well enough to speak to computers these days. They don't argue with you. They just do as you type, maybe say in some cases. Let us debug 👩🏽‍🔧 str.charAt(index) !== str[index] in some cases and here's why: str.charAt(index) returns "" if no character is found at the given index BUT str[index] returns undefined instead. Do you even know what to do when you find me? This never logs because I am at position 0 and that's falsy . All you had to do was check for negative vibes. Now, you know I only do positive vibes yea?😏 Let's try this again. We found her! This logs because I check for negativity   instead. Using  str.indexOf(searchValue)   means to expect -1 when the search value is not found or a value >= 0 when it is found. Now, I know you heard stuff about  str.substring(2) === "POSSIBLE" being true. Yes, POSSIBLE is in fact a substring of IMPOSSIBLE. He...

Experiences applying to Outreachy

Guess what! You are not the only anxious one! Applying to  Outreachy  was challenging for me too. I enjoy learning. I was motivated to apply because I saw an opportunity to grow while working on products that are in use by hundreds of thousands of people. I was hell-bent on participating. "We help newcomers to Free and Open Source Software" - this sentence caught my attention on the application page . The thought of making contributions to projects in the Free and Open Source Software (FOSS) communities got me excited. Ask! Times when you are not so sure, are great for questions. So are times when you do not even have clues of what you are to do. Ask questions when in doubt. That way, you don't spend too much time in the "Confused" state.  Google  (or any other search engine)  is your friend. Make out time to interact with it. Also, make it a habit to reach out to your mentors with updates, questions, and blockers. Outreachy accepts people who are new t...

Feedback makes the difference

COMMUNICATE your opinions. Feedback is someone giving their opinion(s)  on what you are doing or have done. Feedback is used as a basis for improvement. Some go further to tell you what could be improved. Feedback is my sixth love language . I get feedback from friends, colleagues, mentors, bots, software applications and others. I request feedback of people I work with because I strongly believe it aids my growth . I also give feedback; pointing out the fact that the opinion is personal because different feedbacks(views) can be given on the same issue/scenario. This is why I refer to giving/receiving feedback as an exchange of personal opinions . I give constructive feedback. I prefer to get constructive feedback as it is specific, helps me understand what is to be improved on and what I already do well. Feedback goes a long way. During the  Facebook Mentoring program, my mentors gave feedback on my performance at the end of every session and I have improved on areas like...