This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
-- Create syntax for TABLE 'comments' | |
CREATE TABLE `comments` ( | |
`id` int(11) NOT NULL AUTO_INCREMENT, | |
`domain_id` int(11) NOT NULL, | |
`name` varchar(255) NOT NULL, | |
`type` varchar(10) NOT NULL, | |
`modified_at` int(11) NOT NULL, | |
`account` varchar(40) NOT NULL, | |
`comment` mediumtext NOT NULL, | |
PRIMARY KEY (`id`), |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
#!/bin/bash | |
HUBIC="/usr/bin/hubic" | |
USER="MY_USERNAME" | |
SESSION_ADDR_FILE="/home/USERNAME/.dbus-session-addr" | |
SESSION_PID_FILE="/home/USERNAME/.dbus-pid" | |
HUBIC_STATE="" | |
DBUS_EXISTS=0 |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
["24300:0:0"] = { | |
["price"] = 12500000, | |
["link"] = "|cff0070dd|Hitem:24300:0:0:0:0:0:0:0:0:0:0|h[Pattern: Cloak of Eternity]|h|r", | |
}, | |
["4624:0:0"] = { | |
["price"] = 165000000, | |
["link"] = "|cffffffff|Hitem:4624:0:0:0:0:0:0:0:0:0:0|h[Recipe: Lesser Stoneshield Potion]|h|r", | |
}, | |
["23628:0:0"] = { |
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
#!/usr/bin/env ruby | |
require 'date' | |
state = { | |
:ok => 0, | |
:warning => 1, | |
:critical => 2, | |
:unknown => 3 | |
} |