DEV Community

Cover image for Applying to the MLH Fellowship: Tips & Tricks
Pawan Kolhe
Pawan Kolhe

Posted on • Updated on

Applying to the MLH Fellowship: Tips & Tricks

It was a Tuesday morning, and for once I got up early. I picked up my phone and scrolled through my emails, trying to spot one from MLH. To my surprise, there it finally was, the acceptance letter I had been waiting for more than a month. Oh boy, that feeling was great. 😊

I was accepted into the Open Source program of the MLH Fellowship for Spring 2021 (batch 2). πŸŽ‰

What's an MLH Fellowship? πŸ€”

In short, it is a global 3-month remote internship alternative where the selected fellows are placed in pods of 8-10 fellows where they collaborate and work on real-world projects depending on the program (Explorer, Open Source, Externship) they are selected for and are assigned seasoned software development mentors to help them throughout the program. There are many fun events throughout the fellowship such as CTF challenges, hackathons, workshops, show and tell sessions, game nights (Among Us, Skribbl), etc. All students, as well as non-student professionals, can apply to the MLH Fellowship.

The MLH Fellowship website probably explains it a lot better: πŸ’» https://fellowship.mlh.io/

MLH offers a stipend to accepted Fellows. The stipend won’t replace a full-time job, but it can help offset some of your living and educational expenses during the program. The amount of the stipend is determined by your track and the country you are residing in during the program.

In this blog, I share my experience applying to the fellowship, from filling out the application form to interviewing. I provide my opinions on what the folks at MLH are looking for while evaluating your application.

Let's Begin

TOC

Phases πŸš—

Here is a summary of the phases your application goes through:

  1. Application Review: Going through your resume, essay questions, and other parts of the program.
  2. Code Review: Looking at the code sample to ensure it's of a high enough quality
  3. Initial Interview: Chance to get to know you and find out why you want to be part of the Fellowship
  4. Technical Interview: Chance to show your technical skills by going through your code sample
  5. Final Review: The best applications are selected and sent the acceptance letter.

My Timeline ⏳

  • Applied: Aug 17, 2020
  • Review Started: Nov 27, 2020 (after 3 months, 10 days)
  • Email to schedule Initial Interview: Dec 5, 2020 (after 8 days)
  • Initial Interview: Dec 9, 2020 (after 4 days)
  • Email to schedule Technical Interview: Dec 9, 2020 (same day)
  • Technical Interview: Dec 13, 2020 (after 4 days)
  • Accepted: Jan 19, 2021 (after 1 month, 6 days)

The deadline for the Spring 2021 application was Jan 4, 2021, with the program commencing on Feb 1, 2021.

Applying to the MLH Fellowship πŸ“

To apply, head over to the MLH Fellowship website, and click Apply Now.

PRO TIP: If you want to check out all the questions on the application form without submitting the form, just enter random data into the form and keep clicking Next Page.

I would recommend applying at least 1-2 months before the application deadline. The volume of applications might be very high within the last one month, so the earlier you apply, the earlier your application gets reviewed, and the earlier you complete your interviews.

Let's walk through some of the important sections in the application form.

Program

You'll need to select one of the 3 programs:

  • Explorer: Build out your portfolio of personal projects and experiment with new technologies by collaborating in small groups on a series of short hackathon-like sprints.
  • Open Source: Learn how to be a great Open Source citizen by contributing to major projects that are used by thousands of companies around the world.
  • Externship: Experience what it's like to solve real-world software engineering problems by collaborating on projects from real companies & government partners.

If you select Open Source, you'll need to select one of the following tracks:

  • JavaScript / TypeScript
  • Python (Web)
  • Python/Julia (Data, AI/ML)
  • Ruby

I went with the Open Source program and JavaScript / TypeScript track since I πŸ’› JavaScript and had used it for most of my projects.

P.S. More programs coming soon.
More Programs

Which Program should I choose?

Explorer is a good fit for those lacking many personal projects or who want to discover new technologies. In the Explorer program, you would be building out your portfolio of personal projects & experimenting with new technologies. After every two weeks (sprint), you'll be building a new real-world project to add to your resume with a group of 2-4 new members. Each sprint has its own theme (Portfolios, Dev Tools, Gaming, Social Good, etc) that challenges you to explore your interests. You'll get to interact with industry experts and founders who will talk to you about the real challenges they face every day.

