-
Notifications
You must be signed in to change notification settings - Fork 5
/
index.html
62 lines (53 loc) · 3.12 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
<!doctype html>
<html>
<head>
<meta charset="utf-8">
<meta name="viewport" content="width=device-width, initial-scale=1, minimal-ui">
<title>Please Don't Say Just Hello In Chat</title>
<link type="text/css" rel="stylesheet" href="css/github-markdown.css">
<link type="text/css" rel="stylesheet" href="css/pilcrow.css">
<link type="text/css" rel="stylesheet" href="css/hljs-github.min.css"/>
</head>
<body>
<article class="markdown-body"><h1 id="please-don't-say-just-hello-in-chat"><a class="header-link" href="#please-don't-say-just-hello-in-chat"></a>Please Don't Say Just Hello In Chat</h1>
<p>Have you ever placed a phone call, said "Hi" and the immediately placed the call on hold? The short answer is probably, no. Then why would you start a Chat message that way?</p>
<h2>Typical Chat Interaction When Starting With "Hello"</h2>
<pre>
2021-08-19 12:32:12 you: Hi
2021-08-19 12:32:15 co-worker: Hello.
# CO-WORKER WAITS WHILE YOU PHRASE YOUR QUESTION
2021-08-19 12:34:01 you: I'm working on [something] and I'm trying to do [etc...]
2021-08-19 12:35:21 co-worker: Oh, that's [answer...]
</pre>
<p>You're trying to be polite by not jumping right into the request, like you would do in person or on the phone, but Chat is neither of those things. Typing is much slower than talking. Instead of being polite, you are just making your co-worker wait for you to phrase your question, which equates to lost productivity.</p>
<h2>A Better Way - Give Context with Your Greeting</h2>
<pre>
2021-08-19 12:32:12 you: Hi -- I'm working on [something] and I'm trying to do [etc...]
2021-08-19 12:33:32 co-worker: [answers question]
</pre>
<p>Following this method has many benefits, chief amongst them being that you get help sooner, while your co-worker does not have to sit watcing a "you are busy typing..." message. Doing this, your co-worker can start thinking about their response to your question right away!</p>
<p>Just to be clear, the same goes for the greetings below:</p>
<ul>
<li>"Hello -- Are you there?"</li>
<li>"Hi Bob -- quick question."</li>
<li>"Do you have a sec?"</li>
<li>"yt?"</li>
<li>"ping"</li>
</ul>
<p>Just ask the question!</p>
<h2>"But, I'm Being Polite"</h2>
<p>If you feel it's brusque to simply say "Hi" and ask the question, you can do something like this:
</p>
<pre>
2021-08-19 12:32:12 you: Hi -- if you're not busy I was wondering if I could ask
a question. I'm working on [something] and I'm trying to do [etc...]
</pre>
<h2>Conclusion</h2>
<p>In the end, asking your question before getting a reply allows asynchronous communication. If the other party is away, and you leave before they come back, they can still answer your question, instead of just staring at a "Hello" and wondering what they missed.</p>
<h2>Acknowledgement</h2>
<p>This is a copy of the original website <a href="http://www.nohello.com/">nohello.com</a>.
Acknowledgements go to the original anonymous author. And thanks to Sebastian Müller for creating the markup version file. The source
of this file is publicly available on <a href="https://github.com/sbmueller/nohello">github.com</a>.</p>
</article>
</body>
</html>