Skip to content

Instantly share code, notes, and snippets.

@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 / 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 / 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 / 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 / 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 / .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))