<?xml version="1.0" encoding="UTF-8"?>
<rss xmlns:content="http://purl.org/rss/1.0/modules/content/" xmlns:dc="http://purl.org/dc/elements/1.1/" xmlns:rdf="http://www.w3.org/1999/02/22-rdf-syntax-ns#" xmlns:taxo="http://purl.org/rss/1.0/modules/taxonomy/" version="2.0">
  <channel>
    <title>New contest entry in GitHub Community Forum</title>
    <link>https://github.community/</link>
    <description>GitHub Community Forum</description>
    <pubDate>Fri, 13 Dec 2019 21:17:01 GMT</pubDate>
    <dc:creator>Community</dc:creator>
    <dc:date>2019-12-13T21:17:01Z</dc:date>
    <item>
      <title>Emoji Folding</title>
      <link>https://github.community/t5/Favorite-Atom-Tweaks/Emoji-Folding/cns-p/25560</link>
      <description>&lt;P&gt;Emoji Folding&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;Inside the styles.less:&lt;/P&gt;&lt;P&gt;atom-text-editor .fold-marker::after { content: "\1F981"; }&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;I personally hated the look of atom's default folding icon. I decided to take a look at the source and noticed it was just a hexcode, so I replaed it with the lion emoji hex code.&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;For some emojis, I also increase the font size with font-size: 1.0em to make them more visible are render more smoothly. Through this tweak, I learned the content property accepted hexcodes.&lt;/P&gt;</description>
      <pubDate>Thu, 13 Jun 2019 20:00:58 GMT</pubDate>
      <guid>https://github.community/t5/Favorite-Atom-Tweaks/Emoji-Folding/cns-p/25560</guid>
      <dc:creator>wadethestealth</dc:creator>
      <dc:date>2019-06-13T20:00:58Z</dc:date>
    </item>
    <item>
      <title>Customize the cursor !!</title>
      <link>https://github.community/t5/Favorite-Atom-Tweaks/Customize-the-cursor/cns-p/25429</link>
      <description>&lt;P&gt;This seems like a very trivial case, and something which is already provided as a sample property in the `styles.less` file: customizing the curosr.&lt;/P&gt;&lt;P&gt;I personally like the terminal cursor alot, &lt;STRONG&gt;a big blinky cursor always letting me know where i am&lt;/STRONG&gt;.&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;to do this simply make the following changes.&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;PRE&gt;atom-text-editor::shadow .cursor {
border-right: 5px solid white;
}&lt;/PRE&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;</description>
      <pubDate>Wed, 12 Jun 2019 11:05:07 GMT</pubDate>
      <guid>https://github.community/t5/Favorite-Atom-Tweaks/Customize-the-cursor/cns-p/25429</guid>
      <dc:creator>co16353sidak</dc:creator>
      <dc:date>2019-06-12T11:05:07Z</dc:date>
    </item>
    <item>
      <title>Color code projects in tree view by changing their bg color</title>
      <link>https://github.community/t5/Favorite-Atom-Tweaks/Color-code-projects-in-tree-view-by-changing-their-bg-color/cns-p/25304</link>
      <description>&lt;P&gt;&lt;span class="lia-inline-image-display-wrapper lia-image-align-inline" style="width: 391px;"&gt;&lt;img src="https://dyjpb62732.i.lithium.com/t5/image/serverpage/image-id/1951iF1AF008176F34F3B/image-size/large?v=1.0&amp;amp;px=999" alt="Screenshot from 2019-06-10 08-32-31.png" title="Screenshot from 2019-06-10 08-32-31.png" /&gt;&lt;/span&gt;&lt;BR /&gt;In styles.less ('Edit' -&amp;gt; 'Stylesheet...')&lt;/P&gt;&lt;PRE&gt;.project-root:nth-child(even) {background: #002}&lt;BR /&gt;.project-root:nth-child(odd) {background: #222}&lt;BR /&gt;&lt;BR /&gt;.project-root:nth-child(1) {
    background: #202;
}

.project-root:nth-child(2) {
    background: #000;
}

.project-root:nth-child(3){
    background: #200;
}&lt;/PRE&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;This color codes the first three projects, then alternates for other projects. Helps with large project folders that use similar folder organizations, frameworks and file names.&lt;BR /&gt;&lt;BR /&gt;&lt;BR /&gt;&lt;/P&gt;</description>
      <pubDate>Mon, 10 Jun 2019 13:33:07 GMT</pubDate>
      <guid>https://github.community/t5/Favorite-Atom-Tweaks/Color-code-projects-in-tree-view-by-changing-their-bg-color/cns-p/25304</guid>
      <dc:creator>rayfoss</dc:creator>
      <dc:date>2019-06-10T13:33:07Z</dc:date>
    </item>
    <item>
      <title>Hide single tree-view tab</title>
      <link>https://github.community/t5/Favorite-Atom-Tweaks/Hide-single-tree-view-tab/cns-p/24596</link>
      <description>&lt;PRE&gt;// hide tree-view "Project" tab
