Add irssi post.
authorW. Trevor King <wking@drexel.edu>
Wed, 25 Jan 2012 04:50:11 +0000 (23:50 -0500)
committerW. Trevor King <wking@drexel.edu>
Wed, 25 Jan 2012 04:50:11 +0000 (23:50 -0500)
posts/Local_IRC_server.mdwn
posts/irssi.mdwn [new file with mode: 0644]

index 58ebb384691b14591a71125f6a6dae6a35729716..fec2b582fce310d6e4ece94a6e5a2d8f4e39177a 100644 (file)
@@ -40,7 +40,7 @@ hand whenever I want to use it.
 Local connections
 =================
 
-Using the excellent [irssi][] client (`net-irc/irssi` on Gentoo):
+Using the excellent [[irssi]] client (`net-irc/irssi` on Gentoo):
 
     $ irssi -c localhost
 
@@ -75,7 +75,6 @@ popular tool.
 [IRC]: http://en.wikipedia.org/wiki/Internet_Relay_Chat
 [freenode]: http://freenode.net/
 [ngIRCd]: http://ngircd.barton.de/
-[irssi]: http://irssi.org/
 
 [[!tag tags/web]]
 [[!tag tags/tools]]
diff --git a/posts/irssi.mdwn b/posts/irssi.mdwn
new file mode 100644 (file)
index 0000000..deb4cc9
--- /dev/null
@@ -0,0 +1,46 @@
+[irssi][] is a great [IRC][] client.  The [documentation][] is
+excellent, but long, so here is my summary of critical usage.
+
+Connect to `freenode` as `nickname`:
+
+    $ irssi -c irc.freenode.net -n nickname
+
+Get help:
+
+    irc> /help
+    irc> /help <command>
+
+Join the `#phys305` channel:
+
+    irc> /join phys305
+
+Leave the current channel:
+
+    irc> /part
+
+Quit your IRC session:
+
+    irc> /bye
+
+Change to window `<N>` with `Meta-<N>`.  The `Esc` key is one of [a
+number of ways][interface] to change windows.
+
+Talk by typing whatever you have to say.  In a multi-user channel, it
+is good practice to preface responses with the nick of the person to
+whom you are responding.  This makes it easier for them to pick
+relevant messages out during parallel conversations.  `irssi` makes
+this easy by autocompleting nicks with `Tab`.
+
+You can also look over the [beginner section][beginner] of the [IRC
+mini-HOWTO][howto].
+
+[irssi]: http://irssi.org/
+[IRC]: http://en.wikipedia.org/wiki/Internet_Relay_Chat
+[documentation]: http://irssi.org/documentation/
+[freenode]: http://freenode.net/
+[interface]: http://irssi.org/documentation/startup#c2
+[beginner]: http://tldp.org/HOWTO/IRC/beginners.html
+[howto]: 
+
+[[!tag tags/web]]
+[[!tag tags/tools]]