Skip to content
View kaitwalla's full-sized avatar

Highlights

  • Pro
Block or Report

Block or report kaitwalla

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. jq-svglite jq-svglite Public

    A VERY lightweight (both in size and functionality) jQuery plugin for basic SVG manipulations. Best used for maps when you don't want to bother with RaphaelJS.

    HTML 1 2

  2. An AJAX validator mini-library that ... An AJAX validator mini-library that can be used with PristineJS
    1
    /** usage */
    2
    
                  
    3
    var form = document.getElementById('formId');
    4
    var ajaxValidator = AjaxValidator(form);
    5
    ajaxValidator.add_field('fieldId', {url: '/url/to/validate/againt/{value}', message: 'Message to show user if it doesn\'t validate});
  3. Make Vagrant Great Again, or: Down I... Make Vagrant Great Again, or: Down Is the Frigging Antonym of Up, and Other Useful Things.
    1
    # Better Vagrant Commmands
    2
    
                  
    3
    The purpose of this shell command is to make the vagrant commands 
    4
    
                  
    5
    1) slightly easier to use if you're not already in the Vagrant directory  
  4. PopOS enhanced session install.sh PopOS enhanced session install.sh
    1
    #!/bin/bash
    2
    
                  
    3
    #
    4
    # This script is for Ubuntu 20.04 Focal Fossa to download and install XRDP+XORGXRDP via
    5
    # source.
  5. Small vanilla JS helper to create DO... Small vanilla JS helper to create DOM elements with one command
    1
    function DomEl(creationString) {
    2
        var elType = creationString.match(/^(\w+)*/g);
    3
        var classes = creationString.match(/\.([^\s\.\#\[]*)/g);
    4
        var id = creationString.match(/\#([^\s\.\[]*)/g);
    5
        var attributes = creationString.match(/\[([^\]]*)/g);
  6. AdmiralLink/hat-editor AdmiralLink/hat-editor Public

    A block-based rich-text editor

    JavaScript 4