Skip to content
View lukesalisbury's full-sized avatar
Block or Report

Block or report lukesalisbury

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. luxengine luxengine Public

    Flexible 2D Game Engine

    C++ 11 4

  2. Wrapper around XHR or Fetch, allows ... Wrapper around XHR or Fetch, allows for automatic retrying of request. Single Callback function passing XMLDocument, JSON, string or Error object type
    1
    /* WebRequest */
    2
    /* Request Object {
    3
     *  type - POST/GET
    4
     *  dataType - Returned Data Type
    5
     *  url - the URL (On GET request, URL() will ignore data
  3. Javascript: Check to Select Element ... Javascript: Check to Select Element is not disabled, and move to enable element if required
    1
    // Return true if selected element is not disabled, if it is disabled, 
    2
    // the selected element will move to the first non disabled element if possible
    3
    HTMLSelectElement.prototype.validateElement = function () {
    4
    	if (this.selectedIndex != -1) {
    5
    		if (!this.children[this.selectedIndex].disabled) {
  4. fetchtv fetchtv Public

    Downloads recording from a FetchTV STB (Aus)

    C++ 1