This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Telling True Stories: A Nonfiction Writers' Guide from the Nieman Foundation at Harvard University | |
Beyond Style: Mastering the Finer Points of Writing | |
Make Every Word Count | |
100 Ways to Improve Your Writing | |
Make Your Words Work |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
#!/usr/bin/env perl | |
use v5.14; | |
use warnings; | |
use autodie qw( :all ); | |
use utf8::all; | |
use List::Util qw( shuffle ); | |
use WWW::Mechanize; |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
set smooth | |
set historylog | |
set mouse | |
set tabsize 2 | |
set tabstospaces | |
## Assembler | |
include "/usr/share/nano/asm.nanorc" |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
use v5.16; | |
use warnings; | |
use autodie qw( :all ); | |
use utf8::all; | |
use POSIX qw( strftime ); | |
use Parallel::ForkManager; | |
use Proc::ProcessTable; | |
my $process_count = 12; |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
use v5.16; | |
use warnings; | |
use autodie qw( :all ); | |
use utf8::all; | |
use Parallel::ForkManager; | |
my $process_count = 12; | |
sub run_list { |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
# scroll history | |
set -g history-limit 40000 | |
# | |
# mouse / keyboard | |
# | |
set -g mouse on | |
# scroll wheel history - https://github.com/tmux/tmux/issues/145 | |
bind -n WheelUpPane if-shell -F -t = "#{mouse_any_flag}" "send-keys -M" "if -Ft= '#{pane_in_mode}' 'send-keys -M' 'select-pane -t=; copy-mode -e; send-keys -M'" |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
#!/usr/bin/perl | |
use v5.16; | |
use warnings; | |
use autodie qw( :all ); | |
use utf8::all; | |
use POSIX qw( strftime ); | |
use WWW::CheckSite; |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
#!/usr/bin/perl | |
use v5.16; | |
use warnings; | |
use autodie qw( :all ); | |
use utf8::all; | |
use File::Slurp qw( read_file ); | |
use List::MoreUtils qw( uniq ); | |
use Regexp::Assemble; | |
use Benchmark qw( cmpthese :hireswallclock ); |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
#!/usr/bin/perl | |
use v5.16; | |
use warnings; | |
use autodie qw( :all ); | |
use utf8::all; | |
use LWP::UserAgent; | |
use Data::Show; |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
#!/usr/bin/perl | |
use v5.16; | |
use warnings; | |
use autodie qw( :all ); | |
use utf8::all; | |
use LWP::UserAgent; | |
my $ua = LWP::UserAgent->new; | |
my $can_accept = HTTP::Message::decodable; |
NewerOlder