Skip to content
View imjared's full-sized avatar

Organizations

@monographhq
Block or Report

Block or report imjared

Block user

Prevent this user from interacting with your repositories and sending you notifications. Learn more about blocking users.

You must be logged in to block users.

Please don't include any personal information such as legal names or email addresses. Maximum 100 characters, markdown supported. This note will be visible to only you.
Report abuse

Contact GitHub support about this user’s behavior. Learn more about reporting abuse.

Report abuse

Pinned

  1. A CasperJS script that crawled a lis... A CasperJS script that crawled a list of links on then scraped the relevant content on each page and output it to a nicely formatted XML file. Sure beats database dumps/SQL manipulation, in my opinion.
    1
    /*jshint strict:false*/
    2
    /*global CasperError console phantom require*/
    3
    
                  
    4
    /**
    5
     * grab links and push them into xml
  2. ticketflyTotal.js ticketflyTotal.js
    1
    var total = 0;
    2
    
                  
    3
    $('.results-list tr').not('thead tr').each( function() {
    4
        var amount = $(this).find('td').eq(4).text();
    5
        amount = amount.replace('$', '');
  3. source for codepen.io/imjared/full/a... source for codepen.io/imjared/full/athzf.
    1
    @import "mathsass/dist/math.scss";
    2
    
                  
    3
    $radius: 12px;
    4
    $colors : (
    5
      1: #746f86,
  4. clickholetags clickholetags Public

    Parse tags from clickhole pieces and tweet 'em

    JavaScript 1