atom-dock.left atom-pane:only-child .tab-bar .tab:only-child {
  display: none;
}&lt;/PRE&gt;&lt;P&gt;&lt;span class="lia-inline-image-display-wrapper lia-image-align-inline" style="width: 286px;"&gt;&lt;img src="https://dyjpb62732.i.lithium.com/t5/image/serverpage/image-id/1899i6B9C26DEA42B1A80/image-size/large?v=1.0&amp;amp;px=999" alt="tree-view-tab.gif" title="tree-view-tab.gif" /&gt;&lt;/span&gt;&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;Adding this snippet to styles.less will hide the "Project" tab above the tree-view when it is the only tab. If another tab is added to the left dock it will automatically show both tabs.&lt;/P&gt;</description>
      <pubDate>Wed, 29 May 2019 14:05:24 GMT</pubDate>
      <guid>https://github.community/t5/Favorite-Atom-Tweaks/Hide-single-tree-view-tab/cns-p/24596</guid>
      <dc:creator>UziTech</dc:creator>
      <dc:date>2019-05-29T14:05:24Z</dc:date>
    </item>
    <item>
      <title>Google-style scrollbars</title>
      <link>https://github.community/t5/Favorite-Atom-Tweaks/Google-style-scrollbars/cns-p/24494</link>
      <description>&lt;P&gt;This Atom tweak introduces Google's minimal scrollbars as seen in the image below:&lt;/P&gt;&lt;P&gt;&lt;span class="lia-inline-image-display-wrapper lia-image-align-inline" style="width: 364px;"&gt;&lt;img src="https://dyjpb62732.i.lithium.com/t5/image/serverpage/image-id/1889i6A703295EA9CF7FF/image-size/large?v=1.0&amp;amp;px=999" alt="Capture94.PNG" title="Capture94.PNG" /&gt;&lt;/span&gt;&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;To use the tweak, simply add the following less code to your styles.less file:&lt;/P&gt;&lt;PRE&gt;.scrollbars-visible-always ::-webkit-scrollbar {
  border-radius: 100px;
  background-color: transparent;
  width: 8px;
  height: 8px;
  overflow: visible;

  &amp;amp;-button {
    height: 0;
    width: 0;
  }

  &amp;amp;-corner {
    background-color: transparent;
  }

  &amp;amp;-thumb {
    border: 1px solid rgba(255, 255, 255, 0.4);
    border-radius: 100px;
    background-color: rgba(0, 0, 0, 0.2);
    border: solid transparent;
    border-width: 1px 1px 1px 6px;
    min-height: 28px;
    padding: 100px 0 0;

    &amp;amp;:hover {
      background-color: rgba(0, 0, 0, 0.4);
    }

    &amp;amp;:active {
      background-color: rgba(0, 0, 0, 0.5);
    }
  }

  &amp;amp;-track {
    background-clip: padding-box;
    border: solid transparent;
    border-width: 0 0 0 4px;
  }
}&lt;/PRE&gt;</description>
      <pubDate>Tue, 28 May 2019 05:15:40 GMT</pubDate>
      <guid>https://github.community/t5/Favorite-Atom-Tweaks/Google-style-scrollbars/cns-p/24494</guid>
      <dc:creator>Richienb</dc:creator>
      <dc:date>2019-05-28T05:15:40Z</dc:date>
    </item>
    <item>
      <title>Universal Guidelines for Artificial Intelligence</title>
      <link>https://github.community/t5/Social-Impact-Collection/Universal-Guidelines-for-Artificial-Intelligence/cns-p/14262</link>
      <description>&lt;P&gt;Project: Global Data Ethics Pledge - &lt;A href="https://github.com/Data4Democracy/ethics-resources" target="_self"&gt;https://github.com/Data4Democracy/ethics-resources&lt;/A&gt;&lt;/P&gt;&lt;P&gt;PR: &lt;A href="https://github.com/Data4Democracy/ethics-resources/pull/38" target="_self"&gt;https://github.com/Data4Democracy/ethics-resources/pull/38&lt;/A&gt;&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;I contributed to this project because it has become increasingly clear to me that the computer science profession has become obsessed with doing things because they can, not because they should. As an industry, we fail to think about the long-term impacts and worst-case scenarios on a regular basis. This discussion about ethics in the industry is important and necessary so that we don't bring about the dystopia we seem headed for.&lt;/P&gt;</description>
      <pubDate>Thu, 01 Nov 2018 01:44:10 GMT</pubDate>
      <guid>https://github.community/t5/Social-Impact-Collection/Universal-Guidelines-for-Artificial-Intelligence/cns-p/14262</guid>
      <dc:creator>churchs19</dc:creator>
      <dc:date>2018-11-01T01:44:10Z</dc:date>
    </item>
    <item>
      <title>Contribution at hurricane-response/florence-api</title>
      <link>https://github.community/t5/Social-Impact-Collection/Contribution-at-hurricane-response-florence-api/cns-p/14240</link>
      <description>&lt;P&gt;I have contributed to&amp;nbsp;&lt;A title="hurricane-response/florence-api" href="https://github.com/hurricane-response/florence-api" target="_self"&gt;hurricane-response/florence-api&lt;/A&gt;&amp;nbsp;two days ago the pull request is still pending.&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;The pr link is&amp;nbsp;&lt;A href="https://github.com/hurricane-response/florence-api/pull/77" target="_self"&gt;https://github.com/hurricane-response/florence-api/pull/77&lt;/A&gt;&amp;nbsp;&lt;/P&gt;</description>
      <pubDate>Wed, 31 Oct 2018 18:07:30 GMT</pubDate>
      <guid>https://github.community/t5/Social-Impact-Collection/Contribution-at-hurricane-response-florence-api/cns-p/14240</guid>
      <dc:creator>Kaushl2208</dc:creator>
      <dc:date>2018-10-31T18:07:30Z</dc:date>
    </item>
    <item>
      <title>Social Impact Collection Challenge entry</title>
      <link>https://github.community/t5/Social-Impact-Collection/Social-Impact-Collection-Challenge-entry/cns-p/14220</link>
      <description>&lt;P&gt;&lt;SPAN&gt;Name the project(s) you contributed to: coralproject/talk&lt;/SPAN&gt;&lt;/P&gt;&lt;P&gt;&lt;SPAN&gt;Link to your PR/contribution:&lt;A href="https://github.com/coralproject/talk/pull/2057" target="_blank"&gt;https://github.com/coralproject/talk/pull/2057&lt;/A&gt;&lt;/SPAN&gt;&lt;/P&gt;&lt;P&gt;&lt;SPAN&gt;A brief description of why you chose that project to contribute to: I was always interested in contributing to Talk.It has a lot of feature that newsroom needed. i find myself fortunate to get the opportunity to contribute to this project.&lt;/SPAN&gt;&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;</description>
      <pubDate>Wed, 31 Oct 2018 13:20:47 GMT</pubDate>
      <guid>https://github.community/t5/Social-Impact-Collection/Social-Impact-Collection-Challenge-entry/cns-p/14220</guid>
      <dc:creator>0ChanAk</dc:creator>
      <dc:date>2018-10-31T13:20:47Z</dc:date>
    </item>
    <item>
      <title>Added meetups focusing on utilizing tech for good :  Social Impact Collection</title>
      <link>https://github.community/t5/Social-Impact-Collection/Added-meetups-focusing-on-utilizing-tech-for-good-Social-Impact/cns-p/14217</link>
      <description>&lt;P&gt;&lt;SPAN&gt;&lt;STRONG&gt;Name the project :&lt;/STRONG&gt;&amp;nbsp;&lt;/SPAN&gt;&lt;SPAN class="author"&gt;&lt;A href="https://github.com/civicdata" target="_blank" rel="author"&gt;civicdata&lt;/A&gt;&lt;/SPAN&gt;&lt;SPAN class="path-divider"&gt;/&lt;/SPAN&gt;&lt;STRONG&gt;&lt;A href="https://github.com/civicdata/civicdata.github.io" target="_blank"&gt;civicdata.github.io&lt;/A&gt;&lt;/STRONG&gt;&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;&lt;STRONG&gt;Link to my PR : &lt;A href="https://github.com/civicdata/civicdata.github.io/pull/130" target="_self"&gt;https://github.com/civicdata/civicdata.github.io/pull/130&lt;/A&gt;&lt;/STRONG&gt;&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;I attend meetups related to Tech for good and I understand their need. By sharing some details related to some popular meetups will help everyone to know and attend such meetups. This is my major reason to contribute for civicdata project.&lt;/P&gt;&lt;P&gt;Thanks.&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;</description>
      <pubDate>Wed, 31 Oct 2018 12:28:57 GMT</pubDate>
      <guid>https://github.community/t5/Social-Impact-Collection/Added-meetups-focusing-on-utilizing-tech-for-good-Social-Impact/cns-p/14217</guid>
      <dc:creator>prasadseth</dc:creator>
      <dc:date>2018-10-31T12:28:57Z</dc:date>
    </item>
    <item>
      <title>Increased test coverage</title>
      <link>https://github.community/t5/Social-Impact-Collection/Increased-test-coverage/cns-p/14212</link>
      <description>&lt;P&gt;Project:&amp;nbsp;ifmeorg/ifme&lt;/P&gt;&lt;P&gt;Pull Requests:&lt;BR /&gt;&lt;A href="https://github.com/ifmeorg/ifme/pull/1229" target="_self"&gt;https://github.com/ifmeorg/ifme/pull/1214&lt;/A&gt;&lt;/P&gt;&lt;P&gt;&lt;A href="https://github.com/ifmeorg/ifme/pull/1229" target="_self"&gt;https://github.com/ifmeorg/ifme/pull/1229&lt;/A&gt;&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;I've chose to contribute for this project cause I have seen people struggling with mental ilness and I have a very close person in my life that have been dealing with depression for a long time, so I felt compelled to contribute.&lt;/P&gt;</description>
      <pubDate>Wed, 31 Oct 2018 05:25:42 GMT</pubDate>
      <guid>https://github.community/t5/Social-Impact-Collection/Increased-test-coverage/cns-p/14212</guid>
      <dc:creator>andrezacm</dc:creator>
      <dc:date>2018-10-31T05:25:42Z</dc:date>
    </item>
    <item>
      <title>Add Italian translation to REFUGE Restrooms</title>
      <link>https://github.community/t5/Social-Impact-Collection/Add-Italian-translation-to-REFUGE-Restrooms/cns-p/14204</link>
      <description>&lt;P&gt;&lt;SPAN&gt;Name the project&lt;/SPAN&gt;: &lt;A href="https://www.refugerestrooms.org/" target="_blank"&gt;REFUGE Restrooms&lt;/A&gt;&lt;/P&gt;&lt;P&gt;&lt;SPAN&gt;Link to PR:&amp;nbsp;&lt;FONT&gt;&lt;A href="https://github.com/RefugeRestrooms/refugerestrooms/pull/519" target="_blank"&gt;https://github.com/RefugeRestrooms/refugerestrooms/pull/519&lt;/A&gt;&lt;/FONT&gt;&lt;/SPAN&gt;&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;D&lt;SPAN&gt;&lt;FONT&gt;escription: I chose this project because we need to be always careful about issues that might be trivial for a lot of people, but still are reason of discrimination for many other ones. I'd like to thank the project's team to keep the lights on this cause.&lt;/FONT&gt;&lt;/SPAN&gt;&lt;/P&gt;</description>
      <pubDate>Tue, 30 Oct 2018 23:09:28 GMT</pubDate>
      <guid>https://github.community/t5/Social-Impact-Collection/Add-Italian-translation-to-REFUGE-Restrooms/cns-p/14204</guid>
      <dc:creator>MauroCoppola</dc:creator>
      <dc:date>2018-10-30T23:09:28Z</dc:date>
    </item>
    <item>
      <title>Contributing to Civic Data Alliance(CDA) Website</title>
      <link>https://github.community/t5/Social-Impact-Collection/Contributing-to-Civic-Data-Alliance-CDA-Website/cns-p/14191</link>
      <description>&lt;P&gt;&lt;U&gt;&lt;STRONG&gt;Project Name:&lt;/STRONG&gt;&lt;/U&gt;&lt;/P&gt;&lt;P&gt;Civic Data Alliance&amp;nbsp;&lt;/P&gt;&lt;P&gt;&lt;EM&gt;civicdata/civicdata.github.io&lt;/EM&gt;&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;&lt;U&gt;&lt;STRONG&gt;Link to my PRs:&lt;/STRONG&gt;&lt;/U&gt;&lt;/P&gt;&lt;P&gt;&lt;EM&gt;&lt;A href="https://github.com/civicdata/civicdata.github.io/pull/123" target="_blank"&gt;https://github.com/civicdata/civicdata.github.io/pull/123&lt;/A&gt;&lt;/EM&gt;&lt;/P&gt;&lt;P&gt;&lt;EM&gt;&lt;A href="https://github.com/civicdata/civicdata.github.io/pull/129" target="_blank"&gt;https://github.com/civicdata/civicdata.github.io/pull/129&lt;/A&gt;&lt;/EM&gt;&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;&lt;U&gt;&lt;STRONG&gt;Description:&lt;/STRONG&gt;&lt;/U&gt;&lt;/P&gt;&lt;P&gt;I choose &lt;EM&gt;civicdata/civicdata.github.io&amp;nbsp;&lt;/EM&gt;as my project because they advocate open data for people with diverse backgrounds and are focused on values like diversity, equity, accessibility, openness, transparency in civic tech and open data which interests me a lot.&lt;/P&gt;&lt;P&gt;So I wanted to help their website to be more social friendly and with a lot of resouces which are helpful to people.&lt;/P&gt;</description>
      <pubDate>Tue, 30 Oct 2018 20:23:23 GMT</pubDate>
      <guid>https://github.community/t5/Social-Impact-Collection/Contributing-to-Civic-Data-Alliance-CDA-Website/cns-p/14191</guid>
      <dc:creator>dldisha</dc:creator>
      <dc:date>2018-10-30T20:23:23Z</dc:date>
    </item>
    <item>
      <title>Modified release process for ifme</title>
      <link>https://github.community/t5/Social-Impact-Collection/Modified-release-process-for-ifme/cns-p/14172</link>
      <description>&lt;P&gt;Contributed to ifmeorg/ifme.&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;Made pull requests:&lt;/P&gt;&lt;P&gt;&lt;A href="https://github.com/ifmeorg/ifme/pull/1082" target="_self"&gt;https://github.com/ifmeorg/ifme/pull/1082&lt;/A&gt;&lt;/P&gt;&lt;P&gt;&lt;A href="https://github.com/ifmeorg/ifme/pull/1040" target="_self"&gt;https://github.com/ifmeorg/ifme/pull/1040&lt;/A&gt;&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;I chose to contribute to this project because it was a domain I was familiar with. Dealing with Rails and React. The idea of the site also appealed to me, having known several people in my personal life affected by mental illness.&lt;/P&gt;</description>
      <pubDate>Tue, 30 Oct 2018 15:46:05 GMT</pubDate>
      <guid>https://github.community/t5/Social-Impact-Collection/Modified-release-process-for-ifme/cns-p/14172</guid>
      <dc:creator>tryantwit</dc:creator>
      <dc:date>2018-10-30T15:46:05Z</dc:date>
    </item>
    <item>
      <title>Improving Awareness to Civic Data Alliance Website</title>
      <link>https://github.community/t5/Social-Impact-Collection/Improving-Awareness-to-Civic-Data-Alliance-Website/cns-p/14159</link>
      <description>&lt;P&gt;&lt;STRONG&gt;&lt;U&gt;&lt;FONT color="#333333"&gt;Project name:&lt;/FONT&gt;&lt;/U&gt;&lt;/STRONG&gt;&lt;/P&gt;&lt;P&gt;&amp;nbsp; &amp;nbsp; &amp;nbsp;Civic Data Alliance&lt;FONT face="courier new,courier" size="2"&gt;&amp;nbsp;&lt;SPAN&gt;/ civicdata.github.io&lt;/SPAN&gt;&lt;/FONT&gt;&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;&lt;U&gt;&lt;STRONG&gt;A brief description of why you chose that project to contribute to:&lt;/STRONG&gt;&lt;/U&gt;&lt;/P&gt;&lt;P&gt;Supporting non-profits that advocate for open data/tech resources for people with diverse background has always been a personal goal of mine. Civic Data Alliance also showcases other tech non-profits and help to them be more visible to the general public. So helping to make their website more social friendly is something I am proud to do. Thanks for the opportunity&amp;nbsp;@civicdata&amp;nbsp;@github&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;&lt;U&gt;&lt;STRONG&gt;Link My Contributions:&lt;/STRONG&gt;&lt;/U&gt;&amp;nbsp;&lt;A title="Issues on the website reported" href="https://github.com/civicdata/civicdata.github.io/issues?utf8=%E2%9C%93&amp;amp;q=is%3Aissue+author%3Awadleo" target="_blank"&gt;Issues&lt;/A&gt;&amp;nbsp;and&amp;nbsp;&lt;A title="Submitted adjustment to website" href="https://github.com/civicdata/civicdata.github.io/pulls?q=is%3Apr+author%3Awadleo" target="_blank"&gt;PRs&lt;/A&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;</description>
      <pubDate>Tue, 30 Oct 2018 06:24:02 GMT</pubDate>
      <guid>https://github.community/t5/Social-Impact-Collection/Improving-Awareness-to-Civic-Data-Alliance-Website/cns-p/14159</guid>
      <dc:creator>wadleo</dc:creator>
      <dc:date>2018-10-30T06:24:02Z</dc:date>
    </item>
    <item>
      <title>Improving Awareness to Civic Data Alliance Website</title>
      <link>https://github.community/t5/Social-Impact-Collection/Improving-Awareness-to-Civic-Data-Alliance-Website/cns-p/14158</link>
      <description>&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;&lt;FONT face="courier new,courier" size="3"&gt;&lt;STRONG&gt;&lt;U&gt;&lt;FONT color="#333333"&gt;Project name:&lt;/FONT&gt;&lt;/U&gt;&lt;/STRONG&gt;&lt;/FONT&gt;&lt;/P&gt;&lt;P&gt;Civic Data Alliance&lt;FONT face="courier new,courier" size="2"&gt;&amp;nbsp;&lt;SPAN&gt;/ civicdata.github.io&lt;/SPAN&gt;&lt;/FONT&gt;&lt;/P&gt;&lt;UL&gt;&lt;LI&gt;A brief description of why you chose that project to contribute to.&lt;/LI&gt;&lt;/UL&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;Link My Contributions:&amp;nbsp;&lt;A title="Submit adjustment to website" href="https://github.com/civicdata/civicdata.github.io/pulls?q=is%3Apr+author%3Awadleo+" target="_self"&gt;PRs &lt;/A&gt;&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;</description>
      <pubDate>Tue, 30 Oct 2018 05:19:46 GMT</pubDate>
      <guid>https://github.community/t5/Social-Impact-Collection/Improving-Awareness-to-Civic-Data-Alliance-Website/cns-p/14158</guid>
      <dc:creator>wadleo</dc:creator>
      <dc:date>2018-10-30T05:19:46Z</dc:date>
    </item>
    <item>
      <title>Translating Refuge Restrooms to Brazilian Portuguese</title>
      <link>https://github.community/t5/Social-Impact-Collection/Translating-Refuge-Restrooms-to-Brazilian-Portuguese/cns-p/14118</link>
      <description>&lt;P&gt;Project: Refuge Restrooms (&lt;A href="https://github.com/RefugeRestrooms/refugerestrooms" target="_blank"&gt;https://github.com/RefugeRestrooms/refugerestrooms&lt;/A&gt;)&lt;/P&gt;&lt;P&gt;Link to PR: &lt;A href="https://github.com/RefugeRestrooms/refugerestrooms/pull/521" target="_blank"&gt;https://github.com/RefugeRestrooms/refugerestrooms/pull/521&lt;/A&gt;&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;Why: I think this project, although simple, it's of great value for those who need it. And I think the Brazilian LGBTQ+ community could benefit from it, especially now that we will have an elected president that is reportedly against minorities.&lt;/P&gt;</description>
      <pubDate>Mon, 29 Oct 2018 17:06:20 GMT</pubDate>
      <guid>https://github.community/t5/Social-Impact-Collection/Translating-Refuge-Restrooms-to-Brazilian-Portuguese/cns-p/14118</guid>
      <dc:creator>shadowmaru</dc:creator>
      <dc:date>2018-10-29T17:06:20Z</dc:date>
    </item>
    <item>
      <title>Translate strings to Portuguese (Brazil) to the Humanitarian OpenStreetMap on tasking-manager</title>
      <link>https://github.community/t5/Social-Impact-Collection/Translate-strings-to-Portuguese-Brazil-to-the-Humanitarian/cns-p/14110</link>
      <description>&lt;P&gt;Name of the project: tasking-manager&lt;BR /&gt;&lt;SPAN class="lia-content-status-message-rules lia-contest-status-message lia-component-contest-rules"&gt;Link to your PR/contribution: &lt;A href="https://github.com/hotosm/tasking-manager/pull/1263" target="_blank"&gt;https://github.com/hotosm/tasking-manager/pull/1263&lt;/A&gt;&lt;BR /&gt;Description: I choose this project because I like their cause and mainly because is a project that I could make a difference translating to portuguese (Brazil) to support them in an issue.&lt;BR /&gt;&lt;/SPAN&gt;&lt;/P&gt;</description>
      <pubDate>Mon, 29 Oct 2018 15:18:42 GMT</pubDate>
      <guid>https://github.community/t5/Social-Impact-Collection/Translate-strings-to-Portuguese-Brazil-to-the-Humanitarian/cns-p/14110</guid>
      <dc:creator>hi15</dc:creator>
      <dc:date>2018-10-29T15:18:42Z</dc:date>
    </item>
    <item>
      <title>Diaper App for Ruby for Good</title>
      <link>https://github.community/t5/Social-Impact-Collection/Diaper-App-for-Ruby-for-Good/cns-p/14109</link>
      <description>&lt;P&gt;I contributed to the diaper app project because it is used to improve diaper bank services for those in need. Its goal is to improve diaper bank efficiency by lower costs, improving inventory control and managing relationships with diaper bank partners.&amp;nbsp;&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;&lt;A href="https://github.com/rubyforgood/diaper/pull/589" target="_blank"&gt;https://github.com/rubyforgood/diaper/pull/589&lt;/A&gt;&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;&lt;A href="https://github.com/rubyforgood/diaper/pull/601" target="_blank"&gt;https://github.com/rubyforgood/diaper/pull/601&lt;/A&gt;&lt;/P&gt;</description>
      <pubDate>Mon, 29 Oct 2018 14:55:30 GMT</pubDate>
      <guid>https://github.community/t5/Social-Impact-Collection/Diaper-App-for-Ruby-for-Good/cns-p/14109</guid>
      <dc:creator>jcavena</dc:creator>
      <dc:date>2018-10-29T14:55:30Z</dc:date>
    </item>
    <item>
      <title>Contributing to Social Impact Collection Challenge -  Alex Project</title>
      <link>https://github.community/t5/Social-Impact-Collection/Contributing-to-Social-Impact-Collection-Challenge-Alex-Project/cns-p/14108</link>
      <description>&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;Hello Everyone,&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;I decided to contribute for Alex, a project that aims to help people with inclusive language, following this issue:&amp;nbsp;&lt;A href="https://github.com/get-alex/alex/issues/202" target="_blank"&gt;https://github.com/get-alex/alex/issues/202&lt;/A&gt; I decided to contribute for the internationalization of Alex to Portuguese from Brazil, so I made this issue:&amp;nbsp;&lt;A href="https://github.com/get-alex/alex/issues/239" target="_blank"&gt;https://github.com/get-alex/alex/issues/239&lt;/A&gt; and start to work in Alex ecosystems modules. Such as cuss project and retext-profanities.&lt;BR /&gt;&lt;BR /&gt;So I made this two pull requests:&lt;BR /&gt;- &lt;A href="https://github.com/retextjs/retext-profanities/pull/13" target="_blank"&gt;https://github.com/retextjs/retext-profanities/pull/13&lt;/A&gt;&lt;/P&gt;&lt;P&gt;-&amp;nbsp;&lt;A href="https://github.com/words/cuss/pull/19" target="_blank"&gt;https://github.com/words/cuss/pull/19&lt;/A&gt;&lt;/P&gt;</description>
      <pubDate>Mon, 29 Oct 2018 14:43:57 GMT</pubDate>
      <guid>https://github.community/t5/Social-Impact-Collection/Contributing-to-Social-Impact-Collection-Challenge-Alex-Project/cns-p/14108</guid>
      <dc:creator>OtacilioN</dc:creator>
      <dc:date>2018-10-29T14:43:57Z</dc:date>
    </item>
    <item>
      <title>Contribution to ifme</title>
      <link>https://github.community/t5/Social-Impact-Collection/Contribution-to-ifme/cns-p/14103</link>
      <description>&lt;P&gt;I contributed to ifmeorg /ifme, a site built for people to share there&amp;nbsp;personal stories with friends and family.&lt;/P&gt;&lt;P&gt;I live in Belgium and speak Dutch, when I saw the Dutch translated site, I saw a lot of spelling mistakes. The grammar nazi in me awoke and I got to perfection the translation of the site. I did two pull requests because I didn't get all the mistakes the first time around. Now the Dutch speaking people can enjoy the website without being distracted by grammar mistakes and that gives me a peace of mind ;)&amp;nbsp;&lt;/P&gt;&lt;P&gt;Two pull requests:&lt;/P&gt;&lt;P&gt;&lt;A href="https://github.com/ifmeorg/ifme/pull/1197#issuecomment-431370771" target="_blank"&gt;https://github.com/ifmeorg/ifme/pull/1197#issuecomment-431370771&lt;/A&gt;&lt;/P&gt;&lt;P&gt;&lt;A href="https://github.com/ifmeorg/ifme/pull/1210#discussion_r228319961&amp;nbsp;" target="_blank"&gt;https://github.com/ifmeorg/ifme/pull/1210#discussion_r228319961&amp;nbsp;&lt;/A&gt;&lt;/P&gt;</description>
      <pubDate>Mon, 29 Oct 2018 09:51:33 GMT</pubDate>
      <guid>https://github.community/t5/Social-Impact-Collection/Contribution-to-ifme/cns-p/14103</guid>
      <dc:creator>MarijkeM</dc:creator>
      <dc:date>2018-10-29T09:51:33Z</dc:date>
    </item>
    <item>
      <title>My contributions</title>
      <link>https://github.community/t5/Social-Impact-Collection/My-contributions/cns-p/14095</link>
      <description>&lt;UL&gt;&lt;LI&gt;Name the project&amp;nbsp;I contributed to: Diaper&lt;/LI&gt;&lt;LI&gt;Link to your PR/contribution:&amp;nbsp;&lt;A title="Pull request" href="https://github.com/rubyforgood/diaper/pull/600" target="_blank"&gt;https://github.com/rubyforgood/diaper/pull/600&lt;/A&gt;&lt;/LI&gt;&lt;LI&gt;A brief description of why you chose that project to contribute to:&lt;/LI&gt;&lt;/UL&gt;&lt;P&gt;I chose this project because I saw the potential that this translation that I made could help to make a bigger impact in the community, not just those who speak english but also those who speaks spanish&lt;/P&gt;</description>
      <pubDate>Sun, 28 Oct 2018 23:16:52 GMT</pubDate>
      <guid>https://github.community/t5/Social-Impact-Collection/My-contributions/cns-p/14095</guid>
      <dc:creator>ricglz0201</dc:creator>
      <dc:date>2018-10-28T23:16:52Z</dc:date>
    </item>
    <item>
      <title>Contribution to IEEEKerala - rescuekerala</title>
      <link>https://github.community/t5/Social-Impact-Collection/Contribution-to-IEEEKerala-rescuekerala/cns-p/14089</link>
      <description>&lt;P&gt;I contributed to the "IEEEKeralaSection&lt;EM&gt;&lt;STRONG&gt; - &lt;/STRONG&gt;&lt;/EM&gt;rescuekerala" project by adding GDPR text to the disclaimer page on the site. I believe this was something required and relevant amid all the GDPR compliance efforts going on around the world.&lt;BR /&gt;&lt;BR /&gt;The link&amp;nbsp;to my PR:&amp;nbsp;&lt;A href="https://github.com/IEEEKeralaSection/rescuekerala/pull/1004" target="_blank"&gt;https://github.com/IEEEKeralaSection/rescuekerala/pull/1004&lt;/A&gt;&lt;BR /&gt;&lt;BR /&gt;I chose to contribute to this project because this is really something I've noticed being put to use firsthand during recent Kerala floods. I expect this can be used for any other unfortunate natural disasters in future for rehabilitation and relief efforts. &amp;nbsp;I’m really looking forward to being a part of this project!&amp;nbsp;&lt;/P&gt;</description>
      <pubDate>Sun, 28 Oct 2018 18:12:13 GMT</pubDate>
      <guid>https://github.community/t5/Social-Impact-Collection/Contribution-to-IEEEKerala-rescuekerala/cns-p/14089</guid>
      <dc:creator>prnvdixit</dc:creator>
      <dc:date>2018-10-28T18:12:13Z</dc:date>
    </item>
    <item>
      <title>Increasing the open source visibility to civic data alliance organization website</title>
      <link>https://github.community/t5/Social-Impact-Collection/Increasing-the-open-source-visibility-to-civic-data-alliance/cns-p/14088</link>
      <description>&lt;P&gt;&lt;FONT face="courier new,courier" size="3"&gt;&lt;STRONG&gt;&lt;U&gt;&lt;FONT color="#333333"&gt;Project name:&lt;/FONT&gt;&lt;/U&gt;&lt;/STRONG&gt;&lt;/FONT&gt;&lt;/P&gt;&lt;P&gt;&lt;FONT face="courier new,courier" size="2"&gt;&amp;nbsp;&lt;/FONT&gt;civicdata&lt;FONT face="courier new,courier" size="2"&gt;&amp;nbsp;&lt;SPAN&gt;/ civicdata.github.io&lt;/SPAN&gt;&lt;/FONT&gt;&lt;/P&gt;&lt;P&gt;&lt;FONT face="courier new,courier" size="3"&gt;&lt;STRONG&gt;&lt;U&gt;&lt;FONT color="#333333"&gt;Link to the pull request:&lt;/FONT&gt;&lt;/U&gt;&lt;/STRONG&gt;&lt;/FONT&gt;&lt;/P&gt;&lt;P&gt;&lt;FONT face="courier new,courier" size="2"&gt;&lt;A href="https://github.com/civicdata/civicdata.github.io/pull/121" target="_blank"&gt;https://github.com/civicdata/civicdata.github.io/pull/121&lt;/A&gt;&lt;/FONT&gt;&lt;/P&gt;&lt;P&gt;&lt;FONT face="courier new,courier" size="3"&gt;&lt;U&gt;&lt;FONT color="#333333"&gt;&lt;STRONG&gt;A brief description of why you chose that project to contribute to:&lt;/STRONG&gt;&lt;/FONT&gt;&lt;/U&gt;&lt;/FONT&gt;&lt;/P&gt;&lt;P&gt;&lt;FONT face="courier new,courier" size="2" color="#000000"&gt;I loved the main motto of the organization of creating diversity to a good level&lt;/FONT&gt;&lt;/P&gt;&lt;P&gt;&lt;FONT face="courier new,courier" size="2"&gt;The&lt;SPAN&gt;&amp;nbsp;&lt;/SPAN&gt;&lt;STRONG&gt;Civic Data Alliance&lt;/STRONG&gt;&lt;SPAN&gt;&amp;nbsp;&lt;/SPAN&gt;(CDA) is Louisville’s Civic Tech org and&amp;nbsp;they are focused on advocating for inclusion, diversity, equity, accessibility, openness, transparency and accountability in government, civic tech, and open data. This simple pull request gets everything done&lt;/FONT&gt;&lt;/P&gt;&lt;P&gt;&lt;FONT face="courier new,courier" size="2"&gt;Civic Data Alliance is interested in ethically liberating, improving, gathering, defining, and reporting on public data and the state of civic tech while fostering an inclusive and diverse civic tech community.&amp;nbsp;&lt;/FONT&gt;&lt;/P&gt;&lt;P&gt;&lt;FONT face="courier new,courier" size="3"&gt;&lt;STRONG&gt;&lt;U&gt;&lt;FONT color="#333333"&gt;Conclusion:&lt;/FONT&gt;&lt;/U&gt;&lt;/STRONG&gt;&lt;/FONT&gt;&lt;/P&gt;&lt;P&gt;&lt;FONT face="courier new,courier" size="2"&gt;I feel it needs more open source visibility so that its other projects under the GitHub&amp;nbsp;Org would be&amp;nbsp;checked.&lt;/FONT&gt;&lt;/P&gt;&lt;P&gt;&lt;FONT face="courier new,courier" size="2"&gt;&amp;nbsp;&lt;/FONT&gt;&lt;/P&gt;</description>
      <pubDate>Sun, 28 Oct 2018 17:32:54 GMT</pubDate>
      <guid>https://github.community/t5/Social-Impact-Collection/Increasing-the-open-source-visibility-to-civic-data-alliance/cns-p/14088</guid>
      <dc:creator>kmehant</dc:creator>
      <dc:date>2018-10-28T17:32:54Z</dc:date>
    </item>
    <item>
      <title>Performance Contribution to HospitalRun</title>
      <link>https://github.community/t5/Social-Impact-Collection/Performance-Contribution-to-HospitalRun/cns-p/14078</link>
      <description>&lt;P&gt;&amp;nbsp;I contributed to the &lt;EM&gt;&lt;STRONG&gt;hospitalrun-frontend&lt;/STRONG&gt;&lt;/EM&gt; project.&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;My &lt;A title="My Contribution to hospitalrun-frontend." href="https://github.com/HospitalRun/hospitalrun-frontend/pull/1548" target="_self"&gt;PR&lt;/A&gt;&amp;nbsp;(&lt;A href="https://github.com/HospitalRun/hospitalrun-frontend/pull/1548" target="_blank"&gt;https://github.com/HospitalRun/hospitalrun-frontend/pull/1548&lt;/A&gt;) for this project was to improve the performance of docker builds as it was quite slow.&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;I chose to contribute to this project specifically because I am a major supporter of the field of medicine, healthcare, and the development of the African continent. I personally felt this project does a lot of good in the world and was started originally to target African nations. I feel that this project can greatly empower local african clinics to quickly self-host this offline application to manage their local patient records. This computerized record keeping can definitely improve the&amp;nbsp;caregiving to patients as it will allow doctors and nurses to achieve higher productivity. This productivity increase in turn would allow them to spend more time caring for patients and less on record keeping.&lt;/P&gt;</description>
      <pubDate>Sun, 28 Oct 2018 02:02:35 GMT</pubDate>
      <guid>https://github.community/t5/Social-Impact-Collection/Performance-Contribution-to-HospitalRun/cns-p/14078</guid>
      <dc:creator>RanadeepPolavarapu</dc:creator>
      <dc:date>2018-10-28T02:02:35Z</dc:date>
    </item>
    <item>
      <title>Entry: Social Impact Collection Challenge</title>
      <link>https://github.community/t5/Social-Impact-Collection/Entry-Social-Impact-Collection-Challenge/cns-p/14071</link>
      <description>&lt;P&gt;I helped improve the documentation of &lt;A href="https://github.com/Data4Democracy/ethics-resources/pull/31" target="_blank"&gt;ethics-resources. &lt;/A&gt;&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;I believe ethics, in general, play a great role in creating boundaries that help keep a balance to ensure that certain technologies and/or data are used for good reasons.&lt;/P&gt;</description>
      <pubDate>Sat, 27 Oct 2018 18:42:30 GMT</pubDate>
      <guid>https://github.community/t5/Social-Impact-Collection/Entry-Social-Impact-Collection-Challenge/cns-p/14071</guid>
      <dc:creator>blossomica</dc:creator>
      <dc:date>2018-10-27T18:42:30Z</dc:date>
    </item>
    <item>
      <title>Being inclusive in the coralproject</title>
      <link>https://github.community/t5/Social-Impact-Collection/Being-inclusive-in-the-coralproject/cns-p/14053</link>
      <description>&lt;P&gt;Name the project(s) you contributed to:&lt;BR /&gt;&lt;A href="https://github.com/coralproject/talk" target="_blank"&gt;https://github.com/coralproject/talk&lt;/A&gt;&lt;BR /&gt;&lt;BR /&gt;Link to your PR/contribution:&lt;BR /&gt;&lt;A href="https://github.com/coralproject/talk/pull/2036" target="_blank"&gt;https://github.com/coralproject/talk/pull/2036&lt;/A&gt;&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;A brief description of why you chose that project to contribute to:&lt;BR /&gt;Being an avid reader of community forums, I appreciate that there is such an initiative to improve the conditions commenting platforms face. I am glad to be included in this initiative by contributing to the community in ways I can.&lt;/P&gt;</description>
      <pubDate>Sat, 27 Oct 2018 14:34:57 GMT</pubDate>
      <guid>https://github.community/t5/Social-Impact-Collection/Being-inclusive-in-the-coralproject/cns-p/14053</guid>
      <dc:creator>tanhengyeow</dc:creator>
      <dc:date>2018-10-27T14:34:57Z</dc:date>
    </item>
    <item>
      <title>Translate to catch inconsiderate/insensitive writing</title>
      <link>https://github.community/t5/Social-Impact-Collection/Translate-to-catch-inconsiderate-insensitive-writing/cns-p/14052</link>
      <description>&lt;P&gt;&lt;STRONG&gt;Contributed to :&lt;/STRONG&gt;&lt;/P&gt;&lt;UL&gt;&lt;LI&gt;&lt;STRONG&gt;&lt;A title="Alex" href="https://github.com/get-alex/alex" target="_blank" rel="nofollow noopener noreferrer"&gt;Alex&lt;/A&gt;&amp;nbsp;&lt;/STRONG&gt;&lt;/LI&gt;&lt;LI&gt;&lt;A title="Tasking Manager" href="https://github.com/hotosm/tasking-manager/issues/1218#issue-368028994" target="_blank"&gt;Tasking Manager&lt;/A&gt;&lt;/LI&gt;&lt;/UL&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;&lt;STRONG&gt;How:&lt;/STRONG&gt;&lt;/P&gt;&lt;P&gt;Alex uses the &lt;A href="https://github.com/words/cuss" target="_self"&gt;Cuss&lt;/A&gt;&amp;nbsp;profanities rating sys.&lt;/P&gt;&lt;UL&gt;&lt;LI&gt;&lt;STRONG&gt;&lt;A href="https://github.com/get-alex/alex/issues/212#issuecomment-433494943" target="_blank"&gt;Spanish Internasionalisation&lt;/A&gt;&amp;nbsp;-&amp;nbsp;&lt;A href="https://github.com/words/cuss/pull/21" target="_self"&gt;feat(Profanity_ES): Adding Venezuelan dialect profanities.&lt;/A&gt;&lt;/STRONG&gt;&lt;/LI&gt;&lt;/UL&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;The Tasking Manager now does translations through&amp;nbsp;&lt;A href="https://www.transifex.com/hotosm/tasking-manager-3" target="_self"&gt;Transifex&lt;/A&gt;&lt;/P&gt;&lt;UL&gt;&lt;LI&gt;&lt;A href="https://github.com/hotosm/tasking-manager/issues/1218#issue-368028994" target="_self"&gt;Review unreviewed translations on Transifex&lt;/A&gt;&amp;nbsp;-&amp;nbsp;&lt;A href="https://www.transifex.com/hotosm/teams/17786/es/" target="_blank"&gt;I&amp;nbsp;joined&amp;nbsp;the Spanish translations team and helped translating around 100 sentences.&lt;/A&gt;&lt;/LI&gt;&lt;/UL&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;&lt;STRONG&gt;Why:&lt;/STRONG&gt;&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;UL&gt;&lt;LI&gt;Wanted to be part of the online international laguage awareness movement.&lt;/LI&gt;&lt;LI&gt;Contributing&amp;nbsp;with something other than my IT skills, helping with&amp;nbsp;translation and awareness.&lt;/LI&gt;&lt;LI&gt;Learn about live language detection and word rating systems.&lt;/LI&gt;&lt;/UL&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;&lt;SPAN class="emoji"&gt;👍&lt;/SPAN&gt;&lt;/P&gt;</description>
      <pubDate>Sat, 27 Oct 2018 14:30:15 GMT</pubDate>
      <guid>https://github.community/t5/Social-Impact-Collection/Translate-to-catch-inconsiderate-insensitive-writing/cns-p/14052</guid>
      <dc:creator>Leodau</dc:creator>
      <dc:date>2018-10-27T14:30:15Z</dc:date>
    </item>
    <item>
      <title>Technology for good</title>
      <link>https://github.community/t5/Social-Impact-Collection/Technology-for-good/cns-p/14023</link>
      <description>&lt;P&gt;Found this great site about tech for good. Since we can use some more awareness of it in the EU, I've added some meetups to the list. PR:&amp;nbsp;&lt;A href="https://github.com/civicdata/civicdata.github.io/pull/118" target="_blank"&gt;https://github.com/civicdata/civicdata.github.io/pull/118&lt;/A&gt;&lt;/P&gt;</description>
      <pubDate>Fri, 26 Oct 2018 20:06:53 GMT</pubDate>
      <guid>https://github.community/t5/Social-Impact-Collection/Technology-for-good/cns-p/14023</guid>
      <dc:creator>ovhemert</dc:creator>
      <dc:date>2018-10-26T20:06:53Z</dc:date>
    </item>
    <item>
      <title>Data Ethics case study</title>
      <link>https://github.community/t5/Social-Impact-Collection/Data-Ethics-case-study/cns-p/14022</link>
      <description>&lt;P&gt;Contributed to - "Data4Democracy"&lt;/P&gt;&lt;P&gt;&lt;A href="https://github.com/Data4Democracy/ethics-resources/pull/36" target="_self"&gt;Link to my PR&lt;/A&gt;&lt;/P&gt;&lt;P&gt;The above PR redirects to the most researched case studies for data ethics. It answers few of the most crucial questions like, how data has evolved in past few decades and how careful we should be while it's utilization.&lt;BR /&gt;(Source -Data&amp;amp;Society)&lt;/P&gt;</description>
      <pubDate>Fri, 26 Oct 2018 19:47:18 GMT</pubDate>
      <guid>https://github.community/t5/Social-Impact-Collection/Data-Ethics-case-study/cns-p/14022</guid>
      <dc:creator>sayantikabanik</dc:creator>
      <dc:date>2018-10-26T19:47:18Z</dc:date>
    </item>
    <item>
      <title>Improve Portuguese translation in the if-me project</title>
      <link>https://github.community/t5/Social-Impact-Collection/Improve-Portuguese-translation-in-the-if-me-project/cns-p/14021</link>
      <description>&lt;P&gt;&lt;A href="https://github.com/ifmeorg/ifme/pull/1211" target="_blank"&gt;https://github.com/ifmeorg/ifme/pull/1211&lt;/A&gt;&lt;/P&gt;</description>
      <pubDate>Fri, 26 Oct 2018 19:32:53 GMT</pubDate>
      <guid>https://github.community/t5/Social-Impact-Collection/Improve-Portuguese-translation-in-the-if-me-project/cns-p/14021</guid>
      <dc:creator>lucianosousa</dc:creator>
      <dc:date>2018-10-26T19:32:53Z</dc:date>
    </item>
    <item>
      <title>Alex contribution for Social impact collection Challenge</title>
      <link>https://github.community/t5/Social-Impact-Collection/Alex-contribution-for-Social-impact-collection-Challenge/cns-p/14003</link>
      <description>&lt;P&gt;Project: Alex&lt;/P&gt;&lt;P&gt;PR:&amp;nbsp;&lt;A href="https://github.com/get-alex/alex/pull/240" target="_blank"&gt;https://github.com/get-alex/alex/pull/240&lt;/A&gt;&lt;/P&gt;&lt;P&gt;Why:&amp;nbsp;I chose this project because I agree that we must have a cleaner and inclusive language, for the good of the community and society. You have to keep in mind that how you write says a lot about you.&lt;/P&gt;</description>
      <pubDate>Fri, 26 Oct 2018 16:26:24 GMT</pubDate>
      <guid>https://github.community/t5/Social-Impact-Collection/Alex-contribution-for-Social-impact-collection-Challenge/cns-p/14003</guid>
      <dc:creator>KikeSan</dc:creator>
      <dc:date>2018-10-26T16:26:24Z</dc:date>
    </item>
    <item>
      <title>Contributing to Civic Data Alliance</title>
      <link>https://github.community/t5/Social-Impact-Collection/Contributing-to-Civic-Data-Alliance/cns-p/13997</link>
      <description>&lt;P&gt;Civic Data Alliance&lt;/P&gt;&lt;P&gt;I chose civicdata/ civicdata.github.io as it seemed to be a great contribution to Open Source with a nice blog, calendar and even Techquity.&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;I noticed that very few details are provided in README.md and so I thought of adding few more.&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;Issue created - &lt;A href="https://github.com/civicdata/civicdata.github.io/issues/115" target="_blank"&gt;https://github.com/civicdata/civicdata.github.io/issues/115&lt;/A&gt;&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;Pull Request - &lt;A href="https://github.com/civicdata/civicdata.github.io/pull/116" target="_self"&gt;https://github.com/civicdata/civicdata.github.io/pull/116&lt;/A&gt;&lt;/P&gt;</description>
      <pubDate>Fri, 26 Oct 2018 15:53:35 GMT</pubDate>
      <guid>https://github.community/t5/Social-Impact-Collection/Contributing-to-Civic-Data-Alliance/cns-p/13997</guid>
      <dc:creator>ritwik12</dc:creator>
      <dc:date>2018-10-26T15:53:35Z</dc:date>
    </item>
    <item>
      <title>Contributing to hotosm/tasking-manager</title>
      <link>https://github.community/t5/Social-Impact-Collection/Contributing-to-hotosm-tasking-manager/cns-p/13986</link>
      <description>&lt;UL&gt;&lt;LI&gt;&lt;DIV class="d-flex flex-justify-between flex-items-start mb-1"&gt;&lt;STRONG&gt;&lt;SPAN class="text-normal"&gt;&lt;A href="https://github.com/hotosm/tasking-manager" target="_blank"&gt;hotosm/&lt;/A&gt;&lt;/SPAN&gt;&lt;A href="https://github.com/hotosm/tasking-manager" target="_blank"&gt;tasking-manager&lt;/A&gt;&lt;/STRONG&gt;&lt;/DIV&gt;&lt;/LI&gt;&lt;LI&gt;&lt;A href="https://github.com/hotosm/tasking-manager/pull/1255" target="_blank"&gt;https://github.com/hotosm/tasking-manager/pull/1255&lt;/A&gt;&lt;/LI&gt;&lt;LI&gt;This project meets my need, and is lack of locale that I can contribute to.&lt;/LI&gt;&lt;/UL&gt;</description>
      <pubDate>Fri, 26 Oct 2018 08:31:51 GMT</pubDate>
      <guid>https://github.community/t5/Social-Impact-Collection/Contributing-to-hotosm-tasking-manager/cns-p/13986</guid>
      <dc:creator>SawyerPan</dc:creator>
      <dc:date>2018-10-26T08:31:51Z</dc:date>
    </item>
    <item>
      <title>Social Impact Collection Challenge entry</title>
      <link>https://github.community/t5/Social-Impact-Collection/Social-Impact-Collection-Challenge-entry/cns-p/13985</link>
      <description>&lt;P&gt;Name of project : Data4Democracy/ethics-resources&lt;/P&gt;&lt;P&gt;Link to PR :&amp;nbsp;&lt;A href="https://github.com/Data4Democracy/ethics-resources/pull/35" target="_blank"&gt;https://github.com/Data4Democracy/ethics-resources/pull/35&lt;/A&gt;&lt;/P&gt;&lt;P&gt;Reason for contributing to Ethics Resources : I believe that ethics is one important distinguishing factor between order and anarchy. Also, I have a course subject on Ethics this semester, so I thought this would be a nice way to give back to the knowledge base that has helped me. Also, the typo fix PR is quite easy to submit ;)&lt;/P&gt;</description>
      <pubDate>Fri, 26 Oct 2018 08:28:20 GMT</pubDate>
      <guid>https://github.community/t5/Social-Impact-Collection/Social-Impact-Collection-Challenge-entry/cns-p/13985</guid>
      <dc:creator>Parikshit-Hooda</dc:creator>
      <dc:date>2018-10-26T08:28:20Z</dc:date>
    </item>
    <item>
      <title>My Contribution to Hospital Run</title>
      <link>https://github.community/t5/Social-Impact-Collection/My-Contribution-to-Hospital-Run/cns-p/13953</link>
      <description>&lt;P&gt;I contributed to the Hospital Run repository for my social impact colelction challenge.&amp;nbsp;&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;Open sourced healthcare products is a passion of mine, especially when the product is making healthcare technology accessible to third-world countries.&amp;nbsp;&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;I look forward to contributing to this project in the future.&amp;nbsp;&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;Here is my contribution: &lt;A href="https://github.com/HospitalRun/hospitalrun-frontend/pull/1534" target="_blank"&gt;https://github.com/HospitalRun/hospitalrun-frontend/pull/1534&lt;/A&gt;&lt;/P&gt;</description>
      <pubDate>Thu, 25 Oct 2018 21:52:18 GMT</pubDate>
      <guid>https://github.community/t5/Social-Impact-Collection/My-Contribution-to-Hospital-Run/cns-p/13953</guid>
      <dc:creator>jackcmeyer</dc:creator>
      <dc:date>2018-10-25T21:52:18Z</dc:date>
    </item>
    <item>
      <title>My Contribution to the Data for Democracy project</title>
      <link>https://github.community/t5/Social-Impact-Collection/My-Contribution-to-the-Data-for-Democracy-project/cns-p/13952</link>
      <description>&lt;P&gt;I contributed to the Data4Democracy project by adding resources that discuss important considerations on&amp;nbsp;the ethics of data science.&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;The link&amp;nbsp;to to my Pull Request is here:&amp;nbsp;&lt;A href="https://github.com/Data4Democracy/ethics-resources/pull/32" target="_blank"&gt;https://github.com/Data4Democracy/ethics-resources/pull/32&lt;/A&gt;&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;I chose to contribute to this project because I support and want to be a part of&amp;nbsp;D4D’s initiative to create an ethical framework for data scientists and ML practitioners. &amp;nbsp;I’m looking forward to being a part of this project!&amp;nbsp;&lt;/P&gt;</description>
      <pubDate>Thu, 25 Oct 2018 21:44:57 GMT</pubDate>
      <guid>https://github.community/t5/Social-Impact-Collection/My-Contribution-to-the-Data-for-Democracy-project/cns-p/13952</guid>
      <dc:creator>riacheruvu</dc:creator>
      <dc:date>2018-10-25T21:44:57Z</dc:date>
    </item>
    <item>
      <title>Diaper App for Ruby for Good</title>
      <link>https://github.community/t5/Social-Impact-Collection/Diaper-App-for-Ruby-for-Good/cns-p/13943</link>
      <description>&lt;P&gt;One of the projects I contributed to was the diaperbase project that helps diaper banks! I chose thise projects because I met Rachel from the Portland Diaper Bank who told me the story of why she started one. I'm super excited to be part of a project that helps so many kids each monthl.&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;&lt;A href="https://github.com/rubyforgood/diaper/pull/561" target="_blank"&gt;https://github.com/rubyforgood/diaper/pull/561&lt;/A&gt;&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;&lt;A href="https://github.com/rubyforgood/diaper/pull/552" target="_blank"&gt;https://github.com/rubyforgood/diaper/pull/552&lt;/A&gt;&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;&lt;A href="https://github.com/rubyforgood/diaper/pull/489" target="_blank"&gt;https://github.com/rubyforgood/diaper/pull/489&lt;/A&gt;&lt;/P&gt;</description>
      <pubDate>Thu, 25 Oct 2018 20:36:38 GMT</pubDate>
      <guid>https://github.community/t5/Social-Impact-Collection/Diaper-App-for-Ruby-for-Good/cns-p/13943</guid>
      <dc:creator>seanmarcia</dc:creator>
      <dc:date>2018-10-25T20:36:38Z</dc:date>
    </item>
    <item>
      <title>Diaperbase</title>
      <link>https://github.community/t5/Social-Impact-Collection/Diaperbase/cns-p/13940</link>
      <description>&lt;UL&gt;&lt;LI&gt;Name the project(s) you contributed to.&lt;/LI&gt;&lt;/UL&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;&amp;nbsp; Diaperbase&amp;nbsp;&lt;A href="https://github.com/rubyforgood/diaper" target="_blank"&gt;https://github.com/rubyforgood/diaper&lt;/A&gt;&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;UL&gt;&lt;LI&gt;Link to your PR/contribution.&lt;/LI&gt;&lt;/UL&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;&amp;nbsp;&amp;nbsp;&lt;A href="https://github.com/rubyforgood/diaper/pulls?q=is%3Apr+is%3Aclosed+author%3Aarmahillo" target="_blank"&gt;https://github.com/rubyforgood/diaper/pulls?q=is%3Apr+is%3Aclosed+author%3Aarmahillo&lt;/A&gt;&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;UL&gt;&lt;LI&gt;A brief description of why you chose that project to contribute to.&lt;/LI&gt;&lt;/UL&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;&amp;nbsp; This project is awesome and helps underprivileged communities!&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;</description>
      <pubDate>Thu, 25 Oct 2018 20:31:43 GMT</pubDate>
      <guid>https://github.community/t5/Social-Impact-Collection/Diaperbase/cns-p/13940</guid>
      <dc:creator>armahillo</dc:creator>
      <dc:date>2018-10-25T20:31:43Z</dc:date>
    </item>
    <item>
      <title>Contribution in Adding link of Tech for Good events and meet ups to the site</title>
      <link>https://github.community/t5/Social-Impact-Collection/Contribution-in-Adding-link-of-Tech-for-Good-events-and-meet-ups/cns-p/13939</link>
      <description>&lt;P&gt;I contributed to&amp;nbsp;civicdata / civicdata.github.io.&lt;BR /&gt;This is the link to my PR which is to be reviewed: &lt;A href="https://github.com/civicdata/civicdata.github.io/pull/114" target="_blank"&gt;https://github.com/civicdata/civicdata.github.io/pull/114&lt;/A&gt;&lt;BR /&gt;I regularly attend meetups related to social impacts and I understand their need. By sharing some details related to some popular groups, I would feel really happy. The groups I shared are growing at a really fast pace and their contribution to various social communities is very high. This is my major reason for choosing civicdata project.&lt;BR /&gt;&lt;BR /&gt;Thankyou!!&lt;/P&gt;</description>
      <pubDate>Thu, 25 Oct 2018 20:11:47 GMT</pubDate>
      <guid>https://github.community/t5/Social-Impact-Collection/Contribution-in-Adding-link-of-Tech-for-Good-events-and-meet-ups/cns-p/13939</guid>
      <dc:creator>rb007123</dc:creator>
      <dc:date>2018-10-25T20:11:47Z</dc:date>
    </item>
    <item>
      <title>My Contribution for Github Social Impact Challenge</title>
      <link>https://github.community/t5/Social-Impact-Collection/My-Contribution-for-Github-Social-Impact-Challenge/cns-p/13934</link>
      <description>&lt;P&gt;Name of the project that i contributed&lt;BR /&gt;Algorithms &lt;A href="https://github.com/VAR-solutions/Algorithms" target="_blank"&gt;https://github.com/VAR-solutions/Algorithms&lt;/A&gt;&lt;BR /&gt;PR Links&amp;nbsp;&lt;/P&gt;&lt;P&gt;&lt;A href="https://github.com/VAR-solutions/Algorithms/pull/350" target="_blank"&gt;https://github.com/VAR-solutions/Algorithms/pull/350&lt;/A&gt;&lt;/P&gt;&lt;P&gt;&lt;A href="https://github.com/VAR-solutions/Algorithms/pull/365" target="_blank"&gt;https://github.com/VAR-solutions/Algorithms/pull/365&lt;/A&gt;&lt;/P&gt;&lt;P&gt;&lt;A href="https://github.com/VAR-solutions/Algorithms/pull/369" target="_blank"&gt;https://github.com/VAR-solutions/Algorithms/pull/369&lt;/A&gt;&lt;/P&gt;&lt;P&gt;&lt;A href="https://github.com/VAR-solutions/Algorithms/pull/375" target="_blank"&gt;https://github.com/VAR-solutions/Algorithms/pull/375&lt;/A&gt;&lt;/P&gt;&lt;P&gt;&lt;A href="https://github.com/VAR-solutions/Algorithms/pull/513" target="_blank"&gt;https://github.com/VAR-solutions/Algorithms/pull/513&lt;/A&gt;&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;Description&lt;/P&gt;&lt;P&gt;It was fun!&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;</description>
      <pubDate>Thu, 25 Oct 2018 19:11:31 GMT</pubDate>
      <guid>https://github.community/t5/Social-Impact-Collection/My-Contribution-for-Github-Social-Impact-Challenge/cns-p/13934</guid>
      <dc:creator>fopeak</dc:creator>
      <dc:date>2018-10-25T19:11:31Z</dc:date>
    </item>
    <item>
      <title>GitHub community challenge</title>
      <link>https://github.community/t5/Social-Impact-Collection/GitHub-community-challenge/cns-p/13919</link>
      <description>Project that I contributed to was HospitalRun-frontend&lt;BR /&gt;&lt;BR /&gt;PR Link : &lt;A href="https://github.com/HospitalRun/hospitalrun-frontend/pull/1547" target="_blank"&gt;https://github.com/HospitalRun/hospitalrun-frontend/pull/1547&lt;/A&gt;&lt;BR /&gt;&lt;BR /&gt;I chose to contribute to this project because I have a real good opinion about projects that work to improve health standards, hospitals management and the process of helping people get their illness treated.</description>
      <pubDate>Thu, 25 Oct 2018 17:44:20 GMT</pubDate>
      <guid>https://github.community/t5/Social-Impact-Collection/GitHub-community-challenge/cns-p/13919</guid>
      <dc:creator>rahulkumaran</dc:creator>
      <dc:date>2018-10-25T17:44:20Z</dc:date>
    </item>
    <item>
      <title>Contribution to retext-equality for Alex</title>
      <link>https://github.community/t5/Social-Impact-Collection/Contribution-to-retext-equality-for-Alex/cns-p/13903</link>
      <description>&lt;P&gt;Project: alex&lt;/P&gt;&lt;P&gt;PR: &lt;A href="https://github.com/retextjs/retext-equality/pull/61" target="_blank"&gt;https://github.com/retextjs/retext-equality/pull/61&lt;/A&gt; (referencing this issue: &lt;A href="https://github.com/get-alex/alex/issues/219" target="_blank"&gt;https://github.com/get-alex/alex/issues/219&lt;/A&gt;)&lt;/P&gt;&lt;P&gt;Why: This project is one that I find really great. Recently, I've been working hard to change my language to cut out ablist language. Using a project like this to filter my writing is incredibly useful.&lt;/P&gt;</description>
      <pubDate>Thu, 25 Oct 2018 13:24:48 GMT</pubDate>
      <guid>https://github.community/t5/Social-Impact-Collection/Contribution-to-retext-equality-for-Alex/cns-p/13903</guid>
      <dc:creator>wuz</dc:creator>
      <dc:date>2018-10-25T13:24:48Z</dc:date>
    </item>
    <item>
      <title>Join Social Impact Collection - han-k/Data4Democracy</title>
      <link>https://github.community/t5/Social-Impact-Collection/Join-Social-Impact-Collection-han-k-Data4Democracy/cns-p/13895</link>
      <description>&lt;P&gt;I contributed to Data4Democracy.&lt;/P&gt;&lt;P&gt;&lt;A href="https://github.com/Data4Democracy/ethics-resources/pull/29#pullrequestreview-167685531" target="_blank"&gt;https://github.com/Data4Democracy/ethics-resources/pull/29#pullrequestreview-167685531&lt;/A&gt;&lt;/P&gt;&lt;P&gt;I enjoy reading about data science and how it can help shape more fair and just policies in our country. I was extremely happy to have been able to provide some measure of assistance. The response of the moderator was encouraging and I am interested in learning more in order to contribute more to open source projects.&lt;/P&gt;</description>
      <pubDate>Thu, 25 Oct 2018 00:00:14 GMT</pubDate>
      <guid>https://github.community/t5/Social-Impact-Collection/Join-Social-Impact-Collection-han-k-Data4Democracy/cns-p/13895</guid>
      <dc:creator>han-k</dc:creator>
      <dc:date>2018-10-25T00:00:14Z</dc:date>
    </item>
    <item>
      <title>Social Impact Collection Challenge - mjalkio</title>
      <link>https://github.community/t5/Social-Impact-Collection/Social-Impact-Collection-Challenge-mjalkio/cns-p/13837</link>
      <description>&lt;P&gt;I contributed to two projects from the collection.&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;Name of Project: Alex&lt;/P&gt;&lt;P&gt;Pull Request:&amp;nbsp;&lt;A href="https://github.com/words/profanities/pull/13" target="_blank"&gt;https://github.com/words/profanities/pull/13&lt;/A&gt; (this project is utilized by Alex, and is mentioned in its CONTRIBUTING doc)&lt;/P&gt;&lt;P&gt;Why I chose this project: I&amp;nbsp;loved the idea of this project. It's very simple, but very powerful, and can help developers (and others) be more aware of the language they're using.&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;Name of Project: ifme&lt;/P&gt;&lt;P&gt;Pull Requests:&amp;nbsp;&lt;A href="https://github.com/ifmeorg/ifme/pull/1155" target="_blank"&gt;https://github.com/ifmeorg/ifme/pull/1155&lt;/A&gt; and&amp;nbsp;&lt;A href="https://github.com/ifmeorg/ifme/pull/1190" target="_blank"&gt;https://github.com/ifmeorg/ifme/pull/1190&lt;/A&gt;&lt;/P&gt;&lt;P&gt;Why I chose this project: I was looking for an Issue that would be the right fit for me. This project had an issue marked as DevOps, which is something I've been trying to learn more about. It encouraged me to learn some new things about git hooks.&lt;/P&gt;</description>
      <pubDate>Wed, 24 Oct 2018 02:45:38 GMT</pubDate>
      <guid>https://github.community/t5/Social-Impact-Collection/Social-Impact-Collection-Challenge-mjalkio/cns-p/13837</guid>
      <dc:creator>mjalkio</dc:creator>
      <dc:date>2018-10-24T02:45:38Z</dc:date>
    </item>
    <item>
      <title>Social Impact Collection Challenge</title>
      <link>https://github.community/t5/Social-Impact-Collection/Social-Impact-Collection-Challenge/cns-p/13832</link>
      <description>&lt;P&gt;freeCodeCamp&lt;/P&gt;&lt;P&gt;&lt;BR /&gt;&lt;A href="https://github.com/freeCodeCamp/freeCodeCamp/pull/23862" target="_blank"&gt;https://github.com/freeCodeCamp/freeCodeCamp/pull/23862&lt;/A&gt;&lt;/P&gt;&lt;P&gt;&lt;BR /&gt;I am a user of freeCodeCamp and want to make sure the best content is available for people learning.&lt;/P&gt;</description>
      <pubDate>Tue, 23 Oct 2018 23:30:43 GMT</pubDate>
      <guid>https://github.community/t5/Social-Impact-Collection/Social-Impact-Collection-Challenge/cns-p/13832</guid>
      <dc:creator>nathanhannig</dc:creator>
      <dc:date>2018-10-23T23:30:43Z</dc:date>
    </item>
    <item>
      <title>Harry-Potter-themed website</title>
      <link>https://github.community/t5/Social-Impact-Collection/Harry-Potter-themed-website/cns-p/13830</link>
      <description>&lt;P&gt;The project is called &lt;EM&gt;Open Hogwarts&lt;/EM&gt;, a referencec to the main setting in the harry potter series.&lt;/P&gt;&lt;P&gt;My pull request was &lt;A title="OpenHogwarts PR#57" href="https://github.com/OpenHogwarts/hogwarts/pull/57" target="_blank"&gt;OpenHogwarts PR #57&lt;/A&gt;. I chose to contribute to this project because of my interest in harry potter, and because I wanted to help a repo get some recognition by making a website for them.&lt;/P&gt;</description>
      <pubDate>Tue, 23 Oct 2018 22:43:53 GMT</pubDate>
      <guid>https://github.community/t5/Social-Impact-Collection/Harry-Potter-themed-website/cns-p/13830</guid>
      <dc:creator>b3u</dc:creator>
      <dc:date>2018-10-23T22:43:53Z</dc:date>
    </item>
    <item>
      <title>Added Finnish translation to the Humanitarian OpenStreetMap Tasking Manager</title>
      <link>https://github.community/t5/Social-Impact-Collection/Added-Finnish-translation-to-the-Humanitarian-OpenStreetMap/cns-p/13716</link>
      <description>&lt;P&gt;I contributed to the Humanitarian OpenStreetMap Tasking Manager 3 (hotosm/tasking-manager).&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;The pull request: &lt;A href="https://github.com/hotosm/tasking-manager/pull/1215" target="_blank"&gt;https://github.com/hotosm/tasking-manager/pull/1215&lt;/A&gt;.&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;Some reasons for the contribution are that I have been active mapper and validator for humanitarian OSM for several years, can produce good Finnish language text (imho), I consider the topic important.&lt;/P&gt;</description>
      <pubDate>Sun, 21 Oct 2018 10:32:16 GMT</pubDate>
      <guid>https://github.community/t5/Social-Impact-Collection/Added-Finnish-translation-to-the-Humanitarian-OpenStreetMap/cns-p/13716</guid>
      <dc:creator>ernoma</dc:creator>
      <dc:date>2018-10-21T10:32:16Z</dc:date>
    </item>
    <item>
      <title>Social Impact Collection Challenge - Added two GeoJSON endpoints to hurricane-response/florence-api</title>
      <link>https://github.community/t5/Social-Impact-Collection/Social-Impact-Collection-Challenge-Added-two-GeoJSON-endpoints/cns-p/13700</link>
      <description>&lt;P&gt;I contributed to the &lt;A href="https://github.com/hurricane-response/florence-api" target="_self"&gt;hurricane-response/florence-api&lt;/A&gt; project.&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;I picked up an open feature request issue (&lt;A href="https://github.com/hurricane-response/florence-api/issues/44" target="_self"&gt;hurricane-response/florence-api#44&lt;/A&gt;) and delivered a PR that resolves it by adding two new GeoJSON endpoints to the API:&lt;/P&gt;&lt;P&gt;&lt;A href="https://github.com/hurricane-response/florence-api/pull/70" target="_self"&gt;https://github.com/hurricane-response/florence-api/pull/70&lt;/A&gt;&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;I chose this project to contribute to because I've contributed to it and to its predecessors several times before. Much of my family was impacted by Hurricane Katrina when it hit New Orleans over a decade ago, so I do what I can to help out with hurricane response efforts as much as possible.&lt;/P&gt;</description>
      <pubDate>Sat, 20 Oct 2018 18:19:14 GMT</pubDate>
      <guid>https://github.community/t5/Social-Impact-Collection/Social-Impact-Collection-Challenge-Added-two-GeoJSON-endpoints/cns-p/13700</guid>
      <dc:creator>nihonjinrxs</dc:creator>
      <dc:date>2018-10-20T18:19:14Z</dc:date>
    </item>
    <item>
      <title>Hacktober Fest - Social Impact Challenge</title>
      <link>https://github.community/t5/Social-Impact-Collection/Hacktober-Fest-Social-Impact-Challenge/cns-p/13608</link>
      <description>Project: Redesign of Jugaad Fest logo&lt;BR /&gt;&lt;BR /&gt;Job: I redesigned the Jugaad Fest logo and converted to SVG&lt;BR /&gt;&lt;BR /&gt;Link: &lt;A href="https://github.com/fossasia/jugaadfest-artwork/issues/1#issuecomment-431304748" target="_blank"&gt;https://github.com/fossasia/jugaadfest-artwork/issues/1#issuecomment-431304748&lt;/A&gt;&lt;BR /&gt;&lt;A href="https://github.com/fossasia/jugaadfest-artwork/pull/4" target="_blank"&gt;https://github.com/fossasia/jugaadfest-artwork/pull/4&lt;/A&gt;&lt;BR /&gt;&lt;BR /&gt;Why I choose Jugaad Fest: As an open sourcerer, I love Open Source projects that united people together in terms of festivals, meetup etc and being part of the process to make this happen is a passion.</description>
      <pubDate>Fri, 19 Oct 2018 09:44:47 GMT</pubDate>
      <guid>https://github.community/t5/Social-Impact-Collection/Hacktober-Fest-Social-Impact-Challenge/cns-p/13608</guid>
      <dc:creator>IfeanyiEkperi</dc:creator>
      <dc:date>2018-10-19T09:44:47Z</dc:date>
    </item>
    <item>
      <title>Social Impact Collection Challenge entry</title>
      <link>https://github.community/t5/Social-Impact-Collection/Social-Impact-Collection-Challenge-entry/cns-p/13370</link>
      <description>&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;UL&gt;&lt;LI&gt;Name the project(s) you contributed to:&amp;nbsp;HOT tasking-manager&lt;/LI&gt;&lt;LI&gt;Link to your PR/contribution:&amp;nbsp;&lt;A href="https://github.com/hotosm/tasking-manager/pull/1232" target="_blank"&gt;https://github.com/hotosm/tasking-manager/pull/1232&lt;/A&gt;&lt;/LI&gt;&lt;LI&gt;A brief description of why you chose that project to contribute to: The Humanitarian OpenStreetMap Team does important work coordinating and mapping areas&amp;nbsp;(and doing so quickly) of the that need are without adequate coverage, to allow humanitarian organisaitons to go in and help out as effectively as possible.&lt;/LI&gt;&lt;/UL&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;</description>
      <pubDate>Sun, 14 Oct 2018 15:59:52 GMT</pubDate>
      <guid>https://github.community/t5/Social-Impact-Collection/Social-Impact-Collection-Challenge-entry/cns-p/13370</guid>
      <dc:creator>hugovk</dc:creator>
      <dc:date>2018-10-14T15:59:52Z</dc:date>
    </item>
    <item>
      <title>Contributing to Alex by helping new developers who don't know of the portability of npm with yarn</title>
      <link>https://github.community/t5/Social-Impact-Collection/Contributing-to-Alex-by-helping-new-developers-who-don-t-know-of/cns-p/13294</link>
      <description>&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;&lt;STRONG&gt;The project:&lt;/STRONG&gt;&amp;nbsp;Alex, a tool to help adress bias and prejudice in software.&lt;/P&gt;&lt;P&gt;&lt;STRONG&gt;My contribution:&lt;/STRONG&gt;&amp;nbsp;&lt;A href="https://github.com/get-alex/alex/pull/227&amp;nbsp;" target="_blank"&gt;https://github.com/get-alex/alex/pull/227&amp;nbsp;&lt;/A&gt;&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;I chose to see how I could help contribute to the &lt;STRONG&gt;Alex&lt;/STRONG&gt; project because of its social enteprise goals - it's openly tackling the unfortunately prevailing issue of inate bias and prejudice in software by detecting insensitive and offensive writing, helping to make sure that by default everyone is made to be welcome and apart of the community.&lt;/P&gt;</description>
      <pubDate>Fri, 12 Oct 2018 11:21:47 GMT</pubDate>
      <guid>https://github.community/t5/Social-Impact-Collection/Contributing-to-Alex-by-helping-new-developers-who-don-t-know-of/cns-p/13294</guid>
      <dc:creator>ItsPugle</dc:creator>
      <dc:date>2018-10-12T11:21:47Z</dc:date>
    </item>
    <item>
      <title>Social Impact Challenge - PR approved!</title>
      <link>https://github.community/t5/Social-Impact-Collection/Social-Impact-Challenge-PR-approved/cns-p/13186</link>
      <description>&lt;UL&gt;&lt;LI&gt;&lt;STRONG&gt;Project:&amp;nbsp;&lt;/STRONG&gt;Humanitarian OpenStreetMap&lt;/LI&gt;&lt;LI&gt;&lt;STRONG&gt;PR:&amp;nbsp;&lt;/STRONG&gt;&lt;A href="https://github.com/hotosm/tasking-manager/pull/1209" target="_blank"&gt;https://github.com/hotosm/tasking-manager/pull/1209&lt;/A&gt;&lt;/LI&gt;&lt;LI&gt;With more occurance of civil unrest and huge scale natural disaster. The need to coordinate the masses for aid or awareness is ever so critical. To have a tool such as this, will aid without addind extra burden to the community - hopefully.&lt;/LI&gt;&lt;/UL&gt;</description>
      <pubDate>Tue, 09 Oct 2018 03:44:21 GMT</pubDate>
      <guid>https://github.community/t5/Social-Impact-Collection/Social-Impact-Challenge-PR-approved/cns-p/13186</guid>
      <dc:creator>jonyeezs</dc:creator>
      <dc:date>2018-10-09T03:44:21Z</dc:date>
    </item>
    <item>
      <title>Contribution to Alex for Social Impact Collection Challenge</title>
      <link>https://github.community/t5/Social-Impact-Collection/Contribution-to-Alex-for-Social-Impact-Collection-Challenge/cns-p/13183</link>
      <description>&lt;P&gt;Name&amp;nbsp;of project:&amp;nbsp;&amp;nbsp;&lt;A href="https://github.com/get-alex/alex" target="_self"&gt;Alex&lt;/A&gt;&lt;/P&gt;&lt;P&gt;Link to&amp;nbsp;my PR/contribution: &lt;A href="https://github.com/get-alex/alex/pull/224" target="_self"&gt;https://github.com/get-alex/alex/pull/224&lt;/A&gt;&lt;/P&gt;&lt;P&gt;Why I chose to contribute:&amp;nbsp;&lt;/P&gt;&lt;P&gt;I was really interested in the&amp;nbsp;Alex project since for its unique approach to creating a positive social impact. Alex detects potentially harmful language in online text, and&amp;nbsp;provides a platform for users to check their writing for potentially harmful or offensive content while providing suggested revisions. I was happy to contribute to Alex and I hope to see it continue to grow.&amp;nbsp;&lt;/P&gt;</description>
      <pubDate>Tue, 09 Oct 2018 00:18:44 GMT</pubDate>
      <guid>https://github.community/t5/Social-Impact-Collection/Contribution-to-Alex-for-Social-Impact-Collection-Challenge/cns-p/13183</guid>
      <dc:creator>laurenmayers</dc:creator>
      <dc:date>2018-10-09T00:18:44Z</dc:date>
    </item>
    <item>
      <title>Reviewed documentation for alex and florence-api</title>
      <link>https://github.community/t5/Social-Impact-Collection/Reviewed-documentation-for-alex-and-florence-api/cns-p/13150</link>
      <description>&lt;P&gt;PRs -&amp;gt;&amp;nbsp;&lt;A href="https://github.com/hurricane-response/florence-api/pull/51" target="_blank"&gt;https://github.com/hurricane-response/florence-api/pull/51&lt;/A&gt;&lt;/P&gt;&lt;P&gt;&lt;A href="https://github.com/get-alex/alex/pull/222" target="_blank"&gt;https://github.com/get-alex/alex/pull/222&lt;/A&gt;&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;I often feel like I make posts on social media without thinking about whether they may be offending to some people.&lt;/P&gt;&lt;P&gt;alex can come in as a very handy solution to the problem and allow people to communicate without offending anyone. I believe its a brilliant idea and I would love to contribute to it further.&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;My motivation to contribute to florence-api for hurricane-response comes from a similar incident we faced a few months back in Kerala, India in which a massive flood took over the state. During that time we and almost 100 other developers came together to form&amp;nbsp;&lt;A href="https://github.com/IEEEKeralaSection/rescuekerala/" target="_blank"&gt;https://github.com/IEEEKeralaSection/rescuekerala/&lt;/A&gt; to aid in rescue operations. I realised the importance of technology for disaster management. I would like to add this repo as a suggestion for Social Impact collection challenge as well.&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;Although I am unfamiliar with the technologies used in both of these repos&amp;nbsp;, I will try to help out as much as I can.&lt;/P&gt;&lt;P&gt;Thank You&lt;/P&gt;</description>
      <pubDate>Mon, 08 Oct 2018 00:16:04 GMT</pubDate>
      <guid>https://github.community/t5/Social-Impact-Collection/Reviewed-documentation-for-alex-and-florence-api/cns-p/13150</guid>
      <dc:creator>Gotham13121997</dc:creator>
      <dc:date>2018-10-08T00:16:04Z</dc:date>
    </item>
    <item>
      <title>Contributed to retext-equality for alex issue</title>
      <link>https://github.community/t5/Social-Impact-Collection/Contributed-to-retext-equality-for-alex-issue/cns-p/13142</link>
      <description>&lt;P&gt;Project: alex&lt;/P&gt;&lt;P&gt;PR:&amp;nbsp;&lt;SPAN&gt;&lt;A href="https://github.com/retextjs/retext-equality/pull/51" target="_blank"&gt;https://github.com/retextjs/retext-equality/pull/51&lt;/A&gt; regarding this issue&amp;nbsp;&lt;A href="https://github.com/get-alex/alex/issues/219" target="_blank"&gt;https://github.com/get-alex/alex/issues/219&lt;/A&gt;&lt;/SPAN&gt;&lt;/P&gt;&lt;P&gt;&lt;SPAN&gt;Why?: Given how much time people spend reading and writing on the internet, language plays a big role in determining how people see the world. I think a&amp;nbsp;lot of people would be interested in learning how to make their writing more inclusive but they don't have anyone to help them do so. Alex&amp;nbsp;is a nice tool for people who want feedback on their writing style but don't know where to begin. It&amp;nbsp;can&amp;nbsp;also spark healthy discussion/debate/knowledge sharing and help non-native English speakers. As a woman software engineer, I can see how a tool like this would be helpful at work in particular. I hope to contribute more!&amp;nbsp;&lt;/SPAN&gt;&lt;/P&gt;</description>
      <pubDate>Sun, 07 Oct 2018 20:22:58 GMT</pubDate>
      <guid>https://github.community/t5/Social-Impact-Collection/Contributed-to-retext-equality-for-alex-issue/cns-p/13142</guid>
      <dc:creator>agans</dc:creator>
      <dc:date>2018-10-07T20:22:58Z</dc:date>
    </item>
    <item>
      <title>Helping other devs contribute to Alex, for the Social Impact Collection Challenge</title>
      <link>https://github.community/t5/Social-Impact-Collection/Helping-other-devs-contribute-to-Alex-for-the-Social-Impact/cns-p/13119</link>
      <description>&lt;P&gt;I contributed to get-alex/alex: &lt;A href="https://github.com/get-alex/alex" target="_self"&gt;https://github.com/get-alex/alex&lt;/A&gt;&lt;/P&gt;&lt;P&gt;My pull request to get-alex/alex: &lt;A href="https://github.com/get-alex/alex/pull/217" target="_self"&gt;https://github.com/get-alex/alex/pull/217&lt;/A&gt;&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;While working with some other Github members on internationalizing Alex, I noticed that several contributers were lost on where to put new keywords and profanities for the tool, as I myself was lost, I did some digging through the issues and noticed that I wasn't alone. Using the creator's own words from previous open and closed issues on where the files and contributions should be placed, I added a small section to the `contributing.md` file so future contributors can find where to make their pull requests and help make this tool even better.&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;Alex is a excellent tool that parses text to check for any accidental or inconsiderate/insensitive writing. Everyone in open source should feel welcome and open to contribute to the community, and I strongly believe that a tool like Alex can help developers from around the world write better README documents that allow everyone to feel included and encouraged to participate in building better software as a community.&lt;/P&gt;</description>
      <pubDate>Sat, 06 Oct 2018 19:31:12 GMT</pubDate>
      <guid>https://github.community/t5/Social-Impact-Collection/Helping-other-devs-contribute-to-Alex-for-the-Social-Impact/cns-p/13119</guid>
      <dc:creator>MrBenJ</dc:creator>
      <dc:date>2018-10-06T19:31:12Z</dc:date>
    </item>
    <item>
      <title>Hacktober Fest - Social Impact Challenge</title>
      <link>https://github.community/t5/Social-Impact-Collection/Hacktober-Fest-Social-Impact-Challenge/cns-p/13038</link>
      <description>&lt;P&gt;Project Name:&amp;nbsp;&lt;STRONG&gt;Alex&lt;/STRONG&gt;&lt;/P&gt;&lt;P&gt;PR Link:&amp;nbsp;&lt;A href="https://github.com/get-alex/alex/pull/218" target="_blank"&gt;https://github.com/get-alex/alex/pull/218&lt;/A&gt;&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;When Hacktoberfest started, I began seeking out OSS projects that I could contribute to that would make a difference. Originally, this meant improving frameworks that I used on a daily basis both in personal projects and at work, however, after searching, I originally found the repo for IFME and requested to be a contributor there as projects that serve to support mental health initatives are really close to me.&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;While waiting for approval, I saw&amp;nbsp;&lt;STRONG&gt;Alex&lt;/STRONG&gt;, a writing parser that aimed to&amp;nbsp;flag indecency and exclusion in user's writing. This excited me a ton both for me own personal use of it, but also, as a tool for others to help them really think about the words they chose to use, the effects they may have, and the alternative words to use in their place. It's more important than ever these days to stand up to oppression of all kinds and to stress equality and understanding at every turn. While Alex is a small piece of the puzzle, it's one I can use my skills to contribute to and to help support these initiatives, so I was excited to do it and will continue to do so in the future.&amp;nbsp;&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;</description>
      <pubDate>Fri, 05 Oct 2018 02:13:46 GMT</pubDate>
      <guid>https://github.community/t5/Social-Impact-Collection/Hacktober-Fest-Social-Impact-Challenge/cns-p/13038</guid>
      <dc:creator>LMulvey</dc:creator>
      <dc:date>2018-10-05T02:13:46Z</dc:date>
    </item>
    <item>
      <title>Contribution to Alex under Social Impact Collection Challenge</title>
      <link>https://github.community/t5/Social-Impact-Collection/Contribution-to-Alex-under-Social-Impact-Collection-Challenge/cns-p/13009</link>
      <description>&lt;P&gt;Contributed to Alex: &lt;A href="https://github.com/get-alex/alex" target="_self"&gt;https://github.com/get-alex/alex&lt;/A&gt;&lt;/P&gt;&lt;P&gt;Link to PR: &lt;A href="https://github.com/get-alex/alex/pull/214" target="_self"&gt;https://github.com/get-alex/alex/pull/214&amp;nbsp;&lt;/A&gt;&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;Alex&amp;nbsp;helps to catch inconsiderate/insensitive writing.&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;Why I chose this project?&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;UL&gt;&lt;LI&gt;I believe it is important to be more aware of the language we use online, whether it is on social media, an online forum, or on our own personal websites.&lt;/LI&gt;&lt;LI&gt;Alex is great tool to help us catch insenstive or inconsiderate words as you type.&lt;/LI&gt;&lt;LI&gt;The application is only in English right now but I like that the creator&amp;nbsp;opening the doors by&amp;nbsp;letting developers add more languages so that it can be an international movement.&amp;nbsp;&lt;/LI&gt;&lt;/UL&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;Thank you GitHub for adding Alex to the&amp;nbsp;Social Impact Collection Challenge.&lt;/P&gt;</description>
      <pubDate>Wed, 03 Oct 2018 20:15:23 GMT</pubDate>
      <guid>https://github.community/t5/Social-Impact-Collection/Contribution-to-Alex-under-Social-Impact-Collection-Challenge/cns-p/13009</guid>
      <dc:creator>tmott13</dc:creator>
      <dc:date>2018-10-03T20:15:23Z</dc:date>
    </item>
    <item>
      <title>Contribution to Refuge Restrooms under Social Impact Collection Challenge</title>
      <link>https://github.community/t5/Social-Impact-Collection/Contribution-to-Refuge-Restrooms-under-Social-Impact-Collection/cns-p/13002</link>
      <description>&lt;P&gt;Contributed to RefugeRestrooms&amp;nbsp;&lt;A href="https://github.com/RefugeRestrooms/refugerestrooms" target="_self"&gt;https://github.com/RefugeRestrooms/refugerestrooms&lt;/A&gt;&lt;/P&gt;&lt;P&gt;Link to PR:-&amp;nbsp;&lt;A href="https://github.com/RefugeRestrooms/refugerestrooms/pull/503" target="_self"&gt;https://github.com/RefugeRestrooms/refugerestrooms/pull/503&lt;/A&gt;&lt;/P&gt;&lt;P&gt;Why I chose this project?&lt;/P&gt;&lt;P&gt;&lt;SPAN&gt;REFUGE restrooms indexes and maps safe restroom locations for trans, intersex, and gender nonconforming individuals. The idea of refuge is to make acess to restrooms easy for&amp;nbsp;trans, intersex, and gender nonconforming individuals. This project will help&amp;nbsp;trans, intersex, and gender nonconforming individuals in the society and society can better connect with them.&amp;nbsp;&lt;/SPAN&gt;&lt;/P&gt;&lt;P&gt;&lt;SPAN&gt;According to the &lt;A href="http://www.ustranssurvey.org/" target="_self"&gt;http://www.ustranssurvey.org/&lt;/A&gt;&amp;nbsp;:-&lt;BR /&gt;1: "59% of respondents avoided using a restroom for fear of confrontation"&lt;BR /&gt;2: "31% avoided eating or drinking while out, to avoid having to use the restroom"&lt;BR /&gt;3: "24% had their presence in the restroom questioned"&lt;BR /&gt;4: "12% had been harassed, attacked, or sexually assaulted in a restroom"&lt;BR /&gt;5: "9% had been denied restroom access"&lt;BR /&gt;6: "8% had developed a kidney issue or urinary tract infection from avoiding bathroom usage"&lt;/SPAN&gt;&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;&lt;SPAN&gt;For the above reasons I decided to contribute to the project.&lt;BR /&gt;&lt;BR /&gt;&lt;/SPAN&gt;&lt;/P&gt;&lt;P&gt;&lt;SPAN&gt;Lesbian,&amp;nbsp;&lt;EM&gt;gay&lt;/EM&gt;, bisexual, transgender and intersex (LGBTI) people in&amp;nbsp;&lt;EM&gt;the world&lt;/EM&gt;&amp;nbsp;face legal and social difficulties not experienced by non-&lt;EM&gt;LGBT&lt;/EM&gt;&amp;nbsp;persons.&amp;nbsp;This should not happen as we as humans must live together and must not discriminate each other on the basis of race, skin color, ethinicity, religion, sex etc. This project is a step forward that will enable all of us to treat every one with dignity and equality.&lt;/SPAN&gt;&lt;/P&gt;</description>
      <pubDate>Wed, 03 Oct 2018 18:39:44 GMT</pubDate>
      <guid>https://github.community/t5/Social-Impact-Collection/Contribution-to-Refuge-Restrooms-under-Social-Impact-Collection/cns-p/13002</guid>
      <dc:creator>sankalpchauhan-me</dc:creator>
      <dc:date>2018-10-03T18:39:44Z</dc:date>
    </item>
    <item>
      <title>Reviewed documentation for HOT tasking-manager</title>
      <link>https://github.community/t5/Social-Impact-Collection/Reviewed-documentation-for-HOT-tasking-manager/cns-p/12962</link>
      <description>&lt;P&gt;Project Name: tasking manager&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;Link : &lt;A href="https://github.com/hotosm/tasking-manager/pull/1196" target="_blank"&gt;https://github.com/hotosm/tasking-manager/pull/1196&lt;/A&gt;&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;Being a python developer, I was looking for a project which is interesting and has Server(python).&amp;nbsp; I found Tasking manager interested and was exactly what I needed. I am thankful to&amp;nbsp;&lt;SPAN&gt;Social Impact Collection Challenge for helping me in finding the right project for me.&lt;/SPAN&gt;&lt;/P&gt;</description>
      <pubDate>Tue, 02 Oct 2018 21:56:48 GMT</pubDate>
      <guid>https://github.community/t5/Social-Impact-Collection/Reviewed-documentation-for-HOT-tasking-manager/cns-p/12962</guid>
      <dc:creator>Akshit312</dc:creator>
      <dc:date>2018-10-02T21:56:48Z</dc:date>
    </item>
    <item>
      <title>New to GitHub Web</title>
      <link>https://github.community/t5/GitHub-Learning-Lab-Explorer/New-to-GitHub-Web/cns-p/9261</link>
      <description>&lt;P&gt;The (3) tutorials I covered were:&amp;nbsp;&lt;/P&gt;&lt;P&gt;- Intro to GitHUb&lt;/P&gt;&lt;P&gt;- Communicating using Markdown&lt;/P&gt;&lt;P&gt;- Managing merge conflicts&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;From my experience with Git, I've learned that GitHub's UI definitely makes the management of merge conflicts much easier. Most of my experience with git is through a cmd/terminal, so taking this course has definitely opened my eyes to the ease of use a GUI might provide. Additionally, I was able to get a nice refresher on markdown - something I need having no experience with using a "preview" option for markdown.&amp;nbsp;&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;All in all, I think these are great tutorials, but I also wish there were parallel git bash tutorials. Maybe in the future!&lt;/P&gt;</description>
      <pubDate>Wed, 27 Jun 2018 05:44:33 GMT</pubDate>
      <guid>https://github.community/t5/GitHub-Learning-Lab-Explorer/New-to-GitHub-Web/cns-p/9261</guid>
      <dc:creator>mochsner</dc:creator>
      <dc:date>2018-06-27T05:44:33Z</dc:date>
    </item>
    <item>
      <title>I dig the bot</title>
      <link>https://github.community/t5/GitHub-Learning-Lab-Explorer/I-dig-the-bot/cns-p/9260</link>
      <description>&lt;P&gt;* Communicating using Markdown&lt;BR /&gt;* Introduction to GitHub&lt;BR /&gt;* Moving your project to GitHub&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;Pages were completely new to me. These were fun and useful. I especially liked the bot. I remember doing older versions of the Learning and having to wait for an actual human to review/merge/etc. and I was just stuck until someone did.&lt;/P&gt;</description>
      <pubDate>Wed, 27 Jun 2018 04:49:21 GMT</pubDate>
      <guid>https://github.community/t5/GitHub-Learning-Lab-Explorer/I-dig-the-bot/cns-p/9260</guid>
      <dc:creator>joshg253</dc:creator>
      <dc:date>2018-06-27T04:49:21Z</dc:date>
    </item>
    <item>
      <title>Nice lab</title>
      <link>https://github.community/t5/GitHub-Learning-Lab-Explorer/Nice-lab/cns-p/9259</link>
      <description>Introduction to GitHub Communicating using Markdown GitHub Pages Managing merge conflicts Moving your project to GitHub I know the github not only putting code, but it is a good cms system for everyone. I use hexo to be my ghpage for blog, maybe the original one is good. I learned more things about communication.</description>
      <pubDate>Wed, 27 Jun 2018 04:25:09 GMT</pubDate>
      <guid>https://github.community/t5/GitHub-Learning-Lab-Explorer/Nice-lab/cns-p/9259</guid>
      <dc:creator>sujunmin</dc:creator>
      <dc:date>2018-06-27T04:25:09Z</dc:date>
    </item>
    <item>
      <title>Learning With Github Learning Lab</title>
      <link>https://github.community/t5/GitHub-Learning-Lab-Explorer/Learning-With-Github-Learning-Lab/cns-p/9257</link>
      <description>&lt;P&gt;&lt;STRONG&gt;Courses completed so far:&lt;/STRONG&gt;&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;OL&gt;&lt;LI&gt;Introduction to GitHub&lt;/LI&gt;&lt;LI&gt;Communicating using Markdown&lt;/LI&gt;&lt;LI&gt;Moving your project to GitHub&lt;/LI&gt;&lt;/OL&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;So far I have learnt about&amp;nbsp;assigning issues, closing issues, how move projects from other websites like codepen to Github, about .gitignore and I have created my first .gitignore file :smileyvery-happy:&amp;nbsp; .&lt;/P&gt;&lt;P&gt;It's Interesting and good to know that there are several ways to move a project to Github apart from using the command line.&lt;/P&gt;&lt;P&gt;Right now I am particularly thrilled about&amp;nbsp;using GitHub Pages to create a site or blog from my GitHub repositories.&lt;/P&gt;</description>
      <pubDate>Wed, 27 Jun 2018 03:55:31 GMT</pubDate>
      <guid>https://github.community/t5/GitHub-Learning-Lab-Explorer/Learning-With-Github-Learning-Lab/cns-p/9257</guid>
      <dc:creator>hamiduabu</dc:creator>
      <dc:date>2018-06-27T03:55:31Z</dc:date>
    </item>
    <item>
      <title>Git for sane development process</title>
      <link>https://github.community/t5/GitHub-Learning-Lab-Explorer/Git-for-sane-development-process/cns-p/9256</link>
      <description>Completing course Github learning lab give me major benefit on doing development the sane way. Just completing starter courses already big boost on development flow and maintenance management. Ease of use, quick and adaptable environment really help me out. Just try out&lt;BR /&gt;&lt;BR /&gt;1. Introduction to Github&lt;BR /&gt;2. Communicating Using Markdown&lt;BR /&gt;3. Github Pages&lt;BR /&gt;&lt;BR /&gt;Already cover major part of my development workflow.&lt;BR /&gt;&lt;BR /&gt;After learning this introductory course, make me realize I am lacking certain basic understanding on git usage this far. Migrating my repo to github is a next to do things.</description>
      <pubDate>Wed, 27 Jun 2018 03:28:52 GMT</pubDate>
      <guid>https://github.community/t5/GitHub-Learning-Lab-Explorer/Git-for-sane-development-process/cns-p/9256</guid>
      <dc:creator>charsme</dc:creator>
      <dc:date>2018-06-27T03:28:52Z</dc:date>
    </item>
    <item>
      <title>Awesome lab!</title>
      <link>https://github.community/t5/GitHub-Learning-Lab-Explorer/Awesome-lab/cns-p/9255</link>
      <description>&lt;P&gt;Courses Taken:&lt;/P&gt;&lt;P&gt;- GitHub Pages&lt;/P&gt;&lt;P&gt;- Moving your project to GutHub&lt;/P&gt;&lt;P&gt;- Introduction to GutHub - Attempted (Lesson literally failed to function. Never got an issue submitted, so I learned on my own with the video provided: &lt;A href="https://www.youtube.com/watch?time_continue=314&amp;amp;v=sz6zfrQpCQg" target="_blank"&gt;https://www.youtube.com/watch?time_continue=314&amp;amp;v=sz6zfrQpCQg&lt;/A&gt;)&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;This was really neat lab to check my GitHub skills. The most valuable thing I learned taking these courses was how to move my projects to GitHub and level up my community score. I now have a better understanding of how to be a good developer and how to communicate with my team.&lt;/P&gt;</description>
      <pubDate>Wed, 27 Jun 2018 03:09:47 GMT</pubDate>
      <guid>https://github.community/t5/GitHub-Learning-Lab-Explorer/Awesome-lab/cns-p/9255</guid>
      <dc:creator>mrniceguy127</dc:creator>
      <dc:date>2018-06-27T03:09:47Z</dc:date>
    </item>
    <item>
      <title>My first github challenge.</title>
      <link>https://github.community/t5/GitHub-Learning-Lab-Explorer/My-first-github-challenge/cns-p/9254</link>
      <description>&lt;OL&gt;&lt;LI&gt;&lt;A href="https://lab.github.com/courses/introduction-to-github" target="_blank"&gt;Introduction to GitHub&lt;/A&gt;&lt;/LI&gt;&lt;LI&gt;&lt;H3&gt;&lt;A href="https://lab.github.com/courses/communicating-using-markdown" target="_blank"&gt;Communicating using Markdown&lt;/A&gt;&lt;/H3&gt;&lt;/LI&gt;&lt;LI&gt;&lt;H3&gt;&lt;A href="https://lab.github.com/courses/github-pages" target="_blank"&gt;GitHub Pages&lt;/A&gt;&lt;/H3&gt;&lt;/LI&gt;&lt;/OL&gt;&lt;P&gt;First time walkthrough the github flow. Didn't know I can edit file in the pull request before, but now I know I can. It's a great experience.&lt;/P&gt;</description>
      <pubDate>Wed, 27 Jun 2018 02:50:07 GMT</pubDate>
      <guid>https://github.community/t5/GitHub-Learning-Lab-Explorer/My-first-github-challenge/cns-p/9254</guid>
      <dc:creator>randomdize</dc:creator>
      <dc:date>2018-06-27T02:50:07Z</dc:date>
    </item>
    <item>
      <title>My GitHub Learning Lab Submission</title>
      <link>https://github.community/t5/GitHub-Learning-Lab-Explorer/My-GitHub-Learning-Lab-Submission/cns-p/9252</link>
      <description>&lt;P&gt;The three courses I took:&lt;BR /&gt;- Introduction to GitHub&lt;/P&gt;&lt;P&gt;- Communication using Markdown&lt;/P&gt;&lt;P&gt;- GitHub Pages&lt;BR /&gt;&lt;BR /&gt;What I learned:&lt;BR /&gt;The thing that I most apreciated was the GitHub Pages course, I didn't know GitHub had that feature. I will be using that in the future as I saw that it doesn't have a limit on how many hours your project will be hosted (compared to other free hosting platforms)&lt;/P&gt;</description>
      <pubDate>Wed, 27 Jun 2018 02:08:43 GMT</pubDate>
      <guid>https://github.community/t5/GitHub-Learning-Lab-Explorer/My-GitHub-Learning-Lab-Submission/cns-p/9252</guid>
      <dc:creator>Realex78</dc:creator>
      <dc:date>2018-06-27T02:08:43Z</dc:date>
    </item>
    <item>
      <title>A Practical Approach to Git Learning</title>
      <link>https://github.community/t5/GitHub-Learning-Lab-Explorer/A-Practical-Approach-to-Git-Learning/cns-p/9250</link>
      <description>&lt;P&gt;&lt;STRONG&gt;Completed Courses:&lt;/STRONG&gt;&lt;/P&gt;&lt;UL&gt;&lt;LI&gt;Introduction to Github&lt;/LI&gt;&lt;LI&gt;Communication using Markdown&lt;/LI&gt;&lt;LI&gt;Managing merge conflicts&lt;/LI&gt;&lt;/UL&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;&lt;STRONG&gt;What I Learned:&lt;/STRONG&gt;&lt;/P&gt;&lt;P&gt;Most importantly, the whole&amp;nbsp;&lt;A href="https://guides.github.com/introduction/flow/" target="_blank"&gt;Github Flow&lt;/A&gt; and managing merge conflicts.&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;&lt;STRONG&gt;What I made:&lt;/STRONG&gt;&lt;/P&gt;&lt;P&gt;Updating README pages with more info using markdown, &lt;A href="https://github.com/mhxion/pornaway/blob/master/hosts/README.md" target="_blank"&gt;https://github.com/mhxion/pornaway/blob/master/hosts/README.md&lt;/A&gt;&lt;/P&gt;</description>
      <pubDate>Wed, 27 Jun 2018 00:33:48 GMT</pubDate>
      <guid>https://github.community/t5/GitHub-Learning-Lab-Explorer/A-Practical-Approach-to-Git-Learning/cns-p/9250</guid>
      <dc:creator>mhxion</dc:creator>
      <dc:date>2018-06-27T00:33:48Z</dc:date>
    </item>
    <item>
      <title>GitHub Learning Lab Explorer Challenge - MiniFlames</title>
      <link>https://github.community/t5/GitHub-Learning-Lab-Explorer/GitHub-Learning-Lab-Explorer-Challenge-MiniFlames/cns-p/9244</link>
      <description>&lt;P&gt;Courses completed:&lt;/P&gt;&lt;UL&gt;&lt;LI&gt;Introduction to GitHub&lt;/LI&gt;&lt;LI&gt;Managing Merge Conflicts&lt;/LI&gt;&lt;LI&gt;GitHub Pages&lt;/LI&gt;&lt;/UL&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;Followed the challenge courses to better acquaint myself with GitHub. Already had some fleeting experinces with GIt and GitHub but this makes me more inclined to do more on/with GitHub in the future. Will be interesting to see if these courses are expanded upon in the future.&lt;/P&gt;</description>
      <pubDate>Tue, 26 Jun 2018 22:52:15 GMT</pubDate>
      <guid>https://github.community/t5/GitHub-Learning-Lab-Explorer/GitHub-Learning-Lab-Explorer-Challenge-MiniFlames/cns-p/9244</guid>
      <dc:creator>MiniFlames</dc:creator>
      <dc:date>2018-06-26T22:52:15Z</dc:date>
    </item>
    <item>
      <title>Highly recommend taking the GitHub Learning Labs</title>
      <link>https://github.community/t5/GitHub-Learning-Lab-Explorer/Highly-recommend-taking-the-GitHub-Learning-Labs/cns-p/9243</link>
      <description>&lt;P&gt;I recently completed all of the GitHub Learning Labs:&lt;SPAN class="Apple-converted-space"&gt;&amp;nbsp;&lt;/SPAN&gt;&lt;/P&gt;&lt;UL&gt;&lt;UL&gt;&lt;UL&gt;&lt;LI&gt;Introduction to GitHub&lt;/LI&gt;&lt;LI&gt;Communicating Using Markdown&lt;/LI&gt;&lt;LI&gt;GitHub Pages&lt;/LI&gt;&lt;LI&gt;Moving Your Project to GitHub&lt;/LI&gt;&lt;LI&gt;Managing Merge Conflicts&lt;/LI&gt;&lt;/UL&gt;&lt;/UL&gt;&lt;/UL&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;I enjoyed taking all of the courses and learning the correct ways to use GitHub.&lt;SPAN class="Apple-converted-space"&gt;&amp;nbsp; &lt;/SPAN&gt;The documentation was well written, and the interactivity helped to reinforce each lesson for me.&lt;SPAN class="Apple-converted-space"&gt;&amp;nbsp; &lt;/SPAN&gt;As for the most valuable thing I learned, that would be how to resolve conflicts in the Managing Merge Conflicts course.&lt;SPAN class="Apple-converted-space"&gt;&amp;nbsp; &lt;/SPAN&gt;That course really made me work to resolve my conflicts.&lt;SPAN class="Apple-converted-space"&gt;&amp;nbsp;&lt;/SPAN&gt;&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;</description>
      <pubDate>Tue, 26 Jun 2018 22:45:55 GMT</pubDate>
      <guid>https://github.community/t5/GitHub-Learning-Lab-Explorer/Highly-recommend-taking-the-GitHub-Learning-Labs/cns-p/9243</guid>
      <dc:creator>JB4706</dc:creator>
      <dc:date>2018-06-26T22:45:55Z</dc:date>
    </item>
    <item>
      <title>Challenge Entry by Waqar</title>
      <link>https://github.community/t5/GitHub-Learning-Lab-Explorer/Challenge-Entry-by-Waqar/cns-p/9242</link>
      <description>&lt;P&gt;Courses completed&lt;BR /&gt;&lt;BR /&gt;1. Intro to Github&lt;/P&gt;&lt;P&gt;2. Github Pages&lt;/P&gt;&lt;P&gt;3. Communicating Using Markdown&lt;BR /&gt;&lt;BR /&gt;The thing I learnt and that which has benefitted me most is Github is not as scary as it initially seems. I was hesitant to use even think about learning about creating pull requests etc as it seemed so overwhelming but the courses have helped me understand, it is relatively easy&amp;nbsp;:smileyhappy:&lt;/P&gt;</description>
      <pubDate>Tue, 26 Jun 2018 22:37:37 GMT</pubDate>
      <guid>https://github.community/t5/GitHub-Learning-Lab-Explorer/Challenge-Entry-by-Waqar/cns-p/9242</guid>
      <dc:creator>waqardm</dc:creator>
      <dc:date>2018-06-26T22:37:37Z</dc:date>
    </item>
    <item>
      <title>GitHub Learning Lab Challenge EngrSMukhtar Entry</title>
      <link>https://github.community/t5/GitHub-Learning-Lab-Explorer/GitHub-Learning-Lab-Challenge-EngrSMukhtar-Entry/cns-p/9241</link>
      <description>&lt;P&gt;Courses Completed:&lt;/P&gt;&lt;P&gt;&amp;nbsp; 1. Introduction to GitHub&lt;/P&gt;&lt;P&gt;&amp;nbsp; 2. Communicating using Markdown&lt;/P&gt;&lt;P&gt;&amp;nbsp; 3. GitHub Pages&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;Most Valuable Thing from&amp;nbsp;courses:&amp;nbsp;My takeaways from the GitHub courses include&amp;nbsp;learning about GitHub Flow and GitHub Pages and the knowledge to professionally move local projects to GitHub's platform.&lt;/P&gt;&lt;P&gt;&amp;nbsp; My funniest memories are the use of the Markdown to express my feelings :tada: and to __*emphasise*__ some certain aspects of my work. Special thanks to GitHub.&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;</description>
      <pubDate>Tue, 26 Jun 2018 22:08:30 GMT</pubDate>
      <guid>https://github.community/t5/GitHub-Learning-Lab-Explorer/GitHub-Learning-Lab-Challenge-EngrSMukhtar-Entry/cns-p/9241</guid>
      <dc:creator>engrsmukhtar</dc:creator>
      <dc:date>2018-06-26T22:08:30Z</dc:date>
    </item>
    <item>
      <title>Submission Entry</title>
      <link>https://github.community/t5/GitHub-Learning-Lab-Explorer/Submission-Entry/cns-p/9240</link>
      <description>Courses I completed: * Introduction to GitHub * Communicating using Markdown * GitHub Pages What I learned: The most valuable thing I learned during GitHub courses is how powerful GitHub Pages can actually be. I worked with the tool before, but haven't had the time to really look in depth at it. I believe that I will be able to use this knowledge in the future and already have some ideas in mind.</description>
      <pubDate>Tue, 26 Jun 2018 22:01:35 GMT</pubDate>
      <guid>https://github.community/t5/GitHub-Learning-Lab-Explorer/Submission-Entry/cns-p/9240</guid>
      <dc:creator>Gleydar</dc:creator>
      <dc:date>2018-06-26T22:01:35Z</dc:date>
    </item>
    <item>
      <title>jmerle's submission</title>
      <link>https://github.community/t5/GitHub-Learning-Lab-Explorer/jmerle-s-submission/cns-p/9239</link>
      <description>&lt;P&gt;Completed courses:&lt;/P&gt;&lt;UL&gt;&lt;LI&gt;&lt;A title="Introduction to GitHub" href="https://lab.github.com/courses/introduction-to-github" target="_blank"&gt;Introduction to GitHub&lt;/A&gt;&lt;/LI&gt;&lt;LI&gt;&lt;A title="Communicating using Markdown" href="https://lab.github.com/courses/communicating-using-markdown" target="_blank"&gt;Communicating using Markdown&lt;/A&gt;&lt;/LI&gt;&lt;LI&gt;&lt;A title="GitHub Pages" href="https://lab.github.com/courses/github-pages" target="_blank"&gt;GitHub Pages&lt;/A&gt;&lt;/LI&gt;&lt;LI&gt;&lt;A title="Moving your project to GitHub" href="https://lab.github.com/courses/moving-your-project-to-github" target="_blank"&gt;Moving your project to GitHub&lt;/A&gt;&lt;/LI&gt;&lt;LI&gt;&lt;A title="Managing merge conflicts" href="https://lab.github.com/courses/managing-merge-conflicts" target="_blank"&gt;Managing merge conflicts&lt;/A&gt;&lt;/LI&gt;&lt;/UL&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;The most valuable thing I learned is that the "Managing merge conflicts" is actually a really good way to teach people who are new to Git how merge conflicts work and how to resolve them. At college, the second class about Git was about merge conflicts, and even at the end of the semester some people did not understand them because. I think that this course could really help understand that&amp;nbsp;piece of Git, and have bookmarked it to share with others when necessary.&lt;/P&gt;</description>
      <pubDate>Tue, 26 Jun 2018 21:53:03 GMT</pubDate>
      <guid>https://github.community/t5/GitHub-Learning-Lab-Explorer/jmerle-s-submission/cns-p/9239</guid>
      <dc:creator>jmerle</dc:creator>
      <dc:date>2018-06-26T21:53:03Z</dc:date>
    </item>
    <item>
      <title>Hamberfim's Submission</title>
      <link>https://github.community/t5/GitHub-Learning-Lab-Explorer/Hamberfim-s-Submission/cns-p/9238</link>
      <description>&lt;P&gt;&lt;SPAN&gt;Learning Lab:&lt;/SPAN&gt;&lt;/P&gt;&lt;P&gt;1. GitHub Pages&lt;/P&gt;&lt;P&gt;2.&amp;nbsp;Communicating using Markdown&lt;/P&gt;&lt;P&gt;3.&amp;nbsp;Managing merge conflicts&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;I learn how simple it was to host web content&amp;nbsp;on GitHub.&lt;/P&gt;&lt;P&gt;Furthermore I learned how I can use Markdown syntax to quickly get content formatted on GitHub pages and how to utilize Jekyll for a fresher user exprience or even a blog site. Lastly, but prehaps the most important skill I learned was, how to resolve and merge conflicts through the online GitHub interface.&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;P.s. You need to create more labs. The content is a bit sparse.&lt;/P&gt;&lt;P&gt;Thanks. :D&lt;/P&gt;</description>
      <pubDate>Tue, 26 Jun 2018 21:32:34 GMT</pubDate>
      <guid>https://github.community/t5/GitHub-Learning-Lab-Explorer/Hamberfim-s-Submission/cns-p/9238</guid>
      <dc:creator>Hamberfim</dc:creator>
      <dc:date>2018-06-26T21:32:34Z</dc:date>
    </item>
    <item>
      <title>GitHub Learning Lab Explorer Challenge Submission</title>
      <link>https://github.community/t5/GitHub-Learning-Lab-Explorer/GitHub-Learning-Lab-Explorer-Challenge-Submission/cns-p/9237</link>
      <description>&lt;P&gt;I have taken all 5 courses offered by GitHub: (i) &lt;A href="https://github.com/hoangle96/github-slideshow" target="_blank"&gt;github-slideshow, (ii) &lt;/A&gt;&lt;A href="https://github.com/hoangle96/markdown-portfolio" target="_blank"&gt;markdown-portfolio, &lt;/A&gt;(iii)&lt;A href="https://github.com/hoangle96/github-move" target="_blank"&gt;github-move&lt;/A&gt;, (iv) &lt;A href="https://github.com/hoangle96/github-pages-with-jekyll" target="_blank"&gt;github-pages-with-jekyll&lt;/A&gt;, (v) &lt;A href="https://github.com/hoangle96/merge-conflict" target="_blank"&gt;merge-conflict&lt;/A&gt;.&lt;/P&gt;&lt;P&gt;Through these 5 courses, I have learnt more about the current terms used in GitHub workflow. I also learnt about merging conflict and using markdown to write readme file.&lt;/P&gt;</description>
      <pubDate>Tue, 26 Jun 2018 21:30:43 GMT</pubDate>
      <guid>https://github.community/t5/GitHub-Learning-Lab-Explorer/GitHub-Learning-Lab-Explorer-Challenge-Submission/cns-p/9237</guid>
      <dc:creator>hoangle96</dc:creator>
      <dc:date>2018-06-26T21:30:43Z</dc:date>
    </item>
    <item>
      <title>octopi are great</title>
      <link>https://github.community/t5/GitHub-Learning-Lab-Explorer/octopi-are-great/cns-p/9236</link>
      <description>&lt;P&gt;Completed Courses:&lt;/P&gt;&lt;P&gt;- Github Pages&lt;/P&gt;&lt;P&gt;- Communicating using Markdown&lt;/P&gt;&lt;P&gt;- Introduction to Github&lt;/P&gt;&lt;P&gt;Theses courses certainly help to get a better Overview of Github's features and quirks, more of these courses would be a nice addition. The most valuable thing I learned is probably&amp;nbsp;that many of the features that are within Git itself&amp;nbsp; can also be&amp;nbsp;done on Github without ever touching Git. Thanks for this little intro!&lt;/P&gt;</description>
      <pubDate>Tue, 26 Jun 2018 21:06:52 GMT</pubDate>
      <guid>https://github.community/t5/GitHub-Learning-Lab-Explorer/octopi-are-great/cns-p/9236</guid>
      <dc:creator>RobinTTY</dc:creator>
      <dc:date>2018-06-26T21:06:52Z</dc:date>
    </item>
    <item>
      <title>Contest for badge</title>
      <link>https://github.community/t5/GitHub-Learning-Lab-Explorer/Contest-for-badge/cns-p/9235</link>
      <description>&lt;P&gt;&lt;STRONG&gt;LAB Coursese I took on GitHub&lt;/STRONG&gt;&lt;/P&gt;&lt;P&gt;1. Managing merge conflicts&lt;BR /&gt;2. Moving your project to GitHub&lt;BR /&gt;3. GitHub Pages&lt;BR /&gt;4. Communicating using Markdown&lt;BR /&gt;5. Introduction to GitHub&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;&lt;SPAN&gt;&lt;STRONG&gt;valuable things&amp;nbsp;I learned while going through my courses&lt;/STRONG&gt; &lt;/SPAN&gt;&lt;/P&gt;&lt;P&gt;I learnt how to adhere to YAML format while writing my resume. It was interesting on how to move code from local machine to github and how to upadate it using pull request then later merge it to the Master. I also learnt how to resolve conflict when working with other developers in which I have been thinking since all these days how to reslove conflict if two or more developers made changes to a single file, and opened pull requests then merge their branches to the Master.&lt;/P&gt;</description>
      <pubDate>Tue, 26 Jun 2018 21:02:38 GMT</pubDate>
      <guid>https://github.community/t5/GitHub-Learning-Lab-Explorer/Contest-for-badge/cns-p/9235</guid>
      <dc:creator>olaoyesunday</dc:creator>
      <dc:date>2018-06-26T21:02:38Z</dc:date>
    </item>
    <item>
      <title>Regards, Using GitHub</title>
      <link>https://github.community/t5/GitHub-Learning-Lab-Explorer/Regards-Using-GitHub/cns-p/9234</link>
      <description>&lt;P&gt;Hi, everybody.&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;I completed the next three courses:&lt;/P&gt;&lt;P&gt;&lt;BR /&gt;- &lt;A href="https://lab.github.com/courses/introduction-to-github" target="_blank"&gt;https://lab.github.com/courses/introduction-to-github&lt;/A&gt;&lt;/P&gt;&lt;P&gt;-&amp;nbsp;&lt;A href="https://lab.github.com/courses/communicating-using-markdown" target="_blank"&gt;https://lab.github.com/courses/communicating-using-markdown&lt;/A&gt;&lt;/P&gt;&lt;P&gt;-&amp;nbsp;&lt;A href="https://lab.github.com/courses/github-pages" target="_blank"&gt;https://lab.github.com/courses/github-pages&lt;/A&gt;&lt;/P&gt;&lt;P&gt;In this courses I learned about:&lt;/P&gt;&lt;P&gt;- Pull request&lt;/P&gt;&lt;P&gt;- Drive github pages&lt;/P&gt;&lt;P&gt;- Drive resolve conflict&lt;/P&gt;</description>
      <pubDate>Tue, 26 Jun 2018 20:49:31 GMT</pubDate>
      <guid>https://github.community/t5/GitHub-Learning-Lab-Explorer/Regards-Using-GitHub/cns-p/9234</guid>
      <dc:creator>reroes</dc:creator>
      <dc:date>2018-06-26T20:49:31Z</dc:date>
    </item>
    <item>
      <title>My Learning Lab Explorer Challenge Entry</title>
      <link>https://github.community/t5/GitHub-Learning-Lab-Explorer/My-Learning-Lab-Explorer-Challenge-Entry/cns-p/9233</link>
      <description>&lt;P&gt;&lt;SPAN&gt;I have completed 5 courses which they are;&lt;/SPAN&gt;&lt;/P&gt;&lt;OL&gt;&lt;LI&gt;Managing merge conflicts&lt;/LI&gt;&lt;LI&gt;Moving your project to GitHub&lt;/LI&gt;&lt;LI&gt;GitHub Pages&lt;/LI&gt;&lt;LI&gt;Communicating using Markdown&lt;/LI&gt;&lt;LI&gt;Introduction to GitHub&lt;/LI&gt;&lt;/OL&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;&lt;SPAN&gt;This challenge specifically helped me to understand merge conflicts. Also, I learned how to present my projects via GitHub Pages and blogging with Jekyll. I have already been familiar with some of the topics yet my skills are polished well by this awesome challenge.&lt;/SPAN&gt;&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;Thanks! :heart:&lt;/P&gt;</description>
      <pubDate>Tue, 26 Jun 2018 20:30:35 GMT</pubDate>
      <guid>https://github.community/t5/GitHub-Learning-Lab-Explorer/My-Learning-Lab-Explorer-Challenge-Entry/cns-p/9233</guid>
      <dc:creator>cenksoykan</dc:creator>
      <dc:date>2018-06-26T20:30:35Z</dc:date>
    </item>
    <item>
      <title>Awesome lab!</title>
      <link>https://github.community/t5/GitHub-Learning-Lab-Explorer/Awesome-lab/cns-p/9231</link>
      <description>&lt;P&gt;I have completed 4 courses of &lt;A href="https://lab.github.com/" target="_blank"&gt;Github Learning Lab&lt;/A&gt;, they are:&lt;/P&gt;&lt;OL&gt;&lt;LI&gt;&lt;H3&gt;&lt;A href="https://lab.github.com/courses/managing-merge-conflicts" target="_blank"&gt;Managing merge conflicts&lt;/A&gt;&lt;/H3&gt;&lt;/LI&gt;&lt;LI&gt;&lt;H3&gt;&lt;A href="https://lab.github.com/courses/introduction-to-github" target="_blank"&gt;Introduction to GitHub&lt;/A&gt;&lt;/H3&gt;&lt;/LI&gt;&lt;LI&gt;&lt;H3&gt;&lt;A href="https://lab.github.com/courses/communicating-using-markdown" target="_blank"&gt;Communicating using Markdown&lt;/A&gt;&lt;/H3&gt;&lt;/LI&gt;&lt;LI&gt;&lt;H3&gt;&lt;A href="https://lab.github.com/courses/github-pages" target="_blank"&gt;GitHub Pages&lt;/A&gt;&lt;/H3&gt;&lt;/LI&gt;&lt;/OL&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;While attending the courses I learned different things from each one, the most important are:&lt;/P&gt;&lt;UL&gt;&lt;LI&gt;How to solve merge errors in the code&lt;/LI&gt;&lt;LI&gt;How git works with github&lt;/LI&gt;&lt;LI&gt;How can I use markdown as text style&lt;/LI&gt;&lt;LI&gt;How to use github pages to present my projects and repositories with others&lt;/LI&gt;&lt;/UL&gt;</description>
      <pubDate>Tue, 26 Jun 2018 19:30:06 GMT</pubDate>
      <guid>https://github.community/t5/GitHub-Learning-Lab-Explorer/Awesome-lab/cns-p/9231</guid>
      <dc:creator>Obsinqsob01</dc:creator>
      <dc:date>2018-06-26T19:30:06Z</dc:date>
    </item>
    <item>
      <title>My Learning Lab Explorer Challenge Entry</title>
      <link>https://github.community/t5/GitHub-Learning-Lab-Explorer/My-Learning-Lab-Explorer-Challenge-Entry/cns-p/9226</link>
      <description>&lt;P&gt;I took:&lt;/P&gt;&lt;UL&gt;&lt;LI&gt;Introduction to Github&lt;/LI&gt;&lt;LI&gt;Communicating using Markdown&lt;/LI&gt;&lt;LI&gt;Github Pages&lt;/LI&gt;&lt;/UL&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;I am glad that you have introduced these courses as I use Github for projects, but I am still not very good at the merge conflicts or remembering that you can use markdown for pull request messages.&amp;nbsp; I learned much more about how to manage merge conflicts within Github and in a few different ways.&amp;nbsp; I also relearned how helpful markdown can be when you want to make a certain point in a pull request message.&amp;nbsp; Markdown can help you to show where the problem is and how you would recommend it be solved much more easily than just assuming they know what you mean.&amp;nbsp;&amp;nbsp;&lt;/P&gt;</description>
      <pubDate>Tue, 26 Jun 2018 18:29:03 GMT</pubDate>
      <guid>https://github.community/t5/GitHub-Learning-Lab-Explorer/My-Learning-Lab-Explorer-Challenge-Entry/cns-p/9226</guid>
      <dc:creator>naveenyagati</dc:creator>
      <dc:date>2018-06-26T18:29:03Z</dc:date>
    </item>
    <item>
      <title>Thanks GitHub for these interactive courses.</title>
      <link>https://github.community/t5/GitHub-Learning-Lab-Explorer/Thanks-GitHub-for-these-interactive-courses/cns-p/9224</link>
      <description>&lt;P&gt;I completed these&amp;nbsp;three courses&lt;/P&gt;&lt;OL&gt;&lt;LI&gt;Communicating using Markdown&lt;/LI&gt;&lt;LI&gt;Moving your project to GitHub&lt;/LI&gt;&lt;LI&gt;&lt;SPAN&gt;GitHub Pages&lt;/SPAN&gt;&lt;/LI&gt;&lt;/OL&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;&lt;SPAN&gt;Learning through these interactive courses was really fun. I learned how to create my own blog using GitHub Pages course. I also learned some new markdowns, like checkbox and emojis.&lt;/SPAN&gt;&lt;/P&gt;</description>
      <pubDate>Tue, 26 Jun 2018 18:26:38 GMT</pubDate>
      <guid>https://github.community/t5/GitHub-Learning-Lab-Explorer/Thanks-GitHub-for-these-interactive-courses/cns-p/9224</guid>
      <dc:creator>akashgiricse</dc:creator>
      <dc:date>2018-06-26T18:26:38Z</dc:date>
    </item>
    <item>
      <title>Complete GitHub Learning Lab Explorer Challenge</title>
      <link>https://github.community/t5/GitHub-Learning-Lab-Explorer/Complete-GitHub-Learning-Lab-Explorer-Challenge/cns-p/9220</link>
      <description>&lt;UL&gt;&lt;LI&gt;Introduction to GitHub&lt;/LI&gt;&lt;LI&gt;GitHub Pages&lt;/LI&gt;&lt;LI&gt;Communicating using Markdown&lt;/LI&gt;&lt;/UL&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;Some Github features are new to me, it's good to know them through these courses.&lt;/P&gt;&lt;P&gt;More precisely, I don't know the full supported online commit function of Github until I take the courses.&lt;/P&gt;&lt;P&gt;The powerful github Page and Markdown emoji are awesome.&lt;/P&gt;&lt;P&gt;It's great to found this challenge on Tweeter this night.&lt;/P&gt;</description>
      <pubDate>Tue, 26 Jun 2018 18:14:11 GMT</pubDate>
      <guid>https://github.community/t5/GitHub-Learning-Lab-Explorer/Complete-GitHub-Learning-Lab-Explorer-Challenge/cns-p/9220</guid>
      <dc:creator>t1016d</dc:creator>
      <dc:date>2018-06-26T18:14:11Z</dc:date>
    </item>
    <item>
      <title>Github is way cooler !</title>
      <link>https://github.community/t5/GitHub-Learning-Lab-Explorer/Github-is-way-cooler/cns-p/9219</link>
      <description>&lt;P&gt;course completed:&lt;/P&gt;&lt;P&gt;1. Introduction to Github.&lt;/P&gt;&lt;P&gt;2. Communicating using Markdown.&lt;/P&gt;&lt;P&gt;3. Github Pages&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;Takeway from the course:&lt;/P&gt;&lt;P&gt;- I need to learn Github to the full extent.&lt;/P&gt;&lt;P&gt;- Contributing to the community and open source seems way easy after these course.&lt;/P&gt;&lt;P&gt;- I can now&amp;nbsp;confidently create my own with Github Pages.&lt;/P&gt;&lt;P&gt;- Now i feel more comfortable using features offered by Github.&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;Thanks !&lt;/P&gt;</description>
      <pubDate>Tue, 26 Jun 2018 18:12:14 GMT</pubDate>
      <guid>https://github.community/t5/GitHub-Learning-Lab-Explorer/Github-is-way-cooler/cns-p/9219</guid>
      <dc:creator>cruseakshay</dc:creator>
      <dc:date>2018-06-26T18:12:14Z</dc:date>
    </item>
    <item>
      <title>Completed the challenges, can I have a badge please</title>
      <link>https://github.community/t5/GitHub-Learning-Lab-Explorer/Completed-the-challenges-can-I-have-a-badge-please/cns-p/9218</link>
      <description>&lt;P&gt;- [x]&amp;nbsp;Introduction to GitHub&lt;/P&gt;&lt;P&gt;- [x] GitHub Pages&lt;/P&gt;&lt;P&gt;- [x] Managing merge conflicts&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;I Just wanted to get the badge TBH. I tend to work differently to attempt to avoid merge conflicts (fetch and rebase often)&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;Thank you GitHub! 💚&lt;/P&gt;</description>
      <pubDate>Tue, 26 Jun 2018 18:12:11 GMT</pubDate>
      <guid>https://github.community/t5/GitHub-Learning-Lab-Explorer/Completed-the-challenges-can-I-have-a-badge-please/cns-p/9218</guid>
      <dc:creator>Lewiscowles1986</dc:creator>
      <dc:date>2018-06-26T18:12:11Z</dc:date>
    </item>
    <item>
      <title>Fascinating learning experience and eye opening</title>
      <link>https://github.community/t5/GitHub-Learning-Lab-Explorer/Fascinating-learning-experience-and-eye-opening/cns-p/9214</link>
      <description>&lt;P&gt;* Introduction to GitHub&lt;/P&gt;&lt;P&gt;* Communicating using Markdown&lt;/P&gt;&lt;P&gt;* GitHub Pages&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;I just finished some Lab courses and I must say, this is very didactical and useful how it integrates well with GitHub's PR system.&lt;/P&gt;&lt;P&gt;I didn't know about how useful GitHub can be via visual GUI directly on the GitHub site, I was only using it remotely via `git` commands.&lt;/P&gt;&lt;P&gt;Definitely a great experience, GitHub features are very useful, prior to this courses I didn't know about other features it has.&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;</description>
      <pubDate>Tue, 26 Jun 2018 18:03:00 GMT</pubDate>
      <guid>https://github.community/t5/GitHub-Learning-Lab-Explorer/Fascinating-learning-experience-and-eye-opening/cns-p/9214</guid>
      <dc:creator>vhanla</dc:creator>
      <dc:date>2018-06-26T18:03:00Z</dc:date>
    </item>
    <item>
      <title>GitHub Labs picked up from where YouTube left off</title>
      <link>https://github.community/t5/GitHub-Learning-Lab-Explorer/GitHub-Labs-picked-up-from-where-YouTube-left-off/cns-p/9212</link>
      <description>&lt;H3&gt;Courses taken&lt;/H3&gt;&lt;UL&gt;&lt;LI&gt;Introduction to GitHub&lt;/LI&gt;&lt;LI&gt;Managing merge conflicts&lt;/LI&gt;&lt;LI&gt;GitHub pages&lt;/LI&gt;&lt;LI&gt;Communicating with Markdown&lt;/LI&gt;&lt;LI&gt;Moving your project to GitHub&lt;/LI&gt;&lt;/UL&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;H3&gt;My two bits:&lt;/H3&gt;&lt;P&gt;Having gone through couple of YouTube tutorials (Brian Yu's being particularly helpful) I found the use of the website helpful in doing things that perhaps would not make sense by the command line. Learning to merge the pull requests from the project owner's perspective, use of the GitHub Pages, an visually seeing the branch merge were very helpful. Kind of disappointing that we can not make a Page for every repo.&lt;/P&gt;</description>
      <pubDate>Tue, 26 Jun 2018 17:53:58 GMT</pubDate>
      <guid>https://github.community/t5/GitHub-Learning-Lab-Explorer/GitHub-Labs-picked-up-from-where-YouTube-left-off/cns-p/9212</guid>
      <dc:creator>Taariqq</dc:creator>
      <dc:date>2018-06-26T17:53:58Z</dc:date>
    </item>
    <item>
      <title>Accordions Rock!</title>
      <link>https://github.community/t5/GitHub-Learning-Lab-Explorer/Accordions-Rock/cns-p/9209</link>
      <description>&lt;UL&gt;&lt;LI&gt;&lt;DIV class="d-flex flex-items-center gutter-condensed"&gt;&lt;DIV class="col-12"&gt;&lt;DIV class="d-flex flex-items-center"&gt;&lt;H3&gt;&lt;A href="https://lab.github.com/courses/github-pages" target="_blank"&gt;GitHub Pages&lt;/A&gt;&lt;/H3&gt;&lt;SPAN class="Label bg-blue ml-3 tooltipped tooltipped-n"&gt;Completed&lt;/SPAN&gt;&lt;/DIV&gt;&lt;P class="text-gray-light"&gt;Learn how to create a site or blog from your GitHub repositories with GitHub Pages.&lt;/P&gt;&lt;DIV class="d-flex flex-justify-between mt-4"&gt;&lt;DIV class="flex-auto width-full mr-4"&gt;&lt;DIV class="d-flex flex-justify-between mb-2"&gt;&lt;DIV class="flex-column"&gt;&amp;nbsp;&lt;/DIV&gt;&lt;DIV class="flex-column"&gt;&amp;nbsp;&lt;/DIV&gt;&lt;/DIV&gt;&lt;/DIV&gt;&lt;/DIV&gt;&lt;/DIV&gt;&lt;/DIV&gt;&lt;/LI&gt;&lt;LI&gt;&lt;DIV class="d-flex flex-items-center gutter-condensed"&gt;&lt;DIV class="col-12"&gt;&lt;DIV class="d-flex flex-items-center"&gt;&lt;H3&gt;&lt;A href="https://lab.github.com/courses/communicating-using-markdown" target="_blank"&gt;Communicating using Markdown&lt;/A&gt;&lt;/H3&gt;&lt;SPAN class="Label bg-blue ml-3 tooltipped tooltipped-n"&gt;Completed&lt;/SPAN&gt;&lt;/DIV&gt;&lt;P class="text-gray-light"&gt;This course will walk you through everything you need to start organizing ideas and collaborating...&lt;/P&gt;&lt;DIV class="d-flex flex-justify-between mt-4"&gt;&lt;DIV class="flex-auto width-full mr-4"&gt;&lt;DIV class="d-flex flex-justify-between mb-2"&gt;&lt;DIV class="flex-column"&gt;&amp;nbsp;&lt;/DIV&gt;&lt;DIV class="flex-column"&gt;&amp;nbsp;&lt;/DIV&gt;&lt;/DIV&gt;&lt;/DIV&gt;&lt;/DIV&gt;&lt;/DIV&gt;&lt;/DIV&gt;&lt;/LI&gt;&lt;LI&gt;&lt;DIV class="d-flex flex-items-center gutter-condensed"&gt;&lt;DIV class="col-12"&gt;&lt;DIV class="d-flex flex-items-center"&gt;&lt;H3&gt;&lt;A href="https://lab.github.com/courses/introduction-to-github" target="_blank"&gt;Introduction to GitHub&lt;/A&gt;&lt;/H3&gt;&lt;SPAN class="Label bg-blue ml-3 tooltipped tooltipped-n"&gt;Completed&lt;/SPAN&gt;&lt;/DIV&gt;&lt;DIV class="d-flex flex-items-center"&gt;&amp;nbsp;&lt;/DIV&gt;&lt;DIV class="d-flex flex-items-center"&gt;&amp;nbsp;&lt;/DIV&gt;&lt;DIV class="d-flex flex-items-center"&gt;&lt;SPAN class="Label bg-blue ml-3 tooltipped tooltipped-n"&gt;I learned about the value of grit.&amp;nbsp; The bot was maddening.&amp;nbsp; I kept getting error messages with no idea of how to correct the error.&amp;nbsp; The community discussion worked.&amp;nbsp; I found someone with a similar challenge, and I eventuall figured out what I had done wrong -- added an extra space before the date in Step 7 of the GitHub Page course.&amp;nbsp; After this mini-victory I am now ready to complete the remaining two&amp;nbsp;lab courses -- after a Long Island Iced Tea!&lt;/SPAN&gt;&lt;/DIV&gt;&lt;/DIV&gt;&lt;/DIV&gt;&lt;/LI&gt;&lt;/UL&gt;</description>
      <pubDate>Tue, 26 Jun 2018 17:40:16 GMT</pubDate>
      <guid>https://github.community/t5/GitHub-Learning-Lab-Explorer/Accordions-Rock/cns-p/9209</guid>
      <dc:creator>webapprentices</dc:creator>
      <dc:date>2018-06-26T17:40:16Z</dc:date>
    </item>
    <item>
      <title>Carlos Learning Challenge</title>
      <link>https://github.community/t5/GitHub-Learning-Lab-Explorer/Carlos-Learning-Challenge/cns-p/9207</link>
      <description>&lt;P&gt;1. Introduction to GitHub&lt;/P&gt;&lt;P&gt;2. GitHub Pages&lt;/P&gt;&lt;P&gt;3. Communicating using Markdown&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;* It is really healpfull the way that GitHub Lab Teach, the fact that we use all the tools while solving our course help us practice and understand the benefi of each tab and option that GitHub have for us&lt;/P&gt;&lt;P&gt;* I love Markdown, since i been using GitHub a what i want to do is do a good README with the tools that the markdown give us to make it beautiful, thanks to this course in Lab now i know who to use it like a pro!&lt;/P&gt;</description>
      <pubDate>Tue, 26 Jun 2018 17:36:03 GMT</pubDate>
      <guid>https://github.community/t5/GitHub-Learning-Lab-Explorer/Carlos-Learning-Challenge/cns-p/9207</guid>
      <dc:creator>cgonzalezp91</dc:creator>
      <dc:date>2018-06-26T17:36:03Z</dc:date>
    </item>
    <item>
      <title>GitHub Learning Lab Explorer Challenge Entry</title>
      <link>https://github.community/t5/GitHub-Learning-Lab-Explorer/GitHub-Learning-Lab-Explorer-Challenge-Entry/cns-p/9204</link>
      <description>&lt;P&gt;Completed courses:&lt;/P&gt;&lt;OL&gt;&lt;LI&gt;Introduction to GitHub&lt;/LI&gt;&lt;LI&gt;Communicating using Markdown&lt;/LI&gt;&lt;LI&gt;GitHub Pages&lt;/LI&gt;&lt;/OL&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;I think those courses are very suitable for those who begin to start learning programming, and provide platform for them to experience issues and pull requests.&lt;/P&gt;</description>
      <pubDate>Tue, 26 Jun 2018 17:20:58 GMT</pubDate>
      <guid>https://github.community/t5/GitHub-Learning-Lab-Explorer/GitHub-Learning-Lab-Explorer-Challenge-Entry/cns-p/9204</guid>
      <dc:creator>rudeigerc</dc:creator>
      <dc:date>2018-06-26T17:20:58Z</dc:date>
    </item>
    <item>
      <title>Lineargs' challenge</title>
      <link>https://github.community/t5/GitHub-Learning-Lab-Explorer/Lineargs-challenge/cns-p/9203</link>
      <description>&lt;P&gt;GitHub Pages, Communication using Markdown, Introduction to GitHub&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;As always it is fun working with the GitHub Pages and I loved the Markdown support course, just lines and dots crrating such a powerful lines&lt;/P&gt;</description>
      <pubDate>Tue, 26 Jun 2018 17:15:13 GMT</pubDate>
      <guid>https://github.community/t5/GitHub-Learning-Lab-Explorer/Lineargs-challenge/cns-p/9203</guid>
      <dc:creator>lineargs</dc:creator>
      <dc:date>2018-06-26T17:15:13Z</dc:date>
    </item>
    <item>
      <title>GitHub Learning Lab Challenge</title>
      <link>https://github.community/t5/GitHub-Learning-Lab-Explorer/GitHub-Learning-Lab-Challenge/cns-p/9202</link>
      <description>&lt;P&gt;Courses completed:&lt;BR /&gt;1. Introduction to Github.&lt;/P&gt;&lt;P&gt;2. Communication using Markdown.&lt;/P&gt;&lt;P&gt;3. GitHub Pages&lt;BR /&gt;&lt;SPAN&gt;4. Moving Your Project to Github.&lt;/SPAN&gt;&lt;/P&gt;&lt;P&gt;5. Managing merge conflicts&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;&lt;SPAN&gt;The courses helped me dive deep into the concepts of open source contributions, and more specifically to understand conflicts merging on GitHub web tool.&lt;/SPAN&gt;&lt;/P&gt;</description>
      <pubDate>Tue, 26 Jun 2018 16:48:06 GMT</pubDate>
      <guid>https://github.community/t5/GitHub-Learning-Lab-Explorer/GitHub-Learning-Lab-Challenge/cns-p/9202</guid>
      <dc:creator>LeoColomb</dc:creator>
      <dc:date>2018-06-26T16:48:06Z</dc:date>
    </item>
    <item>
      <title>Learning Lab Challenge</title>
      <link>https://github.community/t5/GitHub-Learning-Lab-Explorer/Learning-Lab-Challenge/cns-p/9200</link>
      <description>&lt;P&gt;Introduction to GitHub&lt;BR /&gt;Communicating using Markdown&lt;BR /&gt;GitHub Pages&lt;/P&gt;</description>
      <pubDate>Tue, 26 Jun 2018 16:08:58 GMT</pubDate>
      <guid>https://github.community/t5/GitHub-Learning-Lab-Explorer/Learning-Lab-Challenge/cns-p/9200</guid>
      <dc:creator>agriffard</dc:creator>
      <dc:date>2018-06-26T16:08:58Z</dc:date>
    </item>
    <item>
      <title>My GitHub Learning Lab Challenge</title>
      <link>https://github.community/t5/GitHub-Learning-Lab-Explorer/My-GitHub-Learning-Lab-Challenge/cns-p/9199</link>
      <description>&lt;P&gt;The courses that I have completed:&lt;/P&gt;&lt;UL&gt;&lt;LI&gt;&lt;STRONG&gt;Communicating using Markdown&lt;/STRONG&gt;&lt;/LI&gt;&lt;LI&gt;&lt;STRONG&gt;Managing merge conflicts&lt;/STRONG&gt;&lt;/LI&gt;&lt;LI&gt;&lt;STRONG&gt;GitHub Pages&lt;/STRONG&gt;&lt;/LI&gt;&lt;/UL&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;The courses helped me dive deep into the concepts of open source contributions. Previously I faced much problems in resolving merge conflicts. Now after having gone through the course, I am totally clear about it. Also the course on GitHub Pages helped me to build my first website on GitHub.&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;Overall, my experience was Awesome&amp;nbsp;:smileyhappy:&lt;/P&gt;</description>
      <pubDate>Tue, 26 Jun 2018 16:08:30 GMT</pubDate>
      <guid>https://github.community/t5/GitHub-Learning-Lab-Explorer/My-GitHub-Learning-Lab-Challenge/cns-p/9199</guid>
      <dc:creator>prateekiiest</dc:creator>
      <dc:date>2018-06-26T16:08:30Z</dc:date>
    </item>
    <item>
      <title>Learning GitHub Basics and some Applications</title>
      <link>https://github.community/t5/GitHub-Learning-Lab-Explorer/Learning-GitHub-Basics-and-some-Applications/cns-p/9188</link>
      <description>&lt;P&gt;The coures&amp;nbsp;i completed in GitHub learning lab are -&lt;/P&gt;&lt;P&gt;**Managing Merge conflicts**&lt;/P&gt;&lt;P&gt;**Communicating Using Markdown**&lt;/P&gt;&lt;P&gt;**Introduction to GitHub**&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;The take away from the courses at GitHub lab were using GitHub&amp;nbsp;pages to publish my information and successfully knowing the nuances of handling merge conflicts. Also became aware of the meanings of many of GitHub jargons.I also learned markdown syntax.&amp;nbsp;&lt;/P&gt;</description>
      <pubDate>Tue, 26 Jun 2018 12:15:29 GMT</pubDate>
      <guid>https://github.community/t5/GitHub-Learning-Lab-Explorer/Learning-GitHub-Basics-and-some-Applications/cns-p/9188</guid>
      <dc:creator>sanmayamohanty</dc:creator>
      <dc:date>2018-06-26T12:15:29Z</dc:date>
    </item>
    <item>
      <title>GitHub learning lab challenge</title>
      <link>https://github.community/t5/GitHub-Learning-Lab-Explorer/GitHub-learning-lab-challenge/cns-p/9178</link>
      <description>&lt;P&gt;I completed the courses:&lt;/P&gt;&lt;UL&gt;&lt;LI&gt;Introduction to GitHub&lt;/LI&gt;&lt;LI&gt;Communicating using Markdown&lt;/LI&gt;&lt;LI&gt;GitHub Pages&lt;/LI&gt;&lt;/UL&gt;&lt;P&gt;The most valuable thing that I learned was how GitHub works. The engineers at my company use it so I have seen glimpses, but I had no real idea what it was for or how it works. Now I will be able to decipher their communications. I hope to investigate GitHub further to see if it can serve as a project management solution for non-engineering work.&lt;/P&gt;</description>
      <pubDate>Tue, 26 Jun 2018 04:32:03 GMT</pubDate>
      <guid>https://github.community/t5/GitHub-Learning-Lab-Explorer/GitHub-learning-lab-challenge/cns-p/9178</guid>
      <dc:creator>dnaxv</dc:creator>
      <dc:date>2018-06-26T04:32:03Z</dc:date>
    </item>
    <item>
      <title>GitHub Learning Lab Explorer Challenge</title>
      <link>https://github.community/t5/GitHub-Learning-Lab-Explorer/GitHub-Learning-Lab-Explorer-Challenge/cns-p/9176</link>
      <description>&lt;P&gt;&lt;SPAN&gt;Hello!&lt;/SPAN&gt;&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;&lt;SPAN&gt;&amp;nbsp; &amp;nbsp; &amp;nbsp;In the GitHub Learning Lab, I have completed all six of the courses(as of 6/25/18), and these include:&amp;nbsp;&lt;/SPAN&gt;&lt;/P&gt;&lt;UL&gt;&lt;LI&gt;&lt;SPAN&gt;Introduction to GitHub.&lt;/SPAN&gt;&lt;/LI&gt;&lt;LI&gt;&lt;SPAN&gt;Communicating using Markdown.&lt;/SPAN&gt;&lt;/LI&gt;&lt;LI&gt;&lt;SPAN&gt;GitHub Pages.&lt;/SPAN&gt;&lt;/LI&gt;&lt;LI&gt;&lt;SPAN&gt;Moving your project to GitHub.&lt;/SPAN&gt;&lt;/LI&gt;&lt;LI&gt;&lt;SPAN&gt;Managing merge conflicts.&lt;/SPAN&gt;&lt;/LI&gt;&lt;/UL&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;&amp;nbsp; &amp;nbsp; &amp;nbsp;Out of the six courses I took, I find the courses "Communicating using Markdown," and "Managing merge conflicts," the most important to me. They taught me the most valuable things I learned while going through the courses.&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;&amp;nbsp; &amp;nbsp; &amp;nbsp;Before taking the course, "Communicating using Markdown," I didn't really know Markdown. I only knew the basics like using a hashtag to indicate it's a heading, and I knew this only by the README.md included with the repository I create. From taking this GitHub Lab Course, I understood and knew more Markdown, thus I can create better README.md files in my repositories as well as comments for commits.&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;&amp;nbsp; &amp;nbsp; &amp;nbsp;"Managing merge conflicts," was also an important and valuable lesson in the GitHub Learning Lab Explorer. This is because I never actually knew about this issue that could exist, and this would save me the trouble of searching the internet or asking someone about this issue later on, when multiple people edit in a single repository. After taking the lesson, I know what causes the issue, and the basics of how to fix the problem.&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;&amp;nbsp; &amp;nbsp; &amp;nbsp;The other lessons featured in this GitHub Learning Lab Explorers such as "GitHub Pages" didn't contribute to my knowledge, since I actually watched YouTube videos regarding this before I knew about these lessons. I also knew a lot of the basics from watching tutorials, so these lessons didn't really contribute to my knowledge, but certainly they honed my skills, and the templates such as the resume were really useful, since I might use them later on!&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;&amp;nbsp; &amp;nbsp; &amp;nbsp;All in all, these courses were helpful, and I would definitely recommend them to a friend.&lt;/P&gt;</description>
      <pubDate>Mon, 25 Jun 2018 23:34:36 GMT</pubDate>
      <guid>https://github.community/t5/GitHub-Learning-Lab-Explorer/GitHub-Learning-Lab-Explorer-Challenge/cns-p/9176</guid>
      <dc:creator>yangciou</dc:creator>
      <dc:date>2018-06-25T23:34:36Z</dc:date>
    </item>
    <item>
      <title>GitHub Learning Lab Challenge</title>
      <link>https://github.community/t5/GitHub-Learning-Lab-Explorer/GitHub-Learning-Lab-Challenge/cns-p/9162</link>
      <description>&lt;P&gt;I took all five courses:&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;UL&gt;&lt;LI&gt;Introduction to GitHub (I'm not sure why - this is showing "In Progress" on the screen showing all courses, but "Course completed" in the course itself)&lt;/LI&gt;&lt;LI&gt;Communicating using Markdown&lt;/LI&gt;&lt;LI&gt;GitHub Pages&lt;/LI&gt;&lt;LI&gt;Moving your project to GitHub&lt;/LI&gt;&lt;LI&gt;Managing merge conflicts&lt;/LI&gt;&lt;/UL&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;I've used GitHub for a little while now, so I'm already used to the interface for the most part. However, these courses got me to use the built-in editor more! Prior to the courses, I knew it existed but didn't really touch it much. It's quite useful! I also liked using the built-in editor to resolve merge conflicts - made it super easy.&lt;/P&gt;</description>
      <pubDate>Mon, 25 Jun 2018 19:20:16 GMT</pubDate>
      <guid>https://github.community/t5/GitHub-Learning-Lab-Explorer/GitHub-Learning-Lab-Challenge/cns-p/9162</guid>
      <dc:creator>Thetwam</dc:creator>
      <dc:date>2018-06-25T19:20:16Z</dc:date>
    </item>
  </channel>
</rss>

