Skip to content

Instantly share code, notes, and snippets.

View Toxiapo's full-sized avatar
🎯
Focusing

Jiayong Toxiapo

🎯
Focusing
View GitHub Profile
@Toxiapo
Toxiapo / tmux-cheatsheet.markdown
Created February 26, 2021 21:34 — forked from MohamedAlaa/tmux-cheatsheet.markdown
tmux shortcuts & cheatsheet

tmux shortcuts & cheatsheet

start new:

tmux

start new with session name:

tmux new -s myname
@Toxiapo
Toxiapo / do_var_dump.php
Created October 6, 2017 21:56 — forked from pgmccann/do_var_dump.php
Formatted var_dump() for HTML output
<?php
function do_var_dump($object) {
echo "<pre>";
var_dump($object);
echo "</pre>";
}
?>