Skip to content

Instantly share code, notes, and snippets.

View loganom's full-sized avatar

Logan McCamon loganom

View GitHub Profile
@loganom
loganom / object-watch.js
Last active August 29, 2015 14:26 — forked from eligrey/object-watch.js
object.watch polyfill in ES5
/*
* object.watch polyfill
*
* 2012-04-03
*
* By Eli Grey, http://eligrey.com
* Public Domain.
* NO WARRANTY EXPRESSED OR IMPLIED. USE AT YOUR OWN RISK.
*/
@loganom
loganom / TodayInHistory.pm
Last active January 2, 2016 00:29
Relevant snippet of TodayInHistory.pm
#EXCERPT FROM TodayInHistory.pm
my $uri = "http://history.com/this-day-in-history/";
my $scraper = scraper {
process "div.article.copy.four-under-grey > p", lead => 'TEXT';
process "div.mod.also-today > dl > dd", "list[]" => scraper {
process 'dd', body => 'TEXT';
process 'dd > a', link => '@href';
}