Skip to content
View handerson's full-sized avatar

Organizations

@blacksnowmedia
Block or Report

Block or report handerson

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 Loading

  1. phpYoutubeDLWebUI phpYoutubeDLWebUI Public

    Forked from martinloren/Youtube-dl-WebUI-QNAP

    phpYoutubeDLWebUI is a small web interface for youtube-dl command. Designed to be used on a QNAP NAS, but should work anywhere youtube-dl, ffmpeg, and php can run.

    PHP 3

  2. heathanderson.net heathanderson.net Public

    My personal site/blog built with Harp

    HTML 1

  3. harp-blog-example harp-blog-example Public

    A Simple Blog Example for Harp with basic pagination, rss feed, and syntax highlighting

    EJS

  4. Get URL Parameters values with jQuery Get URL Parameters values with jQuery
    1
    // from http://jquery-howto.blogspot.com/2009/09/get-url-parameters-values-with-jquery.html
    2
    $.extend({
    3
      getUrlVars: function(){
    4
        var vars = [], hash;
    5
        var hashes = window.location.href.slice(window.location.href.indexOf('?') + 1).split('&');
  5. Simple AJAX Polling jQuery Plugin Simple AJAX Polling jQuery Plugin
    1
    //Simple AJAX Polling jQuery Plugin
    2
    // example usage:
    3
    /* $.ajaxPoll({
    4
            url: "/path",
    5
            type: "GET",
  6. How to setup the MySQL client and My... How to setup the MySQL client and MySQLDump client on Mac OS x from MySQL Workbench
    1
    #MySQL Client
    2
    ln -s /Applications/MySQLWorkbench.app/Contents/Resources/mysql /usr/bin/mysql
    3
    #MySQL Dump
    4
    ln -s /Applications/MySQLWorkbench.app/Contents/Resources/mysqldump /usr/bin/mysqldump
    5