SlideShare ist ein Scribd-Unternehmen logo
1 von 59
Downloaden Sie, um offline zu lesen
Blockchains and
Adult Education
Prof. John Domingue
Knowledge Media Institute
The Open University
UK
http://kmi.open.ac.uk/
http://blockchain.open.ac.uk/
BLOCKCHAINS IMPACT
Copyright	 http://dilbert.com/
Blockchain
3
World	Economic	Forum	Survey	Projects	
Blockchain	‘Tipping	Point’	by	2023
Santander:	Blockchain Tech	Can	Save	Banks	
$20	Billion	a	Year
Bletchley:	blockchain	as	a	service	in	Azure
Everledger
www.everledger.io
IBM: Device Democracy
http://www-935.ibm.com/services/multimedia/GBE03620USEN.pdf
Distributed Autonomous Organisations
BLOCKCHAIN ELEMENTS
Copyright	 http://dilbert.com/
Ledgers
What is a blockchain?
A	blockchain is	a	
permissionless
distributed	database,	
based	on	the	bitcoin	
protocol	that	
maintains	a	
continuously	growing	
list	of	transactional	
data	records	hardened	
against	tampering	and	
revision,	even	by	
operators	of	the	data	
store's	nodes.	
The	initial	and	most	
widely	known	
application	of	the	
blockchain technology	
is	the	public	ledger	of	
transactions	for	bitcoin	
and	the	inspiration	of	
similar	distributed	
ledgers	known	as	
altchains.
Each	blockchain record	
is	enforced	
cryptographically	and	
hosted	on	machines	
working	as	a	data	store
Source:	Wikipedia
Cryptographic Hash Function
https://en.wikipedia.org/wiki/Cryptographic_hash_function
Blockchain is a Linked List (1/2)
A	blockchain	can	be	thought	of	as	a	linked	list	of	transactions	
that	is	built	with	hash	pointers	instead	of	pointers
Source:	Bitcoin	 and	Cryptocurrency	 Technologies	- Arvind	Narayanan,	Joseph	Bonneau,	 Edward	Felten,	Andrew	Miller,	 Steven	Goldfeder
Peer to Peer Network
http://www.terndrup.net/2015/10/27/Building-a-P2P-Peer-Client-with-Node-js/
Who Next?Add	everyone	has	a	complete	copy	of	the	data
Proof of Work
• Find x such that f(nonce + x) < t
(cryptographic hash)
"Hello,	world!0"	=>	
1312af178c253f84028d480a6adc1e25e81caa44c749ec81976192e2ec934c64	
"Hello,	world!1"	=>	
e9afc424b79e4f6ab42d99c81156d3a17228d6e1eef4139be78e948a9332a7d8	
"Hello,	world!2"	=>	
ae37343a357a8297591625e7134cbea22f5928be8ca2a32aa475cf05fd4266b7	 ...	
"Hello,	world!4248"	=>	
6e110d98b388e77e9c6f042ac6b497cec46660deef75a55ebc7cfdf65cc0b965	
"Hello,	world!4249"	=>	
c004190b822f1669cac8dc37e761cb73652e7832fb814565702245cf26ebb9e6	
"Hello,	world!4250"	=>	
0000c3af42fc31103f1fdc0151fa747ff87349a4714df7cc52ea464e12dcd4e9
Blockchain is a Linked List (2/2)
A	blockchain actually	contains	
two	different	hash	structures.	
The	first	is	a	hash	chain	of	
blocks	that	links	the	different	
blocks	to	one	another.	
The	second	is	internal	to	each	
block	and	is	a	Merkle Tree	of	
transactions	within	the	
blocks.	
This allows	for	efficiently	
verifiable	proofs	that	a	
transaction	was	included	in	a	
block.
Proof of Work
• Hard to outpace the entire rest of the network… a 51% attack could
do it, but otherwise it is like buying thousands of lottery tickets –
doesn’t help you that much!
Source:	Marc	Eisenstadt ‘What	is	the	genius	behind	Bitcoin’
Proof of Work
As you go back in time, an attacker would have to outpace the network
for a longer amount of time to carry out a double spend attack, and
replace a block.
Source:	Marc	Eisenstadt ‘What	is	the	genius	behind	Bitcoin’
BitCoin Mining
http://knkx.org/post/central-wash-home-nations-biggest-bitcoin-mine-more-coming
https://cointelegraph.com/news/the-inevitable-failure-of-proof-of-stake-blockchains-and-why-a-new-algorithm-is-needed
Ethereum Blockchain Platform
Ethereum is	a	cryptocurrency	platform	and	Turing-complete	programming	
framework	intended	to	allow	a	network	of	peers	to	administer	their	own	
stateful user-created	smart	contracts	in	the	absence	of	central	authority.
It	features	a	blockchain-based	virtual	machine	that	securely	records	and	
incentivizes	the	validation	of	transactions,	i.e.	code	executions,	made	
through	a	cryptocurrency	called	ether.
Ethereum takes	the	primary	developments	used	by	BitTorrent and	Bitcoin,	
the	peer	to	peer	network	and	the	blockchain,	and	generalizes	them	in	order	
to	allow	developers	to	use	these	technologies	for	any	purpose.
Source:	Wikipedia
Ethereum Blockchain Platform
Ethereum Blockchain Platform
Ethereum is	a	100%	open	source	software	platform	to	build	distributed,	
decentralized	applications
Ethereum is	100%	peer	to	peer,	censorship-proof	and	corruption-proof.
Ethereum	can	be	used	to	build	anything:	Asset	issuance,	crowdfunding,	
domain	registration,	title	registration,	prediction	markets,	internet	of	things,	
voting,	educational	certificate	issuing	systems,	hundreds	of	applications
Source:	Ethereum slides	- Stephan	Tual and	Ethereum in	40	minites by	Vitalik Buterin
Ethereum Virtual Machine
Sources:	Ethereum Development	Tutorial
The	Ethereum Virtual	Machine	can	be	thought	of	as	a	large	decentralized	computer	
containing	millions	of	objects,	called	"accounts",	which	have	the	ability	to	maintain	
an	internal	database,	execute	code	and	talk	to	each	other.
There	are	2	types	of	Accounts:
Externally	owned	account	(EOA):	
an	account	controlled	by	a	private	
key	that	has	the	ability	to	send	
ether	and	messages	from	it.	
‘Smart’	Contract:	an	account	
that	has	its	own	code,	and	is	
controlled	by	code.
Any	user	can	trigger	an	action	by	sending	a	transaction	from	an	EOA,	setting	
Ethereum's wheels	in	motion.	
If	the	destination	of	the	transaction	
is	another	EOA,	then	the	transaction	
may	transfer	some	ether	but	
otherwise	does	nothing
However,	if	the	destination	is	a	
‘Smart’	Contract,	then	the	
contract	in	turn	activates,	and	
automatically	runs	its	code.
State vs History
• State = “current” information
– Account balances
– Nonces
– Contract code and contract storage
• History = things that happened
– Transactions
– Receipts
• Currently, all “full” nodes store state, some
store history and some do not store history
Source:	Devcon2	slides	– Ethereum	in	25	Minutes	by	Vitalik Buterin
State
• State consists of key value mapping
addresses to account objects
• Every account object contains 4 pieces of
data:
– Nonce
– Balance
– Code hash (code = empty string for private
key-controlled accounts)
– Storage tree root
Source:	Devcon2	slides	– Ethereum	in	25	Minutes	by	Vitalik Buterin
Gas
• Halting problem
– Cannot tell whether or not a program will run
infinitely
• Solution: charge fee per computational
step (“gas”)
Source:	Devcon2	slides	– Ethereum	in	25	Minutes	by	Vitalik Buterin
What are Ethereum Contracts?
‘Smart’	contracts	are	computer	protocols	that	facilitate,	verify,	or	enforce	the	
negotiation	or	performance	of	a	contract.	
‘Smart’	contracts	can	be	partially	or	fully	self-executing,	self-enforcing,	or	both.	
Smart	contracts	in	Ethereum have	the	ability	to	read/write	to	their	own	
internal	storage,	read	the	storage	of	the	received	message,	and	send	
messages	to	other	contracts,	triggering	their	execution	in	turn
Sources:	Wikipedia	and	Ethereum Development	 Tutorial	and	Ethereum - Introduction	 to	Smart	Contracts
Contracts in Ethereum
Maintain	a	data	store	
representing	
something	which	is	
useful	to	either	other	
contracts	or	to	the	
outside	world
Serve	as	a	sort	of	
externally	owned	
account	with	a	more	
complicated	access	
policy
Manage	an	ongoing	
contract	or	
relationship	between	
multiple	users
Provide	functions	to	
other	contracts;	
essentially	serving	as	
a	software	library.
Contracts	in	Ethereum generally	serve	4	purposes:
source:	 Richard	 Gendal	Brown	 “A	Simple	Model	for	Smart	Contracts”	
http://gendal.me/2015/02/10/a-simple-model-for-smart-contracts/
DApps
Source:	Ethereum - Stephan	Tual
A	Đapp is	a	decentralised application	which	serves	some	
specific	purpose	 to	its	users,	but	which	has	the	important	
property	that	the	application	itself	does	not	depend	on	
any	specific	party	existing.	
Rather	than	serving	as	a	front-end	for	selling	or	providing	
a	specific	party's	services,	a	Đapp is	a	tool	for	people	and	
organizations	on	different	sides	of	an	interaction	use	to	
come	together	without	any	centralized	intermediary.
A	Dapp consists	of	two	parts:	a	frontend,	 written	in	
HTML	or	QML,	and	a	backend	(think	of	it	as	the	
‘database’	for	your	frontend).
DBrowsers
It	is	an	end	user	interface	onto	
the	Ethereum blockchain.
A	DBrowser is	how	users	will	find	
and	interact	with	DApps
‘Mist’	is	the	name	of	the	
Ethereum DBrowser.
Characteristics of Blockchain DApps
• Shared database
• Multiple writers
• Absence of trust
• Disintermediation
• Transaction interaction
• Set rules
• Validators
• Asset backing
http://www.multichain.com/blog/2015/11/avoiding-pointless-blockchain-project/
BLOCKCHAINS AND HIGHER
EDUCATION
Copyright	 http://dilbert.com/
MSc Certificates on Blockchain
http://digitalcurrency.unic.ac.cy/certificates
35
MIT
“For example, after taking an examination
to demonstrate his or her academic
proficiency level, an individual could direct
the testing organization to share the test
results with one or more third-party
evaluating organizations.”
“As education paradigms evolve,
technological innovation is expected to
diversify the ways in which tests are
designed and individuals are evaluated.
With this diversification and the changes it
brings about, different evaluating
organizations may come to utilize
individuals' test results in different ways,
each in accordance with its own evaluation
methods.”
http://www.sony.net/SonyInfo/News/Press/201602/16-0222E/index.html
Demos	of	movies	available	at:	http://blockchain.open.ac.uk/
Certification
Course	Contract
Functions:
Storage:
enrol
unenrol
getStudents
studentsPaid[address=0.6,	address=0….	]
students	[address,	address,	address]
Course	Administration	ViewStudent	View
Enrol	for	6	ETH!
your	Ethereum
address
password	to	private	
key
Signing	this	transaction	will	 transfer	6	
ETH	+	gas	from	your	account.	Estimated	
gas	cost	is	0.02	ETH.	Maximum	gas	cost	is	
set	to	0.05	ETH
Enrol
Student	Enrolment	Page
Signed	
TX
Unenrol Student
Admin	Ethereum address
Admin	password	to	private	key
Signing	this	transaction	will	 transfer	6	
ETH	+	gas	from	course	admin	account.	
Estimated	gas	cost	is	0.02	ETH.	Maximum	
gas	cost	is	set	to	0.05	ETH
Unenrol
Course	Admin	Page
Signed	
TX
Student	List
(Listing	students	is	 a	free	transaction)
Course	Enrolment	Page
Signed	
TX
Student	
Address	
Array
unenrolStudent	Account	11
Student	Account	23
Student	Account	45
Student	Account	67
Student	Account	89
unenrol
unenrol
unenrol
unenrol
Student	Account	67
Course Smart Contract
Jane	enrols	on	an	OpenLearn Course
Jane	enrols	on	an	OpenLearn Course
Block	no:	45566778
Jane	enrols	on	an	OpenLearn Course
Jane	enrols	on	an	OpenLearn Course
Jane	enrols	on	an	OpenLearn Course
Jane	enrols	on	an	OpenLearn	Course
Jane	enrols	on	an	OpenLearn Course
Jane	enrols	on	an	OpenLearn Course
Demos	of	movies	available	at:	http://blockchain.open.ac.uk/
Peer Accreditation
Higher Education Disaggregation
Collaborations
Collaborations/Dialogue
• APII
• Banking Standards Board
• Blockchain Limited
• Consensys
• Ethcore
• Fraunhofer
• Imperial
• Institute of the Future
• Jisc
• KPMG
• MIT
• Mozilla Open Badges (BadgeChain)
• Southampton
• UCL
Summary
• Blockchains seem to be a revolutionary new platform for
sharing data at scale in a trusted fashion
• Provides the basis for global distributed computation
• Interestingly combines
– History
– Rules
– Value
• Has many application areas related to the recording and
transference of value
– Includes Higher Education and training
• Badges and certification
• ePortfolios
• Educational reputation centric currencies
• Disaggregation
Acknowledgements
• KMi@OU Implementation Team
– Michelle Bachler
– Kevin Quick
– Allan Third
– Chris Valentine
• Discussants
– Sören Auer, Fraunhofer
– Adi Ben-Ari, Applied Blockchain
– Carla Casilli, Mozilla Open Badges
– Marc Eisenstadt, OU
– Matthew English, Fraunhofer
– Denis Gillet, EPFL
– Hugh Halford-Thompson, Blockchain Tech Ltd
– William Knottenbelt, Imperial College
– Konstantin Kudryavtsev, Ethcore
– Gary McKay, APII
– Rebecca Migirov, Consensys
– Titi Roman, Sintef
– Philipp Schmidt, MIT Media Lab
– Mike Sharples, OU
– Elena Simperl, University of Southampton
– Ashley Taylor, Consensys
– Sergej Zerr, University of Southampton
• Graphics
– Harriett Cornish, OU
blockchain.open.ac.uk

