This document is for documenting the next generation of Celestia Radio's online API.
As of the start of development (2014-03-28), the documentation is incomplete and will change over time.
| .select2-container--bootstrap { | |
| display: block; | |
| /*------------------------------------* #COMMON STYLES | |
| \*------------------------------------*/ | |
| /** | |
| * Search field in the Select2 dropdown. | |
| */ | |
| /** | |
| * No outline for all search fields - in the dropdown | |
| * and inline in multi Select2s. |
| --- | |
| term:holymacintosh: | |
| term.case: HolyMacintosh | |
| dfn: ! 'worst pony #69 for not knowing the answer to random questions.' | |
| edited.by: zazq | |
| edited.time: '2013-09-20 01:55:01 -0300' | |
| term:command list: | |
| term.case: command list | |
| dfn: http://pastebin.com/ZfPyT51X | |
| edited.by: Chocolate_Chip|Phone |
| { | |
| "title": "Regional Presidents Report", | |
| "report_type": "club", | |
| "form": [ | |
| { | |
| "title": "Identification", | |
| "items": [ | |
| { "type": "text", "label": "Full Name" }, | |
| { "type": "email", "label": "Email" }, | |
| { "type": "text", "label": "Club" }, |
| -- Copyright © 2013 Mark Seymour ([email protected]) | |
| on textualcmd() | |
| tell application "System Events" | |
| tell application "System Events" to set isRunning to exists (processes where name is "Cog") | |
| set curpos to value of static text of group 2 of tool bar 1 of window of application process "Cog" | |
| end tell | |
| set listening to "/me np: " | |
| [2013/06/20 20:09:51.410] >> :[email protected] PRIVMSG #celestiaradio :I just can't remember what. | |
| [2013/06/20 20:09:51.411] !! [New thread] For #<Cinch::Handler @event=:channel pattern=#<Cinch::Pattern:0x00000002c6e100 @prefix=nil, @pattern=//, @suffix=nil>>: #<Thread:0x007f142ca1f698> -- 1 in total. | |
| [2013/06/20 20:09:51.416] !! [New thread] For #<Cinch::Handler @event=:channel pattern=#<Cinch::Pattern:0x00000002d273d0 @prefix=nil, @pattern=//, @suffix=nil>>: #<Thread:0x007f142ca1eef0> -- 1 in total. | |
| [2013/06/20 20:09:51.416] !! [New thread] For #<Cinch::Handler @event=:channel pattern=#<Cinch::Pattern:0x00000001df4430 @prefix=nil, @pattern=//, @suffix=nil>>: #<Thread:0x007f142ca1d938> -- 1 in total. | |
| [2013/06/20 20:09:51.416] !! [New thread] For #<Cinch::Handler @event=:channel pattern=#<Cinch::Pattern:0x00000001e5c030 @prefix=nil, @pattern=//, @suffix=nil>>: #<Thread:0x007f142ca1d438> -- 1 in total. | |
| [2013/06/20 20:09:51.416] !! [New thread] For #<Cinch::Handler @event=:message patte |
| [2013-05-19 16:15:14] requirements_osx_brew_libs_install | |
| requirements_osx_brew_libs_install () | |
| { | |
| brew unlink "$@" && brew install "$@" || { | |
| typeset ret=$?; | |
| rvm_warn "There were package installation errors, make sure to read the log. | |
| Check Homebrew requirements https://github.com/mxcl/homebrew/wiki/Installation"; | |
| case "$_system_version" in | |
| 10.6) | |
| rvm_warn "On OSX 10.6 instead of command line tools install: |
| module Sussex | |
| module Plugins | |
| # This is just a class for laying out possible plugin ideas. | |
| # I have been using Cinch for about a year and a half now, so I am quite | |
| # biased in terms of plugin design for something like this... | |
| # Note that I also use an include for including methods/etc. into the plugin | |
| # There are probably other ways of doing this as well. | |
| class MyPlugin | |
| include Sussex::Plugin |
| require 'socket' | |
| require 'logger' | |
| require 'logger/colors' | |
| require 'thread' | |
| Thread.abort_on_exception = true | |
| class IRC | |
| attr_reader :nick, :user, :gecos | |
| attr_reader :server, :port | |
| attr_reader :socket, :logger, :capabilities, :isupport, :casemapping |