Skip to content

Commit cc556c5

Browse files
decentralionactions-user
authored andcommitted
Prettified Code!
1 parent dbed5c4 commit cc556c5

34 files changed

+792
-665
lines changed

README.md

+34-32
Original file line numberDiff line numberDiff line change
@@ -5,11 +5,11 @@ This repository is the source-of-truth for SourceCred's documentation.
55
The documentation website is based on [Docusaurus 2](https://v2.docusaurus.io/)
66
and you can read the [documentation there](https://v2.docusaurus.io/docs/introduction) for how to use it! Generally:
77

8-
- [docusaurus.config.js](docusaurus.config.js) holds configuration and metadata values
9-
- [pages](pages) is for dynamic ad-hoc React pages
10-
- [docs](docs) are for documentation content and pages
11-
- Sidebar items can by added by adding an entry to [sidebars.js](sidebars.js)
12-
- The top navigation and footer is controlled by the `themeConfig` value in [docusaurus.config.js](docusaurus.config.js)
8+
- [docusaurus.config.js](docusaurus.config.js) holds configuration and metadata values
9+
- [pages](pages) is for dynamic ad-hoc React pages
10+
- [docs](docs) are for documentation content and pages
11+
- Sidebar items can by added by adding an entry to [sidebars.js](sidebars.js)
12+
- The top navigation and footer is controlled by the `themeConfig` value in [docusaurus.config.js](docusaurus.config.js)
1313

1414
Once the structure of the site is developed, you shouldn't need to edit these fields too much!
1515
However if you want to add a new page (to [pages](pages) or [docs](docs)) please don't
@@ -59,7 +59,6 @@ $ yarn build
5959

6060
This command generates static content into the `build` directory and can be served using any static contents hosting service.
6161

62-
6362
### 2. Make Changes
6463

6564
At this point you can edit pages in [pages](pages) or [docs](docs) and add new pages
@@ -77,6 +76,7 @@ The only difference is that you need to add a header snippet that looks like thi
7776
title: Page Title
7877
description: Write what this page is about here
7978
---
79+
8080
```
8181

8282
Let's say that we put this in a file called `docs/getting-started.md`. This
@@ -88,12 +88,18 @@ like this:
8888
module.exports = {
8989
sidebar: {
9090
"🌎 Community": [
91-
'community/intro',
92-
'community/glossary',
91+
"community/intro",
92+
"community/glossary",
9393
{
94-
'🧠 Concepts': ['community/concepts/cred', 'community/concepts/grain', 'community/concepts/champion', 'community/concepts/deep-then-wide', 'community/concepts/bikeshedding'],
94+
"🧠 Concepts": [
95+
"community/concepts/cred",
96+
"community/concepts/grain",
97+
"community/concepts/champion",
98+
"community/concepts/deep-then-wide",
99+
"community/concepts/bikeshedding",
100+
],
95101
},
96-
'community/CODE_OF_CONDUCT',
102+
"community/CODE_OF_CONDUCT",
97103
],
98104
"🌟 Culture": ["culture/review_culture"],
99105
},
@@ -105,17 +111,16 @@ The values such as `community/intro` represent the path of the markdown file you
105111
You can read more about writing documentation pages in the [Docusaurus docs](https://v2.docusaurus.io/docs/docs).
106112

107113
[Guide To Markdown Features](https://v2.docusaurus.io/docs/markdown-features)
108-
- Learn about the various syntax you can use in the docs files
109-
- Learn how you can embed React Components *within* your markdown using [MDX](https://mdxjs.com)
110114

115+
- Learn about the various syntax you can use in the docs files
116+
- Learn how you can embed React Components _within_ your markdown using [MDX](https://mdxjs.com)
111117

112118
#### Making a New Page
113119

114120
If you would like to create ad-hoc pages using React, you can do so by creating a js file in the [pages](pages) directory. This will work like any other React web-app!
115121

116122
You can read more about creating pages in the [Docusaurus docs](https://v2.docusaurus.io/docs/creating-pages).
117123

118-
119124
#### Adding to Navigation
120125

121126
To add links to the top Navigation bar or Footer you can dit the [docusaurus.config.js](docusaurus.config.js) file.
@@ -124,44 +129,41 @@ To add links to the top Navigation bar or Footer you can dit the [docusaurus.con
124129
module.exports = {
125130
themeConfig: {
126131
navbar: {
127-
title: 'SourceCred',
132+
title: "SourceCred",
128133
logo: {
129-
alt: 'SourceCred Logo',
130-
src: 'img/favicon.png',
134+
alt: "SourceCred Logo",
135+
src: "img/favicon.png",
131136
},
132137
links: [
133-
{
134-
to: 'docs/community/intro',
135-
activeBasePath: 'docs',
136-
label: '📖 Docs',
137-
position: 'left',
138-
},
139-
{
140-
href: 'https://github.com/sourcecred',
141-
label: 'Github',
142-
position: 'right',
143-
},
138+
{
139+
to: "docs/community/intro",
140+
activeBasePath: "docs",
141+
label: "📖 Docs",
142+
position: "left",
143+
},
144+
{
145+
href: "https://github.com/sourcecred",
146+
label: "Github",
147+
position: "right",
148+
},
144149
// ... other links
145150
],
146151
},
147-
}
148-
}
152+
},
153+
};
149154
```
150155

151156
You can read more about configuring the navigation in the [Docusaurus docs](https://v2.docusaurus.io/docs/docusaurus.config.js#themeconfig).
152157

153-
154158
### 4. Open a Pull Request
155159

156160
Once you've made changes on your new branch, open a new pull request to have them
157161
reviewed! When they are merged to master they will go live on the site.
158162

159-
160163
#### A Note On Comments
161164

162165
You can add a comment to a page using the following syntax:
163166

164167
```
165168
[//]: # (THIS IS A COMMENT)
166169
```
167-

blog/2020-05-11-version-0.5.0-released.md

+8-6
Original file line numberDiff line numberDiff line change
@@ -10,7 +10,7 @@ author_image_url: https://avatars3.githubusercontent.com/u/35711667?s=200&v=4
1010
It's been months since the last versioned release, so there's a lot new to
1111
v0.5.0!
1212

13-
You can find the release [on GitHub][GitHub release] or as a [Docker image].
13+
You can find the release [on GitHub][github release] or as a [Docker image].
1414
More details on how to use them can be found in the [installation guide].
1515

1616
Since this is a large release, this post only touches on several major additions
@@ -61,9 +61,10 @@ posts.
6161

6262
As mentioned at the beginning of this post, SourceCred is being released as
6363
Docker images as well. They are available as [`sourcecred/sourcecred` on
64-
DockerHub][Docker image].
64+
DockerHub][docker image].
6565

6666
The tags to be aware of are:
67+
6768
- `latest` (default) which refers to the most recent versioned release.
6869
- `vX.X.X` versioned releases, which allow you to use a specific version.
6970
- `dev` which corresponds to the latest `master` branch.
@@ -88,16 +89,17 @@ Have a look at [the GitHub issue][sourcecred output issue] for more information.
8889

8990
That's all for now. Feel free to reach out to us with questions or issues.
9091
:telephone_receiver:
92+
9193
- [GitHub](https://github.com/sourcecred/sourcecred)
9294
- [Discord](https://sourcecred.io/discord)
9395
- [Discourse](https://discourse.sourcecred.io)
9496

95-
[Discourse]: https://www.discourse.org/
97+
[discourse]: https://www.discourse.org/
9698
[own forum]: https://discourse.sourcecred.io
97-
[GitHub release]: https://github.com/sourcecred/sourcecred/releases/tag/v0.5.0
98-
[Docker image]: https://hub.docker.com/r/sourcecred/sourcecred/tags
99+
[github release]: https://github.com/sourcecred/sourcecred/releases/tag/v0.5.0
100+
[docker image]: https://hub.docker.com/r/sourcecred/sourcecred/tags
99101
[installation guide]: ../docs/beta/setup-guide.md
100102
[discourse setup]: ../docs/beta/plugins/discourse.md
101103
[initiatives setup]: ../docs/beta/plugins/initiatives.md
102104
[sourcecred output issue]: https://github.com/sourcecred/sourcecred/issues/1773
103-
[Supernodes: Moving past raw activity]: https://discourse.sourcecred.io/t/supernodes-moving-past-raw-activity/340
105+
[supernodes: moving past raw activity]: https://discourse.sourcecred.io/t/supernodes-moving-past-raw-activity/340

docs/beta/FAQ.md

+14-13
Original file line numberDiff line numberDiff line change
@@ -2,19 +2,20 @@
22
title: ❓FAQ
33
description: Your hottest questions about SourceCred, answered.
44
---
5+
56
### Is SourceCred gameable? How do you prevent Sybil attacks?
67

7-
All systems are gameable and in the end, our goal is not to eliminate gaming but instead become resistant to it. SourceCred's transparency around contribution and reward combined with an emotionally mature community capable of social moderation, creates a system that can quickly identify attacks (intentional or unintentional) and communicate to or shut down the attacker. The retroactive nature of SourceCred's algorithm and long-term + short-term payout system means that from Sybils (one person using multiple accounts to farm Cred), to exploitation, to unintentional gaming or bugs; it's easy to see, correct weights, and respond socially with community moderation.
8+
All systems are gameable and in the end, our goal is not to eliminate gaming but instead become resistant to it. SourceCred's transparency around contribution and reward combined with an emotionally mature community capable of social moderation, creates a system that can quickly identify attacks (intentional or unintentional) and communicate to or shut down the attacker. The retroactive nature of SourceCred's algorithm and long-term + short-term payout system means that from Sybils (one person using multiple accounts to farm Cred), to exploitation, to unintentional gaming or bugs; it's easy to see, correct weights, and respond socially with community moderation.
89

910
There are many community-oriented measures that can be implemented to mitigate the risk of an attack. To learn about how the SourceCred community itself handles it, check out this [tweet thread](https://twitter.com/boredGenius/status/1275963160852221952).
1011

1112
### What platforms does SourceCred currently support?
1213

13-
SourceCred has plugins that can gather data for Cred scores from:
14+
SourceCred has plugins that can gather data for Cred scores from:
1415

15-
* Discourse
16-
* GitHub
17-
* Discord
16+
- Discourse
17+
- GitHub
18+
- Discord
1819

1920
We will be working on supporting additional platforms in the future. If you are interested in contributing to the development of more plugins, check out our [Getting Involved](/docs/beta/get-involved) page.
2021

@@ -30,17 +31,17 @@ Existing plugins can also offer workarounds for communities. For example, the So
3031

3132
#### Use it if:
3233

33-
* ✅ Your community lives on one or more of the supported platforms
34-
* ✅ Your community has strong leadership, emotional maturity and conflict resolution skills
35-
* ✅ The [trust level](../concepts/trust_levels.md) of your community is high and/or the stakes are low
36-
* ✅ Your community is relatively small (i.e. not larger than [Dunbar's number](https://en.wikipedia.org/wiki/Dunbar%27s_number))
37-
* ✅ You're a fan of decentralized economies and changing the way we think about and distribute value
34+
- ✅ Your community lives on one or more of the supported platforms
35+
- ✅ Your community has strong leadership, emotional maturity and conflict resolution skills
36+
- ✅ The [trust level](../concepts/trust_levels.md) of your community is high and/or the stakes are low
37+
- ✅ Your community is relatively small (i.e. not larger than [Dunbar's number](https://en.wikipedia.org/wiki/Dunbar%27s_number))
38+
- ✅ You're a fan of decentralized economies and changing the way we think about and distribute value
3839

3940
#### Don't use it if:
4041

41-
* ⛔️ You are looking for a silver bullet for community engagement/participation
42-
* ⛔️ You don't want to put time/effort into educating yourself and your community on how SourceCred works
43-
* ⛔️ You're looking for a production-ready, ultra-robust system that won't make breaking changes
42+
- ⛔️ You are looking for a silver bullet for community engagement/participation
43+
- ⛔️ You don't want to put time/effort into educating yourself and your community on how SourceCred works
44+
- ⛔️ You're looking for a production-ready, ultra-robust system that won't make breaking changes
4445

4546
### How is SourceCred funded and how will it be sustainable long term?
4647

docs/beta/best-resources-for-new-contributors.md

+17-20
Original file line numberDiff line numberDiff line change
@@ -7,45 +7,42 @@ description: The tools, guides and resources that are most relevant to people lo
77

88
First, try getting familiar with these helpful docs:
99

10-
* What is SourceCred?
11-
* How Cred Works
12-
* How Grain Works
13-
* FAQ
14-
* Getting Involved
15-
* Our Platforms
16-
* Our Calls
17-
* \*\*Checking Your Cred/Grain
18-
* \*\*Roles and Trust
19-
* \*\*Code of Conduct
10+
- What is SourceCred?
11+
- How Cred Works
12+
- How Grain Works
13+
- FAQ
14+
- Getting Involved
15+
- Our Platforms
16+
- Our Calls
17+
- \*\*Checking Your Cred/Grain
18+
- \*\*Roles and Trust
19+
- \*\*Code of Conduct
2020

2121
(\*\*doesn't exist and isn't currently in-scope for beta)
2222

2323
## Organizational Tools
2424

2525
We have a few MVP (minimum viable product) organizational tools for our internal operations. Looking through these can help you get an idea of what kinds of projects are being worked on in SourceCred.
2626

27-
2827
### <ins>[Initiatives Index Spreadsheet](https://docs.google.com/spreadsheets/d/1IYNXNghAnMAGPof3f9bZZQeIGxlOHJQrUmu9qONY3KQ/edit#gid=0)</ins>
2928

3029
The Initiatives Index is an MVP tool for exploring the current projects/goals within SourceCred right now. Each "Branch" of the project has "Initiatives" (aka projects or goals). Looking through the list you can see whether an initiative is in action or on the wishlist, who's working on it, and how high of a priority it is for us. Poke through and see if anything catches your eye or sparks an idea. If you find yourself really gravitating towards a particular branch, consider going to their Branch Meeting.
3130

32-
3331
### <ins>[Docs Index Spreadsheet](https://docs.google.com/spreadsheets/d/1IYNXNghAnMAGPof3f9bZZQeIGxlOHJQrUmu9qONY3KQ/edit#gid=0)</ins>
3432

3533
The Docs Index is a spreadsheet where we organize the documentation we're writing and would like to write. If you are interested in writing, reviewing, editing or written communication, get connected to the Docs Team and see if you can help out.
3634

37-
3835
### <ins>[Contributor Directory](https://docs.google.com/spreadsheets/d/14cGVeH_s4eRSx0DKPZBlhel6QucAq5QzXoALr_EhBzM/edit#gid=1047682516)</ins>
3936

4037
Here you'll find a spreadsheet with a link at the top. By clicking the link, you'll be taken to a form where you can share about yourself and what kind of contributor you are. This just helps folks get to know you and your role in the community better. Looking through the spreadsheet can give you a better idea of who someone is as well! Note that you can always change your answers later by editing the doc itself, but you should never edit someone else's answers.
4138

42-
4339
## Extra Content
4440

45-
Throughout SourceCred's journey, some interesting content has been created! You may enjoy looking through some of these noteworthy creations:
41+
Throughout SourceCred's journey, some interesting content has been created! You may enjoy looking through some of these noteworthy creations:
42+
43+
[//]: # "UNSURE WHAT THESE ARE, WHERE TO FIND THEM, OR WHAT THEIR RELEVANCE IS"
4644

47-
[//]: # (UNSURE WHAT THESE ARE, WHERE TO FIND THEM, OR WHAT THEIR RELEVANCE IS)
48-
* Evan's Explainer
49-
* Onboarding Philosophy
50-
* Champions vs Heros
51-
* *Looking for more suggestions of Discourse posts for beginners!*
45+
- Evan's Explainer
46+
- Onboarding Philosophy
47+
- Champions vs Heros
48+
- _Looking for more suggestions of Discourse posts for beginners!_

docs/beta/cred.md

+3-2
Original file line numberDiff line numberDiff line change
@@ -3,6 +3,7 @@ title: 🧮 How Cred Works
33
description: A description of what Cred is; how it functions, flows, and effects
44
projects or individuals.
55
---
6+
67
## What is Cred?
78

89
As the name suggests, Cred is an important part of SourceCred. Cred is a metric used to describe the value which every contribution and participant has added to a specific project. Each participant has a "Cred score", which reflects how valuable all the contributions they have made to a project are. How high these scores are is determined by how important or useful their contributions have been to their community. Your Cred score determines the amount of [Grain](/docs/beta/grain) (a project-specific digital token which can be crypto or fictional currency) you'll earn.
@@ -48,12 +49,12 @@ For example, say a participant wrote an extremely insightful topic on the forum.
4849

4950
Since Cred can be created (minted) from nothing by the reactions of community members, there must be a balance so that Cred maintains its worth. Just like water evaporates from ponds and creeks to create the rainclouds, Cred evaporates to replenish the source from which Cred is minted. For every node on the Contribution Graph, a consistent portion of its Cred evaporates away. The evaporation rate can be toggled within the weights to be high or low depending on the needs of your community.
5051

51-
📝 **Note:** Evaporation does *not* mean you will lose Cred for being absent or inactive. Just as Cred is always gently evaporating across the entire ecosystem, Cred is also always flowing across the ecosystem even during times of individual inaction.
52+
📝 **Note:** Evaporation does _not_ mean you will lose Cred for being absent or inactive. Just as Cred is always gently evaporating across the entire ecosystem, Cred is also always flowing across the ecosystem even during times of individual inaction.
5253

5354
### Plug-ins
5455

5556
In SourceCred, we mainly use "Plug-ins" to "scrape" the activity data from a particular platform (e.g.: Discord, Github, etc). For SourceCred to understand the data in a particular platform, our engineers first need to create a Plug-in for that platform specifically. For now, you can see which Plug-ins are available and learn more about each via our [Plug-in Docs](/docs/beta/plugins/github). We'll be working on more Plug-ins as time goes on and the needs of our ecosystem span more platforms.
5657

5758
### Want More?
5859

59-
For even more information about how Cred works, you can read [](https://research.protocol.ai/blog/2020/sourcecred-an-introduction-to-calculating-cred-and-grain/)["SourceCred: an introduction to calculating cred and grain"](https://research.protocol.ai/blog/2020/sourcecred-an-introduction-to-calculating-cred-and-grain/) by SourceCred participant Evan Miyazono from [Protocol Labs](https://research.protocol.ai/).
60+
For even more information about how Cred works, you can read [](https://research.protocol.ai/blog/2020/sourcecred-an-introduction-to-calculating-cred-and-grain/)["SourceCred: an introduction to calculating cred and grain"](https://research.protocol.ai/blog/2020/sourcecred-an-introduction-to-calculating-cred-and-grain/) by SourceCred participant Evan Miyazono from [Protocol Labs](https://research.protocol.ai/).

0 commit comments

Comments
 (0)