Sanjeev Kumar

About Me.

Sr. Software Developer

Experienced Mobile application and Web Development with a demonstrated history of working in the information technology and services industry. Skilled in React Native, Javascript, ReactJs, NextJs, Flutter, Solidity, BlockChain, MySQL, PHP. Strong engineering professional with a Bachelor of Technology (B.Tech.) focused in Computer Technology/Computer Systems Technology from Bhagalpur College of Engineering.

Summary
  • 7+ years of experience in the IT industry as Web and Cross-Platform Mobile Development using React Native, Flutter as well as experience in Kotlin mobile app
  • Good in client scripting languages like JavaScript, ReactJS, React Native.
  • Good Understanding NLP Processing like Voice to Text and Text to Voice COnversation using Deepgram and eleven App.
  • Good knowledge in testing like unit Testing as well as Automation Testing using detox.
  • Good knowledge in state management library like redux.
  • Comprehensive Knowledge of various tools such as Visual Studio, Android Studio, and Xcode
  • Working With React Functional Component and Class Component.
  • Experience in Application programming interface API calls Post/Get/Put methods using Axios and fetch and token-based authentication using jwt.
  • Significant experience in development tools and IDEs like Visual Studio Code.
  • Solid Knowledge in Debugging using browser developer tool’s (chrome dev Tools, react native debugger, Flipper etc...) for solving UI scripting errors and providing scripting /code solutions.
  • Worked in various version control systems – GIT.
  • Interacted with clients to understand their existing applications and design the site according to their system requirements.
  • Mobile Application Developer experience in Software Development Life Cycle (SDLC) including analysis, design, development, and testing, deployment. Responsive design for different mobiles and platforms
  • Experience of working in Creating Wrapper class.

Roles and Responsibilities
  • Responsible for developing specified modules.
  • Strong knowledge of React native & Flutter and how to deal with different screen sizes.
  • Responsible for bug fixing and unit testing the application.
  • Participate in team meetings and provide status reports.
  • Plan the activity well and proactively do things to meet the deadlines.
  • Involved in managing and supporting multiple projects.
  • Responsible for interacting with clients and resolving their issues.
  • Involved in Requirement Analysis and feasibility studies.
  • Responsible for coding and development of modules that adhere to coding standards.

Personal Information

  • NameSanjeev Kumar
  • DOB14-01-1995
  • ResidenceVibhutipura Extension, Doddandakundi, Bangalore, 540037
  • Emailprsanjeev02@gmail.com
  • Phone7004798516

Technical Skills


Certification

  • Blockchain A-Z™: Learn Blockchain, Cryptos & Smart Contracts

    Udemy

    Description: Learn key Blockchain concepts, intuition, and practical training to get you quickly up to speed with all things Crypto and blockchain-related.
    Issued: July 2023
    Certification ID: UC-bdff91c8-1543-432e-90ca-bidaa75bcad3

  • Ethereum and Solidity: The Complete Developer's Guide

    Udemy

    Description: Ethereum and Blockchain technology is the most disruptive force in years. Companies cannot hire developers who understand blockchain technologies fast enough, but there are a tiny number of resources published to help you truly understand what blockchains are used for, let alone build apps with them. That's the purpose of this course: to be the best resource online for learning about Ethereum, blockchains, and how to build apps with this new technology. The development community is still figuring out the best way to use Ethereum in the creation of new and exciting apps. I spent a tremendous amount of time to research and create best practice for interfacing with Ethereum from Javascript.
    Issued: December 2022
    Certification ID: UC-4c080bab-7a0e-4ab6-8236-7fbe5949c490

Services

Web Development

5+ years of experience as Web Developer. Experience of Interacting with the Client & Understanding requirements. Experience of Designing the layout, UI while achieving Customer/user Friendliness.

Mobile Application

Created Reusable react presentation and container components. Good understanding and usage of states and props. Implemented EcmaScript6 (ES6) arrow functions, constants, block-scope variables, class inheritance.

My Resume.

Experience

  • Sr. Software Developer

    Aspire Systems Pvt. Ltd

    Build Mobile Application with React native and Integrate API.
    Worked on code Spilitting and use Resuable Componants
    Understand Flutter concepts and Create open chat Application using firebase
    Integrate Video Chat Application using WebRTC
    Working on Widgets and Plugin Integration.

    Present July-2022
  • React Native Developer

    Cityfurnish Pvt Ltd.

    Build Mobile Application with React native.
    Involved in Various Projects Ecommerce and worked on all the Devices.
    Mananging and Uploading Application form App-store and Play-store
    Experience in Cross-Platform Mobile Development using React Native + Redux based mobile app

    July-2022 March-2021
  • Web and Mobile Application Developer

    Justbooks Solution Pvt. Ltd.

    Used React concepts like JSX (JavaScript Syntax Extension), components, state and props.
    Building reusable components and front-end libraries for future use.
    Creating User Interface using React native Paper. Integrating API in React Native app.
    Build websites using VueJs and NextJs.
    activity involved with client meetings.

    Feb-2021 Feb-2019
  • Wordpress and Web Developer

    Kreative Digital Solution Pvt. Ltd.

    Design new features for existing websites.
    Developing and creating PHP MySQL applications as per the specifications.
    Troubleshot problems with PHP and other web technologies.

    Feb-2019 Jan-2018

