This file contains 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
+----------------+--------------------------------------------------------------------------------------------------------+----------------+ | |
| page_namespace | page_title | editprotect | | |
+----------------+--------------------------------------------------------------------------------------------------------+----------------+ | |
| 4 | Request_an_account/Changelog/r3334 | NULL | | |
| 4 | Administrators'_noticeboard/Incidents/Soft_blocking_AOL | NULL | | |
| 4 | Request_an_account/Procedures | NULL | | |
| 4 | Changing_username/Usurpations/Rejected/12 | NULL | | |
| 4 | Request_an_account |
This file contains 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
MariaDB [enwiki_p]> SELECT page_namespace, page_title FROM `externallinks` JOIN `page` ON page_id = el_from WHERE (el_to LIKE 'http://toolserver.org/~acc%' OR el_to LIKE 'https://toolserver.org/~acc%') AND page_namespace > 3 ORDER BY page_namespace; | |
+----------------+-------------------------------------------------------------------------+ | |
| page_namespace | page_title | | |
+----------------+-------------------------------------------------------------------------+ | |
| 4 | Village_pump_(proposals)/Archive_84 | | |
| 4 | Request_an_account/Guide | | |
| 4 | Village_pump_(policy)/Archive_77 | | |
| 4 | Village_pump_(policy)/Archive_77 | | |
| 4 | Village_pump_(proposals)/Archive_105 | | |
| 4 | Village_pum |
This file contains 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
[2013-08-10 19:28:27] <Izmeetingz> -Now logging starts- | |
[2013-08-10 19:28:37] * JohnLewis waits for the irony to settle in for rschen7754 :P | |
[2013-08-10 19:28:58] <harlot> Fast dinner | |
[2013-08-10 19:29:01] <Izmeetingz> So this meeting is surrounding [Accounts-enwiki-l] Rechecking and acting on requests in current CU-needed list | |
[2013-08-10 19:29:42] <JohnLewis> ALl but rschen7754 will known of that email. | |
[2013-08-10 19:29:56] <JohnLewis> *all *know | |
[2013-08-10 19:30:16] <Izmeetingz> As CUs have been noticing, the CU backlog is getting insane, and is often a deturant (SP?) to actually clearing it out. | |
[2013-08-10 19:30:25] <Izmeetingz> rschen7754: get ACC :P | |
[2013-08-10 19:30:31] =-= rschen7754 is now known as rschen7754|boat | |
[2013-08-10 19:30:33] <Izmeetingz> anyway |
This file contains 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
function radians = degtorad( degrees ) | |
%DEGTORAD Converts degrees to radians. | |
% EXAMPLE:degtorad(35) = 0.6109 | |
radians = degrees*(pi/180); | |
end |
This file contains 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 | |
ini_set('display_errors', 1); | |
error_reporting(-1); | |
$toolserver_username = "username"; | |
$toolserver_password = "password"; | |
$toolserver_host = "localhost"; | |
$toolserver_database = "acc"; | |
#I don't even really care about the notify db or the antispoof db on my local install currently, | |
#but setting them anyways |