Skip to content
View jojijacobk's full-sized avatar
🎯
Focusing
🎯
Focusing
Block or Report

Block or report jojijacobk

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. JavaScript-Knowledge JavaScript-Knowledge Public

    Deep dive into JavaScript Engine, JavaScript Runtime Environment, DOM, "this" operator etc

    4 1

  2. Setup stack of (PHP, Nginx & MySQL) ... Setup stack of (PHP, Nginx & MySQL) on AWS
    1
    ### Yum Install PHP
    2
    ```bash
    3
    # For Amazon Linux Image in AWS EC2, enable yum repository for amazon linux extras to install PHP
    4
    # Enable PHP 7.3 repo
    5
    sudo amazon-linux-extras enable php7.3
  3. Access-SSO-Protected-Data Access-SSO-Protected-Data Public

    Read/Write data on single-sign-on protected pages with a single line of script.

    PHP 1

  4. Blockchain-Knowledge Blockchain-Knowledge Public

    Glimpse on the blockchain technology, and how does it work.

    2

  5. To simulate speech from browser usin... To simulate speech from browser using all the voices installed in your computer
    1
     // To simulate speech from browser using all the voices installed in your computer
    2
     
    3
     Array.from(window.speechSynthesis.getVoices()).forEach(voice => {
    4
          console.log(voice);
    5
          const msg = new SpeechSynthesisUtterance();
  6. CSS Media Queries for Desktop, Table... CSS Media Queries for Desktop, Tablet, Mobile.
    1
    
                  
    2
    /* 
    3
      ##Device = Desktops
    4
      ##Screen = 1281px to higher resolution desktops
    5
    */