Coding Skills

Javascript

82%

React Native

80%

Flutter

50%

React.Js / Next.Js

70%

Node.Js

50%

Solidity and BlockChain

60%

HTML/CSS /BootStrap

90%

MongoDB/MySQL

72%

Git/Bitbucket

80%

Education

  • B.Tech[8.4]

    Computer Science and Engineering
    Bhagalpur College Of Engineering, Bhagalpur, Bihar
    2017 2013
  • 12th Science[75%]

    College Of Commerce, Patna, India
    2012 2010
  • 10th Math [82%]

    Marwari High School, Patna, India
    2010 2009

Portfolio.

  • All
  • Website
  • Mobile

My Projects.

UPLOAD SMART CONTRACT

Code snippets.

Let's Code Together

Web3.0 Ecommerce :

    // SPDX-License-Identifier: MIT

    pragma solidity ^0.8.7;
    
    contract Web3Amazon {
        address public owner;
    
        struct Product {
            uint256 ID;
            string name;
            string image;
            uint256 price;
            uint256 rating;
            uint256 stock;
        }
        mapping(uint256=>Product) public products;
    
        struct Order {
            uint time;
            Product product;
        }
        mapping(address=>uint256) public orderCount;
        mapping(address=>mapping(uint256=>Order)) public orders;
    
    
        event List(string name, uint256 price, uint256 quantity);
        event Buy(address buyer, uint256 orderID, uint256 productID);
    
        constructor() {
            owner = msg.sender;
        }
    
        modifier onlyOwner {
            require(msg.sender == owner, "You don't have access to List Products!");
            _;
        }
    
        modifier checkStock(uint256 _stock) {
            require(_stock > 0, "Product is Out Of Stock!");
            _;
        }
    
        function listProduct(
            uint256 _ID, 
            string memory _name, 
            string memory _image, 
            uint256 _price, 
            uint256 _rating, 
            uint256 _stock
        ) public onlyOwner {
            products[_ID] = Product(_ID, _name, _image, _price, _rating, _stock);
            emit List(_name, _price, _stock);
        }
    
        function buyProduct(uint256 _ID) public payable {
            Product memory product = products[_ID];
    
            require(msg.value >= product.price, "Product is Out Of Stock!");
            require(product.stock > 0, "Product is Out Of Stock!");
    
            Order memory order = Order(block.timestamp, product);
            orderCount[msg.sender]++;
            orders[msg.sender][orderCount[msg.sender]] = order;
    
            products[_ID].stock = product.stock - 1;
    
            emit Buy(msg.sender, orderCount[msg.sender], _ID);
        }
    }
              
Election Voating Smart Contract :

  // SPDX-License-Identifier: MIT

  pragma solidity ^0.8.7;

  contract Election {
      struct Candidate {
          uint id;
          string name;
          uint voteCount;
      }

      mapping(address=>bool) voters;

      mapping(uint=>Candidate) public candidate;
      uint public candidateCount = 0;

      constructor() {
          addCandiate("BJP");
          addCandiate("Congress");
      }

      modifier verifyVoters() {
          require(!voters[msg.sender], "You have alreday done process of voating!!");
          _;
      }

      function addCandiate(string memory _name) private {
          candidateCount++;
          candidate[candidateCount] = Candidate(candidateCount, _name, 0);
      }

      function vote(uint _candidateId) public verifyVoters {
          voters[msg.sender] = true;
          candidate[_candidateId].voteCount++;
      }
  }
              
Hotel Room Booking Smart Contract :

    // SPDX-License-Identifier: MIT

    pragma solidity ^0.8.8;
    
    contract Hotel {
    
        enum Status { Occupied, Vacent }
        Status currentStatus;
    
        address public owner;
    
        constructor() {
            owner = msg.sender;
            currentStatus = Status.Vacent;
        }
    
        modifier roomStatusModifier() {
            require(currentStatus == Status.Vacent, "Already Occupied!");
            _;
        }
    
        modifier paymentStatusModifier() {
            require(msg.value > 0.01 ether, "You do not have enfough money!!");
            _;
        }
    
        receive() external payable roomStatusModifier paymentStatusModifier {
            payable(owner).transfer(msg.value);
            currentStatus = Status.Occupied;
        }
    }
    
                
              
