Social Icons

Showing posts with label blockchain. Show all posts
Showing posts with label blockchain. Show all posts

Wednesday, April 28, 2021

Technology Internals behind Blockchain Technology

I have erstwhile shared and uploaded a number of presentations on Blockchain technology and crypto crimes though. This presentation solely focuses on internals of blockchain technology and has additional details starting from scratch for newbies to develop an initial understanding of this awesome technology. Anyone with any clarifications on any slide may contact back at the email mentioned at end of the presentation. Also sharing a picture of my books peculiar to my blockchain exploring interest

Technology Internals behind Blockchain Technology by Anupam Tiwari on Scribd

Tuesday, April 27, 2021

Blockchain Forensics & Cryptocurrencies : NFSU FDP 09 April 2021

The School of Cyber Security and Digital Forensics, National Forensic Sciences University, Gandhinagar organised a 5 day online Faculty Development Program (FDP) on 'Advanced Trends in Digital Forensics' from 05 Apr-09 Apr 2021.The aim of this FDP was to promote research and strengthen the Digital Forensic Investigation Techniques which include topics like crime investigation, latest trends in Digital Forensics, Fake News Detection, and Drone & Crypto Forensics. I was a invited speaker here and am sharing my presentation deck here on blockchain and cryptocurrency forensics.

 



 

Cryptocurrency Forensics and Blockchain Technology by Anupam Tiwari on Scribd

Thursday, January 14, 2021

CQ 100: Meet India’s Most Influential Cyber Warriors

First post in this year...though little delayed comes as a pleasant surprise from the cyberosphere.....Sharing here the link of a post that has identified India’s most influential cyber warriors  and has listed me too....

https://www.the420.in/cq-100-meet-indias-most-influential-cyber-warriors-top-cyber-experts/

Screenshot as below:

Thursday, December 17, 2020

IIIT Dharwad FDP on Blockchain Technology: 04 Nov 2020

IIIT Dharwad conducted an FDP on blockchain under aegis of AICTE on 04 Nov 2020.I am sharing here webinar recording and the presentation of my sessions.

Blockchain Technology FDP at IIIT Dharwad by Anupam Tiwari on Scribd

Sunday, October 18, 2020

Workshop on Blockchain Technology and e-Governance: GNLU Center for Law and Technology

A one day Workshop on Blockchain Technology and e-Governance was organized by GNLU,Ahmedabad University through its GNLU Center for Law and Technology in collaboration with Gujarat Council on Science and Technology &  Department of Science and Technology, Government of Gujarat on 19 Sept 2020. The webinar link for the same is as below:

The presentation is available for download at the following link:

https://drive.google.com/file/d/1RT79-r5LhFXdbi2D_ZKgkwu8eH9v5225/view?usp=sharing

while also the scribd direct link for viewing is available as below:


Blockchain Technology and e-Governance by Anupam Tiwari on Scribd

Summer Internship Gurugram Police : Talk on Blockchain basics and Bitcoin crimes

Blockchain basics: Mechanic... by Anupam Tiwari

 

Sharing here a webinar presentation I gave in the Gurugram police summer internship on 27 June 2020.The webinar was attended by 400 plus participants. The link to the presentation pdf is given below:

https://drive.google.com/file/d/1K13ljAstX4oCqd4iMtGROqseyMJ8Rp8R/view?usp=sharing

and the certificate I got as below:



Saturday, May 02, 2020

Installation Bitcoin core on UBuntu 18.0.4 LTS : Bitcoin Mechanics -1

With this first post special to Bitcoin core,over next few months I intend to do some exploring on the bitcoin mechanics part.This basically means playing with the blocks and blockchain vide few python based scripts.Will start from the installation part followed by other posts on extracting info from bitcoin blockchain. This post basically is straight forward installation with the following commands.Screen shots for info :

Firstly install snapd with the following commands

sudo apt update
sudo apt install snapd

 
 click green button install

after this installation of snapd,one single command as follows:

sudo snap install bitcoin-core

The effected screenshots are seen below :


Once installed ,you can check on the terminal...should see three bitcoin applications by tabbing


While the GUI shows as below


When you run for the first time,the GUI notification pops for asking for location of default directory for storing blocks.


Thereafter the blocks start getting downloaded with status of files downloaded visible....


