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

Block or report phcorp

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. janalis/doctrineviz janalis/doctrineviz Public

    Render a graphical representation of a Doctrine2 mapped database.

    PHP 4 1

  2. janalis/dockshredder janalis/dockshredder Public

    File shredder for Mac OS X

    Objective-C 8 3

  3. Symfony command that generates dot u... Symfony command that generates dot using doctrine graphviz visitor
    1
    <?php
    2
    
                  
    3
    declare(strict_types=1);
    4
    
                  
    5
    namespace App\Command;
  4. Polyfill for apple-touch-startup-image Polyfill for apple-touch-startup-image
    1
    /* global window, Image */
    2
    
                  
    3
    /**
    4
     * Class AppleTouchStartupImage.
    5
     *
  5. Vanilla Javascript FormData to object Vanilla Javascript FormData to object
    1
    /*
    2
     * Converts FormData to object.
    3
     *
    4
     * @param {FormData} data
    5
     *   To convert.
  6. Emulate dragging on a desktop device Emulate dragging on a desktop device
    1
    const IGNORED_SELECTOR = 'input, label, select, textarea, button, fieldset, legend, datalist, output, option, optgroup';
    2
    const SCROLLABLE_SELECTOR = '.drag-to-scroll';
    3
    
                  
    4
    /**
    5
     * Transform mouse drag gesture to scroll.