Weitere ähnliche Inhalte

Was ist angesagt?

Towards the decentralisation of personal data through blockchains and linked ...
Towards the decentralisation of personal data through blockchains and linked ...Towards the decentralisation of personal data through blockchains and linked ...
Towards the decentralisation of personal data through blockchains and linked ...John Domingue
 
The Blockchain and Kudos: A Distributed System for Educational Record, Reputa...
The Blockchain and Kudos: A Distributed System for Educational Record, Reputa...The Blockchain and Kudos: A Distributed System for Educational Record, Reputa...
The Blockchain and Kudos: A Distributed System for Educational Record, Reputa...eraser Juan José Calderón
 
Semantic blockchain
Semantic blockchainSemantic blockchain
Semantic blockchainBen Gardner
 
How Blockchains Are Transforming Adult Education
How Blockchains Are Transforming Adult EducationHow Blockchains Are Transforming Adult Education
How Blockchains Are Transforming Adult EducationJohn Domingue
 
List of best Open Source Blockchain platforms
List of best Open Source Blockchain platformsList of best Open Source Blockchain platforms
List of best Open Source Blockchain platformsBlockchain Council
 
Introduction to Blockchain and Decentralized Apps
Introduction to Blockchain and Decentralized AppsIntroduction to Blockchain and Decentralized Apps
Introduction to Blockchain and Decentralized AppsCisco DevNet
 
