Techgeek

Techgeek

This is place where you will find right answers to questions. Place where Questions meet Answers

Task vs ValueTask – Ravindra Naik 22/03/2022

Task serves multiple purposes, but at its core it’s a “promise”, an object that represents the eventual completion of some operation. Task as a class is very flexible and has the following benefits:

http://ravindranaik.com/task-vs-valuetask/

Task vs ValueTask – Ravindra Naik March 22, 2022 ravindranaik Task vs ValueTask Task Task serves multiple purposes, but at its core it’s a “promise”, an object that represents the eventual completion of some operation. Task as a class is very flexible and has the following benefits: One can await it multiple times, by any numb...

Deploy smart contract with Truffle – Ravindra Naik 26/06/2021

Truffle is a development environment (providing a command-line tool to compile, deploy, test, and build), framework (providing various packages to make it easy to write tests, deployment code, build clients, and so on) and asset pipeline (publishing packages and using packages published by others) to build ethereum-based DApps.
Read more at http://ravindranaik.com/deploy-smart-contract-with-truffle/

Deploy smart contract with Truffle – Ravindra Naik June 26, 2021 ravindranaik Deploy smart contract with Truffle Introduction A world class development environment, testing framework and asset pipeline for blockchains using the Ethereum Virtual Machine (EVM), aiming to make life as a developer easier. SMART CONTRACT LIFECYCLE MANAGEMENT Truffle take...

Smart contracts in Blockchain – Ravindra Naik 26/06/2021

What is smart contract?

Smart contracts are simply programs stored on a blockchain that run when predetermined conditions are met. They typically are used to automate the ex*****on of an agreement so that all participants can be immediately certain of the outcome, without any intermediary’s involvement or time loss. They can also automate a workflow, triggering the next action when conditions are met.


Read more here http://ravindranaik.com/smart-contracts-in-blockchain/

Smart contracts in Blockchain – Ravindra Naik June 19, 2021 ravindranaik Smart contracts in Blockchain To understand the concept of “what is a smart contract?” consider the purchase of a chocolate bar from a vending machine. The buyer deposits change then presses the button corresponding to the selection. That button, mapped against that pa...

Introduction to Blockchain – Ravindra Naik 19/06/2021

Introduction to Blockchain

By definition, Blockchain is continuously growing list of records (blocks), which are linked to each other and secured using cryptography. Each block contains a cryptographic hash of the previous block, a timestamp, and transaction data.

As blocks each contain information about the block previous to it, they form a chain, with each additional block reinforcing the ones before it. Hence by design, blockchains are resistant to modification of their data because once recorded, the data in any given block cannot be altered retroactively without altering all subsequent blocks.


http://ravindranaik.com/introduction-to-blockchain/

Introduction to Blockchain – Ravindra Naik June 12, 2021 ravindranaik Introduction to Blockchain By definition, Blockchain is continuously growing list of records (blocks), which are linked to each other and secured using cryptography. Each block contains a cryptographic hash of the previous block, a timestamp, and transaction data. As block...