SlideShare una empresa de Scribd logo
1 de 45
#DevoxxCoin
By BELLAJ Badr
Twitter @badrbellaj
The Age of Cryptocurrency
Developers Let’s Discover A new
opportunity
Bellaj.badr@gmail.com
Linkedin.com/in/bellajbadr
Twitter @Badrbellaj#DevoxxCoin
The Age of Cryptocurrency
•Money is …..?
•In Math 𝑥 + 𝑎 𝑛 = 𝑘=0
𝑛 𝑛
𝑘
𝑥 𝑘 𝑎 𝑛−𝑘 we trust.
•What is the Crypto-currency?
•How it works (Bitcoin)?
•Behind the scene(Block Chain Technology)
•Start coding for Bitcoin/BC
•Demo.
Twitter @badrbellaj#DevoxxCoin
$ WhoamI?
Twitter @badrbellaj#DevoxxCoin
$ WhoamI?
Twitter @badrbellaj#DevoxxCoin
Money is …
Twitter @badrbellaj#DevoxxCoin
Why Money ?
With money you could exchange
goods in a market for a common
medium of exchange.
Twitter @badrbellaj#DevoxxCoin
Currency Evolution
Twitter @badrbellaj#DevoxxCoin
Currency Evolution
Rai Stone
The Stone money
4Tons
Solution Anti-Pickpocket
Twitter @badrbellaj#DevoxxCoin
Paper money was introduced in China during the 11th
century.
In the 13th century, paper money became known in
Europe.
PAPER ..No Way????
Currency Evolution
The problems begins :(
Twitter @badrbellaj#DevoxxCoin
A centralized system
Twitter @badrbellaj#DevoxxCoin
inflation/diflation
the Vietnam War and persistent balance of payments deficits, led U.S.
President Richard Nixon to end international convertibility of the U.S.
dollar to gold on August 15, 1971
Governments (banks) prints easily money to pay debts, pay more salaries …
without regard for a stable currency.
Twitter @badrbellaj#DevoxxCoin
Inflation/Hyper Inflation
Twitter @badrbellaj#DevoxxCoin
How money is crated
Based on credits !!
Twitter @Badrbellaj#DevoxxCoin
In a centralized model, NO!!
Twitter @badrbellaj#DevoxxCoin
In a god they trust
I have no trust in the god they trust
• Inflation
• Slow transfers (2 business days)
• Expensive transfers
• Ease of seizure
• local
Twitter @Badrbellaj#DevoxxCoin
Twitter @Badrbellaj#DevoxxCoin
Wait After all, Everything is
digital why not Money?
Digital currencies are needed for a
digital world
@Badrbellaj#DevoxxCoin
The Cryptocurrency
Bitcoin
DREAMS BECOMES REALITY
Twitter @badrbellaj#DevoxxCoin
A digital currency in which encryption techniques are used to
regulate the generation of units of currency and verify the
transfer of funds, operating independently of a central bank
within a peer to peer network.
We trust in Math/ Encryption
Twitter @badrbellaj#DevoxxCoin
• In 2008 A whitepaper was
posted on the internet by
Satoshi Nakamoto
titled Bitcoin: A Peer-to-Peer
Electronic Cash System. It
described a sytem of
cryptocurrency that was not
backed by any government or
any form of existing currency.
Bitcoin ("BTC") since 2008
Twitter @badrbellaj#DevoxxCoin
• Bitcoin is an Open-Source project (software)
• The most successful & the first fully implemented
crypto currency.
• Bitcoin is a peer to peer Network (over internet) and a
Currency base.
Bitcoin
Twitter @badrbellaj#DevoxxCoin
Bitcoin
Twitter @badrbellaj#DevoxxCoin
Public key cryptography was
invented in the 1970s and is a
mathematical foundation for
computer and information security
In Math we trust
We trusts
In something (gold) we trusts In someone (bankers) we trusts
Twitter @Badrbellaj#DevoxxCoin
High transparency
High resilience / availability
High Trust/security
High Efficiency/Low Coast
High performance
universal
Bitcoin is a better form of money
Twitter @Badrbellaj#DevoxxCoin
Venture capitalists have
invested more than
$500 million (£340m)
into Bitcoin-related
startups.
Twitter @badrbellaj#DevoxxCoin
Bitcoin/$
@Badrbellaj#DevoxxCoin
How it Works
THE AGE OF CRYPTOCURRENCY
@Badrbellaj#DevoxxCoin
@Badrbellaj#DevoxxCoin
Twitter @badrbellaj#DevoxxCoin
Transactions
Twitter @badrbellaj#DevoxxCoin
Proof of Work
To get paid for their hash, a miner must find a hash that starts with a certain sequence.
(for example, 000)
This extends the amount of time the miner must spend on each block (avoid inflation)
Twitter @badrbellaj#DevoxxCoin
Blockchain
A persistent,
distributed
database, put
assets into a
transparent ledger,
everyone has a
copy. It is
Cryptographly
secure.
Twitter @badrbellaj#DevoxxCoin
Blockchain
BC resolves a complex
problem : how to initiate
trust without a
centralized authority
Twitter @badrbellaj#DevoxxCoin
Inside Blockchain
Bitcoin/Blockchain
is a transparent
system
@Badrbellaj#DevoxxCoin
DEMOBitcoin Core
Twitter @badrbellaj#DevoxxCoin
>>bitcoind –regtest
>>bitcoin-cli regtest generate 101 //frst time
>>bitcoin-cli regtest getbalance
Bitocoin core is available at bitcoin.org
Bitcoin core
@Badrbellaj#DevoxxCoin
Talk is cheap, Show Me The
Code
Twitter @Badrbellaj#DevoxxCoin
Let’s code for Bitcoin
BITCOINJIs Open source(Apache licensed) & Java
Twitter @Badrbellaj#DevoxxCoin
Get started with BitcoinJ
You can download the library as a JAR, or use Maven, or get the code from
github.
Documentation : https://bitcoinj.github.io/javadoc/0.13.3/
bitcoinj is a library for working with the Bitcoin protocol. It
can maintain a wallet, send/receive transactions without
needing a local copy of Bitcoin Core and has many other
advanced features
Twitter @Badrbellaj#DevoxxCoin
BitcoinJ Sample
final NetworkParameters params = RegTestParams.get();
final DumpedPrivateKey dumpedPrivateKey = new DumpedPrivateKey(RegTestParams.get(),
"cQWVW6Vj3E7qEH4DSxN5HGcE29YTPQhpKBzJGXEcQ7LtWtEZ9YGK");
final ECKey key = dumpedPrivateKey.getKey();
System.out.println("BTC address that will be added: " +
key.toAddress(RegTestParams.get()));
System.out.println("Private key that will be added: " +
key.getPrivateKeyEncoded(RegTestParams.get()));
Address addressFromKey = key.toAddress(params);
System.out.println("On the network, we can use this address:n" + addressFromKey);
final WalletAppKit kit = new WalletAppKit(RegTestParams.get(), new File("Doxx"),
"Devoxx BTC") {
protected void onSetupCompleted() {
}
};
Twitter @Badrbellaj#DevoxxCoin
DEMOBitcoinJ
Twitter @badrbellaj#DevoxxCoin
BTC is 42 000 lines of code only
As of June 30, there
were 6,109 Github
repositories
referencing Bitcoin. By
comparison, there were
2,318 repositories
referencing Paypal.
Twitter @badrbellaj#DevoxxCoin
Blockchain is here to stay
Twitter @badrbellaj#DevoxxCoin
Projects based on BC
NamCoin
BitMessage
Storaj.IO
Zennet (super computer)
La’zooz
Etherum (smartcontract)
@YourTwitterHandle#DVXFR14{session hashtag} Twitter @Badrbellaj#DevoxxCoin
The Age of
Crypto currency

Más contenido relacionado

La actualidad más candente

La actualidad más candente (20)

Dgw birch eris_presentation
Dgw birch eris_presentationDgw birch eris_presentation
Dgw birch eris_presentation
 
9 BUILDING BLOCKS FOR A SUCCESSFUL BLOCKCHAIN INDUSTRY | BLOCKSTARS.IO
9 BUILDING BLOCKS FOR A SUCCESSFUL BLOCKCHAIN INDUSTRY | BLOCKSTARS.IO9 BUILDING BLOCKS FOR A SUCCESSFUL BLOCKCHAIN INDUSTRY | BLOCKSTARS.IO
9 BUILDING BLOCKS FOR A SUCCESSFUL BLOCKCHAIN INDUSTRY | BLOCKSTARS.IO
 
The Distributed Ledger Landscape
The Distributed Ledger LandscapeThe Distributed Ledger Landscape
The Distributed Ledger Landscape
 
Blockchain
BlockchainBlockchain
Blockchain
 
BlockChain for the Banker
BlockChain for the BankerBlockChain for the Banker
BlockChain for the Banker
 
Bitcoin on Blockchain: Money 2.0
Bitcoin on Blockchain: Money 2.0Bitcoin on Blockchain: Money 2.0
Bitcoin on Blockchain: Money 2.0
 
A Strategist's Guide to Blockchain
A Strategist's Guide to BlockchainA Strategist's Guide to Blockchain
A Strategist's Guide to Blockchain
 
Blockchain technology and applications from a financial perspective
Blockchain technology and applications from a financial perspectiveBlockchain technology and applications from a financial perspective
Blockchain technology and applications from a financial perspective
 
Blockchain 101
Blockchain 101Blockchain 101
Blockchain 101
 
Cryptocurrencies: The Mechanics Economic and Finance
Cryptocurrencies: The Mechanics Economic and FinanceCryptocurrencies: The Mechanics Economic and Finance
Cryptocurrencies: The Mechanics Economic and Finance
 
Bitcoin presentation
Bitcoin presentationBitcoin presentation
Bitcoin presentation
 
The Continued Existence of Altcoins, Appcoins and Commodity coins
The Continued Existence of Altcoins, Appcoins and Commodity coinsThe Continued Existence of Altcoins, Appcoins and Commodity coins
The Continued Existence of Altcoins, Appcoins and Commodity coins
 
Making Lemonade out of Lemons: Squeezing utility from a proof-of-work experiment
Making Lemonade out of Lemons: Squeezing utility from a proof-of-work experimentMaking Lemonade out of Lemons: Squeezing utility from a proof-of-work experiment
Making Lemonade out of Lemons: Squeezing utility from a proof-of-work experiment
 
Blockchain Introduction
Blockchain IntroductionBlockchain Introduction
Blockchain Introduction
 
Blockchain- how it could transform business
Blockchain- how it could transform businessBlockchain- how it could transform business
Blockchain- how it could transform business
 
Blockchain and Real Estate - IBREA conference
Blockchain and Real Estate - IBREA conferenceBlockchain and Real Estate - IBREA conference
Blockchain and Real Estate - IBREA conference
 
The ABC of Blockchain Tech : Crypto,NFTs and the UN SDGs
The ABC of Blockchain Tech : Crypto,NFTs and the UN SDGsThe ABC of Blockchain Tech : Crypto,NFTs and the UN SDGs
The ABC of Blockchain Tech : Crypto,NFTs and the UN SDGs
 
Structured approach to blockchain and consensus techniques
Structured approach to blockchain and consensus techniquesStructured approach to blockchain and consensus techniques
Structured approach to blockchain and consensus techniques
 
Blockchain demystification
Blockchain demystificationBlockchain demystification
Blockchain demystification
 
Blockchain Introduction Presentation
Blockchain Introduction PresentationBlockchain Introduction Presentation
Blockchain Introduction Presentation
 

Destacado

What is Bitcoin? How Bitcoin works in under 5 minutes.
What is Bitcoin? How Bitcoin works in under 5 minutes.What is Bitcoin? How Bitcoin works in under 5 minutes.
What is Bitcoin? How Bitcoin works in under 5 minutes.
Ryan Shea
 
Karim Baina Seminaire BigData IoT ISIMA Juillet 2016
Karim Baina Seminaire BigData IoT ISIMA Juillet 2016Karim Baina Seminaire BigData IoT ISIMA Juillet 2016
Karim Baina Seminaire BigData IoT ISIMA Juillet 2016
Karim Baïna
 

Destacado (20)

The Coinspace Cryptocurrency chart towards the future.
The Coinspace Cryptocurrency chart towards the future.The Coinspace Cryptocurrency chart towards the future.
The Coinspace Cryptocurrency chart towards the future.
 
Bitcoin
BitcoinBitcoin
Bitcoin
 
Introduction to Bitcoins and Cryptocurrency
Introduction to Bitcoins and CryptocurrencyIntroduction to Bitcoins and Cryptocurrency
Introduction to Bitcoins and Cryptocurrency
 
Bitcoin
BitcoinBitcoin
Bitcoin
 
Introduction Bitcoin
Introduction BitcoinIntroduction Bitcoin
Introduction Bitcoin
 
What is Bitcoin? How Bitcoin works in under 5 minutes.
What is Bitcoin? How Bitcoin works in under 5 minutes.What is Bitcoin? How Bitcoin works in under 5 minutes.
What is Bitcoin? How Bitcoin works in under 5 minutes.
 
Bitcoin technology
Bitcoin technologyBitcoin technology
Bitcoin technology
 
What is Bitcoin? - A guide for beginners
What is Bitcoin? - A guide for beginnersWhat is Bitcoin? - A guide for beginners
What is Bitcoin? - A guide for beginners
 
Reshaping the data center v5
Reshaping the data center v5Reshaping the data center v5
Reshaping the data center v5
 
Open Data - e-Madina 07 Avril 2016
Open Data - e-Madina 07 Avril 2016Open Data - e-Madina 07 Avril 2016
Open Data - e-Madina 07 Avril 2016
 
M01 avantages strategiques-24- ms
M01 avantages strategiques-24- msM01 avantages strategiques-24- ms
M01 avantages strategiques-24- ms
 
Présentation IT Governance cobit - IT BSC
Présentation IT Governance   cobit - IT BSCPrésentation IT Governance   cobit - IT BSC
Présentation IT Governance cobit - IT BSC
 
M09 tendances et evolution métiers-ms-27
M09 tendances et evolution métiers-ms-27M09 tendances et evolution métiers-ms-27
M09 tendances et evolution métiers-ms-27
 
Cobit v4.1
Cobit v4.1Cobit v4.1
Cobit v4.1
 
Karim Baina Seminaire BigData IoT ISIMA Juillet 2016
Karim Baina Seminaire BigData IoT ISIMA Juillet 2016Karim Baina Seminaire BigData IoT ISIMA Juillet 2016
Karim Baina Seminaire BigData IoT ISIMA Juillet 2016
 
GRC Summit London 2016 - LEARNING THE LESSONS OF DIGITAL TRANSFORMATION by ...
GRC Summit London 2016 - LEARNING THE LESSONS OF  DIGITAL TRANSFORMATION  by ...GRC Summit London 2016 - LEARNING THE LESSONS OF  DIGITAL TRANSFORMATION  by ...
GRC Summit London 2016 - LEARNING THE LESSONS OF DIGITAL TRANSFORMATION by ...
 
Quick Understanding of Bitcoin/Cryptocurrency.
Quick Understanding of Bitcoin/Cryptocurrency.Quick Understanding of Bitcoin/Cryptocurrency.
Quick Understanding of Bitcoin/Cryptocurrency.
 
Where Do We Go From Here / Qualisystems - IXIA in a joint presentation
Where Do We Go From Here / Qualisystems - IXIA in a joint presentationWhere Do We Go From Here / Qualisystems - IXIA in a joint presentation
Where Do We Go From Here / Qualisystems - IXIA in a joint presentation
 
Bitcoin and the future of cryptocurrency
Bitcoin and the future of cryptocurrencyBitcoin and the future of cryptocurrency
Bitcoin and the future of cryptocurrency
 
Summit x480
Summit x480Summit x480
Summit x480
 

Similar a the age of cryptocurrency at Devoxx Morocco

IMPACT OF BITCOIN ON 21st CENTURY.docx
IMPACT OF BITCOIN ON 21st CENTURY.docxIMPACT OF BITCOIN ON 21st CENTURY.docx
IMPACT OF BITCOIN ON 21st CENTURY.docx
MuskanRath1
 
Blockchain Explained | How Does A Blockchain Work | Blockchain Explained Simp...
Blockchain Explained | How Does A Blockchain Work | Blockchain Explained Simp...Blockchain Explained | How Does A Blockchain Work | Blockchain Explained Simp...
Blockchain Explained | How Does A Blockchain Work | Blockchain Explained Simp...
Simplilearn
 
Blockchain In-Depth Tutorial for Beginners
Blockchain In-Depth Tutorial for BeginnersBlockchain In-Depth Tutorial for Beginners
Blockchain In-Depth Tutorial for Beginners
Simplilearn
 
What is Bitcoin and How is it related to Satoshi Nakamoto White Paper.pdf
What is Bitcoin and How is it related to Satoshi Nakamoto White Paper.pdfWhat is Bitcoin and How is it related to Satoshi Nakamoto White Paper.pdf
What is Bitcoin and How is it related to Satoshi Nakamoto White Paper.pdf
Suraj Sharma
 

Similar a the age of cryptocurrency at Devoxx Morocco (20)

BlockChain BreakDown
BlockChain BreakDownBlockChain BreakDown
BlockChain BreakDown
 
IMPACT OF BITCOIN ON 21st CENTURY.docx
IMPACT OF BITCOIN ON 21st CENTURY.docxIMPACT OF BITCOIN ON 21st CENTURY.docx
IMPACT OF BITCOIN ON 21st CENTURY.docx
 
INTRO TO BLOCKCHAINS AND CRYPTOCURRENCY
INTRO TO BLOCKCHAINS AND CRYPTOCURRENCYINTRO TO BLOCKCHAINS AND CRYPTOCURRENCY
INTRO TO BLOCKCHAINS AND CRYPTOCURRENCY
 
Bitcoin Technology
Bitcoin TechnologyBitcoin Technology
Bitcoin Technology
 
Cryptocurrency-Bitcoin
Cryptocurrency-BitcoinCryptocurrency-Bitcoin
Cryptocurrency-Bitcoin
 
Blockchain Technology.pptx
Blockchain Technology.pptxBlockchain Technology.pptx
Blockchain Technology.pptx
 
Bitcoin technology
Bitcoin technologyBitcoin technology
Bitcoin technology
 
Article - Bitcoin 101.docx
Article - Bitcoin 101.docxArticle - Bitcoin 101.docx
Article - Bitcoin 101.docx
 
CubeIT Bitcoin lecture
CubeIT Bitcoin lectureCubeIT Bitcoin lecture
CubeIT Bitcoin lecture
 
Bitcoin Breakthrough Training Guide.
Bitcoin Breakthrough Training Guide.Bitcoin Breakthrough Training Guide.
Bitcoin Breakthrough Training Guide.
 
Blockchain Explained | How Does A Blockchain Work | Blockchain Explained Simp...
Blockchain Explained | How Does A Blockchain Work | Blockchain Explained Simp...Blockchain Explained | How Does A Blockchain Work | Blockchain Explained Simp...
Blockchain Explained | How Does A Blockchain Work | Blockchain Explained Simp...
 
Blockchain and Crypto 101 - October 2017
Blockchain and Crypto 101 - October 2017Blockchain and Crypto 101 - October 2017
Blockchain and Crypto 101 - October 2017
 
Blockchain In-Depth Tutorial for Beginners
Blockchain In-Depth Tutorial for BeginnersBlockchain In-Depth Tutorial for Beginners
Blockchain In-Depth Tutorial for Beginners
 
What is Bitcoin and How is it related to Satoshi Nakamoto White Paper.pdf
What is Bitcoin and How is it related to Satoshi Nakamoto White Paper.pdfWhat is Bitcoin and How is it related to Satoshi Nakamoto White Paper.pdf
What is Bitcoin and How is it related to Satoshi Nakamoto White Paper.pdf
 
Cryptocurrencies.pptx
Cryptocurrencies.pptxCryptocurrencies.pptx
Cryptocurrencies.pptx
 
Bitcoin data mining
Bitcoin data miningBitcoin data mining
Bitcoin data mining
 
Is Netcoins The Best Place To Buy Bitcoin Canada?
Is Netcoins The Best Place To Buy Bitcoin Canada?Is Netcoins The Best Place To Buy Bitcoin Canada?
Is Netcoins The Best Place To Buy Bitcoin Canada?
 
What is Blockchain and why should we care?
What is Blockchain and why should we care?What is Blockchain and why should we care?
What is Blockchain and why should we care?
 
How does blockchain work
How does blockchain workHow does blockchain work
How does blockchain work
 
OVERVIEW ON CRYPTOCURRENCY
OVERVIEW ON CRYPTOCURRENCYOVERVIEW ON CRYPTOCURRENCY
OVERVIEW ON CRYPTOCURRENCY
 

Más de Bellaj Badr

Más de Bellaj Badr (12)

Cours4.pptx
Cours4.pptxCours4.pptx
Cours4.pptx
 
0240-formation-ssh-secure-shell.pdf
0240-formation-ssh-secure-shell.pdf0240-formation-ssh-secure-shell.pdf
0240-formation-ssh-secure-shell.pdf
 
5-Authentification.2P.pdf
5-Authentification.2P.pdf5-Authentification.2P.pdf
5-Authentification.2P.pdf
 
Is web 3 an overengineered solution
Is web 3 an overengineered solutionIs web 3 an overengineered solution
Is web 3 an overengineered solution
 
create your own cryptocurrency
create your own cryptocurrencycreate your own cryptocurrency
create your own cryptocurrency
 
Blockchain and bitcoin in numbers
Blockchain and bitcoin in numbersBlockchain and bitcoin in numbers
Blockchain and bitcoin in numbers
 
Blockchain Tokenization
Blockchain TokenizationBlockchain Tokenization
Blockchain Tokenization
 
Security in the blockchain
Security in the blockchainSecurity in the blockchain
Security in the blockchain
 
An introduction to AI (artificial intelligence)
An introduction to AI (artificial intelligence)An introduction to AI (artificial intelligence)
An introduction to AI (artificial intelligence)
 
Connected Car Platform (CC-p)
Connected Car Platform (CC-p) Connected Car Platform (CC-p)
Connected Car Platform (CC-p)
 
C from hello world to 010101
C from hello world to 010101C from hello world to 010101
C from hello world to 010101
 
beware of Thing Bot
beware of Thing Botbeware of Thing Bot
beware of Thing Bot
 

Último

Artificial Intelligence: Facts and Myths
Artificial Intelligence: Facts and MythsArtificial Intelligence: Facts and Myths
Artificial Intelligence: Facts and Myths
Joaquim Jorge
 

Último (20)

The Role of Taxonomy and Ontology in Semantic Layers - Heather Hedden.pdf
The Role of Taxonomy and Ontology in Semantic Layers - Heather Hedden.pdfThe Role of Taxonomy and Ontology in Semantic Layers - Heather Hedden.pdf
The Role of Taxonomy and Ontology in Semantic Layers - Heather Hedden.pdf
 
Axa Assurance Maroc - Insurer Innovation Award 2024
Axa Assurance Maroc - Insurer Innovation Award 2024Axa Assurance Maroc - Insurer Innovation Award 2024
Axa Assurance Maroc - Insurer Innovation Award 2024
 
Tech Trends Report 2024 Future Today Institute.pdf
Tech Trends Report 2024 Future Today Institute.pdfTech Trends Report 2024 Future Today Institute.pdf
Tech Trends Report 2024 Future Today Institute.pdf
 
Artificial Intelligence: Facts and Myths
Artificial Intelligence: Facts and MythsArtificial Intelligence: Facts and Myths
Artificial Intelligence: Facts and Myths
 
Finology Group – Insurtech Innovation Award 2024
Finology Group – Insurtech Innovation Award 2024Finology Group – Insurtech Innovation Award 2024
Finology Group – Insurtech Innovation Award 2024
 
How to Troubleshoot Apps for the Modern Connected Worker
How to Troubleshoot Apps for the Modern Connected WorkerHow to Troubleshoot Apps for the Modern Connected Worker
How to Troubleshoot Apps for the Modern Connected Worker
 
Automating Google Workspace (GWS) & more with Apps Script
Automating Google Workspace (GWS) & more with Apps ScriptAutomating Google Workspace (GWS) & more with Apps Script
Automating Google Workspace (GWS) & more with Apps Script
 
Bajaj Allianz Life Insurance Company - Insurer Innovation Award 2024
Bajaj Allianz Life Insurance Company - Insurer Innovation Award 2024Bajaj Allianz Life Insurance Company - Insurer Innovation Award 2024
Bajaj Allianz Life Insurance Company - Insurer Innovation Award 2024
 
How to convert PDF to text with Nanonets
How to convert PDF to text with NanonetsHow to convert PDF to text with Nanonets
How to convert PDF to text with Nanonets
 
2024: Domino Containers - The Next Step. News from the Domino Container commu...
2024: Domino Containers - The Next Step. News from the Domino Container commu...2024: Domino Containers - The Next Step. News from the Domino Container commu...
2024: Domino Containers - The Next Step. News from the Domino Container commu...
 
ProductAnonymous-April2024-WinProductDiscovery-MelissaKlemke
ProductAnonymous-April2024-WinProductDiscovery-MelissaKlemkeProductAnonymous-April2024-WinProductDiscovery-MelissaKlemke
ProductAnonymous-April2024-WinProductDiscovery-MelissaKlemke
 
08448380779 Call Girls In Civil Lines Women Seeking Men
08448380779 Call Girls In Civil Lines Women Seeking Men08448380779 Call Girls In Civil Lines Women Seeking Men
08448380779 Call Girls In Civil Lines Women Seeking Men
 
08448380779 Call Girls In Greater Kailash - I Women Seeking Men
08448380779 Call Girls In Greater Kailash - I Women Seeking Men08448380779 Call Girls In Greater Kailash - I Women Seeking Men
08448380779 Call Girls In Greater Kailash - I Women Seeking Men
 
Boost Fertility New Invention Ups Success Rates.pdf
Boost Fertility New Invention Ups Success Rates.pdfBoost Fertility New Invention Ups Success Rates.pdf
Boost Fertility New Invention Ups Success Rates.pdf
 
Handwritten Text Recognition for manuscripts and early printed texts
Handwritten Text Recognition for manuscripts and early printed textsHandwritten Text Recognition for manuscripts and early printed texts
Handwritten Text Recognition for manuscripts and early printed texts
 
Strategize a Smooth Tenant-to-tenant Migration and Copilot Takeoff
Strategize a Smooth Tenant-to-tenant Migration and Copilot TakeoffStrategize a Smooth Tenant-to-tenant Migration and Copilot Takeoff
Strategize a Smooth Tenant-to-tenant Migration and Copilot Takeoff
 
TrustArc Webinar - Stay Ahead of US State Data Privacy Law Developments
TrustArc Webinar - Stay Ahead of US State Data Privacy Law DevelopmentsTrustArc Webinar - Stay Ahead of US State Data Privacy Law Developments
TrustArc Webinar - Stay Ahead of US State Data Privacy Law Developments
 
What Are The Drone Anti-jamming Systems Technology?
What Are The Drone Anti-jamming Systems Technology?What Are The Drone Anti-jamming Systems Technology?
What Are The Drone Anti-jamming Systems Technology?
 
GenCyber Cyber Security Day Presentation
GenCyber Cyber Security Day PresentationGenCyber Cyber Security Day Presentation
GenCyber Cyber Security Day Presentation
 
Partners Life - Insurer Innovation Award 2024
Partners Life - Insurer Innovation Award 2024Partners Life - Insurer Innovation Award 2024
Partners Life - Insurer Innovation Award 2024
 

the age of cryptocurrency at Devoxx Morocco

Notas del editor

  1. But there is a “double spend” problem to solve
  2. Cryptocurrencies use decentralized control as opposed to centralized electronic money/centralized banking systems. The decentralized control is related to the use of bitcoin's block chain transaction database in the role of a distributed ledger. Decentralized cryptocurrency is produced by the entire cryptocurrency system collectively, at a rate which is defined when the system is created and which is publicly known Most cryptocurrencies are designed to gradually decrease production of currency, placing an ultimate cap on the total amount of currency that will ever be in circulation.
  3. No corporation or government controls it, and you don’t have to trust any third party with your money. You completely control your money with Bitcoin, and can anonymously and securely send it to anyone else.
  4. Les maths sont incorubtible
  5. NO SPOF
  6. in October 2013, reaching over $1160 by early December. Note how the 2nd Bitcoin bubble on the left side of the price chart is absolutely dwarfed by the 3rd bubble. This is the highest price Bitcoin has ever reached to date and slowly declined through May 2014 to $440. Alot of the decline can be explained by Mt. Gox collapsing, China trying to ban the Bitcoin trade, and the United States government taking an anti-Bitcoin stance.  Currently the price is relatively stable despite all of these factors, and it appears the worst is over.
  7. A VIDEO that explain the notion Behind BTC
  8. Vous pouvez voir en temps reel les transactions en cours
  9. Avez-vous des questions avant de passer au code?
  10. bitcoinj is a library for working with the Bitcoin protocol. It can maintain a wallet, send/receive transactions without needing a local copy of Bitcoin Core and has many other advanced features there are no situations in which you could sue any of the developers (it's as if you wrote the entire library yourself). If you can't handle that, don't use this library.
  11. A big opportunity for developers
  12. Keep in mind that BC is here forever