This repository has been archived by the owner on Aug 18, 2024. It is now read-only.
forked from maunium/dontasktoask.com
-
Notifications
You must be signed in to change notification settings - Fork 0
/
index.html
92 lines (92 loc) · 3.62 KB
/
index.html
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
<!DOCTYPE html>
<html lang="en">
<head>
<title>Don't ask to ask, just ask</title>
<meta property="og:title" content="Don't ask to ask, just ask" />
<meta property="og:type" content="website" />
<meta property="og:url" content="https://dontasktoask.com" />
<meta property="og:locale" content="en_US" />
<meta property="og:image" content="https://dontasktoask.com/favicon.png"/>
<link rel="icon" href="/favicon.png" type="image/png" />
<link rel="stylesheet" type="text/css" href="/style.css">
<link rel="stylesheet" type="text/css" href="https://fonts.googleapis.com/css?family=Open+Sans">
<meta name="viewport" content="width=device-width, initial-scale=1, shrink-to-fit=no">
</head>
<body>
<main>
<h1>Don't ask to ask, just ask</h1>
<p>
Every now and then, in online chat rooms I hang around in, someone pops
in and says something in the lines of,
</p>
<blockquote>
<span class="name">Foobar123:</span>
<p class="message">
Any Java experts around?
</p>
</blockquote>
<p>
This is bad form, for several reasons. What the person is
<em>actually</em> asking here is,
</p>
<blockquote>
<span class="name">Foobar123:</span>
<p class="message">
Any Java experts around who are willing to commit into looking into my
problem, whatever that may turn out to be, even if it's not actually
related to Java or if someone who doesn't know anything about Java
could actually answer my question?
</p>
</blockquote>
<p>
There are plenty of reasons why people who DO have the knowledge would
not admit to it. By asking, you're asking for more than what you think
you're asking.
</p>
<p>
You're asking people to take responsibility. You're questioning people's
confidence in their abilities. You're also unnecessarily walling other
people out. I often answer questions related to languages or libraries I
have never used, because the answers are (in a programmer kind of way)
common sense.
</p>
<p>
Alternatively, it can be seen as..
</p>
<blockquote>
<span class="name">Foobar123:</span>
<p class="message">
I have a question about Java but I'm too lazy to actually formalize it
in words unless there's someone on the channel who might be able to
answer it
</p>
</blockquote>
<p>
..which is just lazy. If you're not willing to do the work to solve your
problem, why should we?
</p>
<p>
The solution is not to ask to ask, but just to ask. Someone who is idling
on the channel and only every now and then glances what's going on is
unlikely to answer to your "asking to ask" question, but your actual
problem description may pique their interest and get them to answer.
</p>
<p>
So, to summarize, don't ask
<em>"Any Java experts around?"</em>,
but rather ask
<em>"How do I do [problem] with Java and [other relevant info]?"</em>
</p>
<p>
Other similar problems: <a href="https://xyproblem.info/">The XY Problem</a>, <a href="https://nohello.net/">No Hello</a>.
Further reading: <a href="https://stackoverflow.com/help/how-to-ask">How do I ask a good question?</a>,
or if you have more time: <a href="http://catb.org/~esr/faqs/smart-questions.html">How To Ask Questions The Smart Way</a>.
</p>
</main>
<footer>
Content mostly stolen from <a href="https://iki.fi/sol/dontask.html">iki.fi/sol/dontask.html</a>
-
<a href="https://github.com/maunium/dontasktoask.com">Source on GitHub</a>
</footer>
</body>
</html>