Skip to content

Instantly share code, notes, and snippets.

@brianwhigham
Created March 27, 2014 04:50
Show Gist options
  • Save brianwhigham/9800502 to your computer and use it in GitHub Desktop.
Save brianwhigham/9800502 to your computer and use it in GitHub Desktop.
IRC Basics

What is IRC?

Distributed chat networks What IRC is NOT

  • secure -- well, it can be; but this guy writes up why SSL gives a false sense of security. Plus, the easy route uses free servers which are run by untrusted folks.

Why IRC?

  • free
  • established mode of communication (since 1988)
  • easy way to interact with collaborators and customers
  • tons of pre-existing integrations (logstash, etc)
  • great command-line clients that you can leave in screen and not lose a beat
  • bots allow automated actions like "page me" or announcing git commits

How to connect to IRC?

How to use IRC

  • /join #openshift
  • /join ##aws (convention says that unofficial channels should be named ##CHANNEL)
  • /topic working in a coal mine
  • /query john
  • /quit (quit IRC)
  • /wc (close window)
  • /disconnect $SERVER
  • /away out to lunch
  • /away (clear away status)
  • /DCC SEND buddy23223 gist.md (or just post a github gist or put it on Google Drive or Dropbox. How often do you really need to send a file?)
  • /SET autolog ON (irssi)
  • /IGNORE ##aws joins,parts,quits,modes

Where I lurk

  • ##aws
  • #rbvmomi
  • #openshift
  • #cloud-init
  • #fpm
  • #yaketystats
  • #logstash

More Info

  1. wikipedia
  2. basics
  3. irssi tips

Written with StackEdit.

Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment