Skip to content
View axiac's full-sized avatar

Block or report axiac

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. code-golf code-golf Public

    My solutions for problems posted on https://codegolf.stackexchange.com/questions/tagged/code-golf

    PHP 1

  2. A PHP bug reported in 2011: https://... A PHP bug reported in 2011: https://bugs.php.net/bug.php?id=55701. Four years and four versions later, the bug is still there, affecting versions 5.3, 5.4, 5.5, 5.6 and 7.0
    1
    <?php
    2
    error_reporting(E_ALL & ~E_NOTICE);
    3
    ini_set('display_errors', '1');
    4
    
                  
    5
    
                  
  3. backstage backstage Public

    Forked from backstage/backstage

    Backstage is an open platform for building developer portals

    TypeScript

  4. One-time script designed to "transpl... One-time script designed to "transplant" the history of PhpUnit MockObjects project into the PhpUnit repo as a branch
    1
    #!/bin/bash
    2
    #
    3
    # One-time script specifically designed to "transplant" a part of
    4
    # the PhpUnit MockObjects repo into the PhpUnit repo as a branch.
    5
    # @see https://github.com/sebastianbergmann/phpunit/issues/3103
  5. A unit testing framework in a tweet. A unit testing framework in a tweet.
    1
    <?php
    2
    function it($m,$p){echo ($p?'✔︎':'')." It $m\n"; if(!$p){$GLOBALS['f']=1;}}function done(){if(@$GLOBALS['f'])die(1);}
  6. php-src php-src Public

    Forked from php/php-src

    The PHP Interpreter

    C