Skip to content

Instantly share code, notes, and snippets.

@xjackk
xjackk / .emacs
Last active October 28, 2019 22:12
.emacs (booz allen computer verz)
;;; package --- Jack's emacs config
;;; Commentary:
;; "change will come"
;; 8/14/14 ~
;;; Code:
;; Start Melpa!
(require 'package)
(let* ((no-ssl (and (memq system-type '(windows-nt ms-dos))
@xjackk
xjackk / cats.coffee
Created February 19, 2016 08:51
Random Cat Picture
getCats = ->
$.get 'http://thecatapi.com/api/images/get?format=xml&size=med&results_per_page=20', (data) ->
xmlimages = $(data).find 'image'
randomimage = xmlimages[Math.floor(Math.random() * xmlimages.length)]
imageurl = $(randomimage).find("url").text()
@xjackk
xjackk / comedycentral.pl
Created November 4, 2015 00:58
Comedy Central TV Listings
#!/usr/bin/perl -w
# Comedy central listings
use strict;
use URI;
use LWP::Simple;
use Web::Scraper;
use Data::Dumper;
use Encode;
@xjackk
xjackk / bttransit.pl
Last active January 28, 2016 20:18
Blacksburg Transit Times
#!/usr/bin/perl
##
## Author: jrk (jaaacckz1@gmail.com)
##
## For my fellow Virginia Tech geeks.
## Get the bus, on time.
##
## Disclaimer : If you get a 400 / POST error, the route you are trying to use does not actually exist.
##
@xjackk
xjackk / sevendays.pl
Created August 25, 2015 21:08
Top usernames
#!/usr/bin/perl
# Scrape top usernames last week
use warnings;
use strict;
use Encode;
use URI;
use Web::Scraper;
@xjackk
xjackk / cartoonnetwork.pl
Created August 24, 2015 19:49
Cartoon Network TV Listings
#!/usr/bin/perl -w
# List Cartoon Networking TV Listings.
# Because I am bored, and watch cartoons..
use strict;
use URI;
use LWP::Simple;
use Web::Scraper;
use Data::Dumper;
use Encode;
@xjackk
xjackk / teamliquid.pl
Last active November 2, 2015 00:29
teamliquid top stream scraper
#!/usr/bin/perl
# TL stream scraper !
use strict;
use URI;
use LWP::Simple;
use Web::Scraper;
use Data::Dumper;
use Encode;
@xjackk
xjackk / boomerang.pl
Last active December 11, 2015 04:28
boomerang tv listings
#!/usr/bin/perl -w
# List Boomerang tv listings
use strict;
use URI;
use LWP::Simple;
use Web::Scraper;
use Data::Dumper;
use Encode;
@xjackk
xjackk / about.md
Last active August 29, 2015 14:17
The Diary of Anne Frank

The Diary of Anne Frank

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.

Install

To install the book simply run.

perl install.pl
@xjackk
xjackk / tmux.conf
Created March 10, 2015 16:24
tmux.conf
# 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"