Skip to content

Instantly share code, notes, and snippets.

View bdelespierre's full-sized avatar
🚩
Working from home

Benjamin Delespierre bdelespierre

🚩
Working from home
View GitHub Profile
@bdelespierre
bdelespierre / tmux-cheatsheet.markdown
Created August 15, 2018 11:50 — forked from MohamedAlaa/tmux-cheatsheet.markdown
tmux shortcuts & cheatsheet

tmux shortcuts & cheatsheet

start new:

tmux

start new with session name:

tmux new -s myname
@bdelespierre
bdelespierre / hatchshow.js
Last active August 4, 2017 19:47 — forked from charliepark/hatchshow.js
A jquery typography plugin.
<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);