Difference between revisions of "OSD & DPS909 Fall 2019 - Release 0.2"

From CDOT Wiki
Jump to: navigation, search
(@ODAVING - Sina Lahsaee)
(@RyanWils- Ryan Wilson)
Line 189: Line 189:
 
* #1: https://github.com/CivicDataLab/civicdatalab.github.io/issues/31
 
* #1: https://github.com/CivicDataLab/civicdatalab.github.io/issues/31
 
* #2: https://github.com/ron9817/tic_tac_toe-Game/issues/1
 
* #2: https://github.com/ron9817/tic_tac_toe-Game/issues/1
 +
* #3: https://github.com/darkreader/darkreader/issues/1623
 
====Pull Requests====
 
====Pull Requests====
 
* #1: https://github.com/CivicDataLab/civicdatalab.github.io/pull/33
 
* #1: https://github.com/CivicDataLab/civicdatalab.github.io/pull/33
 
* #2: https://github.com/ron9817/tic_tac_toe-Game/pull/2
 
* #2: https://github.com/ron9817/tic_tac_toe-Game/pull/2
 +
* #3: https://github.com/darkreader/darkreader/pull/1638
 
====Blog Posts====
 
====Blog Posts====
 
* #1: https://medium.com/@rwilson31/contribution-1-for-hacktoberfest-bc9790996dcf
 
* #1: https://medium.com/@rwilson31/contribution-1-for-hacktoberfest-bc9790996dcf
 
* #2: https://medium.com/@rwilson31/contribution-2-for-hacktoberfest-8dc287212ec0
 
* #2: https://medium.com/@rwilson31/contribution-2-for-hacktoberfest-8dc287212ec0
 +
* #3: https://medium.com/@rwilson31/contribution-3-for-hacktoberfest-13e56867b20c
  
 
<hr>
 
<hr>
 +
 