Open Source is great for people that have experience working on many projects or have interned at companies but lack experience contributing to major open-source projects. In the Open Source program, fellows will get to work on major open-source projects such as React, Jest, Flask, Julia, forem, scikit-learn, etc. At the beginning of the program, fellows are placed into small groups called "pods". Each pod contains 8-10 students, a professional mentor, and 2-3 Open Source project maintainers. Fellows within the Pod collaborate on their projects over the course of the program.

Externship is awesome for people looking to solve real-world software engineering problems and gain experience collaborating on projects from real companies & government organizations. Fellows will learn how to go from ideation to launch, developing not only technical skills but also business skills like the customer discovery process.

NOTE: Externships are mostly given to people authorized to work in the US, as most of the partnering companies are located in the US. Although, MLH is trying its best to partner with more companies around the world. If you are not eligible for the Externship, you will automatically be considered for the Open Source program, so don't worry.

Time Commitment

Next, you need to pick to work either part-time (10-20 hours per week) or full-time (30-40 hours per week). I went with part-time being a full-time university student. πŸ‘¨β€πŸŽ“

Programming Language

There will be a Developer Experience section, where you need to select the programming language you are most proficient with. πŸ‘¨β€πŸ’»

Ideally, you are expected to have intermediate to advanced knowledge in the programming language you select and have some experience working on a variety of projects using that language. You'll be judged on your proficiency in this language during the technical interview.

Code Sample

In my opinion, the code sample plays a crucial role in the overall selection process. It's great to have a code sample that solves a real-world problem and demonstrates good software engineering practices. It could be a project you created at a hackathon, a personal project, or a significant open-source contribution you made.

NOTE: If you're applying for the Open Source program, the code sample you submit needs to be in the programming language you picked as your most proficient one.

Pick a project you are most proud of and best represents your ability to write code. It doesn't need to be a complex project, but also not too simple. If you have multiple great projects, pick the one that is unique in terms of the idea, since it shows that you couldn't have copied it off the internet.

Avoid submitting Jupyter Notebook projects. As Swift says:

"They don't really demonstrate a real-world ability to solve problems, they read more like a blog post".

Here are some code sample requirements straight from the application form:

Code Sample requirements

Displaying good software development practices is a huge plus point. Some good to have things in your project:

  • Well written documentation
  • A neat looking, easy to understand README file which explains what the project does and how one can use it
  • Modular code. Don't put everything in one large file, try to divide it into multiple files.
  • Consistent and clear variable naming
  • Consistent indentation and spacing
  • Avoid large commented out sections in code
  • Use environment variables where necessary
  • Unit testing

P.S. If you know more, mention them in the comments.

Here is the project I submitted:

GitHub logo PawanKolhe / color-calendar

πŸ“… A customizable calendar JavaScript UI widget/component library with the ability to show events.

logo

Color Calendar

npm version npm downloads size jsdelivr Hits license

CircleCI

A customizable events calendar component library. Checkout Demo 1, Demo 2 and Demo 3.

Color Calendar

πŸš€ Features

  • Zero dependencies
  • Add events to calendar
  • Perform some action on calendar date change
  • Month and year picker built-in
  • Themes available
  • Fully customizable using CSS variables, passing options parameters while creating calendar, or overriding CSS.
  • Request more features...

πŸ“¦ Getting Started

CDN

JavaScript

<script src="https://cdn.jsdelivr.net/npm/color-calendar/dist/bundle.js">
Enter fullscreen mode Exit fullscreen mode

Also available on unpkg.

CSS

Pick a css file according to the theme you want.

<link
  rel="stylesheet"
  href="https://cdn.jsdelivr.net/npm/color-calendar/dist/css/theme-basic.css"
/>
<!-- or -->
<link
  rel="stylesheet"
  href="https://cdn.jsdelivr.net/npm/color-calendar/dist/css/theme-glass.css"
/>
Enter fullscreen mode Exit fullscreen mode

Fonts

Get fonts from Google Fonts

<link
  href="https://fonts.googleapis.com/css2?family=Open+Sans:wght@400;600;700&display=swap"
  rel="stylesheet"
/>
Enter fullscreen mode Exit fullscreen mode

Check what…

Essay Questions

This section is the most important part of your application. Take your sweet time to write the essay responses. ✍️

