SlideShare une entreprise Scribd logo
1  sur  23
Télécharger pour lire hors ligne
Blockchain Programming
Software Development With Ethereum
Rob Myers - https://robmyers.org/
Implementations Of Ethereum
● go-ethereum
● cpp-ethereum
● pyethereum
● ethereumj (java)
● node-ethereum (client)
All implement the same VM / network.
Docker images are available.
Ðapps
Distributed Applications
● Ethereum - Smart contracts
● Whisper - Ephemeral communication
● Swarm - DHT storage
How Will We Use Ðapps?
How Will We Develop Ðapps?
How Do We Write Ðapps Now?
How Do We Deploy And Test Ðapps?
What Is A Contract?
● A small piece of code.
● A self-contained piece of code.
● A small amount of data.
● A public body of data.
● A small amount of Ether.
If You Know MVC...
So How Do We Get External State?
● Direct user input
● Oracles
● Transactions / feeds from trusted parties
● SchellingCoins
● By hash...
What Is A Transaction?
● How we communicate with contracts.
● Data and Ether can be sent via transactions.
● Sent from the JS API or other contracts.
● Transactions cost "gas", the sender pays.
● JavaScript API can use accessors instead.
Transaction Costs
“usually, a computational step costs 1 gas, but
some operations cost higher amounts of gas
because they are more computationally
expensive, or increase the amount of data that
must be stored as part of the state. There is
also a fee of 5 gas for every byte in the
transaction data.” - The Whitepaper.
Bad Ideas For Contracts
● Doom on the EVM (too much processing).
● Video on the blockchain (too much storage).
● Ethereum web server (no network access).
● Blockchain DRM (blockchain is public).
● Anything that needs too much processor
time, storage, or secrecy.
Good Ideas For Contracts
● Altcoins, tokens, assets.
● Crowdfunding, fan incentive schemes.
● Voting systems, prediction markets, lotteries.
● Access control - sites, games, doors, cars.
● DAOs - Organizations on the blockchain.
● Use your imagination! :-)
Writing Contracts
● Write contracts in the Solidity language.
● Create the UI for contracts in HTML/JS.
● AlethZero is a good development system.
● solc / eth / Chrome is the cutting edge.
● Test on a private chain.
● Mix IDE & Mist browser are the future.
Solidity
● C-ish syntax() {;}
● Statically typed
● Types for hashes, addresses, memory cells
● Structs, mappings, events
● Support for invariants & other conditions
● Provably correct subset
A Solidity Contract
contract Coin {
address minter;
mapping (address => uint) balances;
function Coin() {
minter = msg.sender;
}
function mint(address owner, uint amount) {
if (msg.sender != minter) return;
balances[owner] += amount;
}
function send(address receiver, uint amount) {
if (balances[msg.sender] < amount) return;
balances[msg.sender] -= amount;
balances[receiver] += amount;
Compiling The Contract
$ solc --binary file --json-abi file Coin.sol
(Or paste it into AlethZero...)
The Compiled Contract
60056013565b6101e0806100216000396000f35b336000819060000155505b56006000357c010000
00000000000000000000000000000000000000000000000000009004806337f42841146100455780
6340c10f191461005a578063d0679d341461006e57005b6100506004356101a8565b806000526020
6000f35b610068600435602435610082565b60006000f35b61007c6004356024356100fd565b6000
6000f35b60005473ffffffffffffffffffffffffffffffffffffffff163373ffffffffffffffffff
ffffffffffffffffffffff1614156100bd576100c2565b6100f9565b80600160008473ffffffffff
ffffffffffffffffffffffffffffff16815260200190815260200160002090815401908190600001
55505b5050565b80600160003373ffffffffffffffffffffffffffffffffffffffff168152602001
908152602001600020541061013257610137565b6101a4565b80600160003373ffffffffffffffff
ffffffffffffffffffffffff16815260200190815260200160002090815403908190600001555080
600160008473ffffffffffffffffffffffffffffffffffffffff1681526020019081526020016000
209081540190819060000155505b5050565b6000600160008373ffffffffffffffffffffffffffff
ffffffffffff1681526020019081526020016000205490506101db565b91905056
The Contract's ABI
[
{
"constant" : true,
"inputs" : [
{
"name" : "addr",
"type" : "address"
}
],
"name" : "queryBalance",
"outputs" : [
{
"name" : "balance",
"type" : "uint256”,
Call The Contract From JavaScript
<script type="text/javascript" src="../ext/bignumber.min.js"></script>
<script type="text/javascript" src="../ext/ethereum.js/dist/ethereum.js"></script>
...
var web3 = require('web3');
web3.setProvider(new web3.providers.HttpSyncProvider('http://localhost:8545'));
var contract_address = "0xaf1206fcb32fbdb42878c429e61a49d5143e6f32";
var contract_abi = ... // see previous slide
var contract = web3.eth.contract(contract_address, contract_abi);
...
var accountBalance = parseInt(contract.call().queryBalance(queryAddress));
contract.call().send("0xaf1206fcb32fbdb42878c429e61a49d5143e6f32", accountBalance / 100);
Try It Yourself
Online compiler:
https://chriseth.github.io/cpp-ethereum/
The official tutorial:
https://dappsforbeginners.wordpress.com/
Any Questions?
http://robmyers.org/notes/ethereum/

Contenu connexe

Tendances

Decentralized: Blockchain & Cryptocurrency Laws in Canada
Decentralized: Blockchain & Cryptocurrency Laws in CanadaDecentralized: Blockchain & Cryptocurrency Laws in Canada
Decentralized: Blockchain & Cryptocurrency Laws in CanadaAlexander Davis
 
Blockchain And Cryptocurrency : How Blockchain And Cryptocurrency Relate To E...
Blockchain And Cryptocurrency : How Blockchain And Cryptocurrency Relate To E...Blockchain And Cryptocurrency : How Blockchain And Cryptocurrency Relate To E...
Blockchain And Cryptocurrency : How Blockchain And Cryptocurrency Relate To E...Blockchain Council
 
Blockchain Ecosystem and Cryptocurrency Regulations
Blockchain Ecosystem and Cryptocurrency RegulationsBlockchain Ecosystem and Cryptocurrency Regulations
Blockchain Ecosystem and Cryptocurrency RegulationsAmir Rafati
 
A Quick Start To Blockchain by Seval Capraz
A Quick Start To Blockchain by Seval CaprazA Quick Start To Blockchain by Seval Capraz
A Quick Start To Blockchain by Seval CaprazSeval Çapraz
 
Blockchain - Introduction and Authoring Smart Contracts
Blockchain - Introduction and Authoring Smart ContractsBlockchain - Introduction and Authoring Smart Contracts
Blockchain - Introduction and Authoring Smart ContractsVikas Grover
 
Blockchain & Cryptocurrency
Blockchain & CryptocurrencyBlockchain & Cryptocurrency
Blockchain & CryptocurrencySumit Rajpal
 
Presentation about Blockchain technology
Presentation about Blockchain technologyPresentation about Blockchain technology
Presentation about Blockchain technologyZakaria Hossain
 
How Blockchain and Cryptocurrency works.
How Blockchain and Cryptocurrency works.How Blockchain and Cryptocurrency works.
How Blockchain and Cryptocurrency works.Waleed Ahmed
 
How Blockchain Is Different From Cryptocurrency?
How Blockchain Is Different From Cryptocurrency?How Blockchain Is Different From Cryptocurrency?
How Blockchain Is Different From Cryptocurrency?Endive Software
 
Payment Protocols - Block Chain & Beyond
Payment Protocols - Block Chain & BeyondPayment Protocols - Block Chain & Beyond
Payment Protocols - Block Chain & BeyondAlexander Kiriakou
 
Primer to smart contracts, smart property, trustless asset management
Primer to smart contracts, smart property, trustless asset managementPrimer to smart contracts, smart property, trustless asset management
Primer to smart contracts, smart property, trustless asset managementTim Swanson
 
Intro to smart contract on blockchain en
Intro to smart contract on blockchain enIntro to smart contract on blockchain en
Intro to smart contract on blockchain enNicholas Lin
 
Intro to Blockchain - And, by the way, what the heck is proof-of-work?
Intro to Blockchain - And, by the way, what the heck is proof-of-work?Intro to Blockchain - And, by the way, what the heck is proof-of-work?
Intro to Blockchain - And, by the way, what the heck is proof-of-work?Jim Flynn
 

Tendances (20)

INTRO TO BLOCKCHAINS AND CRYPTOCURRENCY
INTRO TO BLOCKCHAINS AND CRYPTOCURRENCYINTRO TO BLOCKCHAINS AND CRYPTOCURRENCY
INTRO TO BLOCKCHAINS AND CRYPTOCURRENCY
 
Decentralized: Blockchain & Cryptocurrency Laws in Canada
Decentralized: Blockchain & Cryptocurrency Laws in CanadaDecentralized: Blockchain & Cryptocurrency Laws in Canada
Decentralized: Blockchain & Cryptocurrency Laws in Canada
 
Blockchain And Cryptocurrency : How Blockchain And Cryptocurrency Relate To E...
Blockchain And Cryptocurrency : How Blockchain And Cryptocurrency Relate To E...Blockchain And Cryptocurrency : How Blockchain And Cryptocurrency Relate To E...
Blockchain And Cryptocurrency : How Blockchain And Cryptocurrency Relate To E...
 
Blockchain Ecosystem and Cryptocurrency Regulations
Blockchain Ecosystem and Cryptocurrency RegulationsBlockchain Ecosystem and Cryptocurrency Regulations
Blockchain Ecosystem and Cryptocurrency Regulations
 
A Quick Start To Blockchain by Seval Capraz
A Quick Start To Blockchain by Seval CaprazA Quick Start To Blockchain by Seval Capraz
A Quick Start To Blockchain by Seval Capraz
 
Blockchain - Introduction and Authoring Smart Contracts
Blockchain - Introduction and Authoring Smart ContractsBlockchain - Introduction and Authoring Smart Contracts
Blockchain - Introduction and Authoring Smart Contracts
 
Blockchain & Cryptocurrency
Blockchain & CryptocurrencyBlockchain & Cryptocurrency
Blockchain & Cryptocurrency
 
Presentation about Blockchain technology
Presentation about Blockchain technologyPresentation about Blockchain technology
Presentation about Blockchain technology
 
How Blockchain and Cryptocurrency works.
How Blockchain and Cryptocurrency works.How Blockchain and Cryptocurrency works.
How Blockchain and Cryptocurrency works.
 
Ethereum-Cryptocurrency (All about Ethereum)
Ethereum-Cryptocurrency (All about Ethereum) Ethereum-Cryptocurrency (All about Ethereum)
Ethereum-Cryptocurrency (All about Ethereum)
 
How Blockchain Is Different From Cryptocurrency?
How Blockchain Is Different From Cryptocurrency?How Blockchain Is Different From Cryptocurrency?
How Blockchain Is Different From Cryptocurrency?
 
Payment Protocols - Block Chain & Beyond
Payment Protocols - Block Chain & BeyondPayment Protocols - Block Chain & Beyond
Payment Protocols - Block Chain & Beyond
 
Ethereum Intro
Ethereum IntroEthereum Intro
Ethereum Intro
 
Primer to smart contracts, smart property, trustless asset management
Primer to smart contracts, smart property, trustless asset managementPrimer to smart contracts, smart property, trustless asset management
Primer to smart contracts, smart property, trustless asset management
 
Intro to smart contract on blockchain en
Intro to smart contract on blockchain enIntro to smart contract on blockchain en
Intro to smart contract on blockchain en
 
Ethereum
EthereumEthereum
Ethereum
 
bitcoin_presentation
bitcoin_presentationbitcoin_presentation
bitcoin_presentation
 
Blockchain Corporate Style
Blockchain Corporate StyleBlockchain Corporate Style
Blockchain Corporate Style
 
Ethereum
EthereumEthereum
Ethereum
 
Intro to Blockchain - And, by the way, what the heck is proof-of-work?
Intro to Blockchain - And, by the way, what the heck is proof-of-work?Intro to Blockchain - And, by the way, what the heck is proof-of-work?
Intro to Blockchain - And, by the way, what the heck is proof-of-work?
 

Similaire à Blockchain Programming

Ethereum Contracts - Coinfest 2015
Ethereum Contracts - Coinfest 2015Ethereum Contracts - Coinfest 2015
Ethereum Contracts - Coinfest 2015Rhea Myers
 
Blockchain and smart contracts, what they are and why you should really care ...
Blockchain and smart contracts, what they are and why you should really care ...Blockchain and smart contracts, what they are and why you should really care ...
Blockchain and smart contracts, what they are and why you should really care ...maeste
 
Stefano Maestri - Blockchain and smart contracts, what they are and why you s...
Stefano Maestri - Blockchain and smart contracts, what they are and why you s...Stefano Maestri - Blockchain and smart contracts, what they are and why you s...
Stefano Maestri - Blockchain and smart contracts, what they are and why you s...Codemotion
 
Algorand Technical Workshop 2021
Algorand Technical Workshop 2021Algorand Technical Workshop 2021
Algorand Technical Workshop 2021DanielBohnemann
 
Best practices to build secure smart contracts
Best practices to build secure smart contractsBest practices to build secure smart contracts
Best practices to build secure smart contractsGautam Anand
 
Intro to Blockchain Slides
Intro to Blockchain SlidesIntro to Blockchain Slides
Intro to Blockchain SlidesShannon Wells
 
Smart contracts in Solidity
Smart contracts in SoliditySmart contracts in Solidity
Smart contracts in SolidityFelix Crisan
 
Dumb Smart Contracts (TBBUG).pdf
Dumb Smart Contracts (TBBUG).pdfDumb Smart Contracts (TBBUG).pdf
Dumb Smart Contracts (TBBUG).pdfParesh Yadav
 
Smart contracts using web3.js
Smart contracts using web3.jsSmart contracts using web3.js
Smart contracts using web3.jsFelix Crisan
 
The JavaScript toolset for development on Ethereum
The JavaScript toolset for development on EthereumThe JavaScript toolset for development on Ethereum
The JavaScript toolset for development on EthereumGreeceJS
 
Javascript toolset for Ethereum Smart Contract development
Javascript toolset for Ethereum Smart Contract developmentJavascript toolset for Ethereum Smart Contract development
Javascript toolset for Ethereum Smart Contract developmentBugSense
 
How to run your own blockchain pilot
How to run your own blockchain pilotHow to run your own blockchain pilot
How to run your own blockchain pilotSimon Wilson
 
Introduction to Ethereum Smart Contracts
Introduction to Ethereum Smart Contracts Introduction to Ethereum Smart Contracts
Introduction to Ethereum Smart Contracts ArcBlock
 
Secure Smart Contract - Writing, testing, and deploying a non-trivial dApp.pdf
Secure Smart Contract - Writing, testing, and deploying a non-trivial dApp.pdfSecure Smart Contract - Writing, testing, and deploying a non-trivial dApp.pdf
Secure Smart Contract - Writing, testing, and deploying a non-trivial dApp.pdfParesh Yadav
 
Parity Progress Report
Parity Progress ReportParity Progress Report
Parity Progress Reportgavofyork
 
Building Apps with Ethereum Smart Contract
Building Apps with Ethereum Smart ContractBuilding Apps with Ethereum Smart Contract
Building Apps with Ethereum Smart ContractVaideeswaran Sethuraman
 

Similaire à Blockchain Programming (20)

Ethereum Contracts - Coinfest 2015
Ethereum Contracts - Coinfest 2015Ethereum Contracts - Coinfest 2015
Ethereum Contracts - Coinfest 2015
 
Blockchain and smart contracts, what they are and why you should really care ...
Blockchain and smart contracts, what they are and why you should really care ...Blockchain and smart contracts, what they are and why you should really care ...
Blockchain and smart contracts, what they are and why you should really care ...
 
Stefano Maestri - Blockchain and smart contracts, what they are and why you s...
Stefano Maestri - Blockchain and smart contracts, what they are and why you s...Stefano Maestri - Blockchain and smart contracts, what they are and why you s...
Stefano Maestri - Blockchain and smart contracts, what they are and why you s...
 
Welcome to Ethereum
Welcome to EthereumWelcome to Ethereum
Welcome to Ethereum
 
Algorand Technical Workshop 2021
Algorand Technical Workshop 2021Algorand Technical Workshop 2021
Algorand Technical Workshop 2021
 
Best practices to build secure smart contracts
Best practices to build secure smart contractsBest practices to build secure smart contracts
Best practices to build secure smart contracts
 
How to design, code, deploy and execute a smart contract
How to design, code, deploy and execute a smart contractHow to design, code, deploy and execute a smart contract
How to design, code, deploy and execute a smart contract
 
Intro to Blockchain Slides
Intro to Blockchain SlidesIntro to Blockchain Slides
Intro to Blockchain Slides
 
Smart contracts in Solidity
Smart contracts in SoliditySmart contracts in Solidity
Smart contracts in Solidity
 
Dumb Smart Contracts (TBBUG).pdf
Dumb Smart Contracts (TBBUG).pdfDumb Smart Contracts (TBBUG).pdf
Dumb Smart Contracts (TBBUG).pdf
 
Smart contracts using web3.js
Smart contracts using web3.jsSmart contracts using web3.js
Smart contracts using web3.js
 
The JavaScript toolset for development on Ethereum
The JavaScript toolset for development on EthereumThe JavaScript toolset for development on Ethereum
The JavaScript toolset for development on Ethereum
 
Javascript toolset for Ethereum Smart Contract development
Javascript toolset for Ethereum Smart Contract developmentJavascript toolset for Ethereum Smart Contract development
Javascript toolset for Ethereum Smart Contract development
 
How to run your own blockchain pilot
How to run your own blockchain pilotHow to run your own blockchain pilot
How to run your own blockchain pilot
 
Programming Decentralized Application
Programming Decentralized ApplicationProgramming Decentralized Application
Programming Decentralized Application
 
Introduction to Ethereum Smart Contracts
Introduction to Ethereum Smart Contracts Introduction to Ethereum Smart Contracts
Introduction to Ethereum Smart Contracts
 
Ethereum
EthereumEthereum
Ethereum
 
Secure Smart Contract - Writing, testing, and deploying a non-trivial dApp.pdf
Secure Smart Contract - Writing, testing, and deploying a non-trivial dApp.pdfSecure Smart Contract - Writing, testing, and deploying a non-trivial dApp.pdf
Secure Smart Contract - Writing, testing, and deploying a non-trivial dApp.pdf
 
Parity Progress Report
Parity Progress ReportParity Progress Report
Parity Progress Report
 
Building Apps with Ethereum Smart Contract
Building Apps with Ethereum Smart ContractBuilding Apps with Ethereum Smart Contract
Building Apps with Ethereum Smart Contract
 

Plus de Rhea Myers

Artists re-thinking-the-blockchain
Artists re-thinking-the-blockchainArtists re-thinking-the-blockchain
Artists re-thinking-the-blockchainRhea Myers
 
Foocorp Talk - make art 2009
Foocorp Talk - make art 2009Foocorp Talk - make art 2009
Foocorp Talk - make art 2009Rhea Myers
 
Lost In Translation - From Free Software to Free Culture
Lost In Translation - From Free Software to Free CultureLost In Translation - From Free Software to Free Culture
Lost In Translation - From Free Software to Free CultureRhea Myers
 
Free Software's Influence on Free Culture
Free Software's Influence on Free CultureFree Software's Influence on Free Culture
Free Software's Influence on Free CultureRhea Myers
 
Never strike your wife, even with a flower.
Never strike your wife, even with a flower.Never strike your wife, even with a flower.
Never strike your wife, even with a flower.Rhea Myers
 
Freedom means being able to choose between the rock and the hard place.
Freedom means being able to choose between the rock and the hard place.Freedom means being able to choose between the rock and the hard place.
Freedom means being able to choose between the rock and the hard place.Rhea Myers
 
Take away the risk and you can do anything.
Take away the risk and you can do anything.Take away the risk and you can do anything.
Take away the risk and you can do anything.Rhea Myers
 
Hello Tosh, gotta Toshiba
Hello Tosh, gotta ToshibaHello Tosh, gotta Toshiba
Hello Tosh, gotta ToshibaRhea Myers
 
Art is the illusion of spontaneity.
Art is the illusion of spontaneity. Art is the illusion of spontaneity.
Art is the illusion of spontaneity. Rhea Myers
 
Don't let your daughter-in-law eat your autumn eggplants.
Don't let your daughter-in-law eat your autumn eggplants.Don't let your daughter-in-law eat your autumn eggplants.
Don't let your daughter-in-law eat your autumn eggplants.Rhea Myers
 
I liked it so much I bought the company
I liked it so much I bought the companyI liked it so much I bought the company
I liked it so much I bought the companyRhea Myers
 
Pain nourishes courage. You can't be brave if you've only had wonderful thing...
Pain nourishes courage. You can't be brave if you've only had wonderful thing...Pain nourishes courage. You can't be brave if you've only had wonderful thing...
Pain nourishes courage. You can't be brave if you've only had wonderful thing...Rhea Myers
 
Money is for using; people are not.
Money is for using; people are not.Money is for using; people are not.
Money is for using; people are not.Rhea Myers
 
If people stand in a circle long enough, they'll eventually begin to dance
If people stand in a circle long enough, they'll eventually begin to danceIf people stand in a circle long enough, they'll eventually begin to dance
If people stand in a circle long enough, they'll eventually begin to danceRhea Myers
 
A bad wife spells a hundred years of bad harvest.
A bad wife spells a hundred years of bad harvest.A bad wife spells a hundred years of bad harvest.
A bad wife spells a hundred years of bad harvest.Rhea Myers
 
Get what you can and keep what you have; that's the way to get rich.
Get what you can and keep what you have; that's the way to get rich.Get what you can and keep what you have; that's the way to get rich.
Get what you can and keep what you have; that's the way to get rich.Rhea Myers
 
It's behind you!
It's behind you!It's behind you!
It's behind you!Rhea Myers
 
Time is an illusion. lunchtime - doubly so
Time is an illusion. lunchtime - doubly soTime is an illusion. lunchtime - doubly so
Time is an illusion. lunchtime - doubly soRhea Myers
 
When an elephant is in trouble even a frog will kick him.
When an elephant is in trouble even a frog will kick him.When an elephant is in trouble even a frog will kick him.
When an elephant is in trouble even a frog will kick him.Rhea Myers
 
When an elephant is in trouble even a frog will kick him.
When an elephant is in trouble even a frog will kick him.When an elephant is in trouble even a frog will kick him.
When an elephant is in trouble even a frog will kick him.Rhea Myers
 

Plus de Rhea Myers (20)

Artists re-thinking-the-blockchain
Artists re-thinking-the-blockchainArtists re-thinking-the-blockchain
Artists re-thinking-the-blockchain
 
Foocorp Talk - make art 2009
Foocorp Talk - make art 2009Foocorp Talk - make art 2009
Foocorp Talk - make art 2009
 
Lost In Translation - From Free Software to Free Culture
Lost In Translation - From Free Software to Free CultureLost In Translation - From Free Software to Free Culture
Lost In Translation - From Free Software to Free Culture
 
Free Software's Influence on Free Culture
Free Software's Influence on Free CultureFree Software's Influence on Free Culture
Free Software's Influence on Free Culture
 
Never strike your wife, even with a flower.
Never strike your wife, even with a flower.Never strike your wife, even with a flower.
Never strike your wife, even with a flower.
 
Freedom means being able to choose between the rock and the hard place.
Freedom means being able to choose between the rock and the hard place.Freedom means being able to choose between the rock and the hard place.
Freedom means being able to choose between the rock and the hard place.
 
Take away the risk and you can do anything.
Take away the risk and you can do anything.Take away the risk and you can do anything.
Take away the risk and you can do anything.
 
Hello Tosh, gotta Toshiba
Hello Tosh, gotta ToshibaHello Tosh, gotta Toshiba
Hello Tosh, gotta Toshiba
 
Art is the illusion of spontaneity.
Art is the illusion of spontaneity. Art is the illusion of spontaneity.
Art is the illusion of spontaneity.
 
Don't let your daughter-in-law eat your autumn eggplants.
Don't let your daughter-in-law eat your autumn eggplants.Don't let your daughter-in-law eat your autumn eggplants.
Don't let your daughter-in-law eat your autumn eggplants.
 
I liked it so much I bought the company
I liked it so much I bought the companyI liked it so much I bought the company
I liked it so much I bought the company
 
Pain nourishes courage. You can't be brave if you've only had wonderful thing...
Pain nourishes courage. You can't be brave if you've only had wonderful thing...Pain nourishes courage. You can't be brave if you've only had wonderful thing...
Pain nourishes courage. You can't be brave if you've only had wonderful thing...
 
Money is for using; people are not.
Money is for using; people are not.Money is for using; people are not.
Money is for using; people are not.
 
If people stand in a circle long enough, they'll eventually begin to dance
If people stand in a circle long enough, they'll eventually begin to danceIf people stand in a circle long enough, they'll eventually begin to dance
If people stand in a circle long enough, they'll eventually begin to dance
 
A bad wife spells a hundred years of bad harvest.
A bad wife spells a hundred years of bad harvest.A bad wife spells a hundred years of bad harvest.
A bad wife spells a hundred years of bad harvest.
 
Get what you can and keep what you have; that's the way to get rich.
Get what you can and keep what you have; that's the way to get rich.Get what you can and keep what you have; that's the way to get rich.
Get what you can and keep what you have; that's the way to get rich.
 
It's behind you!
It's behind you!It's behind you!
It's behind you!
 
Time is an illusion. lunchtime - doubly so
Time is an illusion. lunchtime - doubly soTime is an illusion. lunchtime - doubly so
Time is an illusion. lunchtime - doubly so
 
When an elephant is in trouble even a frog will kick him.
When an elephant is in trouble even a frog will kick him.When an elephant is in trouble even a frog will kick him.
When an elephant is in trouble even a frog will kick him.
 
When an elephant is in trouble even a frog will kick him.
When an elephant is in trouble even a frog will kick him.When an elephant is in trouble even a frog will kick him.
When an elephant is in trouble even a frog will kick him.
 

Dernier

Enjoy Night⚡Call Girls Dlf City Phase 3 Gurgaon >༒8448380779 Escort Service
Enjoy Night⚡Call Girls Dlf City Phase 3 Gurgaon >༒8448380779 Escort ServiceEnjoy Night⚡Call Girls Dlf City Phase 3 Gurgaon >༒8448380779 Escort Service
Enjoy Night⚡Call Girls Dlf City Phase 3 Gurgaon >༒8448380779 Escort ServiceDelhi Call girls
 
Pune Airport ( Call Girls ) Pune 6297143586 Hot Model With Sexy Bhabi Ready...
Pune Airport ( Call Girls ) Pune  6297143586  Hot Model With Sexy Bhabi Ready...Pune Airport ( Call Girls ) Pune  6297143586  Hot Model With Sexy Bhabi Ready...
Pune Airport ( Call Girls ) Pune 6297143586 Hot Model With Sexy Bhabi Ready...tanu pandey
 
Best VIP Call Girls Noida Sector 75 Call Me: 8448380779
Best VIP Call Girls Noida Sector 75 Call Me: 8448380779Best VIP Call Girls Noida Sector 75 Call Me: 8448380779
Best VIP Call Girls Noida Sector 75 Call Me: 8448380779Delhi Call girls
 
Call Girls In Defence Colony Delhi 💯Call Us 🔝8264348440🔝
Call Girls In Defence Colony Delhi 💯Call Us 🔝8264348440🔝Call Girls In Defence Colony Delhi 💯Call Us 🔝8264348440🔝
Call Girls In Defence Colony Delhi 💯Call Us 🔝8264348440🔝soniya singh
 
Moving Beyond Twitter/X and Facebook - Social Media for local news providers
Moving Beyond Twitter/X and Facebook - Social Media for local news providersMoving Beyond Twitter/X and Facebook - Social Media for local news providers
Moving Beyond Twitter/X and Facebook - Social Media for local news providersDamian Radcliffe
 
VIP 7001035870 Find & Meet Hyderabad Call Girls LB Nagar high-profile Call Girl
VIP 7001035870 Find & Meet Hyderabad Call Girls LB Nagar high-profile Call GirlVIP 7001035870 Find & Meet Hyderabad Call Girls LB Nagar high-profile Call Girl
VIP 7001035870 Find & Meet Hyderabad Call Girls LB Nagar high-profile Call Girladitipandeya
 
WhatsApp 📞 8448380779 ✅Call Girls In Mamura Sector 66 ( Noida)
WhatsApp 📞 8448380779 ✅Call Girls In Mamura Sector 66 ( Noida)WhatsApp 📞 8448380779 ✅Call Girls In Mamura Sector 66 ( Noida)
WhatsApp 📞 8448380779 ✅Call Girls In Mamura Sector 66 ( Noida)Delhi Call girls
 
Call Girls Service Chandigarh Lucky ❤️ 7710465962 Independent Call Girls In C...
Call Girls Service Chandigarh Lucky ❤️ 7710465962 Independent Call Girls In C...Call Girls Service Chandigarh Lucky ❤️ 7710465962 Independent Call Girls In C...
Call Girls Service Chandigarh Lucky ❤️ 7710465962 Independent Call Girls In C...Sheetaleventcompany
 
✂️ 👅 Independent Andheri Escorts With Room Vashi Call Girls 💃 9004004663
✂️ 👅 Independent Andheri Escorts With Room Vashi Call Girls 💃 9004004663✂️ 👅 Independent Andheri Escorts With Room Vashi Call Girls 💃 9004004663
✂️ 👅 Independent Andheri Escorts With Room Vashi Call Girls 💃 9004004663Call Girls Mumbai
 
AWS Community DAY Albertini-Ellan Cloud Security (1).pptx
AWS Community DAY Albertini-Ellan Cloud Security (1).pptxAWS Community DAY Albertini-Ellan Cloud Security (1).pptx
AWS Community DAY Albertini-Ellan Cloud Security (1).pptxellan12
 
𓀤Call On 7877925207 𓀤 Ahmedguda Call Girls Hot Model With Sexy Bhabi Ready Fo...
𓀤Call On 7877925207 𓀤 Ahmedguda Call Girls Hot Model With Sexy Bhabi Ready Fo...𓀤Call On 7877925207 𓀤 Ahmedguda Call Girls Hot Model With Sexy Bhabi Ready Fo...
𓀤Call On 7877925207 𓀤 Ahmedguda Call Girls Hot Model With Sexy Bhabi Ready Fo...Neha Pandey
 
Hire↠Young Call Girls in Tilak nagar (Delhi) ☎️ 9205541914 ☎️ Independent Esc...
Hire↠Young Call Girls in Tilak nagar (Delhi) ☎️ 9205541914 ☎️ Independent Esc...Hire↠Young Call Girls in Tilak nagar (Delhi) ☎️ 9205541914 ☎️ Independent Esc...
Hire↠Young Call Girls in Tilak nagar (Delhi) ☎️ 9205541914 ☎️ Independent Esc...Delhi Call girls
 
Networking in the Penumbra presented by Geoff Huston at NZNOG
Networking in the Penumbra presented by Geoff Huston at NZNOGNetworking in the Penumbra presented by Geoff Huston at NZNOG
Networking in the Penumbra presented by Geoff Huston at NZNOGAPNIC
 

Dernier (20)

Enjoy Night⚡Call Girls Dlf City Phase 3 Gurgaon >༒8448380779 Escort Service
Enjoy Night⚡Call Girls Dlf City Phase 3 Gurgaon >༒8448380779 Escort ServiceEnjoy Night⚡Call Girls Dlf City Phase 3 Gurgaon >༒8448380779 Escort Service
Enjoy Night⚡Call Girls Dlf City Phase 3 Gurgaon >༒8448380779 Escort Service
 
Pune Airport ( Call Girls ) Pune 6297143586 Hot Model With Sexy Bhabi Ready...
Pune Airport ( Call Girls ) Pune  6297143586  Hot Model With Sexy Bhabi Ready...Pune Airport ( Call Girls ) Pune  6297143586  Hot Model With Sexy Bhabi Ready...
Pune Airport ( Call Girls ) Pune 6297143586 Hot Model With Sexy Bhabi Ready...
 
Rohini Sector 6 Call Girls Delhi 9999965857 @Sabina Saikh No Advance
Rohini Sector 6 Call Girls Delhi 9999965857 @Sabina Saikh No AdvanceRohini Sector 6 Call Girls Delhi 9999965857 @Sabina Saikh No Advance
Rohini Sector 6 Call Girls Delhi 9999965857 @Sabina Saikh No Advance
 
Best VIP Call Girls Noida Sector 75 Call Me: 8448380779
Best VIP Call Girls Noida Sector 75 Call Me: 8448380779Best VIP Call Girls Noida Sector 75 Call Me: 8448380779
Best VIP Call Girls Noida Sector 75 Call Me: 8448380779
 
Call Girls In Defence Colony Delhi 💯Call Us 🔝8264348440🔝
Call Girls In Defence Colony Delhi 💯Call Us 🔝8264348440🔝Call Girls In Defence Colony Delhi 💯Call Us 🔝8264348440🔝
Call Girls In Defence Colony Delhi 💯Call Us 🔝8264348440🔝
 
@9999965857 🫦 Sexy Desi Call Girls Laxmi Nagar 💓 High Profile Escorts Delhi 🫶
@9999965857 🫦 Sexy Desi Call Girls Laxmi Nagar 💓 High Profile Escorts Delhi 🫶@9999965857 🫦 Sexy Desi Call Girls Laxmi Nagar 💓 High Profile Escorts Delhi 🫶
@9999965857 🫦 Sexy Desi Call Girls Laxmi Nagar 💓 High Profile Escorts Delhi 🫶
 
Dwarka Sector 26 Call Girls | Delhi | 9999965857 🫦 Vanshika Verma More Our Se...
Dwarka Sector 26 Call Girls | Delhi | 9999965857 🫦 Vanshika Verma More Our Se...Dwarka Sector 26 Call Girls | Delhi | 9999965857 🫦 Vanshika Verma More Our Se...
Dwarka Sector 26 Call Girls | Delhi | 9999965857 🫦 Vanshika Verma More Our Se...
 
Moving Beyond Twitter/X and Facebook - Social Media for local news providers
Moving Beyond Twitter/X and Facebook - Social Media for local news providersMoving Beyond Twitter/X and Facebook - Social Media for local news providers
Moving Beyond Twitter/X and Facebook - Social Media for local news providers
 
VIP 7001035870 Find & Meet Hyderabad Call Girls LB Nagar high-profile Call Girl
VIP 7001035870 Find & Meet Hyderabad Call Girls LB Nagar high-profile Call GirlVIP 7001035870 Find & Meet Hyderabad Call Girls LB Nagar high-profile Call Girl
VIP 7001035870 Find & Meet Hyderabad Call Girls LB Nagar high-profile Call Girl
 
Rohini Sector 22 Call Girls Delhi 9999965857 @Sabina Saikh No Advance
Rohini Sector 22 Call Girls Delhi 9999965857 @Sabina Saikh No AdvanceRohini Sector 22 Call Girls Delhi 9999965857 @Sabina Saikh No Advance
Rohini Sector 22 Call Girls Delhi 9999965857 @Sabina Saikh No Advance
 
WhatsApp 📞 8448380779 ✅Call Girls In Mamura Sector 66 ( Noida)
WhatsApp 📞 8448380779 ✅Call Girls In Mamura Sector 66 ( Noida)WhatsApp 📞 8448380779 ✅Call Girls In Mamura Sector 66 ( Noida)
WhatsApp 📞 8448380779 ✅Call Girls In Mamura Sector 66 ( Noida)
 
Russian Call Girls in %(+971524965298 )# Call Girls in Dubai
Russian Call Girls in %(+971524965298  )#  Call Girls in DubaiRussian Call Girls in %(+971524965298  )#  Call Girls in Dubai
Russian Call Girls in %(+971524965298 )# Call Girls in Dubai
 
(INDIRA) Call Girl Pune Call Now 8250077686 Pune Escorts 24x7
(INDIRA) Call Girl Pune Call Now 8250077686 Pune Escorts 24x7(INDIRA) Call Girl Pune Call Now 8250077686 Pune Escorts 24x7
(INDIRA) Call Girl Pune Call Now 8250077686 Pune Escorts 24x7
 
Call Girls Service Chandigarh Lucky ❤️ 7710465962 Independent Call Girls In C...
Call Girls Service Chandigarh Lucky ❤️ 7710465962 Independent Call Girls In C...Call Girls Service Chandigarh Lucky ❤️ 7710465962 Independent Call Girls In C...
Call Girls Service Chandigarh Lucky ❤️ 7710465962 Independent Call Girls In C...
 
✂️ 👅 Independent Andheri Escorts With Room Vashi Call Girls 💃 9004004663
✂️ 👅 Independent Andheri Escorts With Room Vashi Call Girls 💃 9004004663✂️ 👅 Independent Andheri Escorts With Room Vashi Call Girls 💃 9004004663
✂️ 👅 Independent Andheri Escorts With Room Vashi Call Girls 💃 9004004663
 
AWS Community DAY Albertini-Ellan Cloud Security (1).pptx
AWS Community DAY Albertini-Ellan Cloud Security (1).pptxAWS Community DAY Albertini-Ellan Cloud Security (1).pptx
AWS Community DAY Albertini-Ellan Cloud Security (1).pptx
 
𓀤Call On 7877925207 𓀤 Ahmedguda Call Girls Hot Model With Sexy Bhabi Ready Fo...
𓀤Call On 7877925207 𓀤 Ahmedguda Call Girls Hot Model With Sexy Bhabi Ready Fo...𓀤Call On 7877925207 𓀤 Ahmedguda Call Girls Hot Model With Sexy Bhabi Ready Fo...
𓀤Call On 7877925207 𓀤 Ahmedguda Call Girls Hot Model With Sexy Bhabi Ready Fo...
 
Rohini Sector 26 Call Girls Delhi 9999965857 @Sabina Saikh No Advance
Rohini Sector 26 Call Girls Delhi 9999965857 @Sabina Saikh No AdvanceRohini Sector 26 Call Girls Delhi 9999965857 @Sabina Saikh No Advance
Rohini Sector 26 Call Girls Delhi 9999965857 @Sabina Saikh No Advance
 
Hire↠Young Call Girls in Tilak nagar (Delhi) ☎️ 9205541914 ☎️ Independent Esc...
Hire↠Young Call Girls in Tilak nagar (Delhi) ☎️ 9205541914 ☎️ Independent Esc...Hire↠Young Call Girls in Tilak nagar (Delhi) ☎️ 9205541914 ☎️ Independent Esc...
Hire↠Young Call Girls in Tilak nagar (Delhi) ☎️ 9205541914 ☎️ Independent Esc...
 
Networking in the Penumbra presented by Geoff Huston at NZNOG
Networking in the Penumbra presented by Geoff Huston at NZNOGNetworking in the Penumbra presented by Geoff Huston at NZNOG
Networking in the Penumbra presented by Geoff Huston at NZNOG
 

Blockchain Programming