The big list of github repos

List of relevant github repositories

view on github

Format github urls with vscode find/replace and regex :

// search for irrelevant end-of-url characters
/^(?<url>.+)(?:\?\|#).+$/
// replace the matching results to remove the above
'$1'
// extract relevant components from the trimmed urls  
/^(?<repo>https:\/\/github.com\/(?<author>[^\/]+)\/(?<name>[^\/]+))\/*.*$/
// replace the matching results to format the above   
'- [$3 - $2]($1)'

List of github repositories considered as being "of any interest" :