There are a total of 5 long answer questions:

  1. Briefly describe what this code sample does. (200 words limit)
  2. Briefly describe what you learned when you created this code sample. (200 words limit)
  3. Why do you want to become an MLH Fellow? (250 words limit)
  4. Learning is the primary focus of the MLH Fellowship. What have you learned recently that you would want to teach other fellows if accepted? (250 words limit)
  5. Anything else we should know about you? (250 words limit)

In question 1, I talked about what the project does, where it can be used, and what technologies I used.

In question 2, This was my first time building a JavaScript library, so I explained the challenges I faced while creating the library. I talked about the build tools I used to build the project, in particular about Webpack, Gulp, and Rollup, and why I used them.

In question 3, I talked about how the fellowship would help me bridge the gap between university and industry by exposing me to real-world projects. I also discussed my love for lifelong learning and sharing my knowledge with others.

In question 4, I talked about the build tools I learned that I mentioned in question 2 and about Cloud and DevOps.

In question 5, I talked about my volunteering experience and my career goals.

"You should focus on what’s unique about your circumstances that makes you interesting or noteworthy. The most powerful essays tell a personal story that’s unique and relevant to the opportunity. For us, these typically tell the tale of how someone fell in love with coding, hackathons, or the CS community."
- Will Russell, MLH Fellowship Community Manager

As Will says, make your first impression count.

Discord message from Will

One more thing, if you're not the best with English, have your essay answers reviewed by your friends or family. Grammatical and spelling mistakes can be a huge turnoff.

Advice from MLH CEO

Here is a very informative interview by Code for Cause with Mike Swift (CEO, Major League Hacking):

Scroll to 34:10 timestamp


Interviews πŸ‘¨β€πŸ’Ό

If your essay questions are answered well and your code sample is good enough, you'll be invited for the initial (non-technical) interview. There will be a Calendly link in the email for you to schedule the interview according to the date and time of your preference. Always be on-time and check your audio/video setup beforehand.

Initial Interview

Once your application review process starts, it usually takes up to 10 days for you to receive an email to schedule your initial interview.

Initial Interview

This interview starts off with the interviewer confirming the details you mentioned on your application like the program you applied for, the time commitment, whether you are over the age of 18, which country you reside in, etc.

It's a short 10 minutes interview to check:

  • If you're eligible
  • How passionate you are about the program
  • If your audio and video quality is up to mark
  • If you are able to communicate well with others since it's a global program

The 2 major questions I was asked during this interview were:

  • Why do you want to become an MLH Fellow?
  • Tell me a bit about the project you submitted and what you learned from it.

At the end of the interview, you can ask questions to the interviewer and I would highly suggest you do ask something here. As my interviewer was a past MLH Fellow, I asked him about his experience as a fellow.

Just within 2 hours after my initial interview, I got an email to schedule my technical interview. πŸ₯³ Note that it might take longer for some people to receive a response, depending on the volume of applications and time of the year.

Technical Interview

In the technical interview, the interviewer judges your technical abilities. It's strictly a 15 minutes interview, so manage your time wisely. Make sure you know your project inside out, and what each file in your project does. πŸ‘©β€πŸ’»

Scheduling Technical Interview

The interview would start off with you explaining what your project does in brief (keep it short). Then, you'll need to share your screen and guide the interviewer through the codebase explaining how it works. The interviewer will stop to ask you questions in between from time to time. They could ask why you did something in a particular way in your project and about some concepts of the programming language you used.

I think I must have over-prepared for my technical interview. πŸ˜… I thought I might get asked questions from React, Express, Vue, technologies that I've used in my other projects on GitHub, but that was not the case.

I was only asked questions from the project I submitted. I certainly didn't realize how quickly 15 minutes can fly. I definitely could have reduced how much time I spent explaining what the project does.

The interviewer is more interested in knowing how much of the code you understand in your project and if you can explain why you made a certain decision in your project. The interviewer also wants to understand how well you know the programming language you used.

NOTE: You will not be asked to write any code during the technical interview.

In my project, I was asked why I used Rollup as oppose to some other module bundler such as Webpack, and why I performed certain tasks using Gulp. I was also asked to explain the prototype-based inheritance pattern I used in my JavaScript code.

