I am going to be doing some light reading this weekend. I wrote a script that generates a markdown copy of "The Diary of Anne Frank", a classic.
To install the book simply run.
perl install.pl
| module.exports = (grunt) -> | |
| grunt.initConfig | |
| coffee: | |
| compile_client: | |
| expand: true, | |
| flatten: false, | |
| cwd: 'src/client', | |
| src: ['**/*.coffee'], | |
| dest: 'build/js', |
| gulp = require 'gulp' | |
| runSequence = require 'run-sequence' | |
| gutil = require 'gulp-util' | |
| coffee = require 'gulp-coffee' | |
| coffeelint = require 'gulp-coffeelint' | |
| less = require 'gulp-less' | |
| clean = require 'gulp-clean' | |
| uglify = require 'gulp-uglify' | |
| concat = require 'gulp-concat' | |
| minifyCSS = require 'gulp-minify-css' |
| mpd_music_dir = "/home/xjackk/Music/" | |
| mpd_connection_timeout = "5" | |
| mpd_crossfade_time = "5" | |
| playlist_disable_highlight_delay = "0" | |
| playlist_display_mode = "columns" | |
| browser_display_mode = "columns" | |
| incremental_seeking = "yes" | |
| autocenter_mode = "yes" | |
| header_visibility = "yes" | |
| statusbar_visibility = "yes" |
| ;; Jack's emacs config | |
| ;; 8/14/14 ~ | |
| ;; "change will come" | |
| ;;; Code: | |
| ; testing theme | |
| ;;(add-to-list 'custom-theme-load-path "~/.emacs.d/themes/caroline-theme/") | |
| ;;(add-to-list 'load-path "~/.emacs.d/themes/caroline-theme/") | |
| ;;(load-theme 'caroline t) |
| # Path to your oh-my-zsh installation. | |
| export ZSH=$HOME/.oh-my-zsh | |
| # Set name of the theme to load. | |
| # Look in ~/.oh-my-zsh/themes/ | |
| # Optionally, if you set this to "random", it'll load a random theme each | |
| # time that oh-my-zsh is loaded. | |
| ZSH_THEME="af-magic" | |
| # Uncomment the following line to use case-sensitive completion. |
| #!/usr/bin/perl | |
| use warnings; | |
| use strict; | |
| use Switch; | |
| use Modern::Perl '2014'; | |
| use LWP::Simple; | |
| use JSON; | |
| use Data::Dumper; |
| # jack tmux conf | |
| set status-utf8 on | |
| set utf8 on | |
| # unbind C-b and go emacs style with C-x | |
| unbind C-b | |
| set -g prefix C-x | |
| bind C-x send-prefix | |
| set-option -g default-terminal "screen-256color" #"xterm-256color" # "screen-256color" |
| #!/usr/bin/perl -w | |
| # List Boomerang tv listings | |
| use strict; | |
| use URI; | |
| use LWP::Simple; | |
| use Web::Scraper; | |
| use Data::Dumper; | |
| use Encode; |
| #!/usr/bin/perl | |
| # TL stream scraper ! | |
| use strict; | |
| use URI; | |
| use LWP::Simple; | |
| use Web::Scraper; | |
| use Data::Dumper; | |
| use Encode; |