Skip to main content

Modifying Expectations

It is very fine to modify your expectations...

Initially, the estimated and actual completion date for my internship project was not specified. Resource estimates had 100 to 200 hours for writing the tests.
So far, I have been able to meet some goals. Some of them include me being able to:
In the first half of my internship, I have been able to accomplish the goals listed above plus some extra learnings like: 
Setup took longer than expected but the progress since setup improved greatly. It took way longer than expected because I had no understanding of docker and some other technologies needed for setup. With help from my mentors and Adam Shorland, I crushed the "Project setup" goal๐Ÿ˜ƒ.
If I was starting the project all over again, I would request the remote server Clara helped set up after my first 2 failed docker setup attempts. Even though I would love to know why the docker setup isn't working, I would prioritize the tests.
The goal that needed to be modified was the number of tests I wrote per week. Moving on to the second half of my internship, I intend to write more tests; covering not just the parameters but the error codes as well. I mean...if we want to test that things work as expected, we should also check to see that they break the way we expect them to or see if they shatter๐Ÿ˜ˆ.

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...

Wrapping Up Internship

Wrapping up internship ... Unwrapping Contribution The one fear I had about the internship was not making it past the first month. Not only did this not come true but I made it till the end of the internship. The amazing thing that happened during the internship was the sudden boost in my self-esteem. Outreachy internship helped me improve on my communication skills through my mentors; who are my accountability buddies and managers . It was easy to communicate progress, blockers, and feedback. The internship helped grow my debugging and problem-solving skills through blockers.๐Ÿ˜… I always tried debugging issues while awaiting help from my mentors. I would go ahead with other tasks and take short breaks to debug...see if I'd catch something new.โ˜บMy coding skills did improve as well, through study (code learning and online learning) and practice. My mentors also had me explain my code sometimes to be sure that I understood what I was writing. My Outreachy mentors helped me g...