DEV Community

Christian Vasquez
Christian Vasquez

Posted on

What was your first ever contribution to Open Source?

I'll start!

My first Pull Request that was ever merged was a set of translations for one of Francisco Franco's Android apps from English to Spanish, because that's my native language.

Although it wasn't a complicated task on it's own, I had no idea how Pull Requests, forks, and branches really worked back then and right after I got the email notification that it got merged I decided to learn Git more in depth by taking Udacity's Git related courses.

Needless to say, that was one of the best decisions I've ever made.

Oldest comments (23)

Collapse
 
dougmckechie profile image
Douglas McKechie

My first contribution to open source was literally a 1 character typo fix in the documentation for the SilverStripe framework/cms.

Collapse
 
cathodion profile image
Dustin King • Edited

I submitted a patch to sqlany-django, the Django database backend (aka driver) for Sybase SQLAnywhere. The database backend hadn't updated for the latest version of Django (1.4 at the time, I think), so that's what it was for. I think it was accepted as is, along with one for 1.3 that somebody had already submitted.

It was hosted on Google Code at the time.

Collapse
 
ben profile image
Ben Halpern

github.com/facebook/react/pull/5287

Updated a conference page on the React website, which was part of the main repo at the time.

My first OSS PR was 2015 and I've only made a couple of tiny contributions since then. I've "contributed" in other ways but still haven't made open source code contributions a big part of my life.

Collapse
 
dmfay profile image
Dian Fay

I found and supplied patches for a couple of major bugs preventing set operations (UNION, EXCEPT, and INTERSECT) from working in the JCR-SQL query parser for ModeShape, a Java content repository.

Collapse
 
ganderzz profile image
Dylan Paulus

github.com/react-cosmos/react-cosm...

Found some bugs, and added a 404 page to React Cosmos. It's great feeling to get any amount of code into an OSS project!

Collapse
 
kylerconway profile image
Kyle R. Conway

I believe it was designing a community badge for the Fedora Linux project.

Collapse
 
nickytonline profile image
Nick Taylor

My first PR ws to a project that was using a framework that I was trying to learn, Meteor. It was a fun project called Push Pickup. The premise was to organize pick up games of basketball and some other sports. You can see my horrible first PR here.

Want to see what your first PR was? Check out firstpr.me.

Collapse
 
tgiddings profile image
Trevor Giddings

Fixed a bug in DataNucleus (an ORM) where the method for converting a type to one the database can use didn't actually do said converting.

github.com/datanucleus/datanucleus...

github.com/datanucleus/datanucleus...

github.com/datanucleus/datanucleus...

Collapse
 
markuswillems profile image
Markus Willems

github.com/yannickcr/eslint-plugin...

Updated docs for eslint-plugin-react.

Collapse
 
wintermute21 profile image
John Best

This one Was tons of fun and I wish I could do more of it.

Collapse
 
bizzy237 profile image
Yury

I only have one pull request that was fixing an issue I had with database migration framework. It wasn't merged though because the issue turned out not so easy to reproduce and I didn't have the time to find out what's so special about my configuration

Collapse
 
foso profile image
Jens Klingenberg

My first contribution in code was fixing a bug in AntennaPod, but my first contribution in generell was writing documentation for Miranda IM Plugins.

Collapse
 
gmartigny profile image
Guillaume Martigny

I add a listener to the Escape key to close options panel on PiskelApp. It was my first of a few contributions to this awesome project.

github.com/piskelapp/piskel/pull/396

Collapse
 
ericcurtin profile image
Eric Curtin

My first contribution was a micro-optimisation to the Linux kernel, I was fairly new to git and was a beginner in kernel development. Unfortunately it caused a bit of fuss, it was one of the most talked about threads that month, but not because it was ground breaking. In the end Linus Torvalds responded and got it merged. Learnt a lot in the process:

lkml.org/lkml/2015/9/22/662

Collapse
 
brodan profile image
Brodan

Holy crap, that's so awesome. The Linux kernal to me is probably the most intimidating thing I could think of when considering what to contribute to. I can't believe your first pull request ever was merged and you got a response from Linus himself.

Congrats!

Collapse
 
khmarbaise profile image
Karl Heinz Marbaise

I've taken a look and the earliest contribution I could find: (OMG ...astonished myself):

sourceware.org/svn/gcc/tags/new_ia...

Sun Jun 15 14:37:58 1997  Karl Berry  <karl@cs.umb.edu>

* doc/texinfo.texi (Command List): Various commands missing or
    erroneous.
From: Karl_Heinz_Marbaise@p69.ks.fido.de.

* makeinfo/makeinfo.c: Oops, failed to break out of loop.

* util/texindex.c: Use <getopt.h> not "getopt.h".

* All source files: Merge gettext changes from Karl E.;
his ChangeLog entries below.

This means this contribution is more than 20 years old...with a strange email address: Karl_Heinz_Marbaise@p69.ks.fido.de.

At this time CVS (en.wikipedia.org/wiki/Concurrent_V...) was used. At that time pull request didn't even exist ;-)