Thankfully, I was prepared to answer all those questions. Though I wasted too much time in the start to explain what my project does, I finished off strong in terms of technical knowledge.

After the technical interview, one needs to be patient because the final review of your application usually happens close to the application deadline. You can expect the acceptances to start rolling out about 2 weeks prior to the start of the fellowship.

Acceptance Email

PRO TIP: Always check your spam folder, you don't want to miss any important emails.

Statistics for Spring 2021 πŸ“Š

  • 4968 people applied (confirmed)
  • Approximately 1000 received interviews
  • Around 125 fellows accepted across all programs combined

That's a 2.5% acceptance rate.

NOTE: Spring had lower applications as some regions don't make doing internships very easy during that time. Expect the applications count to multiply for the Summer and Fall batch.

Conclusion

You actually don't need to have past open-source experience in order to get into the Open Source program. In fact, most people that get selected into the Open Source program are new to open source.

I did not have any experience contributing to major open-source projects when I applied, apart from a few documentation contributions. What I did have however was plenty of personal projects, an active GitHub profile, and an internship experience at a startup. πŸ’ͺ

Make sure to show that you're a lifelong learner, can collaborate well with others, and are passionate about tech. A personal touch to your application in the essay questions and code sample would be an awesome way to set yourself apart from the others.

All the best! πŸ˜‡ I hope you get that acceptance letter!

If you find this blog post useful, share it with your friends and connect with me on LinkedIn and Twitter. πŸ‘

I'll be writing about my fellowship experience once it's complete.

Top comments (20)

Collapse
 
walter11 profile image
Atharv-777

Found it really helpful and informative. Had doubts before but after reading this article got a relief of what to do(how to prepare for the questions) and be ready for the interview. Thanks a lot @pawankolhe

Collapse
 
nnamdroid12 profile image
William Nnamani

Please I am about applying for MLH fellowship for the section where it's demanding github and linkedin profile link I am submitting my github and linkedin profile link but it's giving invalid I went forward to copy those link from my profile yet same error displaying . Please how can it be solved?

Collapse
 
krajat19 profile image
Rajat

Hi,
In case if you are giving whole link
give username of github and user-id of linkedin instead of giving whole link.

Collapse
 
somya51p profile image
Somya Prajapati

I found this blog really informative and helpful. Thank you for sharing your experience :)

Collapse
 
mustafaadel profile image
Mustafa Adel Zakaria

I have a question
I'm qualified to to have the first interview and they asked me to read my application again to prepare but I can't remember what I wrote in my application and can't find a way to access it.
Can anyone tell me where can I find my submitted application?

Collapse
 
debugagrawal profile image
Deepak Vijay Agrawal

This Blog is really great Pawan,πŸ™ŒπŸš€

literally everything is mentioned so precisely and perfectly along with the timelines and the video and all the tracks πŸ’―πŸš€πŸ€˜βœ¨

Collapse
 
pawankolhe profile image
Pawan Kolhe

Thanks! 😊
Very glad you liked it πŸ™ŒπŸΌ

Collapse
 
yashkamboj profile image
YashKamboj

really liked it very helpfull

Collapse
 
pawankolhe profile image
Pawan Kolhe

Awesome. Happy it helped πŸ˜„

Collapse
 
ruhi2820 profile image
ruhi2820

This is really helpful specially for the ones who are looking forward to apply for the MLH fellowship

Collapse
 
shahiscoding profile image
Abhishek shah

Are there any other Programs like this to apply to ??

Collapse
 
crony10 profile image
crony10

hey @pawankolhe can you please tell that from where you got the statistics of number of applications received in MLH?

Collapse
 
lordneo profile image
Someshwar Tripathi

Fellowship experience blog please!

Collapse
 
krajat19 profile image
Rajat

Amazing
Found its really helpful !
Thanks for sharing this

Collapse
 
pda profile image
Precious Abubakar

This was helpful, thank you.

Collapse
 
imkrunal39 profile image
Krunal Suthar

Stipend is for all tracks or only some tracks? Means if i select any track. Will i get stipend?

Collapse
 
tanvi029 profile image
tanvi029

Hello!
I needed to know, if I have job experience with java but I am applying for open source contributions in python, then will my job experience count while applying. Should I even mention it?

Collapse
 
gaurav3435 profile image
Gaurav Patil

Thanks for the info! Really helpful.