- Bower and NPM dependency management out next month.
 - Finding forced layouts (http://jsfiddle.net/qjncp)
 
  
    
      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 | |
| /** | |
| * post-process.php | |
| * make sure to include post-process.php in your functions.php. Use this in functions.php: | |
| * | |
| * get_template_part('post-process'); | |
| * | |
| */ | |
| function do_insert() { | |
| if( 'POST' == $_SERVER['REQUEST_METHOD'] | 
  
    
      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 http = require('http'); | |
| var send = require('send'); | |
| var urlParse = require('url').parse; | |
| var count = 2; | |
| var server = http.createServer(function (req, res) { | |
| if (!--count) server.close(); // Only allow two connection and then exit. | |
| send(req, urlParse(req.url).pathname) | |
| .root(__dirname) | |
| .pipe(res); | 
NewerOlder