Skip to content
View kay-is's full-sized avatar
🚮
!!
🚮
!!

Highlights

  • Pro
Block or Report

Block or report kay-is

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. react-from-zero react-from-zero Public

    A simple (99% ES2015 less) tutorial for React

    HTML 4.6k 406

  2. web3-from-zero web3-from-zero Public

    A basic introduction to web3 and its concepts, using the JavaScript you already know.

    HTML 327 29

  3. awesome-tagged-templates awesome-tagged-templates Public

    A list of libraries and learning resources for ES2015 tagged template literals

    96 5

  4. warp-contracts-plugin-zod warp-contracts-plugin-zod Public

    TypeScript 3

  5. Using Lit Protocol with Web3Auth Using Lit Protocol with Web3Auth
    1
    <!DOCTYPE html>
    2
    
    
    3
    <title>Using Lit Protocol with Web3Auth</title>
    4
    
    
    5
    <script src="https://unpkg.com/@web3auth/[email protected]/dist/modal.umd.min.js"></script>
  6. localStorage.js localStorage.js
    1
    // Save one string
    2
    let string = "a";
    3
    
    
    4
    // A string can be written directly into localStorage
    5
    localStorage.setItem("myKey", string);