forked from freeCodeCamp/freeCodeCamp
-
Notifications
You must be signed in to change notification settings - Fork 0
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
- Loading branch information
1 parent
a63b84e
commit 8e0237d
Showing
16 changed files
with
95 additions
and
51 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,8 +1,3 @@ | ||
import React from 'react'; | ||
|
||
const styleSheets = [ | ||
// bootstrap v3.3.7 | ||
<link href='/bootstrap3/css/bootstrap.min.css' rel='stylesheet' /> | ||
]; | ||
const styleSheets = []; | ||
|
||
export default styleSheets; |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,43 +1,43 @@ | ||
import React from 'react'; | ||
|
||
const policy = [ | ||
<p> | ||
<p key={1}> | ||
Before we issue our verified certification to a camper, he or she must | ||
accept our Academic Honesty Pledge, which reads: | ||
</p>, | ||
<p> | ||
<p key={2}> | ||
"I understand that plagiarism means copying someone else’s work and | ||
presenting the work as if it were my own, without clearly attributing the | ||
original author." | ||
</p>, | ||
<p> | ||
<p key={3}> | ||
"I understand that plagiarism is an act of intellectual dishonesty, and that | ||
people usually get kicked out of university or fired from their jobs if they | ||
get caught plagiarizing". | ||
</p>, | ||
<p> | ||
<p key={4}> | ||
"Aside from using open source libraries such as jQuery and Bootstrap, and | ||
short snippets of code which are clearly attributed to their original | ||
author, 100% of the code in my projects was written by me, or along with | ||
another camper with whom I was pair programming in real time." | ||
</p>, | ||
<p> | ||
<p key={5}> | ||
"I pledge that I did not plagiarize any of my freeCodeCamp.org work. I | ||
understand that freeCodeCamp.org’s team will audit my projects to confirm | ||
this." | ||
</p>, | ||
<p> | ||
<p key={6}> | ||
In the situations where we discover instances of unambiguous plagiarism, we | ||
will replace the camper in question’s certification with a message that | ||
"Upon review, this account has been flagged for academic dishonesty." | ||
</p>, | ||
<p> | ||
<p key={7}> | ||
As an academic institution that grants achievement-based certifications, we | ||
take academic honesty very seriously. If you have any questions about this | ||
policy, or suspect that someone has violated it, you can email{' '} | ||
<a href='mailto:team@freecodecamp.org'>team@freecodecamp.org</a> | ||
 and we will investigate. | ||
</p> | ||
].map((el, i) => ({...el, key: `honesty-${i}`})); | ||
]; | ||
|
||
export default policy; |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters