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

Block or report mkhalid03

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

  1. desygner desygner Public

    PHP 1

  2. Basic intro to TypeScript (From YouT... Basic intro to TypeScript (From YouTube Crash Course)
    1
    // Basic Types
    2
    let id: number = 5
    3
    let company: string = 'Traversy Media'
    4
    let isPublished: boolean = true
    5
    let x: any = 'Hello'
  3. Decrypt Base64 encoded string using PHP Decrypt Base64 encoded string using PHP
    1
    <?php
    2
    
                  
    3
    /**
    4
     * Returns the decrypted text.
    5
     *