-
Notifications
You must be signed in to change notification settings - Fork 0
Create platform-specific folders for organizing open source applications #1
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
base: master
Are you sure you want to change the base?
Changes from all commits
File filter
Filter by extension
Conversations
Jump to
Diff view
Diff view
There are no files selected for viewing
| Original file line number | Diff line number | Diff line change |
|---|---|---|
| @@ -0,0 +1,5 @@ | ||
| # Amber Applications | ||
|
|
||
| This folder contains awesome open source applications built with Amber. | ||
|
|
||
| For the complete list, please refer to the [main README](../README.md#amber). |
| Original file line number | Diff line number | Diff line change |
|---|---|---|
| @@ -0,0 +1,5 @@ | ||
| # Android Applications | ||
|
|
||
| This folder contains awesome open source applications built for Android. | ||
|
|
||
| For the complete list, please refer to the [main README](../README.md#android). |
| Original file line number | Diff line number | Diff line change |
|---|---|---|
| @@ -0,0 +1,5 @@ | ||
| # C# Applications | ||
|
|
||
| This folder contains awesome open source applications built with C#. | ||
|
|
||
| For the complete list, please refer to the [main README](../README.md#c#). | ||
| Original file line number | Diff line number | Diff line change | ||||
|---|---|---|---|---|---|---|
| @@ -0,0 +1,5 @@ | ||||||
| # C++ Applications | ||||||
|
|
||||||
| This folder contains awesome open source applications built with C++. | ||||||
|
|
||||||
| For the complete list, please refer to the [main README](../README.md#cpp). | ||||||
|
There was a problem hiding this comment. Choose a reason for hiding this commentThe reason will be displayed to describe this comment to others. Learn more. 🟡 Broken anchor link The link
Suggested change
Was this helpful? React with 👍 or 👎 to provide feedback. |
||||||
| Original file line number | Diff line number | Diff line change |
|---|---|---|
| @@ -0,0 +1,5 @@ | ||
| # Django Applications | ||
|
|
||
| This folder contains awesome open source applications built with Django. | ||
|
|
||
| For the complete list, please refer to the [main README](../README.md#django). |
| Original file line number | Diff line number | Diff line change |
|---|---|---|
| @@ -0,0 +1,5 @@ | ||
| # Electron Applications | ||
|
|
||
| This folder contains awesome open source applications built with Electron. | ||
|
|
||
| For the complete list, please refer to the [main README](../README.md#electron). |
| Original file line number | Diff line number | Diff line change |
|---|---|---|
| @@ -0,0 +1,5 @@ | ||
| # Firebase Applications | ||
|
|
||
| This folder contains awesome open source applications built with Firebase. | ||
|
|
||
| For the complete list, please refer to the [main README](../README.md#firebase). |
| Original file line number | Diff line number | Diff line change |
|---|---|---|
| @@ -0,0 +1,5 @@ | ||
| # Laravel Applications | ||
|
|
||
| This folder contains awesome open source applications built with Laravel. | ||
|
|
||
| For the complete list, please refer to the [main README](../README.md#laravel). |
| Original file line number | Diff line number | Diff line change |
|---|---|---|
| @@ -0,0 +1,5 @@ | ||
| # Meteor Applications | ||
|
|
||
| This folder contains awesome open source applications built with Meteor. | ||
|
|
||
| For the complete list, please refer to the [main README](../README.md#meteor). |
| Original file line number | Diff line number | Diff line change |
|---|---|---|
| @@ -0,0 +1,5 @@ | ||
| # Rails Applications | ||
|
|
||
| This folder contains awesome open source applications built with Rails. | ||
|
|
||
| For the complete list, please refer to the [main README](../README.md#rails). |
| Original file line number | Diff line number | Diff line change |
|---|---|---|
| @@ -0,0 +1,5 @@ | ||
| # ReactJS Applications | ||
|
|
||
| This folder contains awesome open source applications built with ReactJS. | ||
|
|
||
| For the complete list, please refer to the [main README](../README.md#reactjs). |
| Original file line number | Diff line number | Diff line change |
|---|---|---|
| @@ -0,0 +1,5 @@ | ||
| # React Native Applications | ||
|
|
||
| This folder contains awesome open source applications built with React Native. | ||
|
|
||
| For the complete list, please refer to the [main README](../README.md#react-native). |
| Original file line number | Diff line number | Diff line change |
|---|---|---|
| @@ -0,0 +1,5 @@ | ||
| # Ruby Applications | ||
|
|
||
| This folder contains awesome open source applications built with Ruby. | ||
|
|
||
| For the complete list, please refer to the [main README](../README.md#ruby). |
| Original file line number | Diff line number | Diff line change |
|---|---|---|
| @@ -0,0 +1,5 @@ | ||
| # VueJS Applications | ||
|
|
||
| This folder contains awesome open source applications built with VueJS. | ||
|
|
||
| For the complete list, please refer to the [main README](../README.md#vuejs). |
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
🟡 Broken anchor link
#c#in C#/README.mdThe link
../README.md#c#will not navigate to the C# section. GitHub generates heading IDs by stripping characters that are not letters, numbers, spaces, or hyphens, so the heading## C#atREADME.md:262gets the anchor IDc, notc#. Additionally, the#character within the URL fragment is itself a fragment delimiter, causing further ambiguity in how browsers parse the URL.Was this helpful? React with 👍 or 👎 to provide feedback.