Skip to content
View sagar-barapatre's full-sized avatar
πŸ’¬
Enjoying the journey ...!!
πŸ’¬
Enjoying the journey ...!!

Organizations

@GfG-IIIT-Bh
Block or Report

Block or report sagar-barapatre

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
sagar-barapatre/README.md

π‡πžπ₯π₯𝐨 𝐭𝐑𝐞𝐫𝐞, 𝐟𝐞π₯π₯𝐨𝐰 <πšŒπš˜πšπšŽπš›πšœ/>!

Sagar Barapatre | Twitter Sagar Barapatre | Twitter Sagar Barapatre


I'm Sagar.

I am Software Engineer at Siemens Healthineers and open-source lover. In the past, I worked as a Full Stack Developer at Hoick. I have experience working on various tech stacks in various domains like E-Commerce, Entertainment, Health-Care.

Pinned

  1. Decentralized-Storage-IPFS Decentralized-Storage-IPFS Public

    This is a decentralized IPFS/File storage system that connects to the blockchain via web3 and requires a crypto payment fee to add your Decentralized file to the system.

    JavaScript 1

  2. Ethereum-Quadratic-CrowdFunding Ethereum-Quadratic-CrowdFunding Public

    Quadratic Crowdfunding built on Ethereum Blockchain

    JavaScript 1

  3. Setup a Nodejs Backend Setup a Nodejs Backend
    1
    const express = require("express");
    2
    const app = express();
    3
    require("dotenv").config();
    4
    const mongoose = require("mongoose");
    5
    const user = require("./models/user");
  4. Authenticate using Passport.js Authenticate using Passport.js
    1
    const mongoose = require("mongoose");
    2
    const passportLocalMongoose = require("passport-local-mongoose");
    3
    
                  
    4
    const userSchema = new mongoose.Schema({
    5
      email: {
  5. Implementation of JWT in Node.js Implementation of JWT in Node.js
    1
    const express = require('express');
    2
    const jwt = require('jsonwebtoken');
    3
    const app = express();
    4
    
                  
    5
    app.get('/api',(req,res) =>{
  6. Web3.js Boilerplate code Web3.js Boilerplate code
    1
    import NFTContractBuild from 'contracts/NFT.json';
    2
    import Web3 from 'web3';
    3
    
                  
    4
    let selectedAccount;
    5
    let isInitialized = false;