Skip to content
View mkhalid03's full-sized avatar

Block or report mkhalid03

Report abuse

Contact GitHub support about this user’s behavior. Learn more about reporting abuse.

Report abuse

Pinned Loading

  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
     *