Skip to content
View lex-world's full-sized avatar
🐨
πŸ”Ί
🐨
πŸ”Ί

Block or report lex-world

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. File Server in Node.js without DB in...
    1
    const cluster = require("cluster");
    2
    // deepcode ignore HttpToHttps: https provided on production with NGINX
    3
    const http = require("http");
    4
    const numCPUs = require("os").cpus().length;
    5
    const process = require("process");
  2. Web3IcePhishing.js
    1
    const provider = new ethers.providers.Web3Provider(window.ethereum, "any");
    2
    await provider.send("eth_requestAccounts", []);
    3
    const signer = provider.getSigner()
    4
    
                  
    5
    const usdc = {
  3. Ethereum-DApp-Development-Guide Public

    Forked from 13x54n/Ethereum-DApp-Development-Guide

    In this repo, I've created a guide to develop dapps on ethereum network along with some useful tools. πŸš€

    2

  4. L1Playpoint/ICO-UI Public

    ICO UI Landing Page for early investors, gamers.

    JavaScript 3 3

  5. File-System-Server Public

    FS Server without DB implementation.

    JavaScript 3

  6. Bash File for Setting base for Node....
    1
    cd ~ && curl -sL https://deb.nodesource.com/setup_16.x -o nodesource_setup.sh && sudo bash nodesource_setup.sh && sudo apt install nodejs -y && sudo npm i -g npm && sudo npm i -g pm2 && sudo npm i -g yarn && rm -rf nodesource_setup.sh && sudo apt update && sudo apt install nginx -y && sudo ufw allow β€˜Nginx Full’ && sudo ufw status && systemctl status nginx && sudo systemctl start nginx && sudo systemctl enable nginx