mirror of
https://github.com/gurnec/removeddit.git
synced 2026-03-11 08:54:27 +00:00
Added simple little FAQ to page
This commit is contained in:
parent
4bff672157
commit
2171c14e58
2 changed files with 14 additions and 4 deletions
|
|
@ -5,7 +5,7 @@ Just go to any reddit thread and change the `reddit` in the URL to `removeddit`
|
|||
This is a done by comparing the comments being stored in [Jason Baumgartners](https://pushshift.io/) [Pushshift Reddit API](https://github.com/pushshift/api) and the ones from Reddit API. The frontend is written in [React](https://reactjs.org/) and uses [Sass](https://sass-lang.com/) as the CSS Preprocessor. There is also a seperate [backend](https://github.com/JubbeArt/removeddit-api) used for storing what threads that have been removed by mods. This backend is really just a mirror of [/r/undelete](https://www.reddit.com/r/undelete/).
|
||||
|
||||
# Development
|
||||
Download either [Yarn](https://yarnpkg.com/en/docs/install) (the one I use) or [npm](https://www.npmjs.com/get-npm)
|
||||
Download [npm](https://www.npmjs.com/get-npm)
|
||||
|
||||
```bash
|
||||
git clone https://github.com/JubbeArt/removeddit.git && cd removeddit
|
||||
|
|
@ -14,7 +14,7 @@ npm install
|
|||
npm start
|
||||
```
|
||||
|
||||
This will build the Javascript files and launch a local server for development. Visit http://localhost:8080 and make sure the site is running.
|
||||
This will build the Javascript files and launch a local server for development. Visit http://localhost:8080 and make sure the site is running. If you're getting connection errors to Reddit or Pushshift, it might be because you're running a VPN. Try turning it off for development.
|
||||
|
||||
The CSS is build seperatly (to keep the build steps / configs very simple) by running
|
||||
```bash
|
||||
|
|
|
|||
|
|
@ -36,9 +36,19 @@ const About = props => {
|
|||
</p>
|
||||
<h2 className='todo'>FAQ</h2>
|
||||
<b>Q: I posted some sensitive information on Reddit. Can you delete this from your page?</b>
|
||||
<p>a</p>
|
||||
<p>
|
||||
No, I can't remove anything myself since I am not the not the one storing all the deleted comment.
|
||||
This is done by an external service run by Jason Baumgartner (<a href='https://www.reddit.com/user/Stuck_In_the_Matrix'>/u/Stuck_In_the_Matrix</a>).
|
||||
If you want something sensitive removed permanently you should contact him.
|
||||
</p>
|
||||
<b>Q: How does it work?</b>
|
||||
|
||||
<p>
|
||||
This page is only possible because of the amzaing work done by Jason.
|
||||
His site <a href='https://pushshift.io/'>pushshift.io</a> activly listens for new comments on reddit and stores them in his own database.
|
||||
Then sites like removeddit and ceddit can fetch these comment from pushshift.
|
||||
Removeddit know what comment reddit shows (from Reddits API) and what comment should be showed (from Pushshift).
|
||||
By comparing the comments from these 2 APIs, we can figure out what has been deleted and removed.
|
||||
</p>
|
||||
<h2 className='contact'>Links/Contact</h2>
|
||||
<p style={{ marginBottom: '8px' }}>For feedback and bug reports:</p>
|
||||
<ul>
|
||||
|
|
|
|||
Loading…
Reference in a new issue