Skip to content
View Kcazer's full-sized avatar

Block or report Kcazer

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. A tiny phone number validator A tiny phone number validator
    1
    /**
    2
     * Declare all phone area code that have the specific length
    3
     * - [key] : length of the local part of the phone number (0 if unknown)
    4
     * - [val] : list of area codes for which local part has the given length
    5
     *
  2. Quick and dirty method to display a ... Quick and dirty method to display a video as favicon
    1
    ({
    2
      icon: null,
    3
      video: null,
    4
      canvas: null,
    5
      context: null,
  3. Simple implementation of MT19937 Simple implementation of MT19937
    1
    <?php
    2
    
                  
    3
    class MT19937 {
    4
        protected $state = [];
    5
        protected $index = 624;