-
Notifications
You must be signed in to change notification settings - Fork 2
Expand file tree
/
Copy pathstarting-the-interview.php
More file actions
62 lines (52 loc) · 3.71 KB
/
starting-the-interview.php
File metadata and controls
62 lines (52 loc) · 3.71 KB
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
<?
include('publicheader.php');
include('sidebar.php');
newstop();
newsbox('Starting the interview', '
<h3>Getting an IRC Client</h3>
<strong>Internet Relay Chat (IRC)</strong> is a rawer, lightweight version of chat clients you may be used to, like Discord, Slack or Steam. You can either use our <a href="/webirc/" target="_blank" rel="noopener">web client</a> or any standalone IRC client.
<h3>Suggested Clients</h3>
<ul>
<li>mIRC (Windows)</li>
<li>Hexchat (Windows, Linux)</li>
<li>Colloquy (Mac OS)</li>
</ul>
Once you are all set up, read on!
<h3>Connecting to ' . $SITENAME . '’s IRC</h3>
<h4><strong>INTERVIEWS ARE OPEN FROM SATURDAY 00:00 UTC TO SUNDAY 23:59 UTC.</strong></h4>
<strong>YOU MAY ONLY INTERVIEW ON YOUR HOME CONNECTION. Proxies, bouncers, shells, office lines, and other non-home connections (including using your friend’s home connection) are not allowed. You may connect from your university dormitory.<br />
</strong><br /><br />
<strong>IRC Server:</strong> irc.orpheus.network<br />
<strong>Port:</strong> 7000 (SSL/TLS)<br /><br />
After you have connected to ' . $SITENAME . '’s IRC network, type: “/join ' . $interviewchan . '” (without the quotation marks) and follow the directions in the topic.
<h3>Speedtest</h3>
In order to join the queue, you will have to take a speedtest on your home connection (remember, you may ONLY interview on your home connection!).<br />
If you live at college, please explain this to your interviewer.<br />
<ol>
<li>Go to <a title="Speedtest" href="http://www.speedtest.net/" target="_blank">http://www.speedtest.net</a>.</li>
<li>Click on “BEGIN TEST” (blue button).</li>
<li>Wait for your test to finish.</li>
<li>Click on “SHARE THIS RESULT” (green button).</li>
<li>Click on the “IMAGE” tab</li>
<li>Click “COPY” (blue button).</li>
</ol>
<h3>Queuing</h3>
Back in ' . $interviewchan . ', simply wait for an available interviewer.<br />
<h3>How to use the bot</h3>
<strong>To enter the queue,</strong> enter the following command in your IRC client: “/msg Hermes !queue speedtestlink” (without the quotations, replacing “speedtestlink” with your <strong>correct</strong> speedtest link.) <br />
<strong>Example:</strong> “/msg Hermes !queue http://www.speedtest.net/result/1234566.png”<br />
After queueing correctly, you will get a small notice from the Hermes bot. <br />
<strong>How to exit the queue:</strong> To exit the queue, simply type the following command in your IRC client:<br />
“/msg Hermes !cancel” <br />
<strong>How to view information about the queue:</strong> To view information about your current position in the queue, and how long you have waited, simply type the following command in your IRC client: “/msg Hermes !info”<br /><br />
<strong>Important:</strong><br />
Make sure you are queueing with the correct link and not the “Web” link.<br />
<em>Correct:</em> http://www.speedtest.net/result/1234566.png</em><br />
<em>Wrong:</em> http://www.speedtest.net/my-result/1234566</em><br /><br />
Then wait for an interviewer to interview you.<br />
<h3>But I’ve waited forever!</h3>
All of our interviewers are ' . $SITENAME . ' users who who voluntarily interview, so you may have to wait a while before you are interviewed. Although it seems like a lot of interviewers are in the channel, many of them may be “idling” (they are in the channel but are unable to interview).<br /><br />
<h3>More Questions?</h3>
<strong>Note: ' . $interviewchan . ' is the ONLY channel that you will need to join. Other channels are for ' . $SITENAME . ' users only and are closed for non-members.</strong>');
newsbot();
include('publicfooter.php');