Difference between revisions of "IRC"

From Pumping Station One
Jump to navigation Jump to search
(12 intermediate revisions by 4 users not shown)
Line 12: Line 12:
 
=== Web Client ===
 
=== Web Client ===
 
Follow this link: [http://pumpingstationone.org/chat/ web chat]
 
Follow this link: [http://pumpingstationone.org/chat/ web chat]
 +
 +
=== Matrix ===
 +
https://matrix.org is another chat technology. 
 +
Its IRC integration is pretty nice, but #pumpingstationone is not quite one click away. 
 +
 +
Some options:
 +
https://matrix.to/#/#freenode_#pumpingstationone:matrix.org
 +
 +
Of those options, Riot is popular.  We use it to send cat pictures pretty often ;)
 +
 +
Once you sign yourself up for an account, then  #pumpingstationone is one click away:
 +
https://riot.im/app/#/room/#freenode_#pumpingstationone:matrix.org
  
 
=== irssi ===
 
=== irssi ===
Line 20: Line 32:
  
  
== IRC Bots ==
+
=== bots ===
 
 
There have recently been a few projects done to integrate the channel into the physical space better; Spacemon to monitor the space and provide busyness information of the physical space on the IRC channel, and Chatmon to display activity summary information for the IRC channel in the physical space.
 
 
 
To find out more, read up on the various projects on these pages:
 
 
 
* [[Spacemon]] - what rooms are busy, and are the lights on?
 
* [[Peoplemon]] - who is at the space?
 
* [[Schedmon]] - who will be at the space?
 
* [[Chillmon]] - what's the temperature in the shop?
 
* [[Chatmon]]
 
* [[Tardisvoice]]
 
* [[Sudlowbot]] - !ps1events, !ps1wiki, and a million commands that link to pictures of cats
 
 
 
The overall plank bots config for [https://github.com/ZenFire/gaggled gaggled] is:
 
 
 
  gaggled {
 
    eventurl tcp://*:28001
 
    controlurl tcp://*:28000
 
    tick 250
 
    startwait 50
 
    smtpgate {
 
      mx    smtp.truct.org
 
      from  [email protected]
 
      to    [email protected]
 
      helo  localhost
 
      auto  true
 
    }
 
  }
 
 
 
  lidless_work1 {
 
    command python
 
    argv "./lidless ps1.json work1"
 
    wd git/lidless
 
  }
 
  lidless_work2 {
 
    command python
 
    argv "./lidless ps1.json work2"
 
    wd git/lidless
 
  }
 
  lidless_work3 {
 
    command python
 
    argv "./lidless ps1.json work3"
 
    wd git/lidless
 
  }
 
  lidless_announcer {
 
    command python
 
    argv "./lidless ps1.json announcer"
 
    wd git/lidless
 
  }
 
  lidless_frontend {
 
    command python
 
    argv "./lidless ps1.json frontend"
 
    wd git/lidless
 
  }
 
 
 
  chatlight_arduino {
 
    enabled false
 
    command python
 
    argv "./watch_reports tcp://127.0.0.1:23008"
 
    wd git/chatlight
 
  }
 
  chatlight_irc {
 
    command python
 
    argv "./chatlight irc.freenode.net chatmon #pumpingstationone tcp://127.0.0.1:23008"
 
    wd git/chatlight
 
  }
 
 
 
  peoplemon {
 
    command python
 
    argv "./floyd -u tcp://*:34123 -l PS:One -i spacemon,shortmon,notadoctor,peoplemon,schedmon,chatmon,PS1Workstation,chillmon irc.freenode.net peoplemon #pumpingstationone"
 
    wd git/floyd
 
  }
 
 
 
  chillmon_web {
 
    command python
 
    wd git/chillmon
 
    argv "./web.py tcp://10.100.0.81:7000 tcp://10.100.1.213:7001"
 
  }
 
 
 
Invoke like:
 
 
 
    PYTHONPATH=/usr/share/pyshared:/usr/lib/pyshared/python2.7/:/home/eastein/git/mediorc:/home/eastein/git:/home/eastein/git/zmstream/:/home/eastein/git/python-irclib/:/home/eastein/venv/local/lib/python2.7/site-packages gaggled -c automation.gaggled.conf
 
  
== Undocumented IRC Bots ==
+
IRC_bots
  
The following bots will never have their own pages because they don't matter and don't need them: shortmon, notadoctor, [https://github.com/NegativeK/pnbot pnbot].
 
  
 
[[Category:IRC]]
 
[[Category:IRC]]

Revision as of 17:20, 16 March 2019

Connecting

Pumping Station: One has an IRC channel on Freenode:

server: irc.freenode.net
channel: #pumpingstationone

If you don't know how to or can't use an IRC client, you can use our web chat instead. You'll be chatting in no time.

The channel's useful for talking to members and parts of our outlying non-member community. If you have a problem or questions, voiced (people with a + symbol) users should be able to help you.

Web Client

Follow this link: web chat

Matrix

https://matrix.org is another chat technology. Its IRC integration is pretty nice, but #pumpingstationone is not quite one click away.

Some options: https://matrix.to/#/#freenode_#pumpingstationone:matrix.org

Of those options, Riot is popular. We use it to send cat pictures pretty often ;)

Once you sign yourself up for an account, then #pumpingstationone is one click away: https://riot.im/app/#/room/#freenode_#pumpingstationone:matrix.org

irssi

   irssi
   /server irc.freenode.net
   /join #pumpingstationone


bots

IRC_bots