Skip to main content

Everybody Struggles

I did struggle, more than a bit actually.

During the application process, I was stuck on setup as I mentioned in Experiences applying to Outreachy. This was resolved with help from my mentors and Adam Shorland. Upon commencement of my internship for Mediawiki on the project Improve Mediawiki Action API Integration Tests I ran into issues and got stuck on setup AGAIN. This was strange as I was active all through the application and waiting process. I had 94 tests passing, 1 pending and 38 failing as opposed to the current status of the tests which was 133 tests passing, 1 pending and 2 failing. I just didn't understand the errors to start with. It was very confusing for me as things were fine days earlier. I spent hours tying to understand the errors. I tried deleting the current setup and started all over but the errors persisted. I tried https://www.mediawiki.org/wiki/Manual:Installing_MediaWiki_on_XAMPP and https://stackoverflow.com/questions/38378914/git-error-rpc-failed-curl-56-gnutls. I was all over the place, confused and pissed that I wasn't making progress.

My mentors walked me through different solutions and that encouraged me as they were ALWAYS ready to help. In the end, the fix was switching laptops. The one I was working with had some features blocked by the admin. What made the difference was the fact that I wasn't hesitant to reach out for help and my mentors were always ready to reply my mails. They got on calls with me when necessary.

The simple truth is EVERYBODY STRUGGLES. Chances are someone somewhere ran into the same issue before you did. Reaching out for help gets you solutions faster as you get more people thinking about the problem and sourcing out solutions. My advise is to reach out once you are stuck for 30minutes or an hours tops. If the error message doesn't change say 30minutes to an hour later, YOU NEED HELP  PLEASE and DO NOT HESITATE TO REACH OUT.


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

Think about your audience

My audience is what I like to call the Arc Reactor to my Iron Man suit. The mission if the Wikimedia Foundation is to bring free educational content to the world. Wikimedia is a global community id contributors and anyone who shares Wikimedia's vision to collect and share knowledge that fully represents human diversity is very much welcome to participate in the community. Imagine a world where every single human being can freely share in the sum of knowledge .   The purpose of integration testing is to expose show you how well modules/units in your software interacts. Hence, the community is rest assured that changing or refactoring Wikimedia won't break the API. In the past month, I have learnt quite a number of things just as I have made my own share of mistakes. Remember,  Everybody Struggles . The most interesting thing I learnt is that Wikimedia powers Wikipedia. I have used Wikipedia as my go-to for answers for years now and I never even knew๐Ÿ˜ƒ. I also did learn...