From 1d401e521cd699d47e26979f93011a683d7cd503 Mon Sep 17 00:00:00 2001
From: Jesper Wrang
Date: Thu, 5 Dec 2019 10:59:57 +0100
Subject: [PATCH] Added FAQ question about ceddit
---
README.md | 2 +-
dist/main.css | 3 +++
package.json | 4 ++--
src/pages/{404/index.js => 404.js} | 0
src/pages/{about/index.js => about.js} | 31 +++++++++++++++++++++++---
src/sass/about.sass | 4 ++++
6 files changed, 38 insertions(+), 6 deletions(-)
rename src/pages/{404/index.js => 404.js} (100%)
rename src/pages/{about/index.js => about.js} (65%)
diff --git a/README.md b/README.md
index a52a82a..375a82f 100644
--- a/README.md
+++ b/README.md
@@ -18,5 +18,5 @@ This will build the Javascript files and launch a local server for development.
The CSS is build seperatly (to keep the build steps / configs very simple) by running
```bash
-npm run build-sass
+npm run css
```
diff --git a/dist/main.css b/dist/main.css
index 6c1702f..85d85a5 100644
--- a/dist/main.css
+++ b/dist/main.css
@@ -92,6 +92,9 @@ header {
color: #239f2b; }
#main-box h2.contact {
color: #1b767a; }
+ #main-box .question {
+ font-size: 18px;
+ color: lightblue; }
#main-box ul {
padding-left: 30px;
margin: 0; }
diff --git a/package.json b/package.json
index 2bb414e..4aa3250 100644
--- a/package.json
+++ b/package.json
@@ -25,7 +25,7 @@
"scripts": {
"start": "webpack-dev-server --mode development",
"build": "webpack --mode production",
- "build-sass": "node-sass --style compressed src/sass/index.sass dist/main.css"
+ "css": "node-sass --style compressed src/sass/index.sass dist/main.css"
},
"dependencies": {
"babel-polyfill": "^6.26.0",
@@ -51,4 +51,4 @@
"webpack-cli": "^3.3.10",
"webpack-dev-server": "^3.9.0"
}
-}
+}
\ No newline at end of file
diff --git a/src/pages/404/index.js b/src/pages/404.js
similarity index 100%
rename from src/pages/404/index.js
rename to src/pages/404.js
diff --git a/src/pages/about/index.js b/src/pages/about.js
similarity index 65%
rename from src/pages/about/index.js
rename to src/pages/about.js
index cb02a9f..0988747 100644
--- a/src/pages/about/index.js
+++ b/src/pages/about.js
@@ -1,5 +1,5 @@
import React from 'react'
-import { connect } from '../../state'
+import { connect } from '../state'
const About = props => {
document.title = 'About Removeddit'
@@ -35,13 +35,13 @@ const About = props => {
Jason Baumgartner service for getting removed comments.
FAQ
- Q: I posted some sensitive information on Reddit. Can you delete this from your page?
+ Q: I posted some sensitive information on Reddit. Can you delete this from your page?
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 (/u/Stuck_In_the_Matrix).
If you want something sensitive removed permanently you should contact him.
- Q: How does it work?
+ Q: How does it work?
This page is only possible because of the amzaing work done by Jason.
His site pushshift.io activly listens for new comments on reddit and stores them in his own database.
@@ -49,6 +49,31 @@ const About = props => {
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.
+ Q: What's the difference between ceddit and removeddit?
+
+ Not much. Removeddit was created as a temporary replacement for ceddit, at a time when ceddit didn't work.
+ I though this was necessary since I used ceddit more then Reddit itself.
+ Months later ceddit was fixed, but I didn't see any reason to remove what I had done.
+ Today both sites live side by side and strive for the same goal.
+
+
+ There are some minor differences in them tho:
+
+ -
+ Ceddit respect user deletion while removeddit does not. This decision was made early on and I feel like it's too late to change now.
+ If I had created removeddit today I might had thought more about what was right here.
+
+ -
+ Removeddit usualy loads faster since it uses a slightly different algorithm for detecting removed comments.
+ Removeddit also uses significantly less JavaScript on the page which also should make the page load faster.
+
+ -
+ Ceddit provides user lookup while removeddit doesn't.
+
+
+
+
+
Links/Contact
For feedback and bug reports:
diff --git a/src/sass/about.sass b/src/sass/about.sass
index 8055a78..fde550e 100644
--- a/src/sass/about.sass
+++ b/src/sass/about.sass
@@ -18,6 +18,10 @@
h2.contact
color: #1b767a
+ .question
+ font-size: 18px
+ color: lightblue
+
ul
padding-left: 30px
margin: 0