forked from clintonwoo/hackernews-react-graphql
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathnewsguidelines.tsx
110 lines (107 loc) · 4.77 KB
/
newsguidelines.tsx
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
import Link from 'next/link';
import * as React from 'react';
import { Notice } from '../layouts/notice';
export const NewsGuidelinesPage = () => (
<Notice>
<b>Hacker News Guidelines</b>
<br />
<br />
<b>What to Submit</b>
<p>
On-Topic: Anything that good hackers would find interesting. That includes more than hacking and startups. If you
had to reduce it to a sentence, the answer might be: anything that gratifies one's intellectual curiosity.
</p>
<p>
Off-Topic: Most stories about politics, or crime, or sports, unless they're evidence of some interesting new
phenomenon. Ideological or political battle or talking points. Videos of pratfalls or disasters, or cute animal
pictures. If they'd cover it on TV news, it's probably off-topic.
</p>
<p>
<b>In Submissions</b>
</p>
<p>
Please don't do things to make titles stand out, like using uppercase or exclamation points, or adding a
parenthetical remark saying how great an article is. It's implicit in submitting something that you think
it's important.
</p>
<p>If you submit a link to a video or pdf, please warn us by appending [video] or [pdf] to the title.</p>
<p>Please submit the original source. If a post reports on something found on another site, submit the latter.</p>
<p>
If the original title includes the name of the site, please take it out, because the site name will be displayed
after the link.
</p>
<p>
If the original title begins with a number or number + gratuitous adjective, we'd appreciate it if you'd
crop it. E.g. translate "10 Ways To Do X" to "How To Do X," and "14 Amazing Ys" to
"Ys." Exception: when the number is meaningful, e.g. "The 5 Platonic Solids."
</p>
<p>Otherwise please use the original title, unless it is misleading or linkbait.</p>
<p>
Please don't post on HN to ask or tell us something. Instead, please send it to [email protected]. Similarly,
please don't use HN posts to ask YC-funded companies questions that you could ask by emailing them.
</p>
<p>Please don't submit so many links at once that the new page is dominated by your submissions.</p>
<p>
<b>In Comments</b>
</p>
<p>
Be civil. Don't say things you wouldn't say face-to-face. Don't be snarky. Comments should get more
civil and substantive, not less, as a topic gets more divisive.
</p>
<p>
When disagreeing, please reply to the argument instead of calling names. "That is idiotic; 1 + 1 is 2, not
3" can be shortened to "1 + 1 is 2, not 3."
</p>
<p>
Please respond to the strongest plausible interpretation of what someone says, not a weaker one that's easier
to criticize.
</p>
<p>
Eschew flamebait. Don't introduce flamewar topics unless you have something genuinely new to say. Avoid
unrelated controversies and generic tangents.
</p>
<p>
Please don't insinuate that someone hasn't read an article. "Did you even read the article? It
mentions that" can be shortened to "The article mentions that."
</p>
<p>
Please don't use uppercase for emphasis. If you want to emphasize a word or phrase, put *asterisks* around it
and it will get italicized.
</p>
<p>Please don't accuse others of astroturfing or shillage. Email us instead and we'll look into it.</p>
<p>
Please don't complain that a submission is inappropriate. If a story is spam or off-topic, flag it. Don't
feed egregious comments by replying;{' '}
<Link prefetch href="/newsfaq#cflag">
<a>flag</a>
</Link>{' '}
them instead. When you flag something, please don't also comment that you did.
</p>
<p>Please don't comment about the voting on comments. It never does any good, and it makes boring reading.</p>
<p>
Throwaway accounts are ok for sensitive information, but please don't create them routinely. On HN, users need
an identity that others can relate to.
</p>
<p>
We ban accounts that use Hacker News primarily for political or ideological battle, regardless of which politics
they favor.
<br />
<br />
<br />
<table style={{ padding: '0px', backgroundColor: '#ff6600', width: '100%' }}>
<tbody>
<tr style={{ height: '0px' }}>
<td style={{ padding: '0px' }} />
</tr>
</tbody>
</table>
</p>
<p /* align="center" */>
<span className="foot">
<br />
<br />
</span>
</p>
</Notice>
);
export default NewsGuidelinesPage;