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
// everyone's new favorite closure pattern: | |
(function(window,document,undefined){ ... })(this,this.document); | |
// when minified: | |
(function(w,d,u){ ... })(this,this.document); | |
// which means all uses of window/document/undefined inside the closure | |
// will be single-lettered, so big gains in minification. | |
// it also will speed up scope chain traversal a tiny tiny little bit. |
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 | |
if(empty($_SERVER['HTTP_X_REQUESTED_WITH'])) { | |
$config['show_profiler'] = $config['template_debugging'] = (ENV === 'local') ? 'y' : 'n'; | |
} |
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
+----------------------------------------------+ | |
| Series | Episode | Description | | |
+--------+---------+---------------------------+ | |
| 3 | 5 | Indestructible Hilux | | |
| 4 | 1 | DB9 vs Euro Train | | |
| 5 | 5 | Jaguar at the Nurburgring | | |
| 5 | 8 | Race to Verbier | | |
| 7 | 1 | Vantage, M6, 911 | | |
| 7 | 3 | Supercars Across France | | |
| 7 | 5 | Bugatti vs Cesna | |