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 TABLE `survey_history` ( | |
`schedule_history_id` int(11) NOT NULL AUTO_INCREMENT, | |
`schedule_id` int(11) NOT NULL DEFAULT '0', | |
`department_id` int(11) NOT NULL DEFAULT '0', | |
`iteration` int(11) NOT NULL DEFAULT '0', | |
`start_date` datetime NOT NULL DEFAULT '0000-00-00 00:00:00', | |
`due_date` datetime NOT NULL DEFAULT '0000-00-00 00:00:00', | |
`completion_date` datetime NOT NULL DEFAULT '0000-00-00 00:00:00', | |
`survey_user` int(11) NOT NULL DEFAULT '0', | |
`survey_id` int(11) NOT NULL DEFAULT '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
220 mx.google.com ESMTP el2sm5115516ibb.10 | |
EHLO webdev1.int.sentact.com | |
250-mx.google.com at your service, [207.241.32.58] | |
250-SIZE 35882577 | |
250-8BITMIME | |
250-STARTTLS | |
250 ENHANCEDSTATUSCODES |
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
<?php | |
/** All magic files on my system */ | |
$files = array( | |
'/usr/share/magic', | |
'/usr/share/magic.mime', | |
'/usr/share/file/magic', | |
'/usr/share/file/magic.mgc', | |
'/usr/share/file/magic.mime', | |
'/usr/share/file/magic.mime.mgc', | |
'/usr/share/misc/magic', |
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
SELECT | |
sp.user_id | |
FROM shop_pagers sp | |
WHERE sp.user_id NOT IN ( | |
SELECT | |
owner_id | |
FROM tickets | |
WHERE ticket_status NOT IN (3,4,7) | |
) | |
AND sp.shop_id = 1; |
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
-- Abridged Schema | |
CREATE TABLE `tickets` ( | |
`id` int(11) NOT NULL AUTO_INCREMENT, | |
`ticket_status` smallint(6) NOT NULL DEFAULT '0', | |
`owner_id` int(11) NOT NULL DEFAULT '0', | |
PRIMARY KEY (`id`) | |
) ENGINE=InnoDB; | |
CREATE TABLE `tickets_pt` ( |
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
{ | |
"Label" = "com.apple.launchd.peruser.502"; | |
"LimitLoadToSessionType" = "System"; | |
"OnDemand" = true; | |
"LastExitStatus" = 256; | |
"TimeOut" = 30; | |
"Program" = "/sbin/launchd"; | |
"EnableTransactions" = true; | |
"TransactionCount" = -1; | |
"MachServices" = { |
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
document.observe('dom:loaded', function() { | |
if ($('action-toggle')) { | |
$('action-toggle').on('click', function() { | |
var checked = this.checked; | |
this.up('table').select('input.action-select').each(function(cb) { | |
cb.checked = checked; | |
}) | |
}) | |
} | |
}); |
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
fastcgi_param QUERY_STRING $query_string; | |
fastcgi_param REQUEST_METHOD $request_method; | |
fastcgi_param CONTENT_TYPE $content_type; | |
fastcgi_param CONTENT_LENGTH $content_length; | |
fastcgi_param SCRIPT_NAME $fastcgi_script_name; | |
fastcgi_param REQUEST_URI $request_uri; | |
fastcgi_param DOCUMENT_URI $document_uri; | |
fastcgi_param DOCUMENT_ROOT $document_root; |
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
+-----------+-------------+---------------------+ | |
| ticket_id | external_id | created | | |
+-----------+-------------+---------------------+ | |
| 6177 | 1 | 2010-08-17 15:37:41 | | |
| 6178 | 1 | 2010-08-17 15:44:01 | | |
| 5763 | 1000055959 | 2010-06-18 10:36:17 | | |
| 4988 | 1000055961 | 2010-02-12 13:19:35 | | |
| 4983 | 1000055963 | 2010-02-12 12:13:47 | | |
| 4299 | 1000055967 | 2009-10-16 13:41:48 | | |
| 5803 | 0 | 2010-06-18 12:35:24 | |
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
array | |
0 => | |
array | |
'children' => | |
array | |
0 => & | |
array | |
'id' => string '11' (length=2) | |
'name' => string 'Building 1' (length=10) | |
'depth' => string '1' (length=1) |