Skip to content
View vyspiansky's full-sized avatar

Block or report vyspiansky

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. golang-with-tests golang-with-tests Public

    Learn Go with tests

    Go

  2. introduction-to-web-development introduction-to-web-development Public

    Introduction to Web development

    CSS

  3. react-from-zero react-from-zero Public

    Forked from kay-is/react-from-zero

    A simple (99% ES2015 less) tutorial for React

    HTML

  4. english-verb-tenses-quiz english-verb-tenses-quiz Public

    Mixed English verb tenses quiz with answers

    JavaScript 1

  5. PHP: get image src attribute (regula... PHP: get image src attribute (regular expression)
    1
    <?php
    2
    // Source: http://goo.gl/qyLFbg
    3
    
                  
    4
    $html = '<img border="0" src="/images/image.jpg" alt="Image" width="100" height="100" />';
    5
    
                  
  6. PHP: convert object / array to tree ... PHP: convert object / array to tree structure
    1
    <?php
    2
    /**
    3
     * The below functions take the single level array of items as an argument
    4
     * and turn it into a multidimensional array structure (tree),
    5
     * where each item has an array of sub-items.