This repository has no description
0

Configure Feed

Select the types of activity you want to include in your feed.

update method page

+28 -6
+4
src/components/ScoringMethodology/ScoringMethodology.css
··· 34 34 .methodology-page p { 35 35 margin: 15px 0; 36 36 line-height: 1.5; 37 + } 38 + 39 + .increase-score-list li { 40 + margin-bottom: 5px; 37 41 }
+17 -3
src/components/ScoringMethodology/ScoringMethodology.js
··· 32 32 (Bluesky vs AT Proto) has the most impact on your score. 33 33 </p> 34 34 35 + <h2>Score Ranges</h2> 35 36 <p> 36 37 For Version 1 of the scoring algorithm, there is a max score of 1,000 points. 37 38 This may change in the future, or it could theoretically even be scaled down ··· 39 40 </p> 40 41 41 42 <p> 42 - A score between 0 - 250 likely indicates that an account is either very new 43 - to the network or isn't very active. 43 + A score between 0 - 300 likely indicates that an account is either very new 44 + to the network or isn't very active. A score of 300 - 700 is within a "healthy" range. Scores that are 700+ typically indicate accounts that have been around awhile and are very active. The different score ranges are still in early development along with the algorithm, so these details are likely to change. 44 45 </p> 45 46 46 - <h3>How do I increase my score?</h3> 47 + <h2>What are the different social statuses?</h2> 48 + <p> 49 + Rather than displaying follower counts on profiles, the cred.blue analysis categorizes each identity into one of four social statuses base on its follower count, social graph ratio, engagement rate, and age. There are additional labels placed before the social status to indicate how engaging the account actually is. 50 + </p> 51 + 52 + <ol className="social-status-list"> 53 + <li>Newcomer</li> 54 + <li>Explorer</li> 55 + <li>Pathfinder</li> 56 + <li>Guide</li> 57 + <li>Leader</li> 58 + </ol> 59 + 60 + <h2>How do I increase my score?</h2> 47 61 <p> 48 62 The scoring methodology is fairly complex and not all of the variables can be 49 63 easily changed (for instance, an account's age), but there are some specific
+2 -2
src/components/UserProfile/ScoreGauge.js
··· 6 6 7 7 const ScoreGauge = ({ score, shadowColor = 'rgba(150,127,0,0.74)' }) => { 8 8 const data = [ 9 - { name: 'Q1', value: 10, color: '#004F84' }, 10 - { name: 'Q2', value: 20, color: '#1368AA' }, 9 + { name: 'Q1', value: 15, color: '#004F84' }, 10 + { name: 'Q2', value: 15, color: '#1368AA' }, 11 11 { name: 'Q3', value: 40, color: '#2881D2' }, 12 12 { name: 'Q4', value: 30, color: '#3B9AF8' }, 13 13 ];
+4
src/components/UserProfile/UserProfile.css
··· 371 371 opacity: 0.5; 372 372 } 373 373 374 + .narrative-methodology-link { 375 + font-size: 0.9em; 376 + } 377 + 374 378 .post-type-card .recharts-surface { 375 379 margin-left: -15px; 376 380 }
+1 -1
src/components/UserProfile/components/NarrativeCard.js
··· 19 19 {narrative2 && <p>{narrative2}</p>} 20 20 {narrative3 && <p>{narrative3}</p>} 21 21 </div> 22 - <p><Link to="/methodology" className="narrative-methodology-link">Learn more about the scoring methodology and definitions contained in this summary.</Link></p> 22 + <p><Link to="/methodology" className="narrative-methodology-link">Learn more about the scoring methodology</Link> and definitions contained in this summary.</p> 23 23 <div className="disclaimer"> 24 24 <p><strong>NOTE: </strong>This summary was <strong>not</strong> generated using AI.</p> 25 25 </div>