forked from clintonwoo/hackernews-react-graphql
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathnewswelcome.tsx
94 lines (91 loc) · 3.84 KB
/
newswelcome.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
import Link from 'next/link';
import * as React from 'react';
import { NoticeLayout } from '../src/layouts/notice-layout';
export function NewsWelcomePage(): JSX.Element {
return (
<NoticeLayout>
<b>Welcome to Hacker News</b>
<br />
<br />
<p>
<Link href="/">
<a>Hacker News</a>
</Link>{' '}
is a bit different from other community sites, and we'd appreciate it if you'd take
a minute to read the following as well as the{' '}
<Link href="/newsguidelines">
<a>official guidelines</a>
</Link>
.
</p>
<p>
HN is an experiment. As a rule, a community site that becomes popular will decline in
quality. Our hypothesis is that this is not inevitable—that by making a conscious effort to
resist decline, we can keep it from happening.
</p>
<p>
Essentially there are two rules here: don't post or upvote crap links, and don't be
rude or dumb in comment threads.
</p>
<p>
A crap link is one that's only superficially interesting. Stories on HN don't have
to be about hacking, because good hackers aren't only interested in hacking, but they do
have to be deeply interesting.
</p>
<p>
What does "deeply interesting" mean? It means stuff that teaches you about the
world. A story about a robbery, for example, would probably not be deeply interesting. But
if this robbery was a sign of some bigger, underlying trend, perhaps it could be.
</p>
<p>
The worst thing to post or upvote is something that's intensely but shallowly
interesting: gossip about famous people, funny or cute pictures or videos, partisan
political articles, etc. If you let{' '}
<a href="http://en.wikipedia.org/wiki/Nile_perch">
that sort of thing onto a news site, it will push aside the deeply interesting stuff,
which tends to be quieter.
</a>
</p>
<p>
The most important principle on HN, though, is to make thoughtful comments. Thoughtful in
both senses: civil and substantial.
</p>
<p>
The test for substance is a lot like it is for links. Does your comment teach us anything?
There are two ways to do that: by pointing out some consideration that hadn't previously
been mentioned, and by giving more information about the topic, perhaps from personal
experience. Whereas comments like "LOL!" or worse still, "That's
retarded!" teach us nothing.
</p>
<p>
Empty comments can be ok if they're positive. There's nothing wrong with submitting
a comment saying just "Thanks." What we especially discourage are comments that
are empty and negative—comments that are mere name-calling.
</p>
<p>
Which brings us to the most important principle on HN: civility. Since long before the web,
the anonymity of online conversation has lured people into being much ruder than they'd
be in person. So the principle here is: don't say anything you wouldn't say face to
face. This doesn't mean you can't disagree. But disagree without calling names. If
you're right, your argument will be more convincing without them.
<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>
<span className="foot">
<br />
<br />
</span>
</p>
</NoticeLayout>
);
}
export default NewsWelcomePage;