start new:
tmux
start new with session name:
tmux new -s myname
| /** | |
| * @license Copyright (c) 2003-2013, CKSource - Frederico Knabben. All rights reserved. | |
| * For licensing, see LICENSE.html or http://ckeditor.com/license | |
| */ | |
| (function() { | |
| var imageDialog = function( editor, dialogType ) { | |
| // Load image preview. | |
| var IMAGE = 1, | |
| LINK = 2, |
| <!doctype html> | |
| <html ng-app="Demo" ng-controller="AppController"> | |
| <head> | |
| <meta charset="utf-8" /> | |
| <title> | |
| Lazy Loading Images With AngularJS | |
| </title> | |
| <style type="text/css"> |
| #!/bin/sh | |
| # PATH TO YOUR HOSTS FILE | |
| ETC_HOSTS=/etc/hosts | |
| # DEFAULT IP FOR HOSTNAME | |
| IP="127.0.0.1" | |
| # Hostname to add/remove. | |
| HOSTNAME=$1 |
| <?php | |
| add_action('admin_init', function () { | |
| // Redirect any user trying to access comments page | |
| global $pagenow; | |
| if ($pagenow === 'edit-comments.php') { | |
| wp_redirect(admin_url()); | |
| exit; | |
| } |
| /** | |
| * Remove hentry from post_class | |
| * This is important to not get schema errors | |
| */ | |
| function visceral_remove_hentry_class( $classes ) { | |
| $classes = array_diff( $classes, array( 'hentry' ) ); | |
| return $classes; | |
| } | |
| add_filter( 'post_class', 'visceral_remove_hentry_class' ); |
| <div class="uk-container uk-container-center" style="min-height:600px"> | |
| <h1>Infinite list</h1> | |
| <ul class="uk-list uk-list-line" id="infinite-list"></ul> | |
| <div id="scrollspy" data-uk-scrollspy="{topoffset: 200, repeat: true}" class="uk-text-center"> | |
| <i class="uk-icon-refresh uk-icon-spin uk-hidden"></i> | |
| </div> | |
| <script type="text/listtemplate"> |