Blocks downloaded status is seen below...this downloading around 287 GB as on date will take time as per download speed available.


The location of the blocks being downloaded will be at /home/bitcoin_scripts/snap/bitcoin-core/common/.bitcoin/blocks where bitcoin_scripts is the user name.

Next post we will see whats inside the block....

Saturday, February 29, 2020

CAPT Bhopal Conference Presentation : BLOCKCHAIN-BITCOIN-CRIMES INTRODUCTION & What's it all about?

A copy of the presentation and talk that I gave at Central Academy for Police Training(CAPT) at Bhopal on 29 Feb 2020.The presentation covers a brief overview of what blockchain and bitcoin mean,how they work concluded by the crimes happening around them.


Few pics from the conference below




Monday, February 03, 2020

Installating Ganache-CLI : Ubuntu 18.04 LTS

Few screen shots below for reference and terminal commands produced for installing GANACHE-CLI.First we need to install npm ....

    1  sudo apt-get update
    2  sudo apt install npm
    3  sudo npm install -g ganache-cli
    4  ganache-cli -a




 The accounts created with details of public private keys

Thursday, January 02, 2020

Blockchain Technology Workshop : IIIT Raipur

In continuance of my earlier post here,herewith I share extract mentions of few dailies of the workshop conducted at IIIT Raipur

Click on image to enlarge

Click on image to enlarge

Click on image to enlarge

Monday, December 02, 2019

BOILERPLATE : What does this mean in the computing context?

Well,this is going to be a short post about a general info of what Boiler plates means in the computing context.Recently I came across this term for the first time as I read this paper "SHOULD CODE BE LAW? SMART CONTRACTS, BLOCKCHAIN, AND BOILERPLATE" by Jeff Lingwall and Ramya Mogallapu. Then further exploring about this term simply refers to sections of code that have to be included in many places with little or no alteration. It is often used when referring to languages that are considered verbose, i.e. the programmer must write a lot of code to do minimal jobs.

More simply  : Any routine contract document would invariably be similar for most of its part except for the names and date changes.This similar part is the Boilerplate meaning it’s the same for everyone who gets that contract, with only a few changes.

EMBARK BLOCKCHAIN FRAMEWORK : INSTALLATION Ubuntu 18.04 LTS

Embark is a framework that allows you to easily develop and deploy Decentralized Applications (DApps).A Decentralized Application is a serverless html5 application that uses one or more decentralized technologies.Embark currently integrates with EVM blockchains (Ethereum), Decentralized Storages (IPFS), and Decentralized communication platforms (Whisper and Orbit). Swarm is supported for deployment.This post gives the screen shots for installing a demo contract on EMBARK platform.Embark needs few per-requisites and tools installed including Node,Geth and IPFS.The complete list of history command as executed for getting EMBARK running is produced below :


1 sudo apt-get update
2 sudo apt-get install npm
3 sudo npm -g install embark
4 sudo npm i nyc
5 sudo apt-get install software-properties-common
6 sudo npm install
7 sudo npm -g install embark
8 curl -sL https://deb.nodesource.com/setup_10.x | sudo -E bash -
9 sudo apt install nodejs
10 curl -o- https://raw.githubusercontent.com/creationix/nvm/v0.34.0/install.sh | bash
11 nvm install node
12 nvm install --lts
13 nvm install 8.10.0
14 nvm use v10.19.0
15 nvm install v10.19.0
16 npm install -g embark
17 embark -version
18 embark demo
19 cd embark_demo/
20 embark run












Sunday, December 01, 2019

Blockchain Technology Workshop : IIIT Raipur

Dr. SPM IIIT-Naya Raipur, established by the International Institute of Information Technology University Act,2013 of the Government of Chhatissgarh, is a joint venture by Chhattisgarh State Government and National Thermal Power Corporation (NTPC).A workshop on Blockchain Technology was organized from 28-30 Nov 2019 at the campus with the following aims:

(a) To disseminate the knowledge of Blockchain technology among students, researchers and academicians.

(b) To discuss the current status of the Blockchain development and research work in India and across the world.

The material and slides presentation is shared at link https://drive.google.com/open?id=1s9mZtR7hnyQF4YQ5VYAxgKUiCMenWxlf

Few pics shared below



















Powered By Blogger