Skip to content
View himitsu-fushigi's full-sized avatar
πŸ’­
I may be slow to respond.
πŸ’­
I may be slow to respond.
Block or Report

Block or report himitsu-fushigi

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
himitsu-fushigi/README.md

Hi there πŸ‘‹

  • πŸ”­ I’m currently working on MeroBhav, Dukan, Blood Project πŸ”₯
  • 🌱 I’m currently learning Eth.build, Core DSA, Session Replay Analytics, and Core Blockchain and it's protocol development. 🎹
  • πŸ‘― I’m looking to collaborate on Blockchain Projects specially Solidity(Intermediate) and Rust projects(Beginner). πŸš€
  • πŸ’¬ Ask me about JS, Node.js, React.js, Solidity, C
  • πŸ“« How to reach me: himitsu.fushigi.07.26@protonmail.com
  • πŸ˜„ Pronouns: he/him/his
  • ⚑ Fun fact: I code when I'm bored. πŸ˜‚

Himitsu Fushigi's Dev Card

Pinned

  1. Initialize the instance of AWS - Ubu... Initialize the instance of AWS - Ubuntu for Hyper Ledger Fabric
    1
    #!/bin/sh
    2
    # make sure the .pem or .cer is in the respsective directory
    3
    cd "Documents/Hash Technologies/Hyper Ledger Fabric" && ssh -i "HyperLedgerFabric.cer" ubuntu@ec2-18-188-175-34.us-east-2.compute.amazonaws.com
  2. Dukan Dukan Public

    Ecommerce Design πŸ› made in React.js and Context API. πŸ”₯

    JavaScript

  3. Auth0-React-Basic Auth0-React-Basic Public

    Traditional Authentication has always been pain in the ass, and here is the Auth0 basic authentication with React done painlessly. πŸš€

    JavaScript 2

  4. BlockchainWithFrontend.js BlockchainWithFrontend.js
    1
    // Here's how we would access our contract:
    2
    var abi = /* abi generated by the compiler */
    3
    var ZombieFactoryContract = web3.eth.contract(abi)
    4
    var contractAddress = /* our contract address on Ethereum after deploying */
    5
    var ZombieFactory = ZombieFactoryContract.at(contractAddress)
  5. 13x54n/crypto-port.finance 13x54n/crypto-port.finance Public

    Platform where user can list their favorite crypto currencies or token and can analyze price manipulations. πŸͺ™

    JavaScript 3

  6. GuessNumber.rs GuessNumber.rs
    1
    // @dev cargo doc --open will build a documentation of dependencies and their methods
    2
    // @dev alike C,C++ input and output is from standard io library
    3
    // @dev std has many features but this time we imported for input feature
    4
    use std::io;
    5