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
DROP TABLE IF EXISTS `buses`; | |
CREATE TABLE `buses` ( | |
`id` int(10) unsigned NOT NULL AUTO_INCREMENT, | |
`schedule_id` int(10) unsigned DEFAULT NULL, | |
`route` varchar(255) NOT NULL, | |
PRIMARY KEY (`id`) | |
) ENGINE=InnoDB AUTO_INCREMENT=81; | |
LOCK TABLES `buses` WRITE; |
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
overlorder 2 episode 1 - magnet:?xt=urn:btih:Z7KEWE43JJE7XWA2SQYA3XNZTWWAC6OB&tr=http://nyaa.tracker.wf:7777/announce&tr=udp://tracker.coppersurfer.tk:6969/announce&tr=udp://tracker.internetwarriors.net:1337/announce&tr=udp://tracker.leechersparadise.org:6969/announce&tr=udp://tracker.opentrackr.org:1337/announce&tr=udp://open.stealth.si:80/announce&tr=udp://p4p.arenabg.com:1337/announce&tr=udp://mgtracker.org:6969/announce&tr=udp://tracker.tiny-vps.com:6969/announce&tr=udp://peerfect.org:6969/announce&tr=http://share.camoe.cn:8080/announce&tr=http://t.nyaatracker.com:80/announce&tr=https://open.kickasstracker.com:443/announce | |
overlorder 2 episode 2 - magnet:?xt=urn:btih:VVQRASTG3LIXN3EQPMVVTNQHXQSIHAFY&tr=http://nyaa.tracker.wf:7777/announce&tr=udp://tracker.coppersurfer.tk:6969/announce&tr=udp://tracker.internetwarriors.net:1337/announce&tr=udp://tracker.leechersparadise.org:6969/announce&tr=udp://tracker.opentrackr.org:1337/announce&tr=udp://open.stealth.si:80/announce&tr=udp://p4p.arenabg.com:1337/announc |
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
<script type="text/javascript"> | |
jQuery(document).ready(function(){ | |
jQuery(".panel-heading").on("click", function(e){ | |
var el = jQuery(e.currentTarget); | |
if(el.data('open')) | |
el.data('open', false); | |
else | |
el.data('open', true); |
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
<VirtualHost *> | |
ServerAlias * | |
VirtualDocumentRoot /home/nms/sites/%1/public_html | |
UseCanonicalName Off | |
<Directory "/home/nms/sites"> | |
Options Indexes FollowSymLinks | |
AllowOverride All | |
Order allow,deny | |
Allow from all | |
Require all granted |
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 | |
$phTz = new DateTimeZone("Asia/Manila"); | |
$gmt0Time = new DateTimeZone("GMT0"); | |
$date = new DateTime(); | |
echo "default: "; | |
echo $date->format('r'); | |
echo "<br />"; |
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 | |
$defaultIP = "122.3.33.186"; | |
$ip_start = "95.130.184.0"; | |
$ip_end = "95.130.191.254"; | |
$echo = array(); | |
$ip_start_long = ip2long($ip_start); | |
$ip_end_long = ip2long($ip_end); |
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
/** | |
* dependencies | |
* "moment-timezone": "^0.5.23", | |
* "winston": "^3.2.1" | |
*/ | |
const moment = require('moment-timezone'); | |
const {transports, createLogger, format} = require('winston'); | |
var util = { |
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
Show hidden characters
[ | |
{"keys" : ["f12"], "command" : "reindent" } | |
// , {"keys" : ["f12"], "command" : "toggle_side_bar" } | |
, {"keys" : ["ctrl+b"], "command" : "goto_definition" } | |
, { "keys": ["ctrl+alt+shift+up"], "command" : "select_lines", "args": {"forward": false} } | |
, { "keys": ["ctrl+alt+shift+down"], "command" : "select_lines", "args": {"forward": true} } | |
, { "keys": ["ctrl+shift+r"], "command" : "goto_symbol_in_project" } | |
// for multi-window approach | |
, { "keys": ["alt+left"], "command" : "focus_neighboring_group", "args": {"forward": false} } |
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
var winston = require('winston'); | |
var moment = require('moment-timezone'); | |
util = { | |
/** | |
* get a moment instance pre-configured | |
* @param string datetime nullable | |
* @param Object customParams | |
* { | |
* // null if you prefer application timezone | |
* timezone: "America/Los_Angeles", |
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
/** | |
* @author Christian Noel Reyes <[email protected]> | |
* tested working with: >= jquery1.4.2 | |
* usage: | |
* util.wait('.selectorClass'); // or #selectorID | |
* util.unwait('.selectorClass'); | |
*/ | |
var util = { | |
wait: function(selector, options){ | |
var defaultOptions = { |