start new:
tmux
start new with session name:
tmux new -s myname
| easterEgg.BadWorder.list={ | |
| "4r5e":1, | |
| "5h1t":1, | |
| "5hit":1, | |
| a55:1, | |
| anal:1, | |
| anus:1, | |
| ar5e:1, | |
| arrse:1, | |
| arse:1, |
| # To check if this is up-to-date with the tax rates go to | |
| # http://www.expatax.nl/tax-rates-2016.php and see if there's anything | |
| # newer there. | |
| # | |
| # I make no guarantees that any of this is correct. I calculated this | |
| # at the time and have been updating it when new tax rates come along | |
| # because people keep finding this useful. | |
| # | |
| # There's also an interactive JS version of this created by | |
| # @stevermeister at |
| #!perl | |
| use strict; | |
| use warnings; | |
| package Lispl; | |
| use Scalar::Util qw(blessed looks_like_number); | |
| use List::Util qw(reduce); | |
| my $global_env; |
| use strict; | |
| use AnyEvent; | |
| use Fcntl qw(SEEK_SET); | |
| use Linux::Inotify2; | |
| main(@ARGV); | |
| sub main { | |
| my $file = shift or die "no file specified"; |
| #!/usr/bin/env perl | |
| use 5.008; | |
| use strict; | |
| use utf8; | |
| use warnings qw(all); | |
| use CPAN::DistnameInfo; | |
| use Carp qw(carp croak); | |
| use Config; | |
| use File::Spec::Functions; |
| % This code answers the question at http://dsp.stackexchange.com/a/110/64 | |
| N = 150; % Order of LPC auto-regressive model | |
| P = 500; % Number of samples in the extrapolated time series | |
| M = 150; % Point at which to start predicting | |
| t = 1:P; | |
| x = 5*sin(t/3.7+.3)+3*sin(t/1.3+.1)+2*sin(t/34.7+.7); %This is the measured signal |
| sudo apt-get install curl git libpq-dev libssl-dev | |
| curl -kL http://install.perlbrew.pl | bash | |
| echo "source ~/perl5/perlbrew/etc/bashrc" >> ~/.bash_profile | |
| source ~/.bash_profile | |
| perlbrew install perl-5.16.2 | |
| perlbrew switch perl-5.16.2 | |
| perlbrew install-cpanm |
| #!/usr/bin/env sh | |
| # Download lists, unpack and filter, write to stdout | |
| curl -s https://www.iblocklist.com/lists.php \ | |
| | sed -n "s/.*value='\(http:.*=bt_.*\)'.*/\1/p" \ | |
| | xargs wget -O - \ | |
| | gunzip \ | |
| | egrep -v '^#' |