(C-x means ctrl+x, M-x means alt+x)
The default prefix is C-b. If you (or your muscle memory) prefer C-a, you need to add this to ~/.tmux.conf
:
People
:bowtie: |
😄 :smile: |
😆 :laughing: |
---|---|---|
😊 :blush: |
😃 :smiley: |
:relaxed: |
😏 :smirk: |
😍 :heart_eyes: |
😘 :kissing_heart: |
😚 :kissing_closed_eyes: |
😳 :flushed: |
😌 :relieved: |
😆 :satisfied: |
😁 :grin: |
😉 :wink: |
😜 :stuck_out_tongue_winking_eye: |
😝 :stuck_out_tongue_closed_eyes: |
😀 :grinning: |
😗 :kissing: |
😙 :kissing_smiling_eyes: |
😛 :stuck_out_tongue: |
FROM ubuntu:18.04 | |
LABEL maintainer="Peter Mescalchin <[email protected]>" | |
RUN sed --in-place --regexp-extended "s/(\/\/)(archive\.ubuntu)/\1au.\2/" /etc/apt/sources.list && \ | |
apt-get update && apt-get upgrade --yes |
#!/bin/bash | |
#Based off of http://code.activestate.com/recipes/491264/ | |
if [ "$1" == "startserver" ]; then | |
ncat -u -l 5355 -c $(readlink -f $0) -k | |
exit | |
fi | |
timeout 1s cat /dev/stdin > input | |
req=$(cat input | xxd -p) | |
#Functions from http://ubuntuforums.org/showthread.php?t=735140&p=4584216#post4584216 |
<?php | |
function flattenExceptionBacktrace(\Exception $exception) { | |
$traceProperty = (new \ReflectionClass('Exception'))->getProperty('trace'); | |
$traceProperty->setAccessible(true); | |
$flatten = function(&$value, $key) { | |
if ($value instanceof \Closure) { | |
$closureReflection = new \ReflectionFunction($value); | |
$value = sprintf( | |
'(Closure at %s:%s)', |
#include "sphere.h" | |
#include <vector> | |
#include <iostream> | |
#include <glm/gtc/matrix_inverse.hpp> | |
#include <glm/gtc/type_ptr.hpp> | |
#include <glm/gtx/string_cast.hpp> | |
Sphere::Sphere() | |
{ |
<?php | |
/** | |
* Minecraft: Pocket Edition header extractor | |
* | |
* This tool needs objdump (and objdump-multiarch + arm variants) installed on the current system | |
* | |
*/ | |
const VERSION = "0.0.1"; |
2016-09-20 18:59:59,577 DEBUG MiNET.Client.MiNetClient - Command JSON: | |
{ | |
"ability": { | |
"versions": [ | |
{ | |
"description": "commands.ability.description", | |
"overloads": { | |
"default": { | |
"input": { | |
"parameters": [ |
<?php | |
declare(strict_types = 1); | |
use PhpBench\Benchmark\Metadata\Annotations\BeforeMethods; | |
use PhpBench\Benchmark\Metadata\Annotations\Revs; | |
require 'vendor/autoload.php'; | |
/** |