Upload Image to IPFS Server and share with another address :

    // SPDX-License-Identifier: MIT

    pragma solidity ^0.8.8;
    
    contract Upload {
    
        struct Access {
            address user;
            bool access;
        }
        mapping(address=>string[]) value;
        mapping(address=>mapping(address=>bool)) ownership;
        mapping(address=>Access[]) accessList;
        mapping(address=>mapping(address=>bool)) previousData;
    
        function add(address _user, string memory url) external {
            value[_user].push(url);
        }
    
        function allow(address user) external {
            ownership[msg.sender][user] = true;
            if(previousData[msg.sender][user]) {
                for(uint i=0;i < accessList[msg.sender].length; i++) {
                    if(accessList[msg.sender][i].user == user) {
                        accessList[msg.sender][i].access = true;
                    }
                }   
            } else {
                accessList[msg.sender].push(Access(user, true));
                previousData[msg.sender][user] = true;
            }
        }
    
        function disallow(address user) public {
            ownership[msg.sender][user] = false;
            for(uint i=0;i < accessList[msg.sender].length; i++) {
                if(accessList[msg.sender][i].user == user) {
                    accessList[msg.sender][i].access = false;
                }
            }
        }
    
        function display(address _user) external view returns(string[] memory) {
            require( _user == msg.sender || ownership[_user][msg.sender], "You don't hace access");
            return value[_user];
        }
    
        function shareAccess() public view returns(Access[] memory) {
            return accessList[msg.sender];
        }
    }
    
                
              
Fund Me :
  PriceConvertor.sol

    // SPDX-License-Identifier: MIT
    pragma solidity ^0.8.0;

    import "@chainlink/contracts/src/v0.8/interfaces/AggregatorV3Interface.sol";

    library PriceConvertor {
      function getPrice() internal view returns(uint) {
          // ABI
          // Address 0xD4a33860578De61DBAbDc8BFdb98FD742fA7028e
          AggregatorV3Interface priceFeed = AggregatorV3Interface(0xD4a33860578De61DBAbDc8BFdb98FD742fA7028e);
          (,int price, , ,)=priceFeed.latestRoundData();
          return uint(price*1e10);

      }

      function priceConversionRate(uint ethAmount) internal view returns(uint) {
          uint ethPrice = getPrice();
          // 3000_000000000000000000 = ETH / USD Price
          // 1_000000000000000000 = ETH
          uint ethPriceInUsd = ( ethAmount * ethPrice ) / 1e18;
          return ethPriceInUsd;

      }

      function getVersion() internal view returns(uint) {
          AggregatorV3Interface priceFeed = AggregatorV3Interface(0xD4a33860578De61DBAbDc8BFdb98FD742fA7028e);
          return priceFeed.version();
      }
    }


  FundMe.sol

    // SPDX-License-Identifier: MIT

    pragma solidity ^0.8.0;

    import './PriceConvertor.sol';

    contract FundMe {
      using PriceConvertor for uint;

      uint public mimimumUsd = 10 * 1e18; // 1000000000000000000 ETH
      address[] public funders;
      mapping(address=>uint) public funderAddressToPrice;

      address public owner;

      constructor() {
          owner = msg.sender;
      }


      function fund() public payable {
          // want to send minimum USD for fund
          // require(priceConversionRate(msg.value) > mimimumUsd, "don't have enfough amount");

          // with library we need to call something like below
          // require(priceConversionRate(msg.value) > mimimumUsd, "don't have enfough amount"); // or
          require(msg.value.priceConversionRate() > mimimumUsd, "don't have enfough amount"); // here bydefault msg.value is first paramter if we need to send second Params use msg.value.priceConversionRate(234)

          funders.push(msg.sender);
          funderAddressToPrice[msg.sender] = msg.value;
      }

      function withdraw() public _onlyOwner {
          for(uint fundIndex = 0; fundIndex < funders.length; fundIndex++) {
              address funder = funders[fundIndex];
              funderAddressToPrice[funder] = 0;
          }
          funders = new address[](0);

          (bool callSuccess, ) = payable(msg.sender).call{ value : address(this).balance}("");
          require(callSuccess, "Transfer Failed");
      }

      modifier _onlyOwner() {
          require(owner == msg.sender, "Your are not owner!");
          _;
      }

      receive() external payable {
          fund();
      }

      fallback() external payable {
          fund();
      }
    }
    
                
              
Parent Diseases Payable Smart Contract :

    // SPDX-License-Identifier: MIT

    pragma solidity ^0.8.7;
    
    contract Donation {
        address owner;
        uint balance;
        bool isDiseases;
    
        constructor() payable {
            owner = msg.sender;
            balance = msg.value;
            isDiseases = false;
        }
    
        address payable[] walletAddress;
        mapping(address => uint) inheritance;
    
        modifier onlyOwner() {
            require(owner == msg.sender, "You don't have access to Set Inheritance!!");
            _;
        }
    
        modifier verifyDiseases() {
            require(isDiseases == true, "You don't have any Diseases!!");
            _;
        }
    
        function setInheritance(address payable _walletAddress, uint _amount) public onlyOwner{
            walletAddress.push(_walletAddress);
            inheritance[_walletAddress] = _amount;
        }
    
        function payout() private verifyDiseases {
            for(uint i=0; i < walletAddress.length; i++) {
                walletAddress[i].transfer(inheritance[walletAddress[i]]);
            }
        }
    
        function hasDiseases() public onlyOwner {
            isDiseases = true;
            payout();
        }
    }
    
                
              

Contact Me.

Let's Talk



Laksh Castle, Vibhutipura Extension, Doddandakundi, Bangalore, 540037
(+91) 7004798516