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

Organizations

@MeroBhav
Block or Report

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

  1. File Server in Node.js without DB in... File Server in Node.js without DB installation.
    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 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 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 L1Playpoint/ICO-UI Public

    ICO UI Landing Page for early investors, gamers.

    JavaScript 3 3

  5. File-System-Server File-System-Server Public

    FS Server without DB implementation.

    JavaScript 3

  6. Bash File for Setting base for Node.... Bash File for Setting base for Node.js setup on AWS EC2. The below bash file installs all required packages you just need to clone repo and install node_modules, configure .env and run on pm2. 😎 πŸš€
    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