===[https://github.com/drwm-base @drwm-base] - David Medeiros ===
 
===[https://github.com/drwm-base @drwm-base] - David Medeiros ===
 
====Issues====
 
====Issues====

Revision as of 16:49, 18 October 2019


Release 0.2

Due Date

Thursday October 31. See Requirements below for details on what needs to be included in your submission.

Overview

This second release is meant to get you contributing to real open source projects, furthering your git, GitHub, and open source experience.

For the month of October, we will be participating in Hacktoberfest, a yearly event to encourage new people to get involved in the open source community.

Learning Goals

The goal of this second release is to help you gain experience and confidence in contributing to open source projects through direct involvement in a number of real projects. As a result, you will learn more about what it's like to work within the open source development community. Finally, you will participate in a global event.

This release will also help you to continue to develop your blogging skills, and practice software planning, estimating, and scheduling, as you work to complete your pull requests each week.

Hacktoberfest

Start by registering with your GitHub info on the Hacktoberfest web page.

You are then asked to complete 4 pull requests during October, doing 1 pull request per week. You will also be required to blog each week about your progress (see below).

You are expected to progress through your 4 pull requests. That is, each one should build on the previous one in some way. You can't, for example, fix 4 spelling mistakes in a single project. Rather, use each pull request as an opportunity to try something new, and to push yourself a little bit further.

You shouldn't take on huge issues in projects you don't understand, and overwhelm yourself. But you should challenge yourself to work just outside your current skill and comfort zones. The goal is to progress in your experience, competence, and confidence.

NOTE: many people "cheat" at Hacktoberfest by creating repositories that are simply lists of words, movie titles, etc and aren't really open source projects. Please refrain from contributing to these. Make sure you are picking issues from real open source projects. If you're not sure, ask your professor.

Weekly Labs and Blogging

Each week during October, for the course labs, you will be required to complete 1 pull request and 1 blog post. This will help you stay on track, and spread your work out during the month.

Your blog posts can include things like:

  • Which issue did your work on? Include links
  • What was the issue about?
  • What did you need to do to prepare the fix? Was their much setup?
  • What did you need to learn in order to make the fix?
  • Explain the code for your fix. How does it work?
  • If possible, include some kind of demo of the code before/after the fix (not all issues will lend themselves to this, but if you can, consider using screenshots, etc).
  • What research did you do? Were there aspects of the issue that you found difficult?
  • Did you have any interesting interactions with the project maintainers?
  • What did you find difficult? How did you overcome this?

You can read a wrap-up post I wrote about Hacktoberfest 2018 here.

Finding Issues

Finding good issues takes time, so be patient and leave yourself plenty of time. Also be aware that there will be thousands of other people contributing to Hacktoberfest, and competing with you for issues.

Here are some links to queries and tools for finding potential issues to work on:

Some other tips when searching for issues on GitHub:

  • You can specify the user field, if you want to limit your search to an organization or company, for example "good+first+issue"&type=Issues user:microsoft would show only issues belonging to Microsoft repos.
  • You can limit to a particular programming language using the language field, language:python.

Fixing Your Issues

When you find an issue that you want to work on, you are encouraged to leave a comment telling the project maintainers. This will help signal to other developers that you are working on it, and (hopefully) not submit a fix. Some people don't follow this rule, and submit fixes anyway.

Submit a pull request for your fix, following all guidelines for the project (see their README and CONTRIBUTING docs). Make sure your pull request is high quality, doesn't touch lines/files that aren't related to your fix, and has proper indenting and code formatting. Pay attention to small things.

You are expected to make any fixes that your reviewers request in subsequent commits. Be professional in your communication and the code you submit.

Getting Help

At every stage of your work, make sure you ask for help, and get feedback from others in the community by asking questions. Don't struggle on your own and get stuck, or miss the due date.

Please use Open Source Slack to help with communication. If you can't get a maintainer for a repository to respond to your Issues, or give feedback on reviews, you should try and reach out on Slack. If that doesn't work, consider switching to contribute to another repository.

Requirements

You will be graded on the following. Please make sure you have addressed everything that makes sense below:

  • Four proper Pull Requests completed on time (one per week)
    • Clear progression in your work (i.e., you did more than fix 4 spelling mistakes)
    • Professional and respectful interactions in your issue with maintainers, good communication in issues and pull requests.
    • Pull Requests should reference the Issue Number in its description (e.g., "Fixes #7: Add feature to do ..."), and include sufficient information about changes you made
    • All work is done on a new branch (e.g., if you are fixing Issue 123, use issue-123 as your branch name)
    • Proper code to fix your Issues
    • Code follows style of the original repository author(s)
    • All review comments have been addressed, and subsequent commits have been added to correct any problems. Ideally your Pull Request is merged.
  • Blog Posts for all Pull Requests
    • Discussion of the changes you made. What was your process? What did you learn? What would you do differently next time, or what worked and you would do again?
    • Link to the Issues you filed, and discuss the bug/problem/addition you wanted to address.
    • Link to the Pull Requests you created, and discuss the fix.
    • Link to the Pull Requests you reviewed, and discuss what you did and found.
    • Discussion of what you did to address your review comments.

Submission

When you have completed all the requirements above, please add a section below following the given template, including all necessary links:


@MusaBajwa - Musawar Bajwa

Issues

Pull Requests

Blog Posts


@vitokhangnguyen - Ngoc Nam Khang Nguyen

Issues

Pull Requests

Blog Posts


@robertbegna - Robert Begna

Issues

Pull Requests

Blog Posts



@Silvyre - Rafael Ungar

Issues

  1. https://github.com/layer5io/layer5/issues/191
  2. https://github.com/layer5io/layer5/issues/65

Pull Requests

  1. https://github.com/layer5io/layer5/pull/192
  2. https://github.com/layer5io/layer5/pull/209

Blog Posts

  1. https://raungar.wordpress.com/2019/10/02/hacktoberfest-2019-documenting-my-first-ever-hacktoberfest-contribution/
  2. https://raungar.wordpress.com/2019/10/12/hacktoberfest-2019-is-heating-up/

@EEkbatani- Ehsan Ekbatani

Issues

Pull Requests

Blog Posts


@RyanWils- Ryan Wilson

Issues

Pull Requests

Blog Posts


@drwm-base - David Medeiros

Issues

Pull Requests

Blog Posts


@KarlaChen - Minyi Chen

Issues

Pull Requests

Blog Posts


@smilegodly - Matthew Clifford

Issues

Pull Requests

Blog Posts


@hansal7014 - Hansal Bachkaniwala

Issues

Pull Requests

Blog Posts


@jerryshueh - Cheng-Tuo Shueh

Issues

Pull Requests

Blog Posts


@brucremo - Bruno Alexander Cremonese de Morais

Issues

Pull Requests

Blog Posts


@jordanhui19 - Jordan Hui

Issues

Pull Requests

Blog Posts


@jrdnlx - Jordan Sie

Issues

Pull Requests

Blog Posts


@varshannagarajan - Varshan Nagarajan

Issues

Pull Requests

Blog Posts


@neilong31 - Neil Ong

Issues

Pull Requests

Blog Posts


@Grommers00 - James Inkster

Issues

Pull Requests

Blog Posts


@JatinAroraGit - Jatin Arora

Issues

 2: https://github.com/edgi-govdata-archiving/web-monitoring-ui/issues/411 

Pull Requests

 2: https://github.com/edgi-govdata-archiving/web-monitoring-ui/pull/421

Blog Posts

 2: https://jatinoopensource.wordpress.com/2019/10/04/lab-5-the-second-pull-request/#more-149

@Agarcia-Caicedo - Ana Garcia

Issues

Pull Requests

Blog Posts


@Paul-Luu - Paul Luu

Issues

Pull Requests

Blog Posts


@Calvin-Ho - Calvin Ho

Issues

  1. https://github.com/edgi-govdata-archiving/web-monitoring-versionista-scraper/issues/162
  2. https://github.com/FreezingMoon/AncientBeast/issues/851

Pull Requests

  1. https://github.com/edgi-govdata-archiving/web-monitoring-versionista-scraper/pull/245
  2. https://github.com/FreezingMoon/AncientBeast/pull/1552

Blog Posts

  1. https://c3ho.blogspot.com/2019/10/release-02-first-issue.html
  2. https://c3ho.blogspot.com/2019/10/release-02-second-issue.html

@MeisterRed - Timothy Morris

Issues

  1. https://github.com/C-Anirudh/chuck/issues/1
  2. https://github.com/sitture/commit-status/issues/17

Pull Requests

  1. https://github.com/C-Anirudh/chuck/pull/8
  2. https://github.com/sitture/commit-status/pull/19

Blog Posts

  1. https://medium.com/@tjmorris56/hacktoberfest-week-1-first-steps-2e9e1d75c03
  2. https://medium.com/@tjmorris56/hacktoberfest-week-2-hunger-for-issues-887a253a57b2

@cindyledev - Cindy Le

Issues

Pull Requests

Blog Posts


@Rare - Reza Rajabi

Issues

Pull Requests

Blog Posts


@manekenpix - Josue Quilon Barrios

Issues

Pull Requests

Blog Posts


@wajeehsheikh - Wajeeh Sheikh

Issues

Pull Requests

Blog Posts


@lozinska - Krystyna Lopez

Issues

Pull Requests

Blog Posts


@Sbaah - Sefa Baah - Acheamphour

Issues

Pull Requests

Blog Posts


@April - WingTungLau

Issues

Pull Requests

Blog Posts


@dbeigi - Daniel Beigi

Issues

Pull Requests

Blog Posts


@mpark86 - Minuk Park

Issues

Pull Requests

Blog Posts


@evlnyng - Evelyn Yeung

Issues

Pull Requests

Blog Posts


@miggs125 - Miguel Roncancio

Issues

Pull Requests

Blog Posts



@ultimabgd - Brett Dennis

Issues

Pull Requests

Blog Posts



@Cadesh - Andre Rosa

Issues

Pull Requests

Blog Posts



@cagomezr - Carlos Antonio Gomez

Issues

Pull Requests

  1. 1.1 https://github.com/OSWeekends/eventpoints-backend/pull/55/

Blog Posts


@Shmooey - Hayley McIldoon

Issues

Pull Requests

Blog Posts


@zufishanali - Zufishan Ali

Issues

Pull Requests

Blog Posts


@jpjjulie - Julie Philip James

Issues

Pull Requests

Blog Posts


@cryolis - Igor Naperkovskiy

Issues

Pull Requests

Blog Posts


@giatuongtran9 - Gia Tuong Tran

Issues

Pull Requests

Blog Posts


@RyanMarzec - Ryan Marzec

Issues

Pull Requests

Blog Posts


@FluffiestBunny - Bowei Yao

Issues

Pull Requests

Blog Posts


@s-arika - Sarika Hanif

Issues

Pull Requests

Blog Posts


@haichuan0424 - Haichuan He

Issues

Pull Requests

Blog Posts


@izhuravlev - Ilya Zhuravlev

Issues

Pull Requests

Blog Posts


@PavanKKamra - Pavan Kamra

Issues

Pull Requests

Blog Posts


@birtony - Anton Biriukov

Issues

Pull Requests

Blog Posts


@ODAVING - Sina Lahsaee

Issues

Pull Requests

Blog Posts


@Jayson - Jayson Sherry

Issues

Pull Requests

Blog Posts


@ThomasLuu00 - Thomas Luu

Issues

Pull Requests

Blog Posts


@SukhbeerSingh - Sukhbeer Singh Dhillon

Issues

Pull Requests

Blog Posts




@lucacataldo - Luca Cataldo

Issues

Pull Requests

Blog Posts


@GitHubName Issues Pull Requests Blog Posts
@ODAVING - Sina Lahsaee https://github.com/angular/angular/issues/32948 https://github.com/angular/angular/pull/32971/commits/0d474947d327d30507083a24555d93fc7dd003aa https://opensourceprojects19.blogspot.com/2019/10/hacktober-first.html
@jerryshueh - Cheng-Tuo Shueh #1 https://github.com/HackeSta/atom-icons/issues/12
#2 https://github.com/ZoranPandovski/design-patterns/issues/261
#1 https://github.com/HackeSta/atom-icons/pull/38
#2 https://github.com/ZoranPandovski/design-patterns/pull/273
#1 https://osstudent.blogspot.com/2019/10/as-mentioned-in-my-last-blog-post-i-am.html
#2 https://osstudent.blogspot.com/2019/10/dps-909-release-02-hacktoberfest-week-2.html
https://github.com/brucremo - Bruno Alexander Cremonese de Morais https://github.com/MasterKN48/MERN-Stack-Login-Methods/issues/4 https://github.com/MasterKN48/MERN-Stack-Login-Methods/pull/6 https://bacmme.blogspot.com/2019/10/my-first-pull-request-hacktoberfest.html
https://github.com/jordanhui19 - Jordan Hui #1: https://github.com/Half-Shot/matrix-appservice-discord/issues/558 #2: https://github.com/hamzaolak/fast-read/issues/16 #1: https://github.com/Half-Shot/matrix-appservice-discord/pull/560 #2: https://github.com/hamzaolak/fast-read/pull/18 #1: https://jhuiosd600.blogspot.com/2019/10/first-contribution-of-hacktoberfest.html #2: https://jhuiosd600.blogspot.com/2019/10/second-contribution-of-hacktoberfest.html
https://github.com/nazneennahar - Nazneen Nahar https://github.com/vinitshahdeo/Email-Signature-Template/issues/1#
#2:https://github.com/sabamosleh/DataStructureExamples/issues/4
https://github.com/vinitshahdeo/Email-Signature-Template/pull/16
#2:https://github.com/sabamosleh/DataStructureExamples/pull/15
https://inspirationalnation.wordpress.com/2019/10/06/hacktoberfest-part1/
#2:https://inspirationalnation.wordpress.com/2019/10/14/hacktoberfest-part2/
@JatinAroraGit - Jatin Arora #1: https://github.com/edgi-govdata-archiving/web-monitoring-ui/issues/407
#2: https://github.com/edgi-govdata-archiving/web-monitoring-ui/issues/411
#1: https://github.com/edgi-govdata-archiving/web-monitoring-ui/pull/414
#2: https://github.com/edgi-govdata-archiving/web-monitoring-ui/pull/421
#1: https://jatinoopensource.wordpress.com/2019/10/01/lab-4-first-pull-request/
#2: https://jatinoopensource.wordpress.com/2019/10/04/lab-5-the-second-pull-request/#more-149 
@mpark86 - Minuk Park #1: https://github.com/mayukh18/BlindChat/issues/7
#2: https://github.com/cdnjs/new-website/issues/277
#1: https://github.com/mayukh18/BlindChat/pull/39
#2: https://github.com/cdnjs/new-website/pull/304
#1: https://minukpark.wordpress.com/2019/10/05/hacktoberfest-2019-pr-1/
#2: https://minukpark.wordpress.com/2019/10/14/hacktoberfest-2019-pr-2/
Jacob Shuman - https://github.com/jacob-shuman https://github.com/mearns/props-model/issues/1 https://github.com/mearns/props-model/pull/2 https://medium.com/@jacobshuman7/first-hacktoberfest-issue-8d79b4f1fa1b?sk=90914c5a5b78bc21cff8ec2334fb3e8e
@MusaBajwa - Musawar Bajwa #1 https://github.com/Math-Computing-Society-MCS/Algorithms/issues/12
#2 https://github.com/Swap76/Learn-JavaScript/issues/58
#1 https://github.com/Math-Computing-Society-MCS/Algorithms/pull/17
#2 https://github.com/Swap76/Learn-JavaScript/pull/63
#1 https://wordpress.com/block-editor/post/musawarbajwa.wordpress.com/47
#2 https://wordpress.com/block-editor/post/musawarbajwa.wordpress.com/58
@cyh0968 - Yohan Choi https://github.com/nchand/BarCodeGenerator/issues/1 https://github.com/nchand/BarCodeGenerator/pull/2 https://ychoi63.blogspot.com/2019/10/osd600-lab04-first-pull-request.html
@hansal7014 - Hansal Bachkaniwala #1 https://github.com/jest-community/jest-extended/issues/117
#2 https://github.com/gitthermal/thermal/issues/3568
#1 https://github.com/jest-community/jest-extended/pull/229
#2 https://github.com/gitthermal/thermal/pull/3583
#1 https://medium.com/@hansal7014/contributing-to-jest-extended-7c3b1c380e29
#2 https://medium.com/@hansal7014/contributing-to-thermal-8ec9bd3ac94