Skip to content
View kaitwalla's full-sized avatar

Highlights

  • Pro

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 Loading

  1. 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});
  2. 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  
  3. 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.
  4. 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);
  5. artwalla artwalla Public

    Display art from the internet on the wall

    JavaScript

  6. mini-mart mini-mart Public

    A simple key-value store w/ HTTP API and basic FE manager

    PHP