start new:
tmux
start new with session name:
tmux new -s myname
┌──────────┐ | |
┌────┐ ┌───────────────┐ ┌────┐ ┌───────────────┐ ┌────┐ ┌───────────────┐ ┌────┐ ┌───────────────┐ │ │ | |
│A=1 │ │D & 0b000000001│ │A=1 │ │C & 0b000000001│ │A=1 │ │B ---b000000001│ │A=1 │ │A & 0b000000001│ ┌───┐ ┌───┐ ┌───┐ ┌───┐ ┌─┐ ┌─┐ ┌─┐ ┌─┐ ┌────────────┐ ┌────┐ │ ┌──────┐ │ ┌───┐ | |
│ ├─┬─┤A=1 ├─┐ │ ├─┬─┤A=1 ├─┐ │ ├─┬─┤A=1 ├─┐ │ ├─┬─┤A=1 ├─┐ │I=4│ │I=3│ │I=2│ │I=1│ │X│ │X│ │X│ │X│ │ │ │I/60│ │ │I<4x60│ │ │ │ | |
└────┘ │ └───────────────┘ │ └────┘ │ └───────────────┘ │ └────┘ │ └───────────────┘ │ └────┘ │ └────────────── |
let btns=Array.from(document.querySelectorAll('[data-control-name="people_connect"]')); | |
let next=function(){ | |
btns.shift().dispatchEvent(new MouseEvent('click', { bubbles: true, cancelable: true, view: window })) | |
setTimeout(next, 1000); | |
} | |
next(); |
SELECT | |
nspname AS schemaname,relname,reltuples | |
FROM pg_class C | |
LEFT JOIN pg_namespace N ON (N.oid = C.relnamespace) | |
WHERE | |
nspname NOT IN ('pg_catalog', 'information_schema') AND | |
relkind='r' | |
ORDER BY reltuples DESC; |
(function(e,s,n) { | |
e.src = s; | |
e.onload = function() { | |
console.log('jQuery injected'); | |
n(jQuery.noConflict()); | |
}; | |
document.head.appendChild(e); | |
})(document.createElement('script'), '//code.jquery.com/jquery-latest.min.js', function($){ | |
(function follow() { | |
// change the inner HTML to your language |
<?php | |
namespace Tests; | |
use App\Console\Kernel; | |
use Illuminate\Foundation\Testing\RefreshDatabaseState; | |
use Illuminate\Support\Facades\DB; | |
use RuntimeException; | |
trait RefreshSqliteDatabase |
<?php | |
include __DIR__ . '/../vendor/autoload.php'; | |
/* | |
|-------------------------------------------------------------------------- | |
| Create The Application | |
|-------------------------------------------------------------------------- | |
| | |
| The first thing we will do is create a new Laravel application instance |
<?php | |
// ---------------------------------------------------------------------------- | |
// $argc: nombre d'argument de la commande | |
// ---------------------------------------------------------------------------- | |
// e.g. pour la commande 'php file.php foo bar baz', | |
// $argc vaut 3 | |
// car il y a 3 arguments: "foo", "bar", et "baz" | |
var_dump($argc); |