Skip to content

Instantly share code, notes, and snippets.

@stefanmaric
Last active October 22, 2023 14:37
Show Gist options
  • Star 67 You must be signed in to star a gist
  • Fork 14 You must be signed in to fork a gist
  • Save stefanmaric/d5a03eeb89af81e5537e2efe7dd479cf to your computer and use it in GitHub Desktop.
Save stefanmaric/d5a03eeb89af81e5537e2efe7dd479cf to your computer and use it in GitHub Desktop.
Links for beginners willing to contribute to OpenSource projects
@delauraen
Copy link

delauraen commented Mar 28, 2021

Hey there!

This helped me figure out how to search labels within github but I noticed some of your links are broken where spaces are used. I couldn't replicate this on github's side by searching the same thing you did so I'm guessing it was a simple typo or a bug that no longer exists

Example:

[Good First Bug](https://github.com/search?utf8=✓&type=Issues&q=state%3Aopen+label%3A"Good First Bug")

Fix:

[Good First Bug](https://github.com/search?q=state%3Aopen+label%3A%22Good+First+Bug%22&type=Issues)

Thanks for helping me out with the search syntax!

@MizouziE
Copy link

MizouziE commented Mar 3, 2022

Hi @delauraen,

I wanted to say the same as you more or less. This was an incredibly helpful repo for finding other repos to get started with diving into open-source.

Fix:

[Good First Bug](https://github.com/search?q=state%3Aopen+label%3A%22Good+First+Bug%22&type=Issues)

I noticed that your above fix does work perfectly, I only wanted to say that there is also a very simple fix for the broken links that are there that doesn't require the escaped/sanitized quotation marks. All that is needed is a + in the place of the whitespaces.

Using the same example as you, the below works too:

[Good First Bug](https://github.com/search?utf8=✓&type=Issues&q=state%3Aopen+label%3A"Good+First+Bug")

Making those small changes should also fix the markdown formatting on the repo.

Thanks again for the great pointers anyway both! 👍

@ar1936
Copy link

ar1936 commented Sep 13, 2022

Hi @stefanmaric, the medium blog link mentioned is not working. Please check once.

Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment