start new:
tmux
start new with session name:
tmux new -s myname
| // A simple quickref for Eigen. Add anything that's missing. | |
| // Main author: Keir Mierle | |
| #include <Eigen/Dense> | |
| Matrix<double, 3, 3> A; // Fixed rows and cols. Same as Matrix3d. | |
| Matrix<double, 3, Dynamic> B; // Fixed rows, dynamic cols. | |
| Matrix<double, Dynamic, Dynamic> C; // Full dynamic. Same as MatrixXd. | |
| Matrix<double, 3, 3, RowMajor> E; // Row major; default is column-major. | |
| Matrix3f P, Q, R; // 3x3 float matrix. |
| /* | |
| * Convert from OpenCV image and write movie with FFmpeg | |
| * | |
| * Copyright (c) 2016 yohhoy | |
| */ | |
| #include <iostream> | |
| #include <vector> | |
| // FFmpeg | |
| extern "C" { | |
| #include <libavformat/avformat.h> |
| #!/usr/bin/env perl | |
| use Term::ANSIColor; | |
| if(@ARGV < 1) { | |
| print " \n"; | |
| print "usage: $0 USERNAMES [--admin]\n"; | |
| print " \n"; | |
| print " This program will create a user using 'adduser' for each username\n"; | |
| print " listed in the USERNAMES file (separated by line breaks). Their\n"; |
| # i3 config file | |
| # | |
| # Please see http://i3wm.org/docs/userguide.html for a complete reference! | |
| set $mod Mod4 | |
| ##### | |
| # | |
| # Fonts | |
| # |