start new:
tmux
start new with session name:
tmux new -s myname
<script type="text/javascript" src="http://ajax.googleapis.com/ajax/libs/jquery/1/jquery.min.js"></script> | |
<script type="text/javascript" charset="utf-8"> | |
$(function(){ | |
$('.hsjs').hatchShow(); | |
}); | |
(function($){ | |
jQuery.fn.hatchShow = function(){ | |
return $(this).css({ | |
display: 'inline-block', |
<?php | |
spl_autoload_register(function($classname) { | |
if (strpos($classname, '\\with') === false) | |
return false; | |
list($namespace, $class) = str_split($classname, strrpos($classname, '\\')); | |
$class = substr($class, 1); | |
$parts = explode('\\with', $classname); |