1st workshop on linked data and distributed ledgers introduction v 1.0
1st workshop on linked data and distributed ledgers introduction v 1.01st workshop on linked data and distributed ledgers introduction v 1.0
1st workshop on linked data and distributed ledgers introduction v 1.0John Domingue
 
Harrison lsri blockchain 2017
Harrison lsri blockchain 2017Harrison lsri blockchain 2017
Harrison lsri blockchain 2017Colin Harrison
 
X ange uni_-_cryptos_-_bj_-_04072017
X ange uni_-_cryptos_-_bj_-_04072017X ange uni_-_cryptos_-_bj_-_04072017
X ange uni_-_cryptos_-_bj_-_04072017meulle
 
Blockchain 3.0 - Decentral Applications
Blockchain 3.0 - Decentral ApplicationsBlockchain 3.0 - Decentral Applications
Blockchain 3.0 - Decentral ApplicationsBart Waeterschoot
 
"The Blockchain Effect on the Future of the Humanities" by Sherry Jones (July...
"The Blockchain Effect on the Future of the Humanities" by Sherry Jones (July..."The Blockchain Effect on the Future of the Humanities" by Sherry Jones (July...
"The Blockchain Effect on the Future of the Humanities" by Sherry Jones (July...Sherry Jones
 
Blockchain Developer | How to Become a Blockchain Developer? | Blockchain Tra...
Blockchain Developer | How to Become a Blockchain Developer? | Blockchain Tra...Blockchain Developer | How to Become a Blockchain Developer? | Blockchain Tra...
Blockchain Developer | How to Become a Blockchain Developer? | Blockchain Tra...Edureka!
 
Blockchain Primer - Founder Collective - December 2017
Blockchain Primer - Founder Collective - December 2017Blockchain Primer - Founder Collective - December 2017
Blockchain Primer - Founder Collective - December 2017Parul Singh
 
Connecting Bitcoin Blockchain with Digital Learning Chain Structure in Educat...
Connecting Bitcoin Blockchain with Digital Learning Chain Structure in Educat...Connecting Bitcoin Blockchain with Digital Learning Chain Structure in Educat...
Connecting Bitcoin Blockchain with Digital Learning Chain Structure in Educat...eraser Juan José Calderón
 
VII Jornadas eMadrid "Education in exponential times". "Blockchains and their...
VII Jornadas eMadrid "Education in exponential times". "Blockchains and their...VII Jornadas eMadrid "Education in exponential times". "Blockchains and their...
VII Jornadas eMadrid "Education in exponential times". "Blockchains and their...eMadrid network
 
BlockChain Tutorial | Getting Started With BlockChain | BlockChain Certificat...
BlockChain Tutorial | Getting Started With BlockChain | BlockChain Certificat...BlockChain Tutorial | Getting Started With BlockChain | BlockChain Certificat...
BlockChain Tutorial | Getting Started With BlockChain | BlockChain Certificat...Edureka!
 
Becoming a blockchain professional
Becoming a blockchain professionalBecoming a blockchain professional
Becoming a blockchain professionalPortia Burton
 
Blockchain for Executives, Entrepreneurs and Investors
Blockchain for Executives, Entrepreneurs and InvestorsBlockchain for Executives, Entrepreneurs and Investors
Blockchain for Executives, Entrepreneurs and InvestorsFenbushi Capital
 

Was ist angesagt? (20)

Towards the decentralisation of personal data through blockchains and linked ...
Towards the decentralisation of personal data through blockchains and linked ...Towards the decentralisation of personal data through blockchains and linked ...
Towards the decentralisation of personal data through blockchains and linked ...
 
Blockchain in Education
Blockchain in EducationBlockchain in Education
Blockchain in Education
 
The Blockchain and Kudos: A Distributed System for Educational Record, Reputa...
The Blockchain and Kudos: A Distributed System for Educational Record, Reputa...The Blockchain and Kudos: A Distributed System for Educational Record, Reputa...
The Blockchain and Kudos: A Distributed System for Educational Record, Reputa...
 
Semantic blockchain
Semantic blockchainSemantic blockchain
Semantic blockchain
 
How Blockchains Are Transforming Adult Education
How Blockchains Are Transforming Adult EducationHow Blockchains Are Transforming Adult Education
How Blockchains Are Transforming Adult Education
 
List of best Open Source Blockchain platforms
List of best Open Source Blockchain platformsList of best Open Source Blockchain platforms
List of best Open Source Blockchain platforms
 
Introduction to Blockchain and Decentralized Apps
Introduction to Blockchain and Decentralized AppsIntroduction to Blockchain and Decentralized Apps
Introduction to Blockchain and Decentralized Apps
 
1st workshop on linked data and distributed ledgers introduction v 1.0
1st workshop on linked data and distributed ledgers introduction v 1.01st workshop on linked data and distributed ledgers introduction v 1.0
1st workshop on linked data and distributed ledgers introduction v 1.0
 
Harrison lsri blockchain 2017
Harrison lsri blockchain 2017Harrison lsri blockchain 2017
Harrison lsri blockchain 2017
 
X ange uni_-_cryptos_-_bj_-_04072017
X ange uni_-_cryptos_-_bj_-_04072017X ange uni_-_cryptos_-_bj_-_04072017
X ange uni_-_cryptos_-_bj_-_04072017
 
Blockchain 3.0 - Decentral Applications
Blockchain 3.0 - Decentral ApplicationsBlockchain 3.0 - Decentral Applications
Blockchain 3.0 - Decentral Applications
 
"The Blockchain Effect on the Future of the Humanities" by Sherry Jones (July...
"The Blockchain Effect on the Future of the Humanities" by Sherry Jones (July..."The Blockchain Effect on the Future of the Humanities" by Sherry Jones (July...
"The Blockchain Effect on the Future of the Humanities" by Sherry Jones (July...
 
Blockchain Developer | How to Become a Blockchain Developer? | Blockchain Tra...
Blockchain Developer | How to Become a Blockchain Developer? | Blockchain Tra...Blockchain Developer | How to Become a Blockchain Developer? | Blockchain Tra...
Blockchain Developer | How to Become a Blockchain Developer? | Blockchain Tra...
 
Blockchain Primer - Founder Collective - December 2017
Blockchain Primer - Founder Collective - December 2017Blockchain Primer - Founder Collective - December 2017
Blockchain Primer - Founder Collective - December 2017
 
Connecting Bitcoin Blockchain with Digital Learning Chain Structure in Educat...
Connecting Bitcoin Blockchain with Digital Learning Chain Structure in Educat...Connecting Bitcoin Blockchain with Digital Learning Chain Structure in Educat...
Connecting Bitcoin Blockchain with Digital Learning Chain Structure in Educat...
 
VII Jornadas eMadrid "Education in exponential times". "Blockchains and their...
VII Jornadas eMadrid "Education in exponential times". "Blockchains and their...VII Jornadas eMadrid "Education in exponential times". "Blockchains and their...
VII Jornadas eMadrid "Education in exponential times". "Blockchains and their...
 
Understanding Blockchain
Understanding BlockchainUnderstanding Blockchain
Understanding Blockchain
 
BlockChain Tutorial | Getting Started With BlockChain | BlockChain Certificat...
BlockChain Tutorial | Getting Started With BlockChain | BlockChain Certificat...BlockChain Tutorial | Getting Started With BlockChain | BlockChain Certificat...
BlockChain Tutorial | Getting Started With BlockChain | BlockChain Certificat...
 
Becoming a blockchain professional
Becoming a blockchain professionalBecoming a blockchain professional
Becoming a blockchain professional
 
Blockchain for Executives, Entrepreneurs and Investors
Blockchain for Executives, Entrepreneurs and InvestorsBlockchain for Executives, Entrepreneurs and Investors
Blockchain for Executives, Entrepreneurs and Investors
 

Ähnlich wie Blockchains and Adult Education

Blockchain, Finance & Regulatory Development
Blockchain, Finance & Regulatory DevelopmentBlockchain, Finance & Regulatory Development
Blockchain, Finance & Regulatory DevelopmentAlex Makosz
 
Blockchain on Azure and Use Cases
Blockchain on Azure and Use CasesBlockchain on Azure and Use Cases
Blockchain on Azure and Use CasesNuri Cankaya
 
Blockchain on Azure
Blockchain on AzureBlockchain on Azure
Blockchain on AzureNuri Cankaya
 
Blockchain and BPM - Reflections on Four Years of Research and Applications
Blockchain and BPM - Reflections on Four Years of Research and ApplicationsBlockchain and BPM - Reflections on Four Years of Research and Applications
Blockchain and BPM - Reflections on Four Years of Research and ApplicationsIngo Weber
 
Blockchain - Primer for City CIOs v05 01 22.pdf
Blockchain - Primer for City CIOs v05 01 22.pdfBlockchain - Primer for City CIOs v05 01 22.pdf
Blockchain - Primer for City CIOs v05 01 22.pdfssusera441c2
 
Blockchain in the Heart of Digital Transformation
Blockchain in the Heart of Digital TransformationBlockchain in the Heart of Digital Transformation
Blockchain in the Heart of Digital TransformationDr. Mohamed Torky
 
An introduction to blockchain and hyperledger v ru
An introduction to blockchain and hyperledger v ruAn introduction to blockchain and hyperledger v ru
An introduction to blockchain and hyperledger v ruLennartF
 
chapter 4 Selected Topics in computer.pptx
chapter 4 Selected Topics in computer.pptxchapter 4 Selected Topics in computer.pptx
chapter 4 Selected Topics in computer.pptxAschalewAyele2
 
chapter 4 Selected Topics in computer.pptx
chapter 4 Selected Topics in computer.pptxchapter 4 Selected Topics in computer.pptx
chapter 4 Selected Topics in computer.pptxAschalewAyele2
 
BlockChain Technology By Deep Akabari.pptx
BlockChain Technology By Deep Akabari.pptxBlockChain Technology By Deep Akabari.pptx
BlockChain Technology By Deep Akabari.pptxDeepAkabari
 
Gluecon 2016 Keynote: Deploying and Managing Blockchain Applications
Gluecon 2016 Keynote: Deploying and Managing Blockchain ApplicationsGluecon 2016 Keynote: Deploying and Managing Blockchain Applications
Gluecon 2016 Keynote: Deploying and Managing Blockchain ApplicationsDuncan Johnston-Watt
 
IRJET- Secure Online Voting Systems using Block of Chunks
IRJET-  	  Secure Online Voting Systems using Block of ChunksIRJET-  	  Secure Online Voting Systems using Block of Chunks
IRJET- Secure Online Voting Systems using Block of ChunksIRJET Journal
 
Supply Chain Management using Blockchain
Supply Chain Management using BlockchainSupply Chain Management using Blockchain
Supply Chain Management using BlockchainYugn27
 
Blockchain Introduction
Blockchain IntroductionBlockchain Introduction
Blockchain IntroductionEueung Mulyana
 
A blockchain-based Aadhar system: distributed authentication system
A blockchain-based Aadhar system: distributed authentication systemA blockchain-based Aadhar system: distributed authentication system
A blockchain-based Aadhar system: distributed authentication systemTELKOMNIKA JOURNAL
 
IRJET- Different Blockchain Platforms and Algorithms
IRJET-  	  Different Blockchain Platforms and AlgorithmsIRJET-  	  Different Blockchain Platforms and Algorithms
IRJET- Different Blockchain Platforms and AlgorithmsIRJET Journal
 

Ähnlich wie Blockchains and Adult Education (20)

Blockchain in FinTech
Blockchain in FinTechBlockchain in FinTech
Blockchain in FinTech
 
Blockchain, Finance & Regulatory Development
Blockchain, Finance & Regulatory DevelopmentBlockchain, Finance & Regulatory Development
Blockchain, Finance & Regulatory Development
 
Blockchain on Azure and Use Cases
Blockchain on Azure and Use CasesBlockchain on Azure and Use Cases
Blockchain on Azure and Use Cases
 
Blockchain on Azure
Blockchain on AzureBlockchain on Azure
Blockchain on Azure
 
Blockchain
BlockchainBlockchain
Blockchain
 
Blockchain and BPM - Reflections on Four Years of Research and Applications
Blockchain and BPM - Reflections on Four Years of Research and ApplicationsBlockchain and BPM - Reflections on Four Years of Research and Applications
Blockchain and BPM - Reflections on Four Years of Research and Applications
 
Blockchain - Primer for City CIOs v05 01 22.pdf
Blockchain - Primer for City CIOs v05 01 22.pdfBlockchain - Primer for City CIOs v05 01 22.pdf
Blockchain - Primer for City CIOs v05 01 22.pdf
 
Blockchain in the Heart of Digital Transformation
Blockchain in the Heart of Digital TransformationBlockchain in the Heart of Digital Transformation
Blockchain in the Heart of Digital Transformation
 
An introduction to blockchain and hyperledger v ru
An introduction to blockchain and hyperledger v ruAn introduction to blockchain and hyperledger v ru
An introduction to blockchain and hyperledger v ru
 
chapter 4 Selected Topics in computer.pptx
chapter 4 Selected Topics in computer.pptxchapter 4 Selected Topics in computer.pptx
chapter 4 Selected Topics in computer.pptx
 
chapter 4 Selected Topics in computer.pptx
chapter 4 Selected Topics in computer.pptxchapter 4 Selected Topics in computer.pptx
chapter 4 Selected Topics in computer.pptx
 
Evaluation of Ethereum
Evaluation of Ethereum Evaluation of Ethereum
Evaluation of Ethereum
 
BlockChain Technology By Deep Akabari.pptx
BlockChain Technology By Deep Akabari.pptxBlockChain Technology By Deep Akabari.pptx
BlockChain Technology By Deep Akabari.pptx
 
Gluecon 2016 Keynote: Deploying and Managing Blockchain Applications
Gluecon 2016 Keynote: Deploying and Managing Blockchain ApplicationsGluecon 2016 Keynote: Deploying and Managing Blockchain Applications
Gluecon 2016 Keynote: Deploying and Managing Blockchain Applications
 
BaaS for IoT
BaaS for IoTBaaS for IoT
BaaS for IoT
 
IRJET- Secure Online Voting Systems using Block of Chunks
IRJET-  	  Secure Online Voting Systems using Block of ChunksIRJET-  	  Secure Online Voting Systems using Block of Chunks
IRJET- Secure Online Voting Systems using Block of Chunks
 
Supply Chain Management using Blockchain
Supply Chain Management using BlockchainSupply Chain Management using Blockchain
Supply Chain Management using Blockchain
 
Blockchain Introduction
Blockchain IntroductionBlockchain Introduction
Blockchain Introduction
 
A blockchain-based Aadhar system: distributed authentication system
A blockchain-based Aadhar system: distributed authentication systemA blockchain-based Aadhar system: distributed authentication system
A blockchain-based Aadhar system: distributed authentication system
 
IRJET- Different Blockchain Platforms and Algorithms
IRJET-  	  Different Blockchain Platforms and AlgorithmsIRJET-  	  Different Blockchain Platforms and Algorithms
IRJET- Different Blockchain Platforms and Algorithms
 

Mehr von John Domingue

The Future of Semantics on the Web
The Future of Semantics on the WebThe Future of Semantics on the Web
The Future of Semantics on the WebJohn Domingue
 
Transforming Education through FORGE
Transforming Education through FORGETransforming Education through FORGE
Transforming Education through FORGEJohn Domingue
 
Developing rich interactive eBooks to teach linked open data to professionals...
Developing rich interactive eBooks to teach linked open data to professionals...Developing rich interactive eBooks to teach linked open data to professionals...
Developing rich interactive eBooks to teach linked open data to professionals...John Domingue
 
Linked services: Connecting services to the Web of Data
Linked services: Connecting services to the Web of DataLinked services: Connecting services to the Web of Data
Linked services: Connecting services to the Web of DataJohn Domingue
 
Beyond sparql linked data, software, services and applications. Keynote at D...
Beyond sparql  linked data, software, services and applications. Keynote at D...Beyond sparql  linked data, software, services and applications. Keynote at D...
Beyond sparql linked data, software, services and applications. Keynote at D...John Domingue
 
Linked services for the Web of Data
Linked services for the Web of DataLinked services for the Web of Data
Linked services for the Web of DataJohn Domingue
 
Linking Services and Linked Data: Keynote for AIMSA 2012
Linking Services and Linked Data: Keynote for AIMSA 2012Linking Services and Linked Data: Keynote for AIMSA 2012
Linking Services and Linked Data: Keynote for AIMSA 2012John Domingue
 
Inaugural Lecture on Future Internet
Inaugural Lecture on Future InternetInaugural Lecture on Future Internet
Inaugural Lecture on Future InternetJohn Domingue
 
Soa4 all technical achievements final
Soa4 all technical achievements finalSoa4 all technical achievements final
Soa4 all technical achievements finalJohn Domingue
 
Super ontology stack_review_m36_051
Super ontology stack_review_m36_051Super ontology stack_review_m36_051
Super ontology stack_review_m36_051John Domingue
 
ESWC 2012 Dinner Keynote: Improving the Impact and Takeup of Semantic Web Res...
ESWC 2012 Dinner Keynote: Improving the Impact and Takeup of Semantic Web Res...ESWC 2012 Dinner Keynote: Improving the Impact and Takeup of Semantic Web Res...
ESWC 2012 Dinner Keynote: Improving the Impact and Takeup of Semantic Web Res...John Domingue
 

Mehr von John Domingue (12)

The Future of Semantics on the Web
The Future of Semantics on the WebThe Future of Semantics on the Web
The Future of Semantics on the Web
 
Transforming Education through FORGE
Transforming Education through FORGETransforming Education through FORGE
Transforming Education through FORGE
 
FIRE in a Book
FIRE in a BookFIRE in a Book
FIRE in a Book
 
Developing rich interactive eBooks to teach linked open data to professionals...
Developing rich interactive eBooks to teach linked open data to professionals...Developing rich interactive eBooks to teach linked open data to professionals...
Developing rich interactive eBooks to teach linked open data to professionals...
 
Linked services: Connecting services to the Web of Data
Linked services: Connecting services to the Web of DataLinked services: Connecting services to the Web of Data
Linked services: Connecting services to the Web of Data
 
Beyond sparql linked data, software, services and applications. Keynote at D...
Beyond sparql  linked data, software, services and applications. Keynote at D...Beyond sparql  linked data, software, services and applications. Keynote at D...
Beyond sparql linked data, software, services and applications. Keynote at D...
 
Linked services for the Web of Data
Linked services for the Web of DataLinked services for the Web of Data
Linked services for the Web of Data
 
Linking Services and Linked Data: Keynote for AIMSA 2012
Linking Services and Linked Data: Keynote for AIMSA 2012Linking Services and Linked Data: Keynote for AIMSA 2012
Linking Services and Linked Data: Keynote for AIMSA 2012
 
Inaugural Lecture on Future Internet
Inaugural Lecture on Future InternetInaugural Lecture on Future Internet
Inaugural Lecture on Future Internet
 
Soa4 all technical achievements final
Soa4 all technical achievements finalSoa4 all technical achievements final
Soa4 all technical achievements final
 
Super ontology stack_review_m36_051
Super ontology stack_review_m36_051Super ontology stack_review_m36_051
Super ontology stack_review_m36_051
 
ESWC 2012 Dinner Keynote: Improving the Impact and Takeup of Semantic Web Res...
ESWC 2012 Dinner Keynote: Improving the Impact and Takeup of Semantic Web Res...ESWC 2012 Dinner Keynote: Improving the Impact and Takeup of Semantic Web Res...
ESWC 2012 Dinner Keynote: Improving the Impact and Takeup of Semantic Web Res...
 

Kürzlich hochgeladen

Transcript: New from BookNet Canada for 2024: Loan Stars - Tech Forum 2024
Transcript: New from BookNet Canada for 2024: Loan Stars - Tech Forum 2024Transcript: New from BookNet Canada for 2024: Loan Stars - Tech Forum 2024
Transcript: New from BookNet Canada for 2024: Loan Stars - Tech Forum 2024BookNet Canada
 
Connecting the Dots for Information Discovery.pdf
Connecting the Dots for Information Discovery.pdfConnecting the Dots for Information Discovery.pdf
Connecting the Dots for Information Discovery.pdfNeo4j
 
Take control of your SAP testing with UiPath Test Suite
Take control of your SAP testing with UiPath Test SuiteTake control of your SAP testing with UiPath Test Suite
Take control of your SAP testing with UiPath Test SuiteDianaGray10
 
A Deep Dive on Passkeys: FIDO Paris Seminar.pptx
A Deep Dive on Passkeys: FIDO Paris Seminar.pptxA Deep Dive on Passkeys: FIDO Paris Seminar.pptx
A Deep Dive on Passkeys: FIDO Paris Seminar.pptxLoriGlavin3
 
Sample pptx for embedding into website for demo
Sample pptx for embedding into website for demoSample pptx for embedding into website for demo
Sample pptx for embedding into website for demoHarshalMandlekar2
 
Long journey of Ruby standard library at RubyConf AU 2024
Long journey of Ruby standard library at RubyConf AU 2024Long journey of Ruby standard library at RubyConf AU 2024
Long journey of Ruby standard library at RubyConf AU 2024Hiroshi SHIBATA
 
Genislab builds better products and faster go-to-market with Lean project man...
Genislab builds better products and faster go-to-market with Lean project man...Genislab builds better products and faster go-to-market with Lean project man...
Genislab builds better products and faster go-to-market with Lean project man...Farhan Tariq
 
The Role of FIDO in a Cyber Secure Netherlands: FIDO Paris Seminar.pptx
The Role of FIDO in a Cyber Secure Netherlands: FIDO Paris Seminar.pptxThe Role of FIDO in a Cyber Secure Netherlands: FIDO Paris Seminar.pptx
The Role of FIDO in a Cyber Secure Netherlands: FIDO Paris Seminar.pptxLoriGlavin3
 
New from BookNet Canada for 2024: Loan Stars - Tech Forum 2024
New from BookNet Canada for 2024: Loan Stars - Tech Forum 2024New from BookNet Canada for 2024: Loan Stars - Tech Forum 2024
New from BookNet Canada for 2024: Loan Stars - Tech Forum 2024BookNet Canada
 
2024 April Patch Tuesday
2024 April Patch Tuesday2024 April Patch Tuesday
2024 April Patch TuesdayIvanti
 
Modern Roaming for Notes and Nomad – Cheaper Faster Better Stronger
Modern Roaming for Notes and Nomad – Cheaper Faster Better StrongerModern Roaming for Notes and Nomad – Cheaper Faster Better Stronger
Modern Roaming for Notes and Nomad – Cheaper Faster Better Strongerpanagenda
 
DevEX - reference for building teams, processes, and platforms
DevEX - reference for building teams, processes, and platformsDevEX - reference for building teams, processes, and platforms
DevEX - reference for building teams, processes, and platformsSergiu Bodiu
 
(How to Program) Paul Deitel, Harvey Deitel-Java How to Program, Early Object...
(How to Program) Paul Deitel, Harvey Deitel-Java How to Program, Early Object...(How to Program) Paul Deitel, Harvey Deitel-Java How to Program, Early Object...
(How to Program) Paul Deitel, Harvey Deitel-Java How to Program, Early Object...AliaaTarek5
 
Use of FIDO in the Payments and Identity Landscape: FIDO Paris Seminar.pptx
Use of FIDO in the Payments and Identity Landscape: FIDO Paris Seminar.pptxUse of FIDO in the Payments and Identity Landscape: FIDO Paris Seminar.pptx
Use of FIDO in the Payments and Identity Landscape: FIDO Paris Seminar.pptxLoriGlavin3
 
What is DBT - The Ultimate Data Build Tool.pdf
What is DBT - The Ultimate Data Build Tool.pdfWhat is DBT - The Ultimate Data Build Tool.pdf
What is DBT - The Ultimate Data Build Tool.pdfMounikaPolabathina
 
TrustArc Webinar - How to Build Consumer Trust Through Data Privacy
TrustArc Webinar - How to Build Consumer Trust Through Data PrivacyTrustArc Webinar - How to Build Consumer Trust Through Data Privacy
TrustArc Webinar - How to Build Consumer Trust Through Data PrivacyTrustArc
 
From Family Reminiscence to Scholarly Archive .
From Family Reminiscence to Scholarly Archive .From Family Reminiscence to Scholarly Archive .
From Family Reminiscence to Scholarly Archive .Alan Dix
 
Digital Identity is Under Attack: FIDO Paris Seminar.pptx
Digital Identity is Under Attack: FIDO Paris Seminar.pptxDigital Identity is Under Attack: FIDO Paris Seminar.pptx
Digital Identity is Under Attack: FIDO Paris Seminar.pptxLoriGlavin3
 
Why device, WIFI, and ISP insights are crucial to supporting remote Microsoft...
Why device, WIFI, and ISP insights are crucial to supporting remote Microsoft...Why device, WIFI, and ISP insights are crucial to supporting remote Microsoft...
Why device, WIFI, and ISP insights are crucial to supporting remote Microsoft...panagenda
 
Potential of AI (Generative AI) in Business: Learnings and Insights
Potential of AI (Generative AI) in Business: Learnings and InsightsPotential of AI (Generative AI) in Business: Learnings and Insights
Potential of AI (Generative AI) in Business: Learnings and InsightsRavi Sanghani
 

Kürzlich hochgeladen (20)

Transcript: New from BookNet Canada for 2024: Loan Stars - Tech Forum 2024
Transcript: New from BookNet Canada for 2024: Loan Stars - Tech Forum 2024Transcript: New from BookNet Canada for 2024: Loan Stars - Tech Forum 2024
Transcript: New from BookNet Canada for 2024: Loan Stars - Tech Forum 2024
 
Connecting the Dots for Information Discovery.pdf
Connecting the Dots for Information Discovery.pdfConnecting the Dots for Information Discovery.pdf
Connecting the Dots for Information Discovery.pdf
 
Take control of your SAP testing with UiPath Test Suite
Take control of your SAP testing with UiPath Test SuiteTake control of your SAP testing with UiPath Test Suite
Take control of your SAP testing with UiPath Test Suite
 
A Deep Dive on Passkeys: FIDO Paris Seminar.pptx
A Deep Dive on Passkeys: FIDO Paris Seminar.pptxA Deep Dive on Passkeys: FIDO Paris Seminar.pptx
A Deep Dive on Passkeys: FIDO Paris Seminar.pptx
 
Sample pptx for embedding into website for demo
Sample pptx for embedding into website for demoSample pptx for embedding into website for demo
Sample pptx for embedding into website for demo
 
Long journey of Ruby standard library at RubyConf AU 2024
Long journey of Ruby standard library at RubyConf AU 2024Long journey of Ruby standard library at RubyConf AU 2024
Long journey of Ruby standard library at RubyConf AU 2024
 
Genislab builds better products and faster go-to-market with Lean project man...
Genislab builds better products and faster go-to-market with Lean project man...Genislab builds better products and faster go-to-market with Lean project man...
Genislab builds better products and faster go-to-market with Lean project man...
 
The Role of FIDO in a Cyber Secure Netherlands: FIDO Paris Seminar.pptx
The Role of FIDO in a Cyber Secure Netherlands: FIDO Paris Seminar.pptxThe Role of FIDO in a Cyber Secure Netherlands: FIDO Paris Seminar.pptx
The Role of FIDO in a Cyber Secure Netherlands: FIDO Paris Seminar.pptx
 
New from BookNet Canada for 2024: Loan Stars - Tech Forum 2024
New from BookNet Canada for 2024: Loan Stars - Tech Forum 2024New from BookNet Canada for 2024: Loan Stars - Tech Forum 2024
New from BookNet Canada for 2024: Loan Stars - Tech Forum 2024
 
2024 April Patch Tuesday
2024 April Patch Tuesday2024 April Patch Tuesday
2024 April Patch Tuesday
 
Modern Roaming for Notes and Nomad – Cheaper Faster Better Stronger
Modern Roaming for Notes and Nomad – Cheaper Faster Better StrongerModern Roaming for Notes and Nomad – Cheaper Faster Better Stronger
Modern Roaming for Notes and Nomad – Cheaper Faster Better Stronger
 
DevEX - reference for building teams, processes, and platforms
DevEX - reference for building teams, processes, and platformsDevEX - reference for building teams, processes, and platforms
DevEX - reference for building teams, processes, and platforms
 
(How to Program) Paul Deitel, Harvey Deitel-Java How to Program, Early Object...
(How to Program) Paul Deitel, Harvey Deitel-Java How to Program, Early Object...(How to Program) Paul Deitel, Harvey Deitel-Java How to Program, Early Object...
(How to Program) Paul Deitel, Harvey Deitel-Java How to Program, Early Object...
 
Use of FIDO in the Payments and Identity Landscape: FIDO Paris Seminar.pptx
Use of FIDO in the Payments and Identity Landscape: FIDO Paris Seminar.pptxUse of FIDO in the Payments and Identity Landscape: FIDO Paris Seminar.pptx
Use of FIDO in the Payments and Identity Landscape: FIDO Paris Seminar.pptx
 
What is DBT - The Ultimate Data Build Tool.pdf
What is DBT - The Ultimate Data Build Tool.pdfWhat is DBT - The Ultimate Data Build Tool.pdf
What is DBT - The Ultimate Data Build Tool.pdf
 
TrustArc Webinar - How to Build Consumer Trust Through Data Privacy
TrustArc Webinar - How to Build Consumer Trust Through Data PrivacyTrustArc Webinar - How to Build Consumer Trust Through Data Privacy
TrustArc Webinar - How to Build Consumer Trust Through Data Privacy
 
From Family Reminiscence to Scholarly Archive .
From Family Reminiscence to Scholarly Archive .From Family Reminiscence to Scholarly Archive .
From Family Reminiscence to Scholarly Archive .
 
Digital Identity is Under Attack: FIDO Paris Seminar.pptx
Digital Identity is Under Attack: FIDO Paris Seminar.pptxDigital Identity is Under Attack: FIDO Paris Seminar.pptx
Digital Identity is Under Attack: FIDO Paris Seminar.pptx
 
Why device, WIFI, and ISP insights are crucial to supporting remote Microsoft...
Why device, WIFI, and ISP insights are crucial to supporting remote Microsoft...Why device, WIFI, and ISP insights are crucial to supporting remote Microsoft...
Why device, WIFI, and ISP insights are crucial to supporting remote Microsoft...
 
Potential of AI (Generative AI) in Business: Learnings and Insights
Potential of AI (Generative AI) in Business: Learnings and InsightsPotential of AI (Generative AI) in Business: Learnings and Insights
Potential of AI (Generative AI) in Business: Learnings and Insights
 

Blockchains and Adult Education