blockchain is...

by peers at httpdot.net, 2019, free cultural work with multi-free-culture-licenses and author’s declaration - https://httpdot.net/FCWwMFCLaAD


video installation with a text-based 9 minute looped video generated using a subtitle file and and consisting of 1426 sentences starting with or including the phrases "a blockchain is", "a blockchain is a", "a blockchain is an", "a blockchain is the", "blockchain is", "blockchain is a", "blockchain is an", "blockchain is the", "blockchain technology is", "blockchain technology is a", "blockchain technology is the", "the blockchain is", "the blockchain is a", "the blockchain is an", "the blockchain is the", "the blockchain technology is", "the blockchain technology is a" and "the blockchain technology is the", which are aggregated from 1621 web pages.
https://httpdot.net/peers/BlockchainIs/


commissioned by protocinema for the exhibition blockchain is... / ...for nothing with support from spot contemporary art projects, istanbul

screenshot,"blockchain is...", by peers at httpdot.net, 2019, gnu gplv3, https://httpdot.net/peers/BlockchainIs/ commissioned and presented by protocinema with support from spot contemporary art projects
about the work

refer to text peer on blockchain is... / ...for nothing exhibition by peers at httpdot.net by peer for more info and discussion of the work.


this work is exhibited in blockchain is... / ...for nothing exhibition by peers at httpdot.net.
nothing is possible, a publication for the exhibition, also aggregates all info and resources about the work, along with other works in the exhibition.

detail from screenshot,"blockchain is...", by peers at httpdot.net, 2019, gnu gplv3, https://httpdot.net/peers/BlockchainIs/ commissioned and presented by protocinema with support from spot contemporary art projects
free/libre content

blockchain is... and blockchain will... are two distinct collaborative works by peers at httpdot.net built on a framework for a body of works called blockchain is, which is in continuous translation and manifesting in various forms.


blockchan is... is a video installation of a looped 9 minute video without sound. 800x1080 pixel video frame is organized in 11 horizontal blocks, each having 2 to 5 lines of white text on black background. each block displays a sentence or an excerpt from a sentence starting with "a blockchain is", "a blockchain is a", "a blockchain is an", "a blockchain is the", "blockchain is", "blockchain is a", "blockchain is an", "blockchain is the", "blockchain technology is", "blockchain technology is a", "blockchain technology is the", "the blockchain is", "the blockchain is a", "the blockchain is an", "the blockchain is the", "the blockchain technology is", "the blockchain technology is a" or "the blockchain technology is the", which are aggregated from all available search results supplied by three web search services for these search queries at a time for an anonymous web user. these web pages are downloaded and parsed to aggregate and organize the sentences used for the video, which is generated using a soft subtitle file for timing, positioning and style information of the text.


all blocks in the frame are displayed for a duration long enough to be read individually and then updated with another sentence of the same, or slightly longer character count, starting with the same phrase. these phrases mentioned above always appear alone in the first lines of the blocks and they only change a couple of times in a block but rest of the sentences starting with these phrases change continuously and at different times for each block. even though the duration of a single loop is 9 minutes, it would take 11 loops, 99 minutes to read all of the text.


the text is displayed with monospace terminus font, which is a font mainly used for computer terminal emulators and virtual consoles. monospace font allows characters to be displayed in a grid of 67x45 cells. this way, when a block is updated with a sentence having the same character count as the previous one, it feels like each individual character is updated, rather than the whole sentence is changing, or like, the previous sentence is just modified, instead of changing totally.


the video is generated using a subtitling workflow. timing, positioning and style of text is designed using advanced substation alpha (.ass) subtitle file format. video file is generated using ffmpeg, which is a free/libre software command-line multimedia framework, to hardcode the text in .ass subtitle syntax on a black video background, which is again generated through an ffmpeg command. .ass file and ffmpeg command are also available as free and open source content for the video, which is itself a free cultural work.

downloads

watch online or download the video and source content in free file formats to build on and appropriate the work


video file, lossless compressed alternative for online html5 browser playback
webm, vp9, lossless compressed-vbr356kbps, 800x1080p25, YUV 4:2:0, 8bpc, no audio, 25.8MB


video file, lossy compressed alternative for online html5 browser playback
ogg, theora, vbr-q10, 800x1080p25, YUV 4:2:0, 8bpc, no audio, 195.1MB
if your web browser does not support html5 video element in ogg or webm free/libre file formats for watching online, consider switching to a free/libre software web browser


video file, preservation master
mkv, ffv1, lossless compressed, vbr20.1Mbps,800x1080p25, YUV 4:2:0, 8bpc, no audio, 1.4GB
ffv1 is free/libre lossless video coding and compression format suitable for digital preservation of video. 8bpc YUV 4:2:0 is suitable preservation since the video image consists of white text on black background.



source subtitle file, used for generating text image, timing, positioning and style
.ass (advanced substation alpha), UTF8, 242.2kB
you will need terminus (ttf) font (https://files.ax86.net/terminus-ttf/ ofl-1.1) and a 800x1080pixel video to overlay and display text properly using this .ass file.


source text file, all the sentences used in the work
txt file, utf8, lf, 137.1kB


source text file, source urls - list of web pages used for aggregating the source texts for blockchain is... and blockchain will
txt file, utf8, lf, 26.8kB

source command

source command, ffmpeg (http://ffmpeg.org/ gnu gplv2) command used for generating the video with .ass subtitle file and encoding in a container.

ffmpeg \
-f lavfi -i color=color=black,scale=800:1080,setsar=1/1,\
ass=BlockchainIs_UTF8-ASS.ass \
-pixel_format yuv420p -r 25 -t 540 \
-c:v ffv1 -level 3 -g 1 -slicecrc 1 -slices 16 \
BlockchainIs_800x1080p25_PreservationMaster_8bpc420_ffv1.mkv



breakdown of this ffmpeg command


ffmpeg

calls ffmpeg program


-f lavfi -i color=color=black,scale=800:1080,setsar=1/1

generate a 800x1080pixel black video with pixel (sample) aspect ratio 1.0 as background using Libavfilter input virtual device


,ass=BlockchainIs_UTF8-ASS.ass

overlays and hardcodes BlockchainIs_UTF8-ASS.ass soft subtitle file on the video using ass filter and chaining this filter to the previous one using comma


pixel_format yuv420p

defines pixel format as YUV color space 4:2:0 chroma subsampling in planar representation


-r 25

defines framerate as 25fps


-t 540

defines the duration of the video to be generated in seconds


-c:v ffv1 -level 3 -g 1 -slicecrc 1 -slices 16

defines video coding format and coding settings for the output file. these options and parameters are for coding the video with ff video codec 1 (ffv1) video coding format with settings suitable for digital video preservation. you may change this part of the code for using other video coding formats.


BlockchainIs_800x1080p25_PreservationMaster_8bpc420_ffv1.mkv

defines output file name and container format is also defined as matroska (mkv) through the file name extension.



options and parameters for other video coding formats


-c:v libvpx-vp9 -lossless 1 

encodes the video using vp9 video coding format and lossless setting for vp9. also change the file name extension of the output file name to .webm for using webm container for video coded using vp9.


-c:v libtheora -qscale:v 10

encodes the video using ogg theora video coding format in a lossless way but in maximum quality. also change the file name extension of the output file name to .ogv for using ogg video container for video coded using ogg theora

source text
blockchainIs-sourceText_txt-lf-utf8.txt

all text used for the video blockchain is...



Blockchain is such a technology, carrying the potential to actualize synergies between stakeholders, generate sustainable business value, and enable enterprises to easily expand operations into emerging markets.


Blockchain is not widely understood yet by shippers and manufacturers, but it will be a great tool for complying with these new regulations by holding them responsible for misrepresenting the weight on a product.


Blockchain is not a magic bullet that solves all data management problems but few areas of data sharing cry out more for improvements in efficiency and security than the data domains of Healthcare and Pharma/Biotech.


Blockchain is already disrupting the sector in many ways and will be the door opening the gaming industry to new opportunities, but exactly what the future of this promising combination looks like only time will tell.


Blockchain is used by organizations and/or groups of organizations for specific services where trust from other parties is needed or to build a blockchain network with other parties without traditional intermediaries.


Blockchain is actually a practical solution to a computer science problem called the "Two Generals" or "Byzantine Generals" problem, which addresses ways multiple parties can achieve consensus in a distributed fashion.


Blockchain is not a transaction processing system replacement: blockchain can transform transactional processing across a business network for sure, but ONLY when one or more additional criteria are met - specifically:


Blockchain is underneath the crypto-techno-babble, an electronic ledger that does what any ledger does: provides a reliable and audit-able ledger, exactly what Bob Cratchit's ledger books and red and black dip pens did.


Blockchain is incredibly useful for protecting customer information and making secure transactions for your employees in the field, but it can also help ensure your important data at home base is being protected as well.


Blockchain is undoubtedly a powerful and exciting technology, but it is not yet fully mature and has several limitations, which explains why it still is far from being widely adopted, despite all the hype surrounding it.


Blockchain is expected to disrupt not only the banking and financial industries, but also cybersecurity, supply-chain management, forecasting, networking and IoT, insurance, private transport and ride sharing, and charity.


Blockchain is also going to change the way we rent by creating a blockchain-based land-based registry to prevent unauthorized deals, crowdsourcing security deposits in which contributors can earn interest on their deposits, etc.


Blockchain is being touted as the solution to the Pentagon's vast logistics challenges-and in December, President Trump signed a bill calling for the rest of the federal government to look into the potential benefits of blockchain.


Blockchain is more mature in the financial services sector, but transportation, logistics and the supply chain will be the next industry to adopt it, says Jennifer Schopfer, GE Transportation's vice president of transport logistics.


Blockchain is going to put pressure on broker commissions and fundamentally change the way the broker channel does business over the next three to five years, says a past Marsh Canada national executive and management committee member.


Blockchain is based on a mathematical proof, which makes it very difficult to hack, Any legal document that must be securely and it takes the majority of the network to try to game and verifiably transmitted between entities the system.


Blockchain is best understood as a "distributed ledger" that secures transactions on its own by creating and including the entire transaction history of a unit of cryptocurrency along with the file that represents the cryptocurrency itself.


Blockchain is broad and coming to the fore on such a massive scale that explaining it often falls back on the abstract, rather than grounding it in the kind of foundational change the technology will have on the culture of how we interact online.


Blockchain is going to have a profound impact not just on financial services, but on the world of business and society as a whole," says Alex Tapscott, CEO of consultancy Northwest Passage Ventures and co-author of the book Blockchain Revolution.


Blockchain is also launching a new trading platform called Swap - this platform will find the best trading prices across a variety of exchanges and liquidity pools so that you can exchange tokens at a fair price straight from your Blockchain account.


blockchain is programmable: instructions embedded within blocks, such as "if" this "then" do that "else" do this, allow transactions or other actions to be carried out only if certain conditions are met, and can be accompanied by additional digital data.


Blockchain is still in its relative infancy, but a number of initiatives under way are already driving its progression to an industrial solution which will yield several important benefits in the context of the transfer of assets within business networks.


Blockchain is best known as the distributed database technology behind the virtual currency bitcoin, but banks are starting to investigate its broader capability as a real-time, encrypted distributed ledger for transactions involving a variety of financial assets.


Blockchain is also being considered for managing access rights to assets in situations where people are sharing a car or other piece of property, which could have locks linked up to a blockchain network that authorize someone's use after the owner received a payment.


Blockchain is difficult to understand because it isn't one thing, but rather pieces of knowledge from a wide variety of subjects across many different disciplines-not only computer science, but economics, finance, and politics as well-that go by the name "blockchain".


Blockchain is revolutionizing the remittance industry, and we look forward to further innovating and expanding the application of the technology in global remittances, together with local wallet partners and other ecosystem partners,


Blockchain is a vast, global distributed ledger or database running on millions of devices and open to anyone, where not just information but anything of value money, but also titles, deeds, identities, even votes


Blockchain is a shared distributed ledger technology in which each transaction is digitally signed to ensure its authenticity and integrity - and it's poised to make big waves in a wide range of business use cases.


Blockchain is a data structure that has the ability to establish a digital archive or record blocks of data such as transactions that can be shared and easily accessed by users across networks of different computers.


Blockchain is a technology that captures high-quality information for recognizing each and every entity that you do business with for meeting the compliance regulations and get benefit from the transparent blockchain


Blockchain is a distributed ledger technology, a continuously expanding chain of records - blocks - that are linked and secured via cryptography, creating a networked audit trail of transactions, or actions that have been taken.


Blockchain is a new way of storing and moving that data, where instead of being held all in one place, the information is atomized and spread over thousands of nodes across a network, all locked together with clever cryptography.


Blockchain is a new computing architecture which has the potential to bring together fragmented data sets from the authoritative source providers into a single digital view of validated, immutable and cryptographically secured data.


Blockchain is a universal transaction book that allows you to register and track every operation within it, scattered all over the Internet in thousands of unmodifiable copies, in a peer-to-peer model and protected by advanced cryptographic methods.


Blockchain is a hyper-secure, hyper-informed general ledger that allows participants in any transaction to verify and audit those transactions transparently, efficiently, and accurately, which reduces risk, costs, and exposure in any type of transaction.


Blockchain is a disruptive technology that allows storing data without the need for a central authority, implying that financial transactions will no longer be stored in a central database but distributed to several other computers that store data locally.


Blockchain is a vast, global distributed ledger or database running on millions of devices and open to anyone, where not just information but anything of value - money, but also titles, deeds, identities, even votes - can be moved, stored and managed securely and privately.


A blockchain is essentially a shared, encrypted "ledger" that cannot be manipulated, offering promise for secure transactions that allow anyone to get an accurate accounting of money, property or other assets.


A blockchain is a secure distributed immutable database shared by all parties in a distributed network where transaction data can be recorded (either on-chain for basic information or off-chain in case of extra attachments) and easily audited.


A blockchain is an electronic ledger of digital records, events, or transactions that are cryptographically hashed, authenticated, and maintained through a "distributed" or "shared" network of participants using a group consensus protocol.


The blockchain is defined as "a system that's secure without a higher authority, distributed across many strangers' computers, yet tamper-proof, and promises a mechanism for trust mediated directly between individuals".


The blockchain is referred to as a "ledger," a series of records of validated monetary transactions, where the identical updated ledger resides throughout the peer network, not in one central location as under the traditional banking model.


The blockchain is a software platform and environment, a set of capabilities that software developers can utilize so they can write this new breed of applications that are decentralized and living on the blockchain from Day 1.


The blockchain is a new way of storing and moving that data, wherein instead of holding that data in one place the information is spread over thousands of nodes across a network, all locked together with the help of cryptography.


[...]blockchain is having the most effect on MLS data, title records, and transactions.


[...]blockchain is past its sell-by date, R3 are bust and distributed ledgers are dead.


[...]blockchain is garnering its own support and interest far beyond financial services.


[...]blockchain is empowering fashion brands to take a lead towards greater transparency.


[...]blockchain is just one of the ways companies will be able to scale trusted business.


[...]blockchain is something genuinely new and for lack of a better word, groundbreaking.


[...]blockchain is user-friendly and offers a world of benefits for the average consumer.


[...]blockchain is fast becoming the focus of law firms anxious not to be the weakest link


[...]blockchain is not only here to stay but that it will change the world for the better.


[...]blockchain is Boosting Cybersecurity with Message Encryption and Crucial Alert Systems


[...]blockchain is leading to what is being called the "Internet of Trusted Things" (IoTT).


[...]blockchain is rapidly becoming the most important digital development since the cloud.


[...]blockchain is well positioned to be part of a solution to many problems in healthcare,


[...]blockchain is also changing the way we keep our businesses secure and market ourselves.


[...]blockchain is certainly not a trend that accountants can afford to overlook any longer.


[...]blockchain is not this magical thing where you sprinkle blockchain dust over a problem.


[...]blockchain is here to stay, and it's going to revolutionize the way we track our assets.


[...]blockchain is moving rapidly from exploration into mission-critical production scenarios.


[...]blockchain is no different from other automation tools that capture routine transactions.


[...]blockchain is not a panacea for all diseases, but it is even contraindicated for someone.


[...]blockchain is nowadays more than the technology that ensures the authenticity of bitcoin.


[...]blockchain is poised to reinvent traditional Business Process Management platforms (BPM).


[...]blockchain is also expected to create a new set of opportunities for banks to partner with


[...]blockchain is just the next in a long line of transformations within the accounting world.


[...]blockchain is likely to follow and explain how firms should think about investments in it.


[...]blockchain is affecting libraries and what they project will be accomplished in the future.


[...]blockchain is all about trust-namely, trust among vetted partners in business transactions.


[...]blockchain is more than just a fad: it's a powerful solution for a large class of problems.


[...]blockchain is all hype; that it is an untested technology with huge risks and little upside.


[...]blockchain is attracting the biggest forces in the finance sector with its clean reputation.


[...]blockchain is "super powerful stuff" that represents a threat to America's national security.


[...]blockchain is here to stay and is radically changing how our society functions at all levels.


[...]blockchain is highly secure, especially with regards to contracts and financial transactions.


[...]blockchain is Key To Transforming How Physical Infrastructure Works And How We Think About It


[...]blockchain is yet another technology that flattens opportunities and invites agile individual


[...]blockchain is poised to change the way that many industries do business in the next few years.


[...]blockchain is becoming a yardstick against which travel enterprises measure their tech prowess.


[...]blockchain is new and very different from most of the traditional technologies that people use.


[...]blockchain is one of the bank's three main focuses, alongside artificial intelligence and APIs.


[...]blockchain is already disrupting the global financial services industry - an industry the Postal


[...]blockchain is expected to reduce paperwork and make it easier for all parties to track packages.


[...]blockchain is already being used in business, there are untold more that haven't been discovered.


[...]blockchain is enormous and the promise it holds to eliminate fraud is simply too great to ignore.


[...]blockchain is really something that exists on the Internet, it is very blind to national borders.


[...]blockchain is now moving out of the cyber universe and interacting more often with the real world.


[...]blockchain is just a distributed database and not some magical technology that will save the earth.


[...]blockchain is something that everybody is counting on, still we don't know what will come out of it


[...]blockchain is turning out to be a perfect platform for recording the medical attention of a patient


[...]blockchain is so new and popular that people don't have a proper idea about it and its applications.


[...]blockchain is better than something like a database or any other form of digital information storage.


[...]blockchain is like the new cloud, and it has become the fastest-growing skill in the freelance market.


[...]blockchain is no more than a buzzword, and its applications can be obscure and difficult to understand.


[...]blockchain is easily poised to become one the most useful technological innovations of the 21st century.


[...]blockchain is being pushed as the next huge thing in information technology, outside of virtual currency.


[...]blockchain is capturing the interest and imaginations of the photographers and artists I have spoken with.


[...]blockchain is just doing what those tablets did two thousand years ago, recording agreement between people.


[...]blockchain is just one of the many options out there to secure our digital life, nothing less, nothing more.


[...]blockchain is much more than an ultra-secure, digital financial ledger or another "over-hyped" new technology.


[...]blockchain is allowing developers and creative thinkers of all stripes to go back to the digital drawing board.


[...]blockchain is now almost too much in the spotlight and in danger of being positioned as a panacea for all ills.


[...]blockchain is slowly changing the way we do business, the way we earn a living and the way data is made available.


[...]blockchain is somehow safer than other types of record keeping, that it's more secure, or that it's more reliable.


[...]blockchain is quickly becoming a C-suite issue for asset managers, and the CEO, CTO and COO all have roles to play.


[...]blockchain is not quite ready for adoption for mass consumer transactions, though it could be in three to five years.


[...]blockchain is at the intersection of many, many interrelated technological shifts that are happening now in real time.


[...]blockchain is being adapted to a number of business uses and will likely serve a wide array of purposes in the future.


[...]blockchain is now viewed as having the potential to be an efficient and secure way to transfer any kind of information.


[...]blockchain is slowly going through the four phases that identify previous foundational technologies such as the TCP/IP,


[...]blockchain is impacting clients of the legal profession, from the music to financial to healthcare to energy industries.


[...]blockchain is poised to transform the way suppliers, retailers, and consumers interact with one another and their goods.


[...]blockchain is set to bring about include the solving of problems of data manipulation, transparency and security online.


[...]blockchain is touted as a game-changer as it can provide a secure payments network and also eliminate the need of escrow.


[...]blockchain is used for any cryptocurrency, and various companies develop their own versions of this open-source technology.


[...]blockchain is predominantly used by small businesses as a decentralized ledger for accepting digital currencies, like Bitcoin.


[...]blockchain is hosted by millions of processors simultaneously, and its data is available to anyone with access to the internet.


[...]blockchain is on pace to do some $50 billion worth of transactions this year, with about a third of it coming from institutions.


[...]blockchain is increasingly being included as an area of expertise for back-end, solutions architects and machine-learning engineers,


[...]blockchain is more complex than the internet and also because things are not clear enough as to why this technology matters so much!


[...]blockchain is exchanged instantaneously, and it can be stored in digital portfolios of user's phone or accessing through the browser.


[...]blockchain is often a term that encompasses a broad range of distributed ledgers, even if transactions are not organized into blocks.


[...]blockchain is still an immature technology, with a market that is still nascent and a clear recipe for success that has not yet emerged.


[...]blockchain is not only a disruptive breakthrough in computer core technology, but also a challenge to the traditional commercial society.


[...]blockchain is set to hugely impact everything from auditing and cybersecurity to the way that we store, access and interpret information.


[...]blockchain is actively being investigated as a new type of distributed data environment for many virtualized network systems applications.


[...]blockchain is generating a swell of excitement among coders and computer scientists not witnessed since the earliest days of the internet.


[...]blockchain is uniquely suited to address the piracy, control and monetization issues of music that have become rampant in the digital age.


[...]blockchain is not limited to one Financial analysts can focus on the merits of the price, the market opportunity, and the impact on stock prices.


[...]blockchain is an opportunity, it is going to reduce costs, increase incomes, secure processes, make coffee ...


[...]blockchain is an accounting technology, so it could be used to create single entry bookkeeping systems rather than dual entry.


[...]blockchain is an extremely in-efficient computational process, it will always be more inefficient then a centralized system could be.


[...]blockchain is the "missing link" that enables IoT deployments to achieve their full potential


[...]blockchain is the answer to building trust and improving customer experience in the long term.


[...]blockchain is the technology most likely "to have the greatest impact on the next few decades,


[...]blockchain is the future for coordination between all the parties in the supply chain industry.


[...]blockchain is the advertising messiah, a savior that will fix all the digital ad world's messes.


[...]blockchain is the only technology in existence today that can achieve fully transparent elections,


[...]blockchain is the second phase of the internet and has a value 10 times greater than its predecessor.


[...]blockchain is the solution to everything from poverty to corruption, it's understandable if you're skeptical.


[...]blockchain is the 'engine' that would allow us to access human potential in ways that would accelerate human evolution,


[...]blockchain is the most important innovation in fundamental architecture since the tubes of the internet were first developed.


[...]blockchain is the greatest thing since sliced bread, and that it'll change the way businesses and financial institutions operate.


[...]blockchain is the perfect technology to drive the internet of things and will bring in "a service-sector productivity revolution".


[...]blockchain is the answer to a question we've been asking since the dawn of the internet age: How can we collectively trust what happens online?


[...]the blockchain is a nascent technology, and its applications outside Bitcoin are still largely untested.


[...]the blockchain is a groundbreaking technology that can be as important as the emergence of the internet itself,


A blockchain is only a digital record, but we need others to determine if those records actually match the corresponding physical assets in the real world.


A blockchain is essentially a distributed database of records or public ledger of all transactions that have been executed and shared among participating parties.


A blockchain is made up of two primary components: a decentralized network facilitating and verifying transactions, and the immutable ledger that network maintains.


A blockchain is in the simplest of terms, a time-stamped series of immutable record of data that is managed by a cluster of computers not owned by any single entity.


A blockchain is fundamentally a data structure in which transactions are verified in batches called blocks, and the nodes or servers verify said transactions through a consensus algorithm.


A blockchain is a data structure that makes it possible to create a digital ledger of transactions and share it among a distributed network of computers.


A blockchain is a cryptographically protected distributed ledger-it's what protects you or anyone else from making a copy of that Bitcoin you just bought.


A blockchain is a digital, distributed transaction ledger, with identical copies maintained on multiple computer systems controlled by different entities.


A blockchain is a shared digital ledger that allows transactions to be recorded and verified electronically over a network of computers without a central ledger.


A blockchain is a decentralized and open distributed ledger, recording financial transactions (or virtually anything of value) between two parties, on a peer-to-peer network.


A blockchain is a history of events (transactions or otherwise) that uses cryptography to link timestamped batches of events together in order to make it evident if tampering has occurred.


A blockchain is a distributed database that maintains a continuously growing list of data records that are hardened against tampering and revision, even by operators of the data store's nodes.


A blockchain is a decentralized digital ledger that can record transactions across many computers so that the record cannot be altered retroactively without making changes throughout the entire network.


A blockchain is a digital ledger that is kept and validated simultaneously by a network of computers, almost like a shared Excel document that no one person can change without the agreement of the others.


A blockchain is a distributed database, journal, or ledger for which many computers maintain identical copies and agree on the ordering of information without having to trust one another or any central party.


The blockchain is decentralized and distributed, meaning there is no central organization to add blocks and send out official updates to anyone interested.


The blockchain is not a ledger of all the accounts that exist and their respective balances, but rather a comprehensive history of all Bitcoin transactions.


The blockchain is in effect a common, public ledger, which utilizes cryptographic mechanisms to verify transactions and information in a decentralized manner.


The blockchain is immutable: records cannot be falsified, which makes it extremely reliable, and eliminating middlemen like banks makes it extremely efficient.


The blockchain is sometimes called a distributed ledger because it's rather like an old-fashioned book-keeping ledger in which a clerk would record transactions.


The blockchain is in essence a distributed database holding all the Bitcoin transactions since the beginning (January 3, 2009) and a method to secure this database.


The blockchain is essentially a distributed ledger where each block contains a timestamp and holds batches of individual transactions with a link to a previous block.


The blockchain is shared by the nodes on the bitcoin network, in the same way a totally legit and non-copyrighted video file might be shared on the BitTorrent network.


The blockchain is trustworthy by virtue of its distributed model, how blocks are linked to the chain, and its consensus algorithm that makes the cost of altering it prohibitive.


The blockchain is public: anyone can view it at any time because it resides on the network, not within a single institution charged with auditing transactions and keeping records.


The blockchain is designed so that each block contains a cryptographic reference to the block that came before it, thereby linking each block into a verifiable and tamperproof chain.


The blockchain is often called a distributed or decentralized system because it keeps copies of these blocks on a spread-out network of computers, rather than on a centralized server.


The blockchain is more properly called a distributed ledger, basically a way of securely and transparently storing information, and performing pre-programmed operations on that information.


The blockchain is intended to store exchange records ("obstructs") in numerous spots, connected to each other (henceforth the "chain" some portion of the name) and straightforward to any client who wishes to see them.


The blockchain is a new and innovative way that people and companies can create, verify, and enforce transactions without a middleman or central authority.


The blockchain is a simple digital platform for recording and verifying transactions so that other people can't erase them later - and anyone can see them.


The blockchain is a technology framework for decentralizing a number of entities that used to require one or more middlemen and involve significant opacity


The blockchain is a distributed and decentralised ledger that stores data such as transactions, and that is publicly shared across all the nodes of its network.


The blockchain is a distributed ledger that allows the transfer of information and data between two nodes in the network, without the need for any intermediaries.


The blockchain is a digital ledger of online transactions that can keep records of not only just financial transactions but virtually every kind of data transaction.


The blockchain is a revolution that builds on another technical revolution so old that only the more experienced among us remember it: the invention of the database.


The blockchain is a consensus model at scale, and possibly the mechanism we have been waiting for that could help to usher in an era of friendly machine intelligence.


The blockchain is a set of networked and cryptography-based technology infrastructure and programmable capabilities that facilitate a new category of trust-based services.


The blockchain is a distributed database - to achieve independent verification of the chain of ownership of any and every bitcoin amount, each network node stores its own copy of the blockchain.


The blockchain is a recent development in the field of computer science, which uses a global peer-to-peer network to provide an open platform that can deliver neutrality, reliability and security.


The blockchain is an incorruptible digital ledger of economic transactions that can be programmed to record not just financial transactions but virtually everything of value.


The blockchain is an ever-growing chain of data, or "blocks," which allows for an established digital trail back to the original block that is heavily resilient to changes and tampering.


The blockchain is the integration and automation of human/machine interaction and the machine-to-machine (M2M) and Internet of Things (IoT) payment network for the machine economy.


The blockchain is the coordination mechanism, the line-item attribution, credit, proof, and compensation rewards tracking schema to encourage trustless participation by any intelligent agent in any collaboration.


[...]blockchain is not a single system, but a baseline technology which can be configured in different ways to suit different purposes and business models.


[...]blockchain is merely an extension of a database, but it "incentivises people to share data and makes sure people can get data" because of the added security around it.


[...]blockchain is virtually impossible to manipulate as it is based on a distributed database - a set of separate computers possibly spread over a network of users that store and verify the database.


[...]blockchain is a mechanism for storing and sharing data, but nothing forces participants to store data in common formats or use common data definitions.


[...]blockchain is a distributed database, but from there it serves as an innovative foundation for building an enterprise-quality business transaction network.


[...]blockchain is a self-sustaining, peer-to-peer database technology for managing and recording transactions with no central bank or clearinghouse involvement.


[...]blockchain is a decentralized database, a matrix of computers talking to each other, and any transaction has to be approved by each node before it's executed.


[...]blockchain is a form of digital trust, which has a number of potential uses and applications in business because trust is one key component in such a context.


[...]blockchain is a peer-to-peer ledger or, more simply, a giant database of transactions that is maintained by anyone with a computer who chooses to participate.


[...]blockchain is a digital ledger of economic transactions that is fully public, continually updated by countless users, and considered by many impossible to corrupt.


[...]blockchain is a distributed ledger that maintains a continuously-growing list of every transaction across every network distributed over tens of thousands of computers.


[...]blockchain is a kind of database that is highly resistant to modification, it seems, which makes sense if we are talking about currency, but it isn't enough on its own.


[...]blockchain is a distributed ledger, meaning that the blocks of data comprising the ledger are spread across a network of computers that could be located anywhere in the world.


[...]blockchain is a technology that allows one participant to transfer something of value to another participant by recording the transaction in an immutable "block" on a transparent "chain".


[...]blockchain is a digital ledger system shared and publicly hosted by a verified network of peers, each with a synchronized and identical transcript of the information accommodated in a digital ledger.


[...]blockchain is a public electronic ledger that can be openly shared among disparate users and that creates an unchangeable record of their transactions, each one time-stamped and linked to the previous one.


[...]blockchain is a form of distributed ledger technology (DLT) that offers a transparent, decentralised way of recording lists of transactions, allowing digital information to be distributed rather than copied.


[...]blockchain is an immutable and decentralized ledger outlining a product's journey from creation, to packaging, to sale - all leading back to its original source.


The blockchain is maintained by a peer-to-peer network of computers, or network nodes.


The blockchain is stored across multiple pools and continuously checked and rechecked.


The blockchain is software that stores and transfers value or data across the internet.


The blockchain is ideal for keeping track of a currency and protecting it against fraud.


The blockchain is transparent and decentralized and anyone can put it on their computer.


The blockchain is also faster, more secure, and more efficient than centralized networks.


The blockchain is conceptually a flat file - a linear list of simple transaction records.


The blockchain is continuously replicated on all or at least a group of nodes in a network.


The blockchain is simply a digital ledger, designed to be incorruptible and self-executing.


The blockchain is simply a distributed ledger that is best used in a decentralized fashion.


The blockchain is immutable, so no one can tamper with the data that is inside the blockchain


The blockchain is not Bitcoin or any other cryptocurrency, but the technology underlying them.


The blockchain is secured by the computer processing power in the network that updates the records.


The blockchain is managed by a decentralized network that verifies and puts a time-stamp on payments.


The blockchain is after all, just an internet-hosted network which stores information as a shared database.


The blockchain is custom-made for decentralizing trust and exchanging assets without central intermediaries.


The blockchain is all the framework needed to create the most secure and efficient voting system in the world.


The blockchain is designed to have its ledger updated quickly and regularly to include the latest transactions.


The blockchain is intended to be decentralized and not require trust between any of the members of its network.


The blockchain is supported by the transaction fees (or at least it will be when all the bitcoin has been mined)


The blockchain is public: anyone can view it at any time because it resides on the network... and the blockchain is


The blockchain is designed in a way such that the average time for a block to be generated remains fairly constant.


The blockchain is intended to provide a tamper-proof record of transaction metadata, regardless of transaction type.


The blockchain is simply a digital way to transfer ownership of assets in a more efficient and a more effective way.


The blockchain is designed to make transactions safe and reliable even if the people doing them don't trust each other.


The blockchain is public where transactions are recorded and visible to everyone, therefore it is not purely anonymous.


The blockchain is shared among the numerous computers that participate in the transaction-clearing process known as "mining.


The blockchain is great at knowing what's encoded on its decentralized ledger and how to execute and enforce smart contracts.


The blockchain is essentially a giant record book of all Bitcoin transactions, it is to Bitcoin what the internet is to email.


The blockchain is decentralized, meaning that multiple, independent machines are running copies of the blockchain ledger at once.


The blockchain is distributed: it runs on computers provided by volunteers around the world; there is no central database to hack.


The blockchain is also very secure, since any application running on it is distributed across a wide network, not an individual database.


The blockchain is also distributed decentrally on all integrated computers worldwide, which is why manipulation is considered almost impossible


The blockchain is powerful technology that enables Bitcoin, Litecoin, Dogecoin, and other virtual currencies to be open, anonymous, and secure.


The blockchain is a complete listing of all transactions, whether financial or otherwise.


The blockchain is a distributed ledger that is comprised of "blocks" that each have data.


The blockchain is a revolutionary technology that works on a 'distributed ledger system'.


The blockchain is a decentralized ledger of all transactions across a peer-to-peer network.


The blockchain is a public ledger where transactions are recorded and confirmed anonymously.


The blockchain is a distributed ledger that embeds contracts and transactions in digital code.


The blockchain is a form of digital record keeping that has advantages over other methodologies.


The blockchain is a little bit like the teacher at the front of the class who marks math homework,


The blockchain is a ledger, and we most often think of ledgers as containing financial transactions.


The blockchain is a peer-to-peer system, meaning that transactions are between you and another party.


The blockchain is a distributed, public ledger that contains the history of every bitcoin transaction.


The blockchain is a ledger stored on each network node as a copy of the "original" set of transactions.


The blockchain is a kind of public database, one stored simultaneously on a bunch of different computers.


The blockchain is a digital rubber stamp, so anything that takes a seal right now is heading for the chop.


The blockchain is a chain of blocks where each block contains data of value without any central supervision.


The blockchain is a globally distributed database that anyone can add to, but whose history no-one can modify.


The blockchain is a technology that is used to continuously record every bitcoin transaction that takes place.


The blockchain is a method of maintaining the register without the need for a centralized financial institution.


The blockchain is a time-stamped, non-repudiable database that contains the entire logged history of the system.


The blockchain is a database displayed publicly for every Bitcoin transaction that happened in the Bitcoin network.


The blockchain is a decentralized ledger of transactions that verifies and enforces contracts coded onto the chain.


The blockchain is a distributed database that provides an unalterable, (semi-)public record of digital transactions.


The blockchain is a digital booking system that accurately tracks all transactions and saves every change as a "block".


The blockchain is a distributed file system where participants keep copies of the file and agree on changes by consensus.


The blockchain is a technology that has allowed for the creation of a peer-to-peer network in order to transact a currency


The blockchain is a distributed public ledger that allows individuals who don't know and trust each other to transfer value.


The blockchain is a ledger that keeps track of how much 'stuff' (ie BTC, ETH,...create your own currency if you wish) you have.


The blockchain is a distributed ledgers that does not rely on a trusted central authority to maintain and validate the ledger.


The blockchain is a more secure way to store and transfer funds, particularly if you keep a modest value in your virtual wallet.


The blockchain is a secure network because each transaction is encrypted with a hash that is used to verify the succeeding hash.


The blockchain is a shared source of truth which will decentralize the power of information effectively to the edge, to the user.


The blockchain is a technology that is supposed to be all about distributing power and information away from central authorities.


The blockchain is a linked list which contains data and a hash pointer which points to its previous block, hence creating the chain.


The blockchain is a new distributed platform that is helping us re-shape the world of business and transform society for the better.


The blockchain is a decentralized database that allows individuals to trade directly without the need for a third-party intermediary.


The blockchain is a distributed network that solves all the problems that we have of finance, but more broadly, it's like a philosophy.


The blockchain is a tool that could prove the existence and exact contents of any document or other digital asset at a particular time.


The blockchain is a public ledger of every transfer the bitcoin community makes, and many different people can make entries into that ledger.


The blockchain is a public, decentralized, distributed ledger that is capable of storing and confirming the transactions that pass through it.


The blockchain is a means of offering personalized decentralized governance services, sponsoring literacy, and facilitating economic development.


The blockchain is a public, decentralised database that records each Bitcoin transaction in "block" sequences of code; a digital ledger, if you like.


The blockchain is a secure transaction ledger database that is shared by all parties participating in an established, distributed network of computers.


The blockchain is a global distributed ledger, which facilitates the movement of assets across the world in seconds, with only a minimal transaction fee.


The blockchain is a new way of managing trust and can be used to verify many types of data in insurance contracts, such as the insured person's identity.


The blockchain is an amalgamation of maths, computer science, philosophy, psychology, and trustlessness.


The blockchain is an immutable, absolute record of facts of what actually is happening and what has happened.


The blockchain is the backbone ledger that tracks and verifies the movement of cryptocurrencies.


The blockchain is the technology that is serves as the distributed ledger that forms the network.


The blockchain is the core of Bitcoin as it is the summary of all the transactions in the Bitcoin Network.


The blockchain is the decentrally maintained append-only log of all transactions verified on the Bitcoin network.


The blockchain is the distributed ledger that keeps track of all transactions made using the Bitcoin cryptocurrency.


The blockchain is the distributed database that gives an alterable and semi public record of the digital transactions.


The blockchain is the first technology that enables the transfer of digital ownership in a decentralized and trustless manner.


The blockchain is the public ledger that holds a permanent record of all bitcoin transactions, and is maintained by the miners.


The blockchain is the main technical innovation behind bitcoin, serving as the public ledger of the virtual currency's transactions.


The blockchain is the open-source, distributed ledger that records every bitcoin transaction, but can also store small bits of non-financial data.


The blockchain technology is built upon the idea of decentralization, allowing users to interact without the use of an intermediary.


The blockchain technology is the technology that powers the bitcoin cryptocurrency and other cryptocoins.


A blockchain is an encrypted and shared database that's spread across more than one computing device.


A blockchain is an encoded digital ledger that is stored on multiple computers in a public or private network.


A blockchain is an excellent form of DB storage system, which uses records to store data or huge amount of information.


A blockchain is the structure of data that represents a financial ledger entry, or a record of a transaction.


A blockchain is the data structure that the Bitcoin cryptocurrency uses for its public ledger, where transactions are recorded.


Blockchain is the best mechanism currently available to deal with the problems in the supply chain


Blockchain is the technology that is spearheading the momentum of democracy and decentralization in online world.


Blockchain is the ideal technology for building a connected record of a supply chain and the provenance of individual items.


Blockchain is the requirement of the current time because it makes our handling of online transactions and engagements very secure.


Blockchain is not bitcoin.


Blockchain is Decentralized:


Blockchain is secure and safe.


Blockchain is not just Bitcoin.


Blockchain is merely a database,


Blockchain is all about software.


Blockchain is additive technology.


Blockchain is Like a Public Ledger


Blockchain is not just for Bitcoin


Blockchain is Highly Hack-Resistant


Blockchain is more than a database.


Blockchain is NOT a cryptocurrency.


Blockchain is Not Only About Bitcoin


Blockchain is much more than bitcoin.


Blockchain is quite secure by design.


Blockchain is not just about currency:


Blockchain is not only for transactions.


Blockchain is immutable, or unchangeable.


Blockchain is NOT a programming language.


Blockchain is not bitcoin - it's far more


Blockchain is being used as a security tool.


Blockchain is built on a distributed ledger.


Blockchain is necessary for cryptocurrencies.


Blockchain is also immutable, or unchangeable.


Blockchain is first of all, a design principle


Blockchain is good at storing immutable blocks.


Blockchain is more than just a regulatory tool.


Blockchain is NOT a cryptographic codification.


Blockchain is one type of a distributed ledger.


Blockchain is NOT a Python library or framework.


Blockchain is really just a dumb, slow database,


Blockchain is not a secure messaging replacement:


Blockchain is nothing more than a fancy checksum.


Blockchain is open, and everyone sees everything.


Blockchain is just the vicious and toxic dark web.


Blockchain is like the internet before the browser


Blockchain is not bitcoin or other cryptocurrency.


Blockchain is not Bitcoin-Bitcoin is not Blockchain


Blockchain is one kind of decentralised technology,


Blockchain is not a double-entry bookkeeping system.


Blockchain is rooted in validation, not just claims.


Blockchain is all about replacing trust with software.


Blockchain is first and foremost, accounting software.


Blockchain is known as "distributed ledger" technology.


Blockchain is NOT an IA or Machine Learning technology.


Blockchain is Just a Way of Recording Transactions in a Ledger.


Blockchain is best-known for powering the digital currency Bitcoin.


Blockchain is open to all, while DLT gives more control over access.


Blockchain is not a technological solution to a technological problem,


blockchain is about a trusted information-sharing platform for business.


Blockchain is not a database, it's a protocol for syncing the databases.


Blockchain is nearly impossible to hack due to its distributed structure.


Blockchain is often conflated with cryptocurrency as a speculative asset.


Blockchain is very useful for proof-of-work, auditing and data integrity,


Blockchain is basically just a decentralized database - a ledger if you will.


Blockchain is like an accounting book everyone can see, a distributed ledger.


Blockchain is decentralized and distributed among a huge network of computers.


Blockchain is actually a concept, not an implementation or a single technology.


Blockchain is much more than the database ledger technology that powers bitcoin.


Blockchain is immutable; it cannot be changed, so records are permanently stored,


Blockchain is a distributed database.


Blockchain is a single source of truth.


Blockchain is a single system of record.


Blockchain is a shared ledger technology.


Blockchain is a public distributed ledger.


Blockchain is a web-based bitcoin platform.


Blockchain is a fast, reliable ledger system.


Blockchain is a secured distributed database.


Blockchain is a checksum/encapsulation method.


Blockchain is a public record of transactions.


Blockchain is a stripped-down payments system.


Blockchain is a secure, shared, distributed ledger.


Blockchain is a technology for promoting user trust.


Blockchain is a distributed digital ledger technology.


Blockchain is a revolution in the flow of information.


Blockchain is a collection of technologies - five or six,


Blockchain is a layer under the hood of a cryptocurrency.


Blockchain is a metonymy - a part used to refer to the whole.


Blockchain is a collaborative environment; it needs nurturing.


Blockchain is a confusion because there are so many variations.


Blockchain is a distributed, validated data ledger, not a database.


Blockchain is a replacement for bookkeeping and reconciliation work.


Blockchain is a novel solution to the age-old human problem of trust.


Blockchain is a Potential 'Truth Machine' For The World's Transactions


Blockchain is a public distributed database holding encrypted ledgers.


Blockchain is a critical part of the bitcoin peer-to-peer payment system.


Blockchain is a term that has to come to mean many things to many people.


Blockchain is a digital ledger system used to securely record transactions.


Blockchain is a technology that facilitates trust between trading partners.


Blockchain is a digital record of data and transactions chronologically linked.


Blockchain is a versatile technology, capable of being used for many industries.


Blockchain is a digital ledger that up keeps a record of ever-growing set of data.


Blockchain is a database that maintains a continuously growing set of data records.


Blockchain is an accounting technology.


Blockchain is an online ledger that records transactions.


Blockchain is an immutable, distributed record of transactions.


Blockchain is an open decentralized database - a distributed ledger.


Blockchain is the technology behind bitcoin.


Blockchain is the machine that produces trust.


Blockchain is the backbone of cryptocurrencies.


Blockchain is the technology that runs Bitcoin.


Blockchain is the breakthrough technology behind bitcoin.


Blockchain is the concept and Bitcoin is the implementation.


Blockchain is the backbone of digital or cryptocurrency, Bitcoin.


Blockchain is the core technology that is used to enable Bitcoins.


Blockchain is the backbone behind peer-to-peer electronic payments.


Blockchain is the technology behind bitcoin and other cryptocurrencies


Blockchain is the technology that enables cryptocurrency like bitcoin.


Blockchain is the core system that underpins the cryptocurrency Bitcoin.


Blockchain is the Infrastructure For a New Decentralized Sharing Economy


Blockchain is the technology behind bitcoin, but it has many other uses too.


Blockchain is the technology that supports cryptocurrencies such as Bitcoin.


Blockchain is the underlying technology of the cryptocurrency called bitcoin.


Blockchain is the technology behind cryptocurrencies like Bitcoin and Ethereum.


Blockchain is the technology at the heart of bitcoin and other cryptocurrencies.


Blockchain is the digital and decentralized ledger that records all transactions.


Blockchain is the financial technology underpinning the bitcoin digital currency.


Blockchain technology is a type of Distributed Ledger Technology (DLT).


A blockchain is just a file.


A blockchain is intentionally immutable.


A blockchain is distributed by its nature.


A blockchain is in short, an expensive radiator.


A blockchain is different, as by design it is perfectly auditable.


A blockchain is essentially a shared database with no master copy.


A blockchain is basically a distributed digital ledger or database.


A blockchain is essentially a continuously growing list of records.


A blockchain is just a new, more secure way of databasing information.


A blockchain is not one global entity - there are several blockchains.


A blockchain is designed to keep an immutable log of every transaction.


A blockchain is essentially a secure, distributed, and shared database.


A blockchain is distributed across and managed by peer-to-peer networks.


A blockchain is nothing more than lists of transactions chained together.


A blockchain is built by running software and linking several nodes together.


A blockchain is a ledger


A blockchain is a data structure.


A blockchain is a chain of blocks.


A blockchain is a distributed ledger.


A blockchain is a chain of blocks, obviously.


A blockchain is a massive, decentralized ledger.


A blockchain is a digital record of transactions.


A blockchain is a literal technology, not a metaphor


A blockchain is a chain of blocks that contain information


A blockchain is a diary that is almost impossible to forge.


A blockchain is a chain of blocks which contain information.


A blockchain is a public ledger of all Bitcoin transactions.


A blockchain is a secure "ledger" or a list of transactions.


A blockchain is a type of data store that stores anything of digital value.


A blockchain is a virtual chain of blocks that is used to store information.


A blockchain is a distributed ledger technology that forms a "chain of blocks.


A blockchain is a distributed database that acts as a peer-to-peer ledger system.


A blockchain is a decentralized peer-to-peer system with no central authority figure.


A blockchain is an immutable list of linked blocks.


The blockchain is like a logbook, or a ledger.


The blockchain is also a sort of assets exchange.


The blockchain is basically a distributed database.


The blockchain is often described as digital ledger.


The blockchain is both decentralized and transparent.


The blockchain is not cryptocurrency, and vice versa.


The blockchain is based on a computational sort of trust,


The blockchain is just that - a chain of multiple blocks.


The blockchain is what we call a "trustless" architecture.


The blockchain is decentralized, incorruptible recordkeeping.


The blockchain is also called a "public" or "distributed" ledger.


The blockchain is encrypted using a public key and a private key.


The blockchain is like a huge, global, decentralized spreadsheet.


The blockchain is sustained by the volatile efforts of the miners.


The blockchain is maintained by thousands of independent computers.


The blockchain is just an added layer for some additional functions.


The blockchain is not Bitcoin, but it is the technology behind Bitcoin


The blockchain is also known as a database and is a distributed ledger.


The blockchain is ultimately a ledger that represents accounting entries.


The blockchain is permission-less, anyone can participate around the world.


The blockchain is ultimately about solving society's ultimate challenge: trust.


The blockchain is capable of time-stamping and recording a document for eternity.


The blockchain is resistant to compromise due to the nature of the linked blocks.


The blockchain is decentralized so it can't be manipulated by one person or entity.


The blockchain is not just about cryptocurrencies and faster peer-to-peer payments.


The blockchain is usually described as a distributed ledger but it's not even that.


The blockchain is the record of the bitcoin amounts associated with those addresses.


The blockchain is built on the precept that the majority of a crowd is always honest.


The blockchain is a World Wide Ledger


The blockchain is a long list of blocks.


The blockchain is a decentralized ledger.


The blockchain is a new type of database.


The blockchain is a proof-of-work system.


The blockchain is a New Model of Governance


The blockchain is a distributed public ledger.


The blockchain is a Collaborative, Secure Data Ledger


The blockchain is a shared public ledger for Bitcoin.


The blockchain is a Tempting Target for Central Banks


The blockchain is a Reminder of the Internet's Failure


The blockchain is a record of every Bitcoin transaction.


The blockchain is a digital, decentralised, distributed ledger.


The blockchain is a software protocol (like SMTP is for email).


The blockchain is a cloud venue for transnational organizations.


The blockchain is a database, which is distributed among all nodes.


The blockchain is a public ledger that records bitcoin transactions.


The blockchain is a database of details about every Bitcoin transaction.


The blockchain is a distributed ledger book of all Bitcoin transactions.


The blockchain is a continually-growing digital register of transactions.


The blockchain is a ledger of all transactions in the history of Bitcoin.


The blockchain is a digitized, decentralized, public ledger of transactions.


The blockchain is a decentralized group of blocks that is continuously growing.


The blockchain is a decentralized system, with no single entity controlling it.


The blockchain is a cryptographically secure index of every Bitcoin transaction.


The blockchain is a peer-to-peer distributed ledger of time-stamped transactions.


The blockchain is a perfect keeper of the chain of custody for any physical asset.


The blockchain is a big file that keeps track of all Bitcoin transactions ever made


The blockchain is a shared public ledger on which the entire Bitcoin network relies.


The blockchain is a decentralized ledger of transactions recorded using cryptography.


The blockchain is a file that contains a list of every bitcoin transaction ever made.


The blockchain is a foundational technology, like TCP/IP, which enables the Internet.


The blockchain is an open distributed ledger.


The blockchain is an institutional technology.


The blockchain is an immutable, anonymous, unhackable, and decentralized ledger.


The blockchain is the system of record.


The blockchain is the technology behind Bitcoins.


The blockchain is the financial challenge of our time.


The blockchain is the universal record of all bitcoin transactions.


The blockchain is the system that keeps track of bitcoin transactions.


The blockchain is the platform which brings cryptocurrencies into play.


The blockchain is the underlying technology of cryptocurrencies like bitcoin.


The blockchain is the data structure that records the transfer of scarce objects.


The blockchain is the software that both powers and regulates cryptocurrency bitcoin.


[...]blockchain is Bitcoin


[...]blockchain is not Bitcoin


[...]blockchain is not scalable


[...]blockchain is open source.


[...]blockchain is kept in sync.


[...]blockchain is considered safe


[...]blockchain is about integrity.


[...]blockchain is easy to integrate.


[...]blockchain is incredibly secure.


[...]blockchain is more than Bitcoin.


[...]blockchain is very hard to hack.


[...]blockchain is all about security.


[...]blockchain is slow and inefficient


[...]blockchain is like a Bank Passbook.


[...]blockchain is 'de-intermediarization.


[...]blockchain is fast and powerful database.


[...]blockchain is virtually impossible to hack.


[...]blockchain is supposed to be self-governing.


[...]blockchain is immutable, secure and transparent.


[...]blockchain is where anonymity meets transparency


[...]blockchain is essentially a record of transactions.


[...]blockchain is actually managed by distributed nodes.


[...]blockchain is not Bitcoin-Bitcoin is not Blockchain"


[...]blockchain is just a distributed database of records.


[...]blockchain is nothing more than a glorified spreadsheet.


[...]blockchain is broadcasted to the everyone in the network.


[...]blockchain is not optimized for high transaction systems,


[...]blockchain is decentralized and therefore is not developing


[...]blockchain is restricted to 7 tps and a max of 1mb per block


[...]blockchain is running across countless numbers of computers.


[...]blockchain is only the underlying technology behind Bitcoins.


[...]blockchain is simply a tracking mechanism that is incorruptible.


[...]blockchain is more a design principle than a particular technology.


[...]blockchain is basically just a ledger, a system for keeping records.


[...]blockchain is designed to be immutable, tamper-proof and democratic.


[...]blockchain is hacker-resistant due to the immutable nature of the records.


[...]blockchain is suited to storing small transaction records, not large files.


[...]blockchain is still just a database, a distributed one with tamper protection.


[...]blockchain is a better ledger.


[...]blockchain is a database innovation.


[...]blockchain is a shared public chain.


[...]blockchain is a shared public ledger.


[...]blockchain is a fully redundant data repository.


[...]blockchain is a write-once, append-many electronic ledger.


[...]blockchain is a fully functional Distributed Ledger Technology.


[...]blockchain is a database, innovative and unique, but still a database.


[...]blockchain is a decentralized (peer-to-peer) network composed of nodes.


[...]blockchain is a distributed database that has no single decision maker.


[...]blockchain is a distributed system for maintaining distributed ledgers.


[...]blockchain is a digital platform for recording and verifying transactions.


[...]blockchain is a record-keeping system possessing a specific set of attributes.


[...]blockchain is a de-centralized or distributed self-governance community system.


[...]blockchain is a distributed network performing certain actions programmed into it.


[...]blockchain is a general technique, not a single product or software implementation.


[...]blockchain is an immutable record book.


[...]blockchain is an Append-Only Chain of Blocks


[...]blockchain is the technology backbone of Bitcoin.


[...]blockchain is the ledger to keep track of who owns the digital tokens


[...]blockchain is the technology upon which bitcoin transactions are built.


[...]blockchain is the decentralized ledger that tracks cryptocurrency transactions.


[...]Blockchain technology is the "internet of value".


[...]Blockchain technology is larded through with trust.


[...]Blockchain technology is about far more than just Bitcoin.


[...]Blockchain technology is essentially a new approach to database architecture.


[...]Blockchain technology is rooted in the world of cryptocurrencies, more specifically Bitcoin.


[...]a Blockchain is decentralized.


[...]a Blockchain is deterministic.


[...]a Blockchain is just a spreadsheet.


[...]a Blockchain is just a way to structure data.


[...]a Blockchain is represented as a spreadsheet.


[...]a Blockchain is just a special kind of database.


[...]a Blockchain is comprised of a bunch of technologies that are actually pretty old.


[...]a Blockchain is simply a distributed ledger that tracks transactions among parties.


[...]a blockchain is a ledger.


[...]a blockchain is a type of DLT.


[...]a blockchain is a decentralized ledger system.


[...]a blockchain is a list of records (or blocks).


[...]a blockchain is a database, a database is not a blockchain.


[...]a blockchain is a database that is copied across multiple nodes.


[...]a blockchain is a surprisingly simple and elegant data structure.


[...]a blockchain is a collection of information organized into blocks.


[...]a blockchain is a record of transactions, like a traditional ledger.


[...]a blockchain is an incorruptible digital ledger.


[...]a blockchain is an ever-growing set of data blocks.


[...]a blockchain is an immutable, sequential chain of records called Blocks.


[...]a blockchain is the only place where absence of evidence is evidence of absence.


[...]the blockchain is code.


[...]the blockchain is immutable.


[...]the blockchain is tamperproof


[...]the blockchain is incorruptible...


[...]the blockchain is just a database.


[...]the blockchain is simply a ledger.


[...]the blockchain is secure and up-to-date.


[...]the blockchain is completely transparent.


[...]the blockchain is distributed, digital ledger.


[...]the blockchain is transparent and tamper-proof.


[...]the blockchain is public and distributed widely.


[...]the blockchain is more like a journal than a ledger.


[...]the blockchain is currency that you're moving around.


[...]the blockchain is distributed and decentralised ledger.


[...]the blockchain is what the word says; a chain of blocks.


[...]the blockchain is completely decentralized and open source.


[...]the blockchain is often referred to as a distributed ledger.


[...]the blockchain is just one particular type of distributed ledger.


[...]the blockchain is nothing more than a collection of transactions.


[...]the blockchain is simply an online ledger shared by many parties.


[...]the blockchain is also called a distributed or a decentralized ledger.


[...]the blockchain is bitcoin's essence and is owed credit for its success.


[...]the blockchain is inclined to record formal agreements between parties.


[...]the blockchain is shared like a BitTorrent file across the bitcoin network.


[...]the blockchain is maintained by, and visible to, anyone who trades bitcoins.


[...]the blockchain is as a journal or diary shared by people all over the world.


[...]the blockchain is just a public ledger of transactions on the bitcoin network.


[...]the blockchain is actually composed of single transactions known as ""blocks."


[...]the blockchain is never deleted, because it would have to be deleted by all nodes.


[...]the blockchain is a ledger.


[...]the blockchain is a protocol of trust.


[...]the blockchain is a new way to store data


[...]the blockchain is a network and a database.


[...]the blockchain is a ledger of data integrity.


[...]the blockchain is a giant, distributed computer


[...]the blockchain is a magical database in the cloud


[...]the blockchain is a new "value exchange" network.


[...]the blockchain is a linear sequence of linked blocks.


[...]the blockchain is a decentralised, distributed ledger.


[...]the blockchain is a system of permanent record that keeps growing.


[...]the blockchain is a decentralized, consensus-based, time-stamped ledger.


[...]the blockchain is a list of Bitcoin transfers with a 40 character memo line.


[...]the blockchain is a record of who has owned every bitcoin since its inception.


[...]the blockchain is a system for eliminating the need for trust in transactions.


[...]the blockchain is a giant ledger that keeps track of who owns how much bitcoin.


[...]the blockchain is a decentralized ledger for all of the transactions in a network.


[...]the blockchain is a shared public ledger on which the entire Bitcoin network relies.


[...]the blockchain is an information technology.


[...]the blockchain is an "Inefficient, Imposing Mastodon"


[...]the blockchain is an integral part of the world of crypto coins,


[...]the blockchain is an inherently feminine way to move value across the world.


[...]the blockchain is an authority tied to mathematics, not the government or lawyers.


[...]the blockchain is an ever-growing database which will only grow bulkier with time.


[...]the blockchain is the new database


[...]the blockchain is the ultimate legal library.


[...]the blockchain is the trust anchor for the world's data.


[...]the blockchain is the underlying technology that powers Bitcoin.


[...]the blockchain is the beating heart of Bitcoin, the world's most popular cryptocurrency.


[...]blockchain is a Bubble


[...]blockchain is a bad idea.


[...]blockchain is a global endeavor.


[...]blockchain is a quick win if used.


[...]blockchain is a relatively new concept.


[...]blockchain is a 'Trend to Watch Out For'


[...]blockchain is a foundational technology.


[...]blockchain is a natural fit with telehealth


[...]blockchain is a Terrible Idea for Applications


[...]blockchain is a necessity for modern business now.


[...]blockchain is a relatively straightforward concept.


[...]blockchain is a solution looking for problems to solve.


[...]blockchain is a Game Changer for Supply Chain Management


[...]blockchain is a potential game-changer in the rail realm,


[...]blockchain is a major breakthrough and has great potential.


[...]blockchain is a Game Changer for Supply Chain Management Transparency


[...]blockchain is a way to look like you're on the leading edge of technology.


[...]blockchain is a fundamental part of the new operating system for the planet.


[...]blockchain is a foundational technology that will require broad coordination.


[...]blockchain is a game-changing innovation that will reshape entire industries.


[...]blockchain is a technology with an exceptionally broad set of potential uses.


[...]blockchain is a somewhat slow technology when compared to what already exists.


[...]blockchain is a failure because it has been 10 years and not much has come of it?


[...]blockchain is a remarkable solution to problems that we have not even imagined yet.


[...]blockchain is an ideal solution for businesses.


[...]blockchain is an ideal solution for businesses in a lot of ways.


[...]blockchain is an ideal solution for the global food supply chain.


[...]blockchain is an ideal technological medium for the healthcare industry:


[...]blockchain is an enabler of new innovation and disruption of the tourism industry.


[...]blockchain is the Truth


[...]blockchain is the Forest


[...]blockchain is the Future


[...]blockchain is the new black


[...]blockchain is the only one.


[...]blockchain is the solution.


[...]blockchain is the innovation.


[...]blockchain is the future of IoT


[...]blockchain is the 'next big unlock'


[...]blockchain is the obvious solution.


[...]blockchain is the future of business


[...]blockchain is the logical next step.


[...]blockchain is the future of purchasing


[...]blockchain is the most logical choice.


[...]blockchain is the solution to your ills.


[...]blockchain is the record of transactions.


[...]blockchain is the Biggest Innovation Today


[...]blockchain is the digital medium of value.


[...]blockchain is the Solution to Banking Woes


[...]blockchain is the next great database tech.


[...]blockchain is the next phase of the Internet


[...]blockchain is the Future Of The Sharing Economy


[...]blockchain is the Grownup in the Crypto Playroom


[...]blockchain is the new business collaboration tool


[...]blockchain is the next evolution of the internet.


[...]blockchain is the Right Fit for Gold and Diamonds


[...]blockchain is the disruptive technology of the future.


[...]blockchain is the missing link to IoT transformations


[...]blockchain is the next "big thing" in asset management.


[...]blockchain is the right technology for your situation,


[...]blockchain is the most important IT invention of our age,


[...]blockchain is the most popular digital wallet in the world.


[...]blockchain is the most secure paradigm the world has ever seen.


[...]blockchain is the right tool for the job when it comes to Bitcoin.


[...]blockchain is the missing link to transform electric power industry


[...]blockchain is the solution to protecting from food fraud and adulteration.


[...]blockchain is the safest and cheapest alternative to any company's intranet.


[...]blockchain is the first native digital medium for peer-to-peer value exchange.


[...]blockchain is the most over-hyped - and least useful - technology in human history,


[...]Blockchain technology is the future.


[...]Blockchain technology is very powerful...


[...]Blockchain technology is well accepted.


[...]Blockchain technology is changing rapidly.


[...]Blockchain technology is making headlines!


[...]Blockchain technology is Affecting Humanity


[...]Blockchain technology is valuable because it is open.


[...]Blockchain technology is not a bubble, but Bitcoin is,


[...]Blockchain technology is a challenge and an opportunity.


[...]Blockchain technology is Transforming the Legal Industry


[...]Blockchain technology is still very much in the spotlight.


[...]Blockchain technology is likely to be extremely disruptive.


[...]Blockchain technology is a more than commendable innovation.


[...]Blockchain technology is a threat to nations and corporations.


[...]Blockchain technology is still a mystery to many business people.


[...]Blockchain technology is 'Disrupting' The Art Economy As We Know It


[...]Blockchain technology is much more than Bitcoin or cryptocurrencies.


[...]Blockchain technology is bringing a change in learning and development.


[...]Blockchain technology is different from what we are currently doing today.


[...]Blockchain technology is a profound solution to a seemingly impossible problem.


[...]Blockchain technology is the antidote for all the toxic ills unleashed by Internet anarchy.


[...]blockchain technology is a challenge and an opportunity.


[...]blockchain technology is a more than commendable innovation.


[...]blockchain technology is a threat to nations and corporations.


[...]blockchain technology is a profound solution to a seemingly impossible problem.


[...]blockchain technology is a sophisticated, interesting, and emerging technology.


Blockchain is a miracle


Blockchain is a Unicorn


Blockchain is a Passing Fad


Blockchain is a game changer,


Blockchain is a Powerful Tool


Blockchain is a game-changer,


Blockchain is a paradigm shift


Blockchain is a Semantic Wasteland


Blockchain is a useless technology


Blockchain is a key part of Bitcoin.


Blockchain is a big deal for Marketers


Blockchain is a disruptive technology.


Blockchain is a money-burning disaster


Blockchain is a revolutionary concept.


Blockchain is a foundational technology:


Blockchain is a hot technology right now.


Blockchain is a highly malleable technology.


Blockchain is a buzzword in the financial industry,


Blockchain is a Game-Changer for Online Advertising


Blockchain is a potentially transformative technology .


Blockchain is a technology that will change the world forever.


Blockchain is a young technology, first conceptualised in 2008.


Blockchain is a 4th Industrial Rev Tech for Next Gen Energy Grid


Blockchain is a New Model That Makes The Existing Model Obsolete


Blockchain is a waste of time, energy and mental space - please stop.


Blockchain is a truly extraordinary technology that does really mundane things


Blockchain is a robust technology that resembles the internet in the early '90:


Blockchain is a new foundational building block for doing business on the internet.


Blockchain is often defined as a ledger that enables secure, encrypted transactions.


Blockchain is all about how to store, share, and maintain data (transactions) securely.


Blockchain is based on a simple idea, but built upon a complex technological framework.


Blockchain is hailed as a more secure, faster and highly flexible network to transmit data.


Blockchain is tamper-proof and immutable due to decentralization, cryptography and consensus.


Blockchain is in simple terms, a digital ledger where transactions are made and recorded permanently.


blockchain is digitally distributed across a number of computers in almost real-time: the blockchain is


Blockchain is essentially a large database, where querying a hotel in Berlin might return 800 properties.


Blockchain is about using technology to create a shared sense of trust by a group of disparate participants.


Blockchain is essentially a ledger technology that uses cryptography to provide an authoritative record of secure transactions.


Blockchain is most simply defined as a decentralized, distributed ledger technology that records the provenance of a digital asset.


Blockchain is like a vast open-permissioned-interactive spreadsheet that everyone can access and update, but can't change or delete.


blockchain is time-stamped: transactions on the blockchain are time-stamped, making it useful for tracking and verifying information.


Blockchain is open in the sense that it can be verified by any user, and access to it cannot be prevented by any central government authority.


Blockchain is at its core, a method for humans to conduct secure, verified, and recorded transactions online without the use of a middle party.


Blockchain is essentially a distributed database to which data can only be appended, which means that historic data cannot be lost nor corrupted.


Blockchain is quite simply, a digital, decentralized ledger that keeps a record of all transactions that take place across a peer-to-peer network.


Blockchain is a broad technology that is distinct from bitcoin and cryptocurrencies.


Blockchain is a distributed database existing on multiple computers at the same time.


Blockchain is a low-level, behind the scenes technology that creates secure databases.


Blockchain is a technology that enables a convenient and secure exchange of information.


Blockchain is a technology that was initially developed for Bitcoin, the cryptocurrency.


Blockchain is a massive public ledger of every user activity across an extensive network.


Blockchain is a technology which is used to create crypto money like bitcoin or ethereum.


Blockchain is a distributed technology for storing data as an immutable series of records.


Blockchain is a technology or an ecosystem, and it is not the same as blockchain software.


Blockchain is a decentralized, digitized public ledger of all transactions of cryptocurrency.


Blockchain is a technology that originated out of a branch of mathematics called cryptography.


Blockchain is a digital log file, cryptographically protected, that secures online transactions.


Blockchain is a cloud-based, permanent, distributed digital ledger of activities between parties.


Blockchain is a distributed ledger, or database, shared across a public or private computing network.


Blockchain is a form of digital ledger technology based on the decentralised ideal of cryptocurrency.


Blockchain is a unique technology, capable of decentralizing networks and allowing people to connect.


Blockchain is a form of shared database originally developed to underpin the digital currency bitcoin.


Blockchain is a concatenated list in which every list entry (block) can comprise one or more data sets.


Blockchain is a distributed system, which means that there is no central source of processed data in it.


Blockchain is a technology that uses distributed databases, math and cryptography to record transactions.


Blockchain is a fairly new technology platform that runs across millions of devices and is open to anyone.


Blockchain is a space that allows a significant decrease in any sort of liable and responsible regulation.


Blockchain is a type of distributed ledger where all data is replicated for all participants in real-time.


Blockchain is a distributed electronic ledger that keeps a verifiable and unalterable record of transactions.


Blockchain is a distributed peer-to-peer network which records transactions and assets on a business network.


Blockchain is a highly disruptive innovation that will transform financial systems and many other industries.


Blockchain is a document of transactions, spreading throughout the web as extra individuals use cryptocurrencies.


Blockchain is a way of keeping track of stuff, without having a single party responsible for keeping track of it,


Blockchain is a digital ledger that records transactions between parties and requires consensus among all parties.


Blockchain is a public ledger type database made up of records called blocks that are linked together like a chain.


Blockchain is a truly distributed system with built-in protections against losing communication with network nodes.


Blockchain is a distributed database comprising records of transactions that are shared among participating parties.


Blockchain is a programmable, native digital technology that enables simple and immediate execution of complex tasks.


Blockchain is a type of distributed ledger for maintaining a permanent and tamper-proof record of transactional data.


Blockchain is a global online database that anyone with an internet connection can use, but it doesnt belong to anyone.


Blockchain is a decentralized database that maintains a continuously-growing list of records called blocks in a data chain.


Blockchain is a technology that allows peer-to-peer transactions to be recorded on a distributed ledger across the network.


Blockchain is a distributed database that holds records of digital data or events in a way that makes them tamper-resistant.


Blockchain is a distributed ledger that captures transactions across a peer-to-peer network, which may be private or public.


Blockchain is a way of securing financial data which is flexible enough to make an entreaty with any high-stake record keeping.


Blockchain is a distributed database that stores all the Bitcoin transactions that have ever happened in the history of Bitcoin.


Blockchain is a platform that can securely verify transactions and identities through a network of multiple decentralized records.


Blockchain is a web-based bitcoin platform that makes using bitcoin safe, easy, and secure for all consumers and businesses worldwide.


Blockchain is a technology to create and maintain cryptographically secure, shared, and distributed ledger (a database) for transactions.


Blockchain is a decentralized, trustless, distributed ledger technology that was popuarlized by the Bitcoin global cryptocurrency platform.


Blockchain is a digital ledger technology capable of recording transactions and storing data in immutable blocks across a distributed network.


Blockchain is a peer-to-peer technology that uses its distributed ledger and advanced encryption to guarantee the provenance of every transaction.


Blockchain is a distributed ledger technology that enables permissioned sharing of an immutable record among parties to create consensus and trust.


Blockchain is an immutable, public, distributed ledger that anyone can read or write.


Blockchain is an open, distributed ledger (in other words, a list of digital records) known as blocks.


Blockchain is an example of a distributed computing system that incorporates high Byzantine fault tolerance


Blockchain is an open-source, public, distributed computing technology, which is the basis of the well-known cryptocurrency bitcoin.


Blockchain is an open, distributed ledger that can efficiently record transactions between two parties in a verifiable, permanent way.


blockchain is an open, distributed ledger that can record transactions between two parties efficiently and in a verifiable and permanent way.


Blockchain is the technology stack or enabler behind cryptocurrencies such as Bitcoin.


Blockchain is the technology that tracks and authenticates cryptocurrency transactions.


Blockchain is the underpinning technology that maintains the Bitcoin transaction ledger.


Blockchain is the technology that makes bitcoin and all the other cryptocurrencies possible.


Blockchain is the technology that enables the existence of cryptocurrency (among other things).


Blockchain is the underlying technology ensuring transactions are accurate, transparent and immutable.


Blockchain is the technology the underpins digital currency (Bitcoin, Litecoin, Ethereum, and the like).


Blockchain is the name for a digital ledger program that allows a network of verified users to update data quickly.


Blockchain is the underlying technology to what is commonly known as Bitcoin, however, the technology is not exclusive to Bitcoin.


Blockchain is the technology behind all cryptocurrencies such as ethereum and bitcoin, but the financial industry is only one applications.


Blockchain technology is simply using a network of computers as a ledger system to keep perfect records.


Blockchain technology is nearly impossible to hack because of the decentralized nature of the technology.


Blockchain technology is comprised of blocks that hold batches of time-stamped and encrypted transactions.


Blockchain technology is also decentralized, which means there is no central point of failure and it displaces middlemen.


Blockchain technology is not a company, nor is it an app, but rather an entirely new way of documenting data on the internet.


Blockchain technology is by nature decentralized and collaborative, and the value of cryptocurrency is decided by the community.


Blockchain technology is an invention that can be thought of as a ledger that keeps a record of economic transactions or anything of value.


Blockchain technology is therefore well-suited for recording events, managing records, processing transactions, tracing assets, and voting.


Blockchain technology is a tool for the management of information, specifically the records of transactions.


Blockchain technology is a decentralised digital ledger that enables the secure transfer of data, transactions and records.


Blockchain technology is a digital, distributed transaction ledger with identical copies maintained on each of the network's members' computers.


Blockchain technology is the missing link to settle scalability, privacy, and reliability concerns in the Internet of Things.


Blockchain technology is the building blocks on which cryptocurrencies can function, but its potential use reaches far beyond that


Blockchain is one of the most misunderstood technologies in the history of mankind,


Blockchain is as safe as it is, because its security is based on raw computing power.


Blockchain is very complicated to understand, especially for the non-technical person.


Blockchain is difficult for many people to understand, but so was the Internet initially.


Blockchain is nothing new, but the combination of several existing technologies enables disruption.


Blockchain is considered as being able to change the world again just like what the Internet technology did.


Blockchain is an important step for businesses to achieve radical openness with security.


Blockchain is an elegant piece of technology that does something very complicated very well.


[...]blockchain is Fine


[...]blockchain is free


[...]blockchain is real


[...]blockchain is bulky


[...]blockchain is cool.


[...]blockchain is over.


[...]blockchain is Boring


[...]blockchain is Cloud 2.


[...]blockchain is private.


[...]blockchain is useless.


[...]blockchain is democracy


[...]blockchain is important


[...]blockchain is inclusive


[...]blockchain is "useless".


[...]blockchain is one thing.


[...]blockchain is very limited.


[...]blockchain is already in use


[...]blockchain is far from dead.


[...]blockchain is not a solution.


[...]blockchain is not modifiable.


[...]blockchain is too transparent


[...]blockchain is 'Transformative'


[...]blockchain is changing banking


[...]blockchain is changing finance


[...]blockchain is Changing the IoT


[...]blockchain is Changing The Web


[...]blockchain is considered best.


[...]blockchain is easier to track.


[...]blockchain is happening now.


[...]blockchain is changing business


[...]blockchain is connecting humans


[...]blockchain is not for everyone.


[...]blockchain is very restrictive.


[...]blockchain is Changing Our World


[...]blockchain is Disrupting Fashion


[...]blockchain is disrupting loyalty


[...]blockchain is Impacting Industry


[...]blockchain is actually very dull.


[...]blockchain is changing the world.


[...]blockchain is only the beginning.


[...]blockchain is Banking the Unbanked


[...]blockchain is hot, bitcoin is not.


[...]blockchain is Changing Gold Markets


[...]blockchain is completely different.


[...]blockchain is hardly revolutionary.


[...]blockchain is most hyped tech ever,


[...]blockchain is not a one-trick pony.


[...]blockchain is overshadowing Bitcoin


[...]blockchain is rich with possibility


[...]blockchain is Worth Getting Excited


[...]blockchain is worthy of investment.


[...]blockchain is Coming for Agriculture


[...]blockchain is dangerous for business


[...]blockchain is finally becoming real!


[...]blockchain is good for about a year.


[...]blockchain is Impacting Social Media


[...]blockchain is improving what you eat


[...]blockchain is in every single place.


[...]blockchain is itself being repaired.


[...]blockchain is transforming payments.


[...]blockchain is changing the way we pay


[...]blockchain is key to future services.


[...]blockchain is making steady progress.


[...]blockchain is revolutionising careers


[...]blockchain is Changing Computer Gaming


[...]blockchain is Changing Money Transfers


[...]blockchain is eliminating online fraud


[...]blockchain is only a lunch discussion.


[...]blockchain is quite popular on mobile.


[...]blockchain is Transforming Health Care


[...]blockchain is Boosting Renewable Energy


[...]blockchain is great, but Bitcoin sucks!


[...]blockchain is Helping Genomics Research


[...]blockchain is indeed a viable solution.


[...]blockchain is not such a bad technology


[...]blockchain is supporting climate action


[...]blockchain is being used by governments.


[...]blockchain is Changing Digital Marketing


[...]blockchain is Changing the Mortgage Game


[...]blockchain is Ready To Take Center Stage


[...]blockchain is Reinventing Your News Feed


[...]blockchain is About More Than Just Crypto


[...]blockchain is Indirectly Helping Insurers


[...]blockchain is not the be-all and end-all.


[...]blockchain is Revolutionizing Agriculture


[...]blockchain is still in it's early stages.


[...]blockchain is Totally Changing Healthcare


[...]blockchain is transforming energy systems


[...]blockchain is Transforming Health Records


[...]blockchain is Useless, All ICOs Are Scams


[...]blockchain is what we need for our life ...


[...]blockchain is Worth Getting Excited About


[...]blockchain is altering data and analytics.


[...]blockchain is bringing staffing innovation


[...]blockchain is changing money and business.


[...]blockchain is just behind-the-scenes code.


[...]blockchain is no 'magic wand' for security


[...]blockchain is Real And Bitcoin Is A Mirage


[...]blockchain is still in its nascent stages.


[...]blockchain is About Growth Not Cost Savings


[...]blockchain is Changing the Banking Industry


[...]blockchain is definitely worth focusing on.


[...]blockchain is everything and is everywhere,


[...]blockchain is not the answer to everything.


[...]blockchain is part of the physical process.


[...]blockchain is Revolutionizing Cybersecurity


[...]blockchain is Transforming the Supply Chain


[...]blockchain is used in media and advertising


[...]blockchain is Helping to Clean Up Our Oceans


[...]blockchain is moving in the wrong direction.


[...]blockchain is Poised to Impact Supply Chains


[...]blockchain is set to Revolutionize Elections


[...]blockchain is still a decade from mainstream


[...]blockchain is changing Learning & Development


[...]blockchain is Changing the Financial Industry


[...]blockchain is disrupting the financial sector


[...]blockchain is dominating discussions in Davos


[...]blockchain is for real, and it is a big deal.


[...]blockchain is Influencing the Gaming Industry


[...]blockchain is Powering Up the Energy Industry


[...]blockchain is reshaping the world of business


[...]blockchain is taking hold across Asia Pacific


[...]blockchain is growing faster than the internet


[...]blockchain is revolutionising the legal sector


[...]blockchain is Transforming The Energy Industry


[...]blockchain is already transforming UAE industry


[...]blockchain is building its own trading product.


[...]blockchain is disrupting finance and accounting


[...]blockchain is no bubble but 'Bitcoin likely is'


[...]blockchain is Redefining the Future of Commerce


[...]blockchain is still an experimental technology.


[...]blockchain is Striving To Meet Its Expectations


[...]blockchain is what the Internet was in the 90s.


[...]blockchain is Disrupting the Accounting Industry


[...]blockchain is disrupting the insurance industry.


[...]blockchain is far from being the norm - for now.


[...]blockchain is No Silver Bullet For Cyber Threats


[...]blockchain is probably the better long-term bet.


[...]blockchain is reshaping the real estate industry


[...]blockchain is Disrupting Programmatic Advertising


[...]blockchain is helping investors value real estate


[...]blockchain is likely to transform IT and business


[...]blockchain is Revolutionizing The Gaming Industry


[...]blockchain is set to shake up as much as banking.


[...]blockchain is Helping Democratize Access to Credit


[...]blockchain is Helping Technology Get Its Soul Back


[...]blockchain is Important But "A Bit Of Distraction"


[...]blockchain is Lined to Transform African Economies


[...]blockchain is not a magic solution for everything.


[...]blockchain is Ready to Break Out in the Enterprise


[...]blockchain is really about solving a data problem.


[...]blockchain is Redefining the Rules of Supply Chain


[...]blockchain is revolutionary and paradigm-shifting.


[...]blockchain is securing our expanding online world.


[...]blockchain is Changing the Social Media Environment


[...]blockchain is eliminating cheating in online gaming


[...]blockchain is not a solution for all your problems.


[...]blockchain is not subject to any unique regulation.


[...]blockchain is on its way to Become the New Internet


[...]blockchain is set to revolutionize mining for ever.


[...]blockchain is not all it promises to be for finance.


[...]blockchain is poised to transform the food industry.


[...]blockchain is Revolutionizing The Financial Industry


[...]blockchain is Set To Transform The Healthcare Sector


[...]blockchain is still a secure thing if used properly.


[...]blockchain is about way more than just sending money.


[...]blockchain is Becoming the 'New Normal' In Enterprise


[...]blockchain is Changing Banking and Financial Services


[...]blockchain is Changing the Digital Marketing Industry


[...]blockchain is designed for Business interactions only


[...]blockchain is disrupting the digital marketing space.


[...]blockchain is Making Waves In Media And Entertainment


[...]blockchain is only in the bottom of the first inning.


[...]blockchain is overhyped and top IT bods don't want it


[...]blockchain is Reinventing Business Process Management


[...]blockchain is Replacing Branding As A Source Of Trust


[...]blockchain is revolutionizing supply chain management


[...]blockchain is Solving the Biggest Problems in Fintech


[...]blockchain is a bit of a distraction in the short term


[...]blockchain is full of content that can land you in jail


[...]blockchain is Impacting Data and Processes in Insurance


[...]blockchain is neither cheap nor efficient to run - yet.


[...]blockchain is not a financial services only technology.


[...]blockchain is proving to be quite the disruptive force.


[...]blockchain is '10 Times More Valuable Than the Internet'


[...]blockchain is Finding a Place at Your Thanksgiving Table


[...]blockchain is making an impact on the freelance economy.


[...]blockchain is Reshaping The Advertising and Media Spaces


[...]blockchain is Simplifying Pharmaceutical Track And Trace


[...]blockchain is steadily rippling out to other industries.


[...]blockchain is Creating a New Future for Digital Marketing


[...]blockchain is Empowering Cyberpunks and Governments Alike


[...]blockchain is now being used in numerous different areas.


[...]blockchain is one of the most overhyped technologies ever


[...]blockchain is real for many leading supply chain managers


[...]blockchain is Threatening to Kill the Traditional Utility


[...]blockchain is used with more than just crypto currencies.


[...]blockchain is becoming a C-suite issue for asset managers.


[...]blockchain is Impacting Healthcare And Life Sciences Today


[...]blockchain is one of the most overhyped technologies ever.


[...]blockchain is actually extremely limited in what it can do.


[...]blockchain is now moving out of the peak of the hype phase.


[...]blockchain is so attractive to be used for cryptocurrencies


[...]blockchain is to value what the internet is to information.


[...]blockchain is viewed as an aid to wholesale energy traders.


[...]blockchain is fundamentally altering the business landscape.


[...]blockchain is Good For Business, But Not Great For Consumers


[...]blockchain is most useful where there is no claims adjusting


[...]blockchain is nothing but useless and over-hyped technology.


[...]blockchain is obscure and we need a better, friendlier word.


[...]blockchain is only used for very decentralized applications.


[...]blockchain is set to change the way the world does business.


[...]blockchain is specifically designed to be easy to invest in.


[...]blockchain is Perfect for Securing Our Expanding Online World


[...]blockchain is redefining digital identities and data exchange


[...]blockchain is disrupting the insurance industry for the better


[...]blockchain is about to have an impact on nearly every industry.


[...]blockchain is Bringing Technology Conversations Back in Lending


[...]blockchain is quickly emerging as legal technology's new black.


[...]blockchain is Reshaping Enterprise Software Development in 2018


[...]blockchain is 'Biggest Threat' to Future of US National Security


[...]blockchain is being tested, but adoption is far from widespread.


[...]blockchain is feeding an appetite for transparent food supplies.


[...]blockchain is maintained by a network of people known as miners.


[...]blockchain is Making it Easier for Fintech Companies to Scale Up


[...]blockchain is most likely to change healthcare in the short-run.


[...]blockchain is still five to 10 years away from going mainstream,


[...]blockchain is used by Governments as a form of National Identity


[...]blockchain is by definition independent, transparent, and secure.


[...]blockchain is ideal for transforming a host of digital processes.


[...]blockchain is abstract, technical and happening behind the scenes.


[...]blockchain is bringing technology conversations back to the table.


[...]blockchain is Changing The Face of Trucking, Logistics and Freight


[...]blockchain is like the electricity that is powering the lightbulb.


[...]blockchain is stuck in is actually holding global acceptance back.


[...]blockchain is all talk and no show: great thunder, yet little rain.


[...]blockchain is Enabling the New Era of Digital Financial Investments


[...]blockchain is everywhere - and that includes media and advertising.


[...]blockchain is pioneering transparent and secure business processes.


[...]blockchain is solving industry problems, and this is the new world.


[...]blockchain is something that we will hear about more in the future.


[...]blockchain is about decentralized data, processes, and transactions.


[...]blockchain is in its nascent phase - think of the internet in 1996.


[...]blockchain is surely going to rise significantly in the coming days.


[...]blockchain is accelerating breakthroughs in its range of applications.


[...]blockchain is Disrupting Enterprise Finance And Accounting Departments


[...]blockchain is Enabling the New Era of Digital Financial Investmentment


[...]blockchain is among the least exciting technologies making waves today.


[...]blockchain is at the peak of inflated expectations on their hype cycle.


[...]blockchain is not the solution itself, and it comes with its own risks.


[...]blockchain is Revolutionizing The World Of Transportation And Logistics


[...]blockchain is strengthening tuna traceability to combat illegal fishing


[...]blockchain is doing to trust what the early internet did to information.


[...]blockchain is introducing the second iteration of computation structure.


[...]blockchain is leading the revolution in redefining the new-age internet.


[...]blockchain is poised to change how people do business by offering trust.


[...]blockchain is sometimes portrayed as a magical solution to all problems.


[...]blockchain is having a significant impact on many domains and industries.


[...]blockchain is here to stay and is transforming how our society functions.


[...]blockchain is very useful for proof-of-work, auditing and data integrity.


[...]blockchain is being absorbed into the economy and global political system.


[...]blockchain is disruptive, it's bound by the same rules as most businesses.


[...]blockchain is not about decentralisation and democracy; it is about greed.


[...]blockchain is rife with possibilities for organizations, if not consumers.


[...]blockchain is one of the technologies used in cryptocurrencies like Bitcoin


[...]blockchain is seen as key to the digital transformation economy by so many.


[...]blockchain is some sort of distributed computer, performing distributed computations.


[...]blockchain is distributed - it addresses the problem of lack of a trusted intermediary.


[...]blockchain is just a database with certain structure: it's an ordered, back-linked list.


[...]blockchain is often described as consisting of (among other things) an immutable ledger.


[...]blockchain is just a tamper-resistant way of recording transactions into a digital ledger.


[...]blockchain is only around 8GB so keeping that on a 16GB microSD card with the OS will work well.


[...]blockchain is full of transactions and not much else (and a bit of data that connect the blocks).


[...]blockchain is basically a public ledger of all cryptocurrency transactions that have ever been executed.


[...]blockchain is both transparent and immutable which helps in creating a permanent record of transactions.


[...]blockchain is more secure and transparent, while the privacy is not harmed and the risk lowers significantly.


[...]blockchain is similar in potential to TCP/IP, the suite of network protocols that enabled the World Wide Web.


[...]blockchain is superior to vulnerable data centres previously relied upon by transactions and cloud computing.


[...]blockchain is indeed completely unscalable; adding resources does not affect the speed of transactions at all.


[...]blockchain is jargon-heavy and intimidating: cryptocurrencies, ICOs, smart contracts, token sales, and mining.


[...]blockchain is quite simple: a distributed database that maintains a continuously growing list of ordered records.


[...]blockchain is consensual, after a certain point of centralization, the rules of the system depend on very few users.


[...]blockchain is one thing that has come out of Bitcoin which provides a lot of flexibility in terms of financial transactions.


[...]blockchain is not viable at scale due to its energy consumption and transaction speed is a conflation of Bitcoin with blockchain.


[...]blockchain is more than just bitcoin; it's a method of tracking transactions using technology that could prove to be revolutionary.


[...]blockchain is shorthand for a whole suite of distributed ledger technologies that can be programmed to record and track anything of value.


[...]blockchain is mostly known as the backbone technology behind Bitcoin and is one of the hottest and most intriguing technologies in the market.


[...]blockchain is able to verify identity of IoT devices and the people interacting with them to prevent compromised devices usurping the platform.


[...]blockchain is a decentralized ledger that creates, verifies, and enforces contracts.


[...]blockchain is a shared, incorruptible ledger for recording the history of transactions.


[...]blockchain is a database of encrypted transactions stored across a network of computers.


[...]blockchain is a data-storage solution that does not directly address ad fraud in any way.


[...]blockchain is a reliable, difficult-to-hack record of transactions - and of who owns what.


[...]blockchain is a decentralized, transparent ledger of transactions across peer-to-peer networks.


[...]blockchain is a digital technology for securely recording, storing, and verifying transactions.


[...]blockchain is a distributed database system that is continuously updated in chronological order.


[...]blockchain is a decentralized software mechanism that enables a public distributed ledger system.


[...]blockchain is a distributed trustless verification system, something that didn't previously exist.


[...]blockchain is a digital ledger of transactions shared across a global network of powerful computers.


[...]blockchain is a distributed record of transactions maintained by a decentralised network of computers.


[...]blockchain is a continuously updated record of transactions spread out across a vast network of computers.


[...]blockchain is a valid technology to log and report on assets that are shared between non-trusting parties.


[...]blockchain is a decentralised technology or distributed ledger on which transactions are anonymously recorded.


[...]blockchain is a distributed, decentralized ledger based on "blocks," each of which is a record of a transaction.


[...]blockchain is a transaction ledger that maintains identical copies across each member computer within a network.


[...]blockchain is a database technology that leverages two unique features, namely transparency, and decentralization.


[...]blockchain is a massive, decentralized ledger of transactions maintained by many different, decentralized sources.


[...]blockchain is a shared, digitized ledger that cannot be changed once a transaction has been recorded and verified.


[...]blockchain is a record-keeping mechanism that makes it easier and safer for businesses to work together over the internet.


[...]blockchain is a self-maintaining database which typically has a "functionality wrapper", or app development platform, on top.


[...]blockchain is a decentralized, public ledger that contains the details of every Bitcoin transaction that has ever been completed.


[...]blockchain is a coordination mechanism, a technology that facilitates cooperation between individuals by lowering transaction costs.


[...]blockchain is a way for people to immediately share trusted information over a peer-to-peer network without a central administrator.


[...]blockchain is a way of structuring data by forming and linking blocks of cryptographically signed and time-stamped transaction data.


[...]blockchain is a digital ledger in which transactions made in Bitcoin or other cryptocurrency are recorded chronologically and publicly.


[...]blockchain is a digital ledger that allows people to record data securely, in a way that the data is both verifiable and decentralized.


[...]blockchain is a different way of keeping track of a normative set of information, instead of storing the information in one central location


[...]blockchain is a decentralized ledger that allows multiple parties to records transactions between them efficiently, securely and permanently.


[...]blockchain is a network of computers, all of which must approve a transaction has taken place before it is recorded, in a "chain" of computer code.


[...]blockchain is a network that utilizes cryptography to store records and information (the block) securely and link them with other records (the chain).


[...]blockchain is an open, distributed ledger that records transactions safely, permanently, and very efficiently.


[...]blockchain is an incorruptible ledger or record book; therefore, the technology can be used to securely store data in decentralized blocks.


[...]blockchain is the tech supporting Bitcoin-a currency attempting its own form of financial disruption.


[...]blockchain is the technology behind bitcoin, a distributed and tamper-proof database which could be leveraged in many other applications.


[...]blockchain is the platform on which cryptocurrency is built, helping facilitate and enforce the transfer and record keeping of the currencies.


[...]blockchain is the technology backbone of the network and provides a tamper-proof data structure, providing a shared public ledger open to all.


[...]blockchain is the digital global ledger that not only records cryptocurrency transactions, but also provides a home for documents of all sorts.


[...]Blockchain technology is simply too slow and that it is a shortcoming that cannot be overcome.


[...]Blockchain technology is a way to transfer any kind of information in a fast, tracked, and secure way.


[...]Blockchain technology is not patch-based, making it more secure than many of today's cybersecurity initiatives,


[...]Blockchain technology is used in a peer-to-peer network of parties, who all participate in a given transaction.


[...]Blockchain technology is one of the foundational concepts in the bitcoin system (and most other cryptocurrency systems)


[...]Blockchain technology is the essence of Bitcoin and the fundamental innovation with which many processes can be overhauled.


[...]a Blockchain is similar to a type of database, electronic ledger or transaction history.


[...]a Blockchain is programmed so that when a new block is accepted, it automatically releases cryptocurrency to the miner.


[...]a Blockchain is like a mathematical formula, like the quadratic equation or the formula to change Fahrenheit to Centigrade.


[...]a blockchain is in its essence, a decentralized and more secure database and there are multiple forms of its implementations.


[...]a Blockchain is like an application server: it hosts business logic and ensures it runs at the right time and for the right reasons.


[...]a Blockchain is just another type of database for recording transactions - one that is copied to all of the computers in a participating network


[...]a Blockchain is supposed to be set up so that entries are only posted by authorized users and that, once posted, they're verified to be correct.


[...]a blockchain is a linked list of blocks and a block is a group of ordered transactions.


[...]a blockchain is a kind of ledger, a table that businesses use to track credits and debits.


[...]a blockchain is a sequence of blocks, but distributed ledgers do not require such a chain.


[...]a blockchain is a digitized, decentralized, public ledger of all cryptocurrency transactions.


[...]a blockchain is a distributed database of transactions with safeguards against malicious attacks.


[...]a blockchain is a global online database which anyone anywhere with an internet connection can use.


[...]a blockchain is a distributed database that maintains an ever-growing list of records called blocks.


[...]a blockchain is a truly distributed, peer-to-peer database that does not require a central administrator.


[...]a blockchain is a protocol that describes how transactions are defined, connected, transmitted and collected.


[...]a blockchain is a decentralized, incorruptible digital ledger that can be programmed to record nearly anything.


[...]a blockchain is a continuously growing list of records, called blocks, which are linked and secured using cryptography.


[...]a blockchain is a neutral, transparent and unalterable database living in multiple locations and shared by a community.


[...]a blockchain is a digital ledger, secured by cryptography so powerful that tampering with it is dismissed as "impossible".


[...]a blockchain is a distributed open ledger that can record transactions between parties quickly in a verifiable and permanent way.


[...]a blockchain is a kind of independent, transparent, and permanent database coexisting in multiple locations and shared by a community.


[...]a blockchain is an encrypted and immutable linked list, meaning that it is very difficult to insert or delete blocks from it.


[...]a blockchain is an immutable digital public ledger that is a continuously growing distributed database that is cryptographically secured.


[...]a blockchain is an open database maintained by a network of independent participants who get paid in cryptocurrency (tokens) for their work.


[...]the blockchain is the framework facilitating transaction processing and coordination among interacting devices.


[...]the blockchain is the only place that bitcoins can be said to exist in the form of unspent outputs of transactions.


[...]the blockchain is the foundation upon which applications, such a cryptocurrencies (like Bitcoin) and platforms can be built.


[...]the blockchain is the mechanism which keeps everyone on the same page and prevents accounting errors, accidental or deliberate.


[...]the blockchain is the shared data layer and the bitcoin protocol is a decentralized protocol that's part of the shared protocol Layer.


[...]the blockchain is the backbone of newer distribution technologies, and an "auditable record of actions" will follow that information wherever it goes.


Blockchain is designed to store information in a way that makes it virtually impossible to add, remove or change data without being detected by other users.


Blockchain is essentially a global public ledger capable of automatically recording and verifying a high volume of digital transactions, regardless of location.


Blockchain is essentially a large immutable database which, due to its security features and decentralized nature, can pose a threat to traditional intermediaries.


Blockchain is perhaps best understood as a decentralized ledger that can diminish costs by removing intermediaries such as banks and effectively decentralizing trust.


Blockchain is just a digital ledger, a digitized record of whatever data is added by its members, with no ability to verify the accuracy of the underlying data itself.


Blockchain is not a distributed database replacement: blockchain complements distributed database technology, with appropriate information partitioning between the two.


Blockchain is in effect a single federated ledger that everybody who uses and touches that engine could use it as a single point of truth of what has happened to the engine,


Blockchain is distributed, decentralised database technology that maintains a growing list of transactions and, through encryption and other activity, verifies their permanence,


Blockchain is encrypted: it uses heavy-duty encryption involving public and private keys (rather like the two-key system to access a safety deposit box) to maintain virtual security.


Blockchain is significantly worse then a bank and there will be significantt destruction caused by the ignorant who push it and their irrational fear of the effective and progressive Banks.


Blockchain is being used to help track, in real time, millions of shipping containers across the world by providing a trusted, tamper-proof, cross-border system for digitized trade documents.


Blockchain is without a doubt one of the most-hyped technologies this year with people working in the industry seeing it as a silver bullet solution to many processes, which indeed it may not be.


Blockchain is challenging the current status quo of innovation by letting companies experiment with groundbreaking technology like p2p energy distribution or decentralized forms for news media.


Blockchain is best known as the technology behind the cryptocurrency bitcoin - a digital currency whose value soared above $19,000 over the last year before slumping to half that when the frenzy subsided.


Blockchain is now a familiar term to many, though in most cases, its meaning will be inextricably linked to bitcoin after a 10-fold price surge in 2017 valued this cryptocurrency at more than $180 billion.


Blockchain is here and now, and it will continue to gain traction as it provides transparency to the supply chain-especially in complex supply chain industries, such as the automotive and retail industries.


Blockchain is either a word you have heard of, and ignored, because you are intimidated by technology and have no idea how it applies to your life OR it is something with which you are completely fascinated.


Blockchain is here and now, and it will continue to gain traction as it provides transparency to the supply chain - especially in complex supply chain industries, such as the automotive and retail industries.


Blockchain is one innovation whose architectural properties increasingly provide essential foundations to the digital landscape where there is an appetite to define greater levels of autonomy and attribution.


Blockchain is a digital ledger of transactions that can be programmed to record not just cryptocurrency transactions but virtually everything of value.


Blockchain is a ledger can be written onto with new information, but the previous information, stored in blocks, cannot be edited, adjusted or changed.


Blockchain is a ledger of records structured into blocks of data, which are connected using secure cryptographic validation to form a continuous chain.


Blockchain is a new class of information technology that combines cryptography with distributed computing both of which existed for a number of decades.


Blockchain is a simple digital platform for recording and verifying transactions so that other people can't erase them later - and anyone can see them.


Blockchain is a distributed ledger technology that provides consensus, provenance, finality, and immutabilty of business transactions and digital assets.


Blockchain is a distributed ledger - multiple copies of the same information - in a decentralized manner - with multiple locations and a copy of that list.


Blockchain is a distributed ledger of transactions-like financial invoices, work orders, and delivery records-maintained by interested parties in a network.


Blockchain is a secure platform, ledger, or database where buyers and sellers could store and exchange value without the need for traditional intermediaries


Blockchain is a public register in which transactions between multiple users belonging to the same network are stored in a secure, verifiable and permanent way.


Blockchain is a shared, public ledger of records or transactions that is open to inspection by every participant but not subject to any form of central control.


Blockchain is a decentralized record and it is changeless, straightforward and effortlessly auditable that empower clients to have control over their information


Blockchain is a mathematically ensured cyber security technology for rapid and immutable identification of modifications in digital data and intelligent devices.


Blockchain is a new way of storing data in a distributed ledger that allows multiple stakeholders to confidently and securely share access to the same information.


Blockchain is a decentralized, peer to peer, immutable storage network which is censor free and regulator free because of the absence of one single controlling entity.


Blockchain is a vast, globally distributed ledger where anyone, anywhere can move, store and manage any kind of asset, from money and securities to intellectual property and votes


Blockchain is a distributed ledger, which simply means that a ledger is spread across the network among all peers in the network, and each peer holds a copy of the complete ledger.


Blockchain is a type of distributed ledger that can be used to create an authoritative record of events, which in turn can be used to provide trust within an untrusted environment.


Blockchain is a versatile technology that can record financial transactions, store medical records, or even track the flow of goods, information, and payments through a supply chain.


Blockchain is a decentralized, peer-to-peer network that provides insurers and stakeholders a way of "producing, storing, managing and sharing data as a secure record of transactions,


Blockchain is a distributed deployment and real-time synchronization system, allows participants from different parties to create and maintain the data through mechanism for consensus.


Blockchain is a transparent ledger that provides proof of ownership and allows for the efficient exchange of ownership in a way that is historically unprecedented in terms of security.


Blockchain is a standard global platform allows multiple participants to connect at the same time and records all digital objects, users, and their relative operations on this platform.


Blockchain is a digital ledger that provides a secure way of making and recording transactions, agreements and contracts - anything that needs to be recorded and verified as having taken place.


Blockchain is a storage mechanism for information, most often associated with cryptocurrency like bitcoin, but you can use it for any information, from financial transactions to medical records.


Blockchain is a disruptive technology that is not limited to any particular field, and it has a wide range of applications including finance, logistics, medicine and intellectual property rights.


Blockchain is a decentralized electronic, encrypted ledger or database platform - in other words, a way to immutably store digital data so that it can be securely shared across networks and users.


Blockchain is a type of data structure that enables identifying and tracking transactions digitally and sharing this information across a distributed network of computers, creating a trusted network.


Blockchain is a unique record storage technology which allows contributors to directly enter information into the chain before it is locked in by other computers who are also contributing to the chain.


Blockchain is a distributed, secure ledger (database) that uses cryptography over a peer-to-peer network technology to group transactions into BLOCKS and store them in a tamper-evident, interlinked CHAIN.


Blockchain is a disruptive technology in a sense that it can be used to store any value information like money, goods, property, work, or even votes without the need of a central authority to verify or prove it.


Blockchain is an open source value transfer protocol that runs on a distributed peer to peer network and secures transaction records through cryptography.


Blockchain is an immutable and cryptographically secure archive of records stored on a distributed ledger, which uses smart contracts built on the Ethereum platform.


Blockchain is an incorruptible real-time ledger of economics that can be encoded to record not just the history of financial transactions but nearly everything of value.


Blockchain is the technology that underpins cryptocurrencies like bitcoin; it's essentially a massive Excel sheet that operates in a decentralized network format.


Blockchain is the ingeniously simple, revolution­ary protocol that allows transactions to be simultaneously anonymous and secure by maintaining a tamperproof public ledger of value.


Blockchain is the distributed ledger technology underlying bitcoin that uses software algorithms to record transactions or any digital interaction with reliability, security and anonymity.


Blockchain is the technology that supports the use of vast distributed ledgers to record any transaction and track the movement of any asset, whether tangible, intangible, or digital and open to anyone.


Blockchain technology is designed to store pieces of information inside blocks, not as a killer apps but as a layer to empower trustless features that really matter and create values in this ecosystem.


A blockchain is an alternative to classical financial ledgers by providing a new way to create, exchange, and track information pertaining to the ownership of financial assets.


A blockchain is usually managed by a second-layer network of peer-to-peer computing nodes.


A blockchain is what allows Bitcoin and hundreds of other cryptocurrencies to record transfers.


A blockchain is for making sure that you have a reliable and immutable audit trail of something.


A blockchain is transparent and the data is available to anyone who has software that needs to access it.


A blockchain is like a place where you store any data semi-publicly in a linear container space (the block).


A blockchain is decentralized, so no single authority has the discretion to approve the transactions or set rules.


A blockchain is designed to be immutable; once a piece of information goes in there, you can depend on it never changing.


A blockchain is actually a database because it is a digital ledger that stores information in data structures called blocks.


A blockchain is similar to this: it can have numerous connected nodes, but remain totally separate and unique from other blockchains.


A blockchain is made up of individual blocks of data involving a series of related transactions, linked together in consecutive order.


A blockchain is essentially a ledger that has records (like the details of a digital money transaction) locked in groups called blocks.


A blockchain is distributed ledger technology that digitally and chronlogically records transactions that take place between two parties.


A blockchain is implemented via software, and there are various software projects that have been written to create and manage blockchains.


A blockchain is highly fault tolerant since if one or more nodes are down, there will always be other nodes available that will run the blockchain.


A blockchain is decentralized, so there is no single authority that can approve the transactions or set specific rules to have transactions accepted.


A blockchain is a public cloud and also a transparent and tamper-proof digital ledger.


A blockchain is a shared, encrypted set of records maintained by a network of computers.


A blockchain is a global online database that anyone with an internet connection can use.


A blockchain is a type of diary or spreadsheet containing information about transactions.


A blockchain is a continuously growing list of records that are linked together in sequence.


A blockchain is a digital ledger of records that's arranged in chunks of data called blocks.


A blockchain is a kind of "public ledger," a transparent record of transactions between parties.


A blockchain is a digital ledger that is distributed, decentralised, verifiable and irreversible.


A blockchain is a protocol and ledger for building an immutable historical record of transactions


A blockchain is a public ledger of all transactions that have ever been executed within an ecosystem.


A blockchain is a sequence of records, shared among a network, that are both accessible and immutable


A blockchain is a secure distributed immutable database shared by all parties in a distributed network


A blockchain is a data structure made up of blocks of data, and they are linked together; hence the chain.


A blockchain is a decentralized, distributed, public ledger of transactional data secured by cryptography.


A blockchain is a distributed database platform utilizing chronologically linked segments known as blocks.


A blockchain is a ledger of facts, replicated across several computers assembled in a peer-to-peer network.


A blockchain is a public ledger of information collected through a network that sits on top of the internet.


A blockchain is a digital ledger designed to keep an accessible, verifiable, distributed record of data sets.


A blockchain is a distributed, decentralized ledger that lets information be viewed but not copied or altered.


A blockchain is a append-only database (where past records after confirmations cannot be altered in the future).


A blockchain is a distributed ledger database that uses a cryptographic network to provide a single source of truth.


A blockchain is a records holder, a place where all data entered is kept safe and sound for you to read and analyse.


A blockchain is a network of computers that stores transactional data in replica across every PC (node) in the system.


A blockchain is a system of computers, in which information is stored and shared among all participants of the network.


A blockchain is a distributed database that keeps a continuously-growing list of records protected from revision and tampering.


A blockchain is a digital, decentralized ledger that keeps a history of all transactions that occur on the blockchain's network.


A blockchain is a distributed database maintaining a constantly-growing list of data records secured from tampering and revision.


A blockchain is a ledger of lists or blocks of data transactions that constantly grows as new transactions or data sets are added.


A blockchain is a distributed database, meaning that the storage devices for the database are not all connected to a common processor.


A blockchain is a decentralized ledger of sorts; code which doesn't live on any single computer but rather is distributed across nodes.


A blockchain is a ledger of records arranged in data batches called blocks that use cryptographic validation to link themselves together.


A blockchain is a shared, distributed ledger - really a new type of database structure - that runs without a single centralized operator.


A blockchain is a cryptographic, or encoded, ledger comprising of a digital log of transactions shared across a public or private network.


A blockchain is a distributed database that maintains a continuously growing list of data records hardened against tampering and revision,


A blockchain is a distributed ledger that maintains a continuously growing list of data records on decentralized servers, working as nodes.


A blockchain is a distributed ledger technology secured by cryptography, used to maintain a continuously growing list of records, called blocks.


A blockchain is a database run by software that bundles information, protects it using cryptography, and stores it on the computers of participants.


A blockchain is a peer-to-peer distributed ledger forged by consensus, combined with a system for "smart contracts" and other assistive technologies.


[...]the blockchain is distributed across many computers and transparent for everyone to see.


[...]the blockchain is programmed to follow a model of democratic governance, aka the majority.


[...]the blockchain is capable of securely storing self-identifying data that knows who owns it.


[...]the blockchain is blocks of data cleverly chained together and distributed across lots of servers.


[...]the blockchain is actually a way to structure data, and the foundation of cryptocurrencies like Bitcoin.


[...]the blockchain is just one type of public, permissionless, proof-of-work, peer-to-peer distributed ledger.


[...]the blockchain is "a technology that allows people who don't know each other to trust a shared record of events".


[...]the blockchain is distributed as the ledger itself that is shared with everyone using the same blockchain network.


[...]the blockchain is stored locally on the computer hard drive of every user running a full version of the Bitcoin software.


[...]the blockchain is nothing more than a long string of transactions, each of which refers to an earlier record in the chain.


[...]the blockchain is validated across the distributed network, before including the transaction as the next block on the chain.


[...]the blockchain is the mechanism which keeps everyone on the same page and prevents accounting errors, accidental or deliberate.


[...]the blockchain is maintained by the participants collectively and potentially enabling third-party delegates, participants or providers.


[...]the blockchain is remarkably durable, stored digitally on the local computers of all users operating a full version of the Bitcoin software;


[...]the blockchain is stored in a decentralized manner and secured so that no-one can modify transactions after they are added to the blockchain.


[...]the blockchain is where all transaction data is stored, what wallets check to confirm ownership of bitcoin, and is how new bitcoins are created.


[...]the blockchain is fully transparent and available to all-but only the miners that are the first to process an individual transaction are compensated.


[...]the blockchain is a constantly updated public ledger of transactions in a given system.


[...]the blockchain is a ledger that stores data that has been verified as true and accurate.


[...]the blockchain is a public immutable and decentralized global ledger powered by Bitcoin.


[...]the blockchain is a decentralized ledger of all transactions across a peer-to-peer network.


[...]the blockchain is a log of all transactions that were ever verified on the Bitcoin network.


[...]the blockchain is a global system of checks and balances that creates trust among all parties.


[...]the blockchain is a transparent record of all transactions between users on the Bitcoin Network.


[...]the blockchain is a way for everyone in a cryptocurrency network to store the current state of the network.


[...]the blockchain is a decentralized ledger, that is, a list of all transactions across a peer-to-peer network.


[...]the blockchain is a distributed database, where every unit of transaction contains its own transaction history.


[...]the blockchain is a shared virtual public ledger where encrypted transactions are confirmed by outside parties.


[...]the blockchain is a distributed ledger representing a network consensus of every transaction that has ever occurred.


[...]the blockchain is a distributed ledger, shared by untrusted participants, with strong guarantees about accuracy and consistency.


[...]the blockchain is a platform technology that benefits from efficiently linking a large number of participants and users and offering easy access.


[...]the blockchain is an anonymous peer-to-peer payment system that relies on secure cryptographic protocols.


[...]the blockchain is an open, global infrastructure upon which other technologies and applications can be built.


[...]the blockchain technology is fundamentally an open distributed network, and efforts to create private Blockchains should not even be considered Blockchains.


[...]the blockchain technology is a public ledger that records all transactions that have ever occurred.


[...]blockchain is a hope-a legitimate hope-for the very real struggles in Latin America.


[...]blockchain is a technology and highly technical to grasp but there is more to it than just that.


[...]blockchain is a bubble, on par with the dotcom bubble that occurred at the turn of the millennium.


[...]blockchain is a breakthrough technology that is expected to alter most industries in the coming years.


[...]blockchain is a much better solution to storing and exchanging digital value than anything that has come before it.


[...]blockchain is a foundational technology, with the potential to create new foundations for economic and social systems,


[...]blockchain is a technology that is worth getting to know, as it may very well spark a revolution across various industries.


[...]blockchain is a relatively new tool that will undoubtedly see the development of guidelines and guardrails from federal regulators.


[...]blockchain is a network business, just like the telephone: the more participants in a network, the greater its potential usefulness to each member.


The blockchain is the latest in a series of technologies to make headline news and turn heads at its mere mention.


The blockchain is the technology and the system that could enable the global-scale coordination of seven billion intelligent agents.







blockchain will...

by peers at httpdot.net, 2019, free cultural work with multi-free-culture-licenses and author’s declaration - https://httpdot.net/FCWwMFCLaAD


sound installation with a 171 minute looped stereo panned audio mix from a sound recording of 420 sentences starting with or including the phrases "blockchain will", "the blockchain will", "blockchain is going to" and "blockchain technology will", which are aggregated from 1621 web pages.
https://httpdot.net/peers/BlockchainIs/


spoken by cecilia kinnear and recorded by volkan aslan
commissioned by protocinema for the exhibition blockchain is... / ...for nothing with support from spot contemporary art projects, istanbul

about the work

refer to text peer on blockchain is... / ...for nothing exhibition by peers at httpdot.net by peer for more info and discussion of the work.


this work is exhibited in blockchain is... / ...for nothing exhibition by peers at httpdot.net.
nothing is possible, a publication for the exhibition, also aggregates all info and resources about the work, along with other works in the exhibition.

free/libre content

blockchain is... and blockchain will... are two distinct collaborative works by peers at httpdot.net. they are built on a concept for a body of works called blockchain is, which is in continuous translation and manifesting in various forms.


blockchain will... is a two-channel sound installation of spoken sentences starting with or including the phrases "blockchain will", "the blockchain will", "blockchain is going to" and "blockchain technology will", which are aggregated from all results supplied by three web search services for these search queries at a time for an anonymous web user. these web pages are downloaded and parsed to aggregate and organize the sentences spoken and recorded for the work.


the audio is edited as a fully panned stereo mix so that one sentence is spoken from only one channel and the next sentence is spoken only from the other channel. the duration of the silence between two sentences varies but average is approximately 20 seconds and 420 sentences are spoken in 171 minutes.


the work is constructed as a sound installation to be experienced in a non-dedicated space where sentences about the future and blockchain technology heard from opposite corners of the space one at a time with long gaps in-between should distract the agenda of the space.

downloads

listen online or download the work and source content in free file formats to build on and appropriate the work


audio file, lossy compressed for online html5 browser playback
ogg vorbis, lossy compressed, 48kHz, vbr160kbps (q5), stereo, 171’, 136MB
if your web browser does not support html5 audio element in flac or ogg free/libre file formats for listening online, consider switching to a free/libre software web browser


audio file, preservation master
flac, lossless compressed, 48kHz, 16-bit, vbr379kbps, stereo, 171’, 486MB
flac is a free/libre lossless audio coding and compression format. also suitable for listening online, if your browser supports free file formats for hmtl5 audio.



source text file, all the sentences used in the work, but in an arbitrary order.
txt file, utf8, lf, 125.4kB
also available in this document under the section source text - blockchainWill-sourceText_txt-lf-utf8.txt


source text file, list of web pages used for aggregating the source texts for blockchain is... and blockchain will
txt file, utf8, lf, 26.8kB

source text
blockchainWill-sourceText_txt-lf-utf8.txt



all text used for the audio blockchain will..., in an arbitrary order


Blockchain Will Change Everything


the blockchain will set us free.


blockchain will be the end of poverty.


blockchain will solve climate change.


Blockchain will transform society.


blockchain will liberate lawyers


Blockchain will track how meat gets from Australian farms to Chinese tables


Blockchain Will Help to Explore Space


The blockchain is going to be the next thing.


Blockchain will Change Winnipeg


Blockchain will remain a solution looking for a problem


blockchain will save the universe


blockchain will revolutionize sports.


blockchain will change intellectual property


Blockchain will be the most overused and misunderstood term in 2018.


blockchain will have a huge impact on our future.


Blockchain Will Help Counter the Problem of Deforestation


Blockchain Will Disrupt Your Business


Blockchain Will Change the World


blockchain will radically change our lives


blockchain will no longer be a buzzword; it will be as ubiquitous as the internet.


Blockchain will change the way we shop


blockchain will influence open source


Blockchain Will Redefine Business


Blockchain Will Change Photography


Blockchain Will Make Advertising Better.


Blockchain will penetrate society more than the Internet.


Blockchain Will Stop Spam Calls In India;


blockchain will become 'obsolete'


Blockchain will protect us


Blockchain will influence your Business


blockchain will create winners and losers.


Blockchain Will Transform Business in 3 to 5 Years


Blockchain Will Save Our Salad


blockchain will disrupt the art market:


blockchain will make no difference.


Blockchain will move beyond cryptocurrency.


Blockchain Will Not Save The World


Blockchain will offer a solution by being able to store information about your artwork in its distributed ledger.


blockchain will soon transform every institution—in some ways more than the internet did.


the Blockchain Will Make the World a Better Place


Blockchain Will Be Ours!


blockchain will profoundly change how records are kept and transactions are processed.


the blockchain will transform housing markets


Blockchain Will Trump Populism


Blockchain will further establish a sense of democracy and equality through its disruptive power.


blockchain will fundamentally change our lives in future


Blockchain will usher in the era of decentralised computing blogs.


Blockchain will aid in the authorization and identification of people.


Blockchain will enable banks to preserve their investment in legacy systems


blockchain will be a significant technology for advancing productivity in business processes and business platforms


Blockchain Will Transform The Insurance Industry


blockchain will add value to your company.


Blockchain Will Kill Traditional Ecommerce 


Blockchain Will Revolutionize Mortgages


blockchain will transform our cities


blockchain will smash hierarchies


Blockchain will secure the internet of things


Blockchain will transform the upcoming digital world and IT to the new levels.


the blockchain will reduce back office costs.


blockchain will move on to the Plateau of Productivity and become an established part of the industry.


Blockchain will change the way goverments are run


the Blockchain will be another network technology that changes everything.


Blockchain Will Change the Real Estate Industry Forever


The Blockchain will also make money laundering much more difficult.


Blockchain will continue to see "significant attention" in the US and Canada in particular.


the Blockchain will change gaming forever


blockchain will reshape the financial services industry


the Blockchain will reach into the very depths of our personal lives.


Blockchain Will Be An Engine For Inclusion


Blockchain will change the tourism industry


The Blockchain will allow all of us to vote with a click.


Blockchain will disrupt customer marketing like no other technology.


the Blockchain will guarantee that we are who we say we are.


blockchain will power the new energy network


the blockchain will radically alter our future


Blockchain Will Disrupt the Healthcare Industry


the blockchain will propel a services revolution


Blockchain Will Replace Traditional Payment Systems


Blockchain will impact relations between various actors in the tourism network.


blockchain technology will soon be an integral part of our lives.


Blockchain Will Fundamentally Change Corporate Finance


Blockchain will revolutionize the music industry


Blockchain will also end cash counterfeiting.


the blockchain will cut trade finance costs up to $20 billion.


blockchain will change the future of the freelancer industry


blockchain will cut the costs of financial intermediaries by $20 billion a year.


blockchain will arguably make voting much more secure than paper ballot voting.


Blockchain Will Transform the Asset Management Industry


Blockchain will be Adopted Within Five Years


Blockchain Will Transform the Agriculture Industry


Blockchain will do to banking what internet did to media


Blockchain Will Make the Biggest Difference in Developing Countries


blockchain will be the one greater differentiator.


Blockchain will Transform Digital Advertising, Media & Entertainment


Blockchain Will Be 10 Times More Valuable Than the Internet


Blockchain Will Bring Back Data Ownership to Consumers


Blockchain Will Drive the Need for Change


Blockchain will change the pharma industry


blockchain will be actively used within six years.


blockchain will decentralize healthcare


Blockchain will be able to boost global trade volumes by more than $1 trillion in 2026,


blockchain will transform the utilities industry


Blockchain Will Turn Your 20 Phone Apps Into One


blockchain will be tracking syndicate loans by the second quarter of 2016 at latest.


blockchain will serve as the basis for most of the world's transactions and communications in the future.


Blockchain will also mature over a period.


Blockchain Will Change the Auto Industry


Blockchain will link payer, provider, patient data like never before


blockchain will have a significant influence on finance, and most of all, on the invoice.


Blockchain will make the supply chain, food distribution and energy more efficient


Blockchain Will Be Responsible


Blockchain Will Change Your Future Browser Experience


Blockchain will replace egaming in Gibraltar,


blockchain will impact the mobile gaming industry globally as well as what could be the next big junior investing wave in Canada after cannabis.


Blockchain Will Secure Our Digital Lives


blockchain will be the second generation of the internet.


blockchain will help brokers bypass traditional insurers


blockchain will transform our world


blockchain will build a completely new foundation of digital trust for organizations, transforming operations as well as business relationships.


blockchain will transform retail lending


Blockchain will Go Far Beyond its Origins to Create Industries of the Future


blockchain will help spot fake news


Blockchain will Disrupt Facilities Management in Australia


Blockchain Will Eliminate Poverty


Blockchain Will Drive the Next Industrial Revolution


Blockchain will transform how the economy works


blockchain will be a huge threat for many jobs in the financial sector.


blockchain will be much more impactful when it is adopted at scale, across the network


blockchain will revolutionise your education


Blockchain Will Underpin the Financial Industry 'In Five Years'


the blockchain will transform the stock market


Blockchain will be to transactions what the internet was to communication


blockchain will impact on many areas of our lives


blockchain will support a broad array of new IT initiatives.


Blockchain Will Disrupt the Marketing Industry Forever


Blockchain Will Eliminate Banks and Democratize Money


blockchain will herald the internet of value.


blockchain will enable pay-as-you-go insurance


blockchain will cut index-fund costs


blockchain will disrupt systems.


The blockchain will protect the data from security breaches.


blockchain will impact the way we use the web,


Blockchain Will Transform Higher Education in the Next Decade


blockchain will bring transparency to the capital raising process


blockchain will disrupt the energy sector


Blockchain will Transform Financial Services


the blockchain will radically transform the economy


Blockchain will enable new data analytics use cases.


blockchain will not only benefit the asset management industry, but will also mean obsolescence for certain intermediary roles,


Blockchain will return financial power to the people


Blockchain will shape the future of banking, putting power back into consumers' hands,


Blockchain Will Revolutionize Payment Speed and Compliance


the blockchain will be used for online transactions.


Blockchain will transform the role for audit


Blockchain will do to corporate reporting and financial transactions, what the internet did for knowledge.


Blockchain Will Become a Reality in 2016


blockchain will create a new wave of major disruption in media-content distribution.


Blockchain Will Make Carbon Visible for Everybody


Blockchain will enable a near real-time and immutable version of truth for transaction records and will issue in a new era of green finance.


Blockchain Will Come


blockchain will help automate all sorts of transactions.


Blockchain Will Transform The Retail Sector


Blockchain will enable faster settlement at lower costs while simultaneously reducing the risk of fraud.


Blockchain Will Have Profound Impact on Lives


Blockchain will free international trade from paper nightmare


Blockchain will do to Technology what the Internet did to Communication.


blockchain will trigger substantial transformation in the industry in the long run.


Blockchain Will Disrupt Cloud Storage


Blockchain Will Bring Transparency Back To Real Estate


blockchain will be the expected minimum technology, required of any company that expects to be taken seriously by its customers and potential investors.


Blockchain Will Impact Your Clients


blockchain will start to transform fraud management and identity verification.


Blockchain will solve everything


blockchain will be used widely in healthcare, finance, travel, insurance, and a raft of other industries.


Blockchain Will Revolutionize Commercial Transactions


blockchain will make travel smarter, greener and low impact


blockchain will transform education and employment


blockchain will provide a highly secure supply chain management system that is resistant to fraud.


blockchain will shake up insurance


blockchain will speed processes and lower costs for both providers and payers.


blockchain will transform the mining and metals industry


the blockchain will forever change how we use money


blockchain will be a force to reckon with.


The blockchain will make it easier for you to make payments, transfer money, or buy and sell goods.


blockchain will be some kind of miracle cure.


blockchain will allow for fewer counterfeit goods and faster product recalls


Blockchain will make it easier for stores to know what they have in stock.


Blockchain Will Disrupt Every Industry


Blockchain will make gaming economies real


Blockchain Will Eventually Impact Every Financial Transaction


Blockchain Will Impact The World Beyond Cryptocurrency


Blockchain will increase the velocity of money, which will increase cash flow and capital investments.


blockchain will dramatically reduce inefficiencies in the financial marketplace.


blockchain will have a fundamental shift.


Blockchain will play a major role in gaming payments


blockchain will be a part of most financial transactions within five years,


The Blockchain Will Change The Car Industry


Blockchain Will Transform Sports


blockchain will open up the world of professional sports to the "wisdom of the crowd," or a sort-of fan-based decision making that could further engage fans and improve the game.


Blockchain will Radically Transform Businesses


Blockchain Will Be Brought Onto Satellites by Cryptocurrency Exchange to Help Adoption in Developing Countries


Blockchain Will Disrupt the Disruptors


Blockchain will dominate emerging tech in 2019


Blockchain Will Revolutionize Future Cars


blockchain will disrupt your industry


Blockchain Will Change Organizations


blockchain will become a part of our business landscape.


Blockchain will Revolutionize Voting


Blockchain will lead to increased efficiency and reduction in errors which will eventually lead towards cost reduction.


blockchain will belong to Russia


Blockchain Will Change the Way We Do Business


blockchain will not replace, but strengthen existing institutions.


Blockchain Will Impact Social Media


Blockchain will be key to security for 'smart cities' of the future


The blockchain will disrupt the music business and beyond


Blockchain Will Enable a Virtual Reality Renaissance


Blockchain will change how people look at data


Blockchain will lead to evolution in accounting,


Blockchain will make a great contribution to donation payments


Blockchain will allow users to rank content and to receive rewards for it.


Blockchain will Transform Recruitment


blockchain will play a significant role.


blockchain will revolutionize travel distribution.


blockchain will play a vital role in how content, and resulting actions/shares/influence, is tracked, recorded and compensated.


blockchain will end data breaches


Blockchain Will Revolutionize the Medical Industry


Blockchain will replace existing data management technologies


blockchain will become a disruptive force in the healthcare industry,


Blockchain will enable social currencies to be used in a way that people can be rewarded for what they do in the relationship.


blockchain will fundamentally transform the economy or government.


blockchain will democratize the real estate industry


Blockchain Will Revolutionize Digital Marketing


blockchain will reduce costs and improve security.


The Blockchain Will Change The Legal Profession


Blockchain will support a large variety of applications.


Blockchain Will Disrupt the Future of Social Media Influencers


Blockchain will Drive Digital Transformation


Blockchain will enhance your asset management efforts


Blockchain Will Change The Face Of Retail


blockchain will have a huge and significant impact on web design and web development.


Blockchain Will Free You to Control Your Financial Destiny


Blockchain is going to change everything we know over the next five to 10 years,


Blockchain Will Transform Your World


Blockchain will also be used to help decide how the ships will be insured if they sail through war zones.


Blockchain Will Revolutionize Supplier Management


blockchain will penetrate our entire economy.


Blockchain Will Be a Top Investing Theme in 2018


Blockchain will change almost all industries by lowering costs in mid and back offices.


Blockchain Will Disrupt Metals & Mining


the blockchain will transform how we exchange value and whom we trust.


blockchain will transform every business process and sector in the Digital Age.


blockchain will be the backbone of a new more secure, more democratic internet.


blockchain will require foundational change,


Blockchain Will Transform the Healthcare Industry


blockchain will be "more meaningful than the internet" in the next decade.


Blockchain will change Artificial Intelligence


blockchain will reshape the foundation of business as we know it.


Blockchain will be bigger than Robots for the Shared Services industry!


blockchain will transform finance in the same way that the internet revolutionized communications.


Blockchain Will Transform Dating Apps


Blockchain will completely revolutionize how we mine gold and precious metals


Blockchain Will Severely Disrupt Retail and E-Commerce


Blockchain Will Impact the Gaming World


the Blockchain will be a part of everyday life by 2026.


Blockchain will enable secure transactions in currencies, as well as data.


Blockchain Will Revolutionize Industry


Blockchain Will Upend Society's Most Sacred Institutions.


Blockchain Will Change Global Commerce


blockchain will 'cross the chasm' in 2024,


blockchain will remove the need for a carrier in between just about any method of communication.


Blockchain will link everything


Blockchain will do for transactions what the internet did for information.


The Blockchain Will Be a Major Part of Any Business


Blockchain will change our Life, Economy and the World


Blockchain will own proof of ownership of the creator.


blockchain technology will be the answer to securing future elections, allowing them to be audited in real time.


Blockchain Will Revolutionize Sweden's Mutual Fund Industry


Blockchain technology will be as important to the world as Gutenburg's printing press


blockchain will have an important role in the Internet of Things.


blockchain will change the legal industry forever


the blockchain will make a big impact on the legal world.


Blockchain will force businesses to become more transparent about their operations.


Blockchain Will Come Of Age In 2019


Blockchain Will Improve International Dispute Resolution,


Blockchain will enable the development of new exchanges that facilitate the trade of a wide variety of assets, not only financial instruments.


Blockchain will speed up overseas shipping


Blockchain Will Transform Customer Loyalty Programs


blockchain will remain a buzzword used to boost a company's stock price rather than a viable solution for our electoral system.


Blockchain Will Save the World


blockchain will change the way we do everything, from financial markets to health records to supply chain management, and so much more.


Blockchain will begin to change lives


Blockchain will help musicians earn royalties without going through a record label.


Blockchain Will Revolutionize How We Mine Precious Metals


Blockchain Will Disrupt the World


blockchain will change the economy and society.


Blockchain Will Revolutionize Supply Chain


the blockchain will be used in all areas of public services in the future.


blockchain will provide firms with transparency and security.


blockchain will rebuild the world


blockchain will transform the tax and accounting industry


blockchain will lead to a reduction in insurance fraud.


blockchain will change social media sooner rather than later.


Blockchain will drive the future of practical digital applications


Blockchain will change the fashion industry


Blockchain Will Transform Credentialing (and Education)


Blockchain will end paper based certificates, automate the award, recognition and transfer of credits, increase learner ownership and control over their own data, reduce institutional data costs and risk-but only if open standards are adopted.


blockchain will disrupt the current status quo in investment banking.


blockchain will eventually take over and disrupt the entire banking industry.


Blockchain Will Impact the World


Blockchain will Disrupt Digital Identity


Blockchain Will Transform Customer Experiences


blockchain will lead to major changes in the underlying technologies and methodologies of many industries.


Blockchain Will Be Fast Enough To Manage Digital Ads


blockchain will impact food and farming.


blockchain will change your life


blockchain will enhance both AI and cloud computing


Blockchain will disrupt the Healthcare business model through the network effects of a decentralized economy


blockchain will influence search marketing


Blockchain Will Completely Revolutionize How We Run the World


blockchain will need experts, advocates, and partners at every level to help usher in a future that is more inclusive, open, and just.


blockchain will have a profound impact on the economy


blockchain will underpin the new trust economy


blockchain will transform how businesses are organized and managed.


the blockchain will allow companies to engage with individual customers on a peer-to-peer basis.


Blockchain will automate taxes and make them more accurate


Blockchain will streamline routine tasks


The blockchain will be as significant as the internet


Blockchain Will Transform the Gaming Industry


Blockchain will empower the people and break barriers to information


Blockchain will be mainstream.


Blockchain Will Fuel Transformation in The E-Commerce Industry


blockchain will reshape the future


Blockchain Will Make Payments More Secure


Blockchain Will Replace Existing Technology


Blockchain will allow us to verify who, how and where ads run.


Blockchain will save your business.


Blockchain will require fewer people to perform the same job and make time for professionals to utilize their audit skills to improve efficiencies across their client's organizations.


The Blockchain Will Secure Your Online Identity


Blockchain Will Disrupt Book Publishing


Blockchain will Intersect with the Wholesale Distribution Industry


blockchain will transform big data analytics


Blockchain Will Create More Wealth and Radically Change the Society


Blockchain technology will power Web 3.


Blockchain will change the face of iGaming


Blockchain Will Transform Everything from Banking to Government to our Identities


Blockchain will unlock data silos of individual patient health information and give consumers ownership of their digital health identity.


blockchain will be transformative long term


Blockchain Will Change The Way We Communicate


Blockchain will make it so any entrepreneur from any location in the world can, at a minimum, gain access to capital.


Blockchain will remove the need for traditional banking and financial institutions by replacing back-office systems with a P2P system.


the blockchain will revolutionize the world of money


Blockchain Will Fulfill the Broken Promise of the Internet For Creatives,


Blockchain Will Evolve In 2017


the blockchain will give rise to new business models and ideas that may still be invisible.


Blockchain will make AI smarter by feeding it better data


Blockchain Technology will Change Blockchain:


Blockchain will fundamentally alter the way financial institutions do business around the world,


blockchain will bring transparency in operations


Blockchain will kill the traditional firm


blockchain will fit into your company in less than ten years from now.


blockchain will affect your company.


Blockchain will have a large impact on the way organizations engage with one another.


blockchain will change major industries


blockchain will be an enabler.


blockchain technology will be huge and revolutionary.


the blockchain will become history itself.


Blockchain Will Solve Most Real-World Problems


Blockchain Will Disrupt Traditional Business And Impact Marketing In 2018


blockchain Will Build Trust In The Food Industry


blockchain will affect transport in the 21st century


blockchain will generate an annual business value of more than $3 trillion by 2030,


blockchain will be used by central banks to create national currencies, by private banks and companies to expedite settlements and by cooperatives for internal payments and transactions.


Blockchain will have a truly positive impact on society in the philanthropic sector.


Blockchain Will Change the Way We Live


blockchain will be as big as the internet is in our lives


Blockchain Will Revolutionize Healthcare


Blockchain will continue to be hyped as a panacea.


Blockchain will transform the platform economy 


Blockchain will be here for a long time,


Blockchain Will Be Used To Protect 2018 Presidential Exit Poll Data


blockchain will revolutionize finance


Blockchain will positively impact the disenfranchised by being a catalyst for financial, racial and gender inclusion.


Blockchain Will Reorganize Society


Blockchain will be the future of finance.


the blockchain will ultimately define the future of finance.


blockchain will help make energy systems more efficient and profitable.


the blockchain will give the middle class more ways to invest their money.


blockchain will reduce back office costs.


Blockchain will revolutionize the manufacturing process.


the Blockchain Will Run the Cities


Blockchain will allow electricity producers to trade energy peer-to-peer, allowing them to sell in real time, get paid instantly.


blockchain will transform artificial intelligence.


blockchain technology will be critical for B2B.


blockchain will become pervasive in the future development of all industries.


blockchain technology will be ubiquitous in the future.


blockchain will radically change our world,


blockchain technology will benefit several parties:


Blockchain will transform how people collect, track, and share their health data around the globe.


the blockchain will do to the financial system what internet did to the media.


Blockchain will implicate some routine and basic contract work,


The Blockchain Is Going To Dramatically Improve Our Sharing Economy.


blockchain will eventually transform your business.


Blockchain technology will allow companies to create platforms that allow job seekers and companies to connect, making the industry more efficient and secure.


blockchain will be embedded in our day-to-day lives in ways that, today, we can't even imagine.


Blockchain will generate $5 billion worth of business value in 2018,


blockchain will revolutionize the medical industry by removing the need for doctors completely through self-diagnosis.


blockchain will disrupt traditional computing


blockchain technology will bring changes to business models


Blockchain Will Protect Self-Driving Cars:


blockchain will have a profound transformative impact on every industry.


the blockchain will cause a revolution similar to what Internet provoked.


blockchain will be one of the standard technologies available.


blockchain technology will become as pervasive and important as the internet was.


Blockchain Will Revolutionize Data Science


blockchain is going to fix everything.


Blockchain Will Transform The Supply Chain And Logistics Industry


the blockchain will likely be bigger than the internet itself,


blockchain will revolutionize the business world


Blockchain Will Revolutionize the Art Industry

source urls
BlockchainIs-BlockchainWill_sourceUrls_txt-lf_utf8.txt

list of web pages used for aggregating the source texts for blockchain is... and blockchain will...

http://101blockchains.com
https://101blockchains.com/web-3-0-examples/
http://99bitcoins.com
https://99bitcoins.com/blockchain-technology-how-does-the-future-looks-like/
https://99bitcoins.com/how-to-read-a-bitcoin-transaction/
https://99bitcoins.com/what-is-blockchain/
http://www.aaeri.org/
http://www.abc.net.au/news/2016-06-14/its-called-blockchain-and-it-could-be-a-game-changer/7501514
http://www.abc.net.au/news/2018-01-22/how-blockchain-is-being-used-to-combat-illegal-fishing/9344376
https://about.bgov.com/blog/blockchain-empowering-cyberpunks-governments-alike/
https://abovethelaw.com/2017/08/in-legal-blockchain-is-the-new-black/
https://abovethelaw.com/2018/11/ibm-and-columbia-university-to-accelerate-blockchain-ventures/
https://www.accenture.com/us-en/insight-highlights-cgs-blockchain-cpg-and-retail-industries
https://www.accenture.com/us-en/insight-investment-bank-challenges-blockchain-technology
https://www.accenture.com/us-en/insights/blockchain-index
https://www.accountingtoday.com/opinion/blockchain-is-already-changing-accounting
https://www.acfe.com/fraud-examiner.aspx?id=4294992645
https://www.achieversklub.com/
https://adexchanger.com/online-advertising/blockchain-bubbling-solution-supply-chains-transparency-woes/
https://www.adweek.com/digital/3-questions-to-ask-when-determining-if-using-blockchain-is-right-for-your-brand/
https://www.adweek.com/digital/blockchain-is-magic-for-influencer-marketing-but-in-a-bad-way/
http://www.aei.org/publication/blockchain-is-more-than-just-the-technology-behind-bitcoin/
https://www.afr.com/technology/herbert-smith-freehills-joins-forces-with-ibm-and-data61-for-blockchain-project-20180827-h14ksn
https://agfundernews.com/blockchain-is-coming-for-agriculture.html/
https://www.agriculture.com/blockchain-is-coming-for-agriculture-and-you-might-not-even-notice
https://www.agweb.com/article/steve-cubbage-are-you-ready-for-the-blockchain-bandwagon/
https://www.aier.org/article/future-blockchain-our-hands
https://www.aiim.org/Resources/Glossary/Blockchain
https://alcse.org/blockchain-future-energy/
https://allafrica.com/stories/201812210393.html
https://alumni.berkeley.edu/california-magazine/just-in/2017-12-16/i-learned-what-blockchain-so-you-wont-have
https://www.amazon.ca/Blockchain-Revolution-Technology-Changing-Business/dp/0670069973
https://www.amazon.com/Blockchain-Blueprint-Economy-Melanie-Swan/dp/1491920491
https://www.amazon.com/Blockchain-Revolution-Technology-Changing-Business-ebook/dp/B0141ZP32E
https://ambcrypto.com/bitcoin-blockchain-is-more-centralized-than-xrp-ledger-says-ceo-of-ripple/
http://ambcrypto.com/blockchain-magic-wand-john-mcafee
https://ambcrypto.com/blockchain-magic-wand-john-mcafee/
https://www.amdocs.com/blog/mobile-financial-services/how-blockchain-opening-world-opportunities-unbanked-and-underbanked
https://www.americanbanker.com/opinion/blockchain-is-fintechs-real-game-changer
http://www.amfmdx.net
http://www.amfmdx.net/
http://ancientcoinstore.com
http://ancientcoinstore.com/
http://www.ancons.com
http://www.ancons.com/
https://anders.com/blockchain/
http://andolfatto.blogspot.com/2015/02/fedcoin-on-desirability-of-government.html
https://www.androidcentral.com/what-blockchain-phone-and-how-does-it-work
https://angel.co/bitcoin/jobs
https://aois.blob.core.windows.net/public/Blockchain%20Programming%20in%20CSharp.pdf
https://www.arabianbusiness.com/startup/399976-how-blockchain-is-already-transforming-uae-industry
https://www.ariba.com/about/news-and-press/sap-ariba-gets-in-blockchain-game
https://arstechnica.com/information-technology/2016/11/what-is-blockchain/
https://www.artnome.com/news/2017/12/22/the-blockchain-art-market-is-here
https://arxiv.org/pdf/1510.02037.pdf
https://arxiv.org/pdf/1711.09758.pdf
http://ascon.com.br/0sbq33l/nmyea1h.php?wpmachyaw=ibms-new-blockchain-bet
http://asq.org/qualitynews/qnt/execute/displaySetup?newsID=25028
https://www.athenahealth.com/insight/blockchain-meet-healthcare
http://www.atimes.com/article/fake-food-is-a-problem-alibaba-hopes-blockchain-is-the-cure/
http://www.atimes.com/article/jack-ma-says-blockchain-is-no-bubble-but-bitcoin-likely-is/
https://atlantislearningcommunity.org/atlantis-learning-management-system-lms/learning-management-system-explained/products/alms-blockchain/
https://au.finance.yahoo.com/news/8-ways-blockchain-changing-world-051242464.html
https://www.automationworld.com/blockchain-coming-manufacturing
https://www.aviationtoday.com/2018/12/18/honeywell-brings-used-aircraft-parts-buying-selling-blockchain-era/
https://www.axel.org/blog/what-exactly-is-blockchain/
https://www.axios.com/how-blockchain-is-transforming-energy-systems-4069c322-1b2a-4dde-b905-bc916656c5bb.html
http://azure.microsoft.com/en-gb/solutions/blockchain
https://azure.microsoft.com/en-gb/solutions/blockchain/
https://azure.microsoft.com/en-us/blog/ethereum-blockchain-as-a-service-now-on-azure/
https://azure.microsoft.com/en-us/solutions/blockchain/
http://www.badbitcoin.org
https://www.badbitcoin.org/
https://badcryptopodcast.com/2018/12/25/texas-blockchain-group/
https://www.bangkokpost.com/business/news/1600390/blockchain-with-background-music
https://www.bangkokpost.com/news/special-reports/1600390/blockchain-with-background-music
https://www.banking.senate.gov/imo/media/doc/Roubini%20Testimony%2010-11-18.pdf
https://bankinnovation.net/2018/06/blockchain-is-perfectly-suited-for-banking-but-banking-is-not-ready-for-blockchain-mckinsey-says/
http://banknxt.com/50938/blockchain-future/
http://banknxt.com/55778/research-fintech-blockchain/
https://www.barclayscorporate.com/content/dam/corppublic/corporate/Documents/insight/blockchain_understanding_the_potential.pdf
https://www.barclayscorporate.com/insight-and-research/technology-and-digital-innovation/what-does-blockchain-do.html
https://www.barrons.com/articles/beyond-bitcoin-how-blockchain-is-changing-banking-1498890463
https://www.barrons.com/articles/blockchain-is-starting-to-show-real-promise-amid-the-hype-1534554901
https://www.barrons.com/articles/blockchain-technology-has-hit-a-stumbling-block-51545437535
https://www.barrons.com/articles/the-future-of-blockchain-is-boring-1539601200
https://www.bbc.com/news/business-45919700
https://www.bbntimes.com/en/technology/blockchain-is-the-future-of-gaming
https://www.bbva.com/en/blockchain-technology-future-banking-sector/
https://www.bbvaopenmind.com/en/12-myths-about-blockchain-technology/
https://www.bbvaopenmind.com/en/securing-the-internet-of-things-iot-with-blockchain/
https://www.beckershospitalreview.com/healthcare-information-technology/almost-half-of-physicians-aren-t-aware-of-what-blockchain-is.html
http://www.bedstuyblog.com/
https://behindmlm.com/companies/onecoin/is-onecoins-blockchain-useless/
http://www.bell-worldwide.com/
https://benpiper.com/2017/10/blockchain-is-a-passing-fad/
https://www.benzinga.com/fintech/17/12/10859206/what-is-a-blockchain-and-what-does-it-do
https://www.benzinga.com/fintech/18/01/11008634/jamie-dimon-slightly-changes-tune-on-bitcoin-says-the-blockchain-is-real
https://www.benzinga.com/news/18/12/12881588/routeique-is-newest-member-of-blockchain-in-transport-alliance
https://bestbitcointrends.com/2018/10/09/i-cant-believe-this-blockchain-is-free/
https://betanews.com/2017/12/22/how-blockchain-is-going-to-transform-the-real-estate-industry-in-2018/
http://betanews.com/2018/05/15/blockchain-change-world
https://betanews.com/2018/05/15/blockchain-change-world/
http://www.betaxanalytics.com/blog/2017/11/7/blockchain-is-like-the-internet-of-1992
https://bigdata-madesimple.com/introduction-to-blockchain-technology-and-what-it-means-to-big-data/
https://bigthink.com/technology-innovation/how-blockchain-is-disrupting-gaming
https://www.billboard.com/articles/business/6655915/how-the-blockchain-could-actually-change-the-music-industry
http://www.billrini.com/
http://www.bio-itworld.com/2016/5/4/how-blockchain-is-helping-genomics-research.aspx
http://bitcoin.berkeley.edu
http://bitcoin.berkeley.edu/
http://bitcoin.coinpayments.net
https://bitcoin.coinpayments.net/
https://www.bitcoin.com/info/how-is-the-bitcoin-blockchain-different-from-banking-ledgers
https://www.bitcoin.com/info/what-is-the-blockchain
https://bitcoin.org/en/release/v0.17.1
https://bitcoin.stackexchange.com/questions/12427/can-someone-explain-how-the-bitcoin-blockchain-works
https://bitcoin.stackexchange.com/questions/46299/since-the-blockchain-is-public-how-can-we-see-it
https://bitcoincore.org/en/2016/06/24/segwit-next-steps/
http://bitcoindaily.org/bitcoin-vs-blockchain-technology
http://bitcoindaily.org/bitcoin-vs-blockchain-technology/
https://bitcoinexchangeguide.com/blockchain-distributed-ledger-technology/
https://bitcoinexchangeguide.com/blockchain-is-boosting-cybersecurity-with-message-encryption-and-crucial-alert-systems/
https://bitcoinexchangeguide.com/what-is-blockchain-shared-ledger-technology-accounting-system/
http://www.bitcoinglobalinvestments.com
http://www.bitcoinglobalinvestments.com/
http://bitcoingold.org/bitcoin-gold-live
https://bitcoingold.org/bitcoin-gold-live/
https://bitcoinira.com/articles/blockchain-is-the-next-web
https://bitcoinist.com/dragonchain-blockchain-poised-revolutionize-baas/
https://bitcoinist.com/from-farm-to-plate-blockchain-is-revolutionizing-agriculture/
https://bitcoinist.com/research-maturing-blockchain-is-a-trend-to-watch-out-for/
https://bitcoinmagazine.com/
https://bitcoinmagazine.com/articles/blockchain-airdropping-125m-stellar-lumens-its-wallet-users/
https://bitcoinmagazine.com/articles/healthcare-can-the-blockchain-optimize-and-secure-it-1452624836/
https://bitcoinmagazine.com/articles/pwc-report-while-fintech-disrupts-banks-the-blockchain-disrupts-fintech-1458148582/
https://bitcoinmine.co.za/pr-acorn-collective-how-the-blockchain-is-being-blended-with-crowdfunding-and-making-staggering-results-bitcoin-news/
http://www.bitcoinmybiz.com/
http://bitcoinproperly.org
http://bitcoinproperly.org/
https://bitcoinschannel.com/hbr-blockchain-is-foundational-not-disruptive-technology/
https://bitcoinschannel.com/turkey-on-the-blockchain-is-it-just-a-buzzword-for-thanksgiving-or-a-real-blockchain-based-use/
http://www.bitcoinshop.us/
https://www.bitfinex.com/posts/308
https://bitfortune.net/blockchain-disruptions-infographic/
http://bitinfocharts.com
https://bitinfocharts.com/
https://bitinfocharts.com/litecoin/
https://www.bitnewslive.net/2018/12/25/ex-cia-official-claims-blockchain-is-biggest-threat-to-future-of-us-national-security/
https://www.bitpipe.com/detail/RES/1541621393_293.html
http://www.bitrebels.com/technology/4-sectors-blockchain-disrupt
http://www.bitrebels.com/technology/4-sectors-blockchain-disrupt/
https://bitshares.org/
https://bitshares.org/technology/decentralized-asset-exchange
https://bitsonblocks.net/2015/09/09/gentle-introduction-blockchain-technology/
https://bitsonblocks.net/2016/02/29/a-gentle-introduction-to-immutability-of-blockchains/
https://bitsonblocks.net/2016/06/18/no-blockchain-is-not-a-solution-looking-for-a-problem/
https://bitsonline.com/centralization-blockchain-technology/
http://bitsonline.com/riot-blockchain-acquiring-exchange
https://bitsonline.com/riot-blockchain-acquiring-exchange/
https://www.bizcommunity.com/Article/196/516/185756.html
https://www.bizjournals.com/houston/news/2018/08/15/blockchain-is-about-so-much-more-than-bitcoin.html
https://www.biznews.com/premium/2018/04/16/blockchain-terrible-useless-technology
http://www.bleedingsnort.com
http://www.bleedingsnort.com/
http://blockapps.net/what-is-blockchain-explainer
https://blockcert.com/
http://blockchain-com.com
http://blockchain-com.com/
https://www.blockchain-council.org/blockchain/blockchain-revolutionary-internet/
https://www.blockchain-council.org/blockchain/where-is-blockchain-hosted-why-it-is-difficult-to-hack-it/
https://blockchain-documentary.com/
http://blockchain-revolution.com
http://blockchain-revolution.com/
http://blockchain-revolution.com/the-book
http://blockchain-revolution.com/the-book/
http://www.blockchain-sanfrancisco.com/
http://blockchain-status.com/
http://www.blockchain.com
http://www.blockchain.com/about
http://blockchain.is
http://blockchain.is/
http://blockchain.space/pdf/BeginnersGuideBlockchainTech.pdf
http://www.blockchain.swisscom.com
http://www.blockchain.swisscom.com/
https://blockchain.wtf/what-the-faq/blockchain-cryptocurrency-difference/
http://blockchainabc.blogspot.com/p/blog-page.html
https://blockchainapi.org/
http://blockchaincanada.org
http://blockchaincanada.org/
https://www.blockchainevolutioninc.com/
http://www.blockchainforgood.com
https://www.blockchainforgood.com/
https://blockchainhub.net/
https://blockchainhub.net/blockchain-glossary/
https://blockchainhub.net/blockchain-intro/
https://blockchainhub.net/blockchains-and-distributed-ledger-technologies-in-general/
http://www.blockchainlab.com
http://www.blockchainlab.com/
http://blockchainprogramming.azurewebsites.net
https://blockchainprogramming.azurewebsites.net/
https://blockchainreporter.wordpress.com/2018/01/12/why-blockchain-is-a-belief-system-ft-alphaville/
http://www.blockchainsoftware.com.au/
https://blockchaintimes.news/2018/12/17/monday-december-17-2018-daily-news-digest/
http://blockchaintrainingalliance.com
https://blockchaintrainingalliance.com/
https://www.blockex.com/why-blockchain
https://blockgeeks.com/guides/blockchain-applications/
https://blockgeeks.com/guides/blockchain-consensus/
https://blockgeeks.com/guides/blockchain-technology-business-needs/
https://blockgeeks.com/guides/code-a-bitcoin-blockchain-in-javascript/
https://blockgeeks.com/guides/enterprise-blockchains/
https://blockgeeks.com/guides/eos-blockchain/
https://blockgeeks.com/guides/ethereum/
https://blockgeeks.com/guides/smart-contracts/
http://blockgeeks.com/guides/what
https://blockgeeks.com/guides/what-is-blockchain-technology/
https://blockgeeks.com/guides/what-is-hashing/
https://blockgeeks.com/public-blockchain/
https://blockgeeks.com/the-blockchain-is-the-new-google/
https://blockgeeks.com/what-is-hashing-digital-signature-in-the-blockchain/
http://blocklandcleveland.com
https://blockonomi.com/bear-market-end/
https://blockonomi.com/blockchain-real-estate/
https://blockpublisher.com/at-this-time-scalability-is-not-an-issue-says-founder-and-ceo-of-the-platform-odem/
http://blockstack.org
https://blockstack.org/
http://blog.awesomemap.tools/blockchainingeospatial/
https://blog.bigchaindb.com/blockchain-is-going-to-hit-the-media-industry-hard-just-like-the-internet-aef636ef8067
https://blog.blockchain.com/
https://blog.blockchain.com/assets/docs/blockchain-v-paymium-complaint.pdf
https://blog.chronicled.com/how-blockchain-is-simplifying-pharmaceutical-track-and-trace-949ce4c37daa
http://blog.csiro.au/blockchain
https://blog.csiro.au/blockchain/
https://blog.ethereum.org/2015/04/13/visions-part-1-the-value-of-blockchain-technology/
https://blog.ethereum.org/2015/08/07/on-public-and-private-blockchains/
https://blog.ethereum.org/2016/01/15/privacy-on-the-blockchain/
https://blog.helium.com/why-blockchain-is-a-terrible-idea-for-applications-21de0fd6c425
http://blog.lendit.com/wp-content/uploads/2017/03/THE-BLOCKCHAIN-IS-REVOLUTIONIZING-HOW-MULTINATIONALS-FINANCE-THEIR-SUPPLIERS.pdf
https://blog.p2pfoundation.net/blockchain-threat-distributed-future-internet/2016/05/23
http://blog.prophix.com/innovation-series-blockchain
https://blog.prophix.com/innovation-series-blockchain/
https://blog.schneider-electric.com/machine-and-process-management/2018/10/30/blockchain-is-offering-some-exciting-possibilities-to-enhance-traceability-for-food-and-beverage-industry/
https://blog.startuppulse.net/why-the-blockchain-is-a-unicorn-6e6e12f44ae6
https://blog.westmonroepartners.com/move-aside-cloud-blockchain-newest-erp-trend/
https://blog.willis.com/2016/12/for-insurers-blockchain-is-the-new-black/
https://blogs.oracle.com/modernfinance/what-is-blockchain-a-primer-for-finance-professionals
https://blogs.sap.com/2016/05/17/blockchain-is-the-supreme-friend-of-data-management/
https://blogs.sap.com/2018/11/02/sap-hana-blockchain-is-now-generally-available/
https://blogs.sas.com/content/sascom/2017/12/15/practical-approach-blockchain-analytics/
https://blogs.thomsonreuters.com/answerson/blockchain-technology/
https://blogs.thomsonreuters.com/answerson/might-blockchain-technology-revolutionize-legal-industry/
https://blogs.wsj.com/cio/2018/02/07/the-morning-download-blockchain-is-the-new-supply-chain/
https://blokt.com/news/blockchain-is-chinas-new-weapon-for-economic-supremacy
https://www.bloomberg.com/news/articles/2018-04-09/blockchain-latest-death-knell-of-an-old-school-utility-model
https://www.bloomberg.com/news/articles/2018-04-18/drowning-in-a-sea-of-paper-world-s-biggest-ships-seek-a-way-out
https://www.bloomberg.com/news/features/2018-03-09/bitcoin-is-ridiculous-blockchain-is-dangerous-paul-ford
https://www.bloomberg.com/opinion/articles/2017-11-30/the-blockchain-is-bigger-than-any-bubble
https://www.bloomberg.com/opinion/articles/2018-01-23/the-blockchain-is-not-the-world
https://www.bloomberg.com/opinion/articles/2018-12-24/facebook-s-mark-zuckerberg-uses-blockchain-for-his-own-ends
https://www.bloomberg.com/professional/blog/blockchain-coming-everywhere-ready-not/
https://www.bna.com/blockchain-technology-transforming-n57982088958/
http://www.bollier.org/blog/blockchain-promising-new-infrastructure-online-commons
https://www.bond.org.uk/news/2017/09/4-ways-blockchain-is-being-used-in-international-development
https://books.google.com/books?id=-IFcDwAAQBAJ&pg=PT11&lpg=PT11&dq=%22blockchain+is%22&source=bl&ots=aKJbazCstR&sig=h9KTUBcklm-_ikNlK5XLoOXGQxk&hl=en&sa=X&ved=2ahUKEwjE3aSO0bvfAhU8i8MKHR7_CjI4ZBDoATBlegQIARAB
https://books.google.com/books?id=6ullDwAAQBAJ&pg=PT13&lpg=PT13&dq=%22blockchain+is%22&source=bl&ots=1aBRIs-l4Z&sig=Q7VQaj6Usrkv8Qzpguj2jtSd1wY&hl=en&sa=X&ved=2ahUKEwjZ-MqS0bvfAhWFs4sKHc4QDzQ4yAEQ6AEwJ3oECD0QAQ
https://books.google.com/books?id=C2A1DwAAQBAJ&pg=PA438&lpg=PA438&dq=%22blockchain+is%22&source=bl&ots=bd3LU3sdhR&sig=ZtyKftHXskUthjztV3S_jvsetI0&hl=en&sa=X&ved=2ahUKEwjZ-MqS0bvfAhWFs4sKHc4QDzQ4yAEQ6AEwSXoECBsQAQ
https://books.google.com/books?id=CEsPDAAAQBAJ&pg=PT28&lpg=PT28&dq=%22blockchain+is%22&source=bl&ots=gykZlSMbf9&sig=Oa3ZwUChtmdVhnDjfmlmIm_BNQE&hl=en&sa=X&ved=2ahUKEwjZ-MqS0bvfAhWFs4sKHc4QDzQ4yAEQ6AEwOnoECCoQAQ
https://books.google.com/books?id=CEsPDAAAQBAJ&pg=PT28&lpg=PT28&dq=%22the+blockchain+is%22&source=bl&ots=gykZlSMacc&sig=0qgBsmbt2Le-1AL4rFRo-FMZlOU&hl=en&sa=X&ved=2ahUKEwj1jv_V0LvfAhXuqIsKHXL5Ajk4ZBDoATA3egQILRAB
https://books.google.com/books?id=Cvx9DwAAQBAJ&pg=PA78&lpg=PA78&dq=%22blockchain+is%22&source=bl&ots=FL-6cVpg74&sig=-znslsXT3rZtjezRZs3i-tysuCM&hl=en&sa=X&ved=2ahUKEwjZ-MqS0bvfAhWFs4sKHc4QDzQ4yAEQ6AEwHXoECF8QAQ
https://books.google.com/books?id=iHd7DwAAQBAJ&pg=PA299&lpg=PA299&dq=%22blockchain+is%22&source=bl&ots=lEv80q4vBQ&sig=JTMwx8yqcfMvmaZxOGg-qJv3OHw&hl=en&sa=X&ved=2ahUKEwjZ-MqS0bvfAhWFs4sKHc4QDzQ4yAEQ6AEwPXoECGIQAQ
https://books.google.com/books?id=KIVXDwAAQBAJ&pg=PT269&lpg=PT269&dq=%22the+blockchain+is%22&source=bl&ots=TWJrnKCdC6&sig=K6Y9iCleCE4aEP7DpJDCO2eYKiw&hl=en&sa=X&ved=2ahUKEwj1jv_V0LvfAhXuqIsKHXL5Ajk4ZBDoATA_egQIJRAB
https://books.google.com/books?id=lnp8DwAAQBAJ&pg=PA6&lpg=PA6&dq=%22the+blockchain+is%22&source=bl&ots=CifH_Nobwr&sig=TpbTN6hJ9jSkB0v7yCelCKkYRTk&hl=en&sa=X&ved=2ahUKEwj1jv_V0LvfAhXuqIsKHXL5Ajk4ZBDoATA5egQILBAB
https://books.google.com/books?id=sop5DwAAQBAJ&pg=PA10&lpg=PA10&dq=%22the+blockchain+is%22&source=bl&ots=41T1HRBhwP&sig=TEIkSECOFdkkzd1_4-TU-0bB4zI&hl=en&sa=X&ved=2ahUKEwj1jv_V0LvfAhXuqIsKHXL5Ajk4ZBDoATBJegQIHxAB
https://books.google.com/books?id=sop5DwAAQBAJ&pg=PA8&lpg=PA8&dq=%22blockchain+is%22&source=bl&ots=41T1HRBizM&sig=l-7vEtLlXmxeEVUrQcHZm6X9k-U&hl=en&sa=X&ved=2ahUKEwjZ-MqS0bvfAhWFs4sKHc4QDzQ4yAEQ6AEwVXoECA8QAQ
https://books.google.com/books?id=VG5uDwAAQBAJ&pg=PT68&lpg=PT68&dq=%22blockchain+is%22&source=bl&ots=pWoLeeTxRt&sig=5G82zBK2cBSsEFFSkM5x0L7T_Dc&hl=en&sa=X&ved=2ahUKEwjZ-MqS0bvfAhWFs4sKHc4QDzQ4yAEQ6AEwQnoECCIQAQ
https://born2invest.com/articles/roles-blockchain-plays-fostering-human-rights-interests/
https://www.brainyquote.com/topics/blockchain
https://www.brainyquote.com/topics/blockchain_2
https://breakermag.com/blockchain-is-so-two-quarters-ago-except-at-ibm/
https://breakermag.com/i-traveled-the-world-to-learn-about-crypto-and-all-i-see-is-hope/
http://breakthrough.unglobalcompact.org/disruptive-technologies/blockchain/
https://www.brickblock.io/
https://www.brookings.edu/blog/techtank/2015/01/13/the-blockchain-what-it-is-and-why-it-matters/
https://btcmanager.com/blockchain-bound-to-transform-the-construction-industry/
https://btcmanager.com/blockchain-no-longer-proof-concept/
https://btcmanager.com/president-of-china-believes-blockchain-is-a-breakthrough-technology/
https://btcmanager.com/ubs-ceo-believes-blockchain-is-the-solution-to-banking-woes/
http://www.btcs.com
http://www.btcs.com/index.php
https://www.btcwires.com/round-the-block/can-ethereum-classic-surpass-ethereum/
http://builtin.com/blockchain
http://www.bullinfotech.com
http://www.bullinfotech.com/
https://www.burges-salmon.com/news-and-insight/legal-updates/an-introduction-to-blockchain/
https://burniegroup.com/3-blockchain-cases-changing-the-future-of-insurance/
https://www.business2community.com/ecommerce/how-blockchain-is-beginning-to-revolutionize-ecommerce-02126066
http://businesscryptonews.com
http://businesscryptonews.com/the-blockchain-stock-market-revolution-is-about-to-begin-investors-business-daily/
https://www.businessinsider.com.au/we-asked-7-experts-whether-blockchain-is-the-next-gutenberg-moment-heres-what-they-said-2018-6
https://www.businessinsider.com/blockchain-explainer-and-potential-2018-1
https://www.businessinsider.com/sc/ibm-blockchain-business-2018-3
http://www.businessinsider.com/what-is-blockchain-2016-10
https://www.businessinsider.com/what-is-blockchain-2016-3
https://www.businessnewsdaily.com/10414-blockchain-business-uses.html
http://www.buybitcoinworldwide.com/wallets
https://www.buybitcoinworldwide.com/wallets/
https://www.c-sharpcorner.com/article/blockchain-an-unblocked-opportunity-for-developers/
https://www.c-sharpcorner.com/article/stratis-stratis-full-node/
https://ca.linkedin.com/in/dontapscott
https://www.cantechletter.com/2018/12/hive-blockchain-is-still-a-buy-pi-financial-says/
https://www.capgemini.com/us-en/2018/04/blockchain-could-transform-trade-promotion/
https://capitalistexploits.at/2015/12/why-blockchain-will-replace-the-dollar/
https://captainaltcoin.com/blockchain-hacks/
https://www.carriermanagement.com/features/2018/07/03/180434.htm
https://www.caseyresearch.com/casey-daily-dispatch/the-blockchain-is-about-to-have-its-internet-moment
https://www.cbc.ca/news/canada/calgary/sait-blockchain-certificates-1.4950044
https://www.cbc.ca/news/technology/bitcoin-blockchain-banks-1.3232910
https://www.cbinsights.com/research/blockchain-insurance-disruption/
https://www.cbinsights.com/research/industries-disrupted-blockchain/
https://www.cbinsights.com/research/what-is-blockchain-technology/
https://www.ccn.com/40-of-enterprises-believe-blockchain-is-overhyped-deloitte-global-survey/
https://www.ccn.com/bitcoin-is-amazing-but-blockchain-is-a-bubble-steve-wozniak/
https://www.ccn.com/blockchain-is-a-systemic-risk-for-financial-industry-dtcc-exec/
https://www.ccn.com/how-the-blockchain-is-changing-the-music-business/
https://www.ccn.com/number-of-reachable-bitcoin-nodes-fell-19-in-2018/
https://www.ccn.com/ohios-bitcoin-tax-payment-plan-is-a-gimmicky-pr-stunt-say-skeptics/
https://www.ccn.com/op-ed-does-the-video-game-industry-really-need-blockchain/
https://certificates.aicpastore.com/certificate-programs/blockchain
https://www.chainbits.com/blockchain-101/what-is-blockchain-technology/
http://www.chainfrog.com/wp-content/uploads/2017/08/gdpr.pdf
http://www.chainofthings.com
https://www.chainofthings.com/
http://chainz.cryptoid.info/pot
https://chainz.cryptoid.info/pot/
https://channels.theinnovationenterprise.com/articles/datax-why-and-how-blockchain-is-going-to-disrupt-marketing
https://channels.theinnovationenterprise.com/articles/ignoring-blockchain-is-corporate-suicide
https://www.chicagofed.org/publications/economic-perspectives/2017/7
https://www.chinamoneynetwork.com/2018/05/18/alibabas-jack-ma-says-bitcoin-is-a-bubble-while-blockchain-is-not
https://chrisdunn.com/blockchain-tim-draper/
https://www.christies.com/exhibitions/2018/art-and-tech-summit-exploring-blockchain
https://www.cio.co.ke/blockchain-is-lined-to-transform-african-economies/
http://www.cio.com
https://www.cio.com/article/3055847/security/what-is-blockchain-and-how-does-it-work.html
https://www.cio.com/article/3301163/blockchain/how-blockchain-is-disrupting-the-insurance-industry-for-the-better.html
https://www.ciodive.com/news/forrester-blockchain-is-out-distributed-ledger-technology-is-in/541852/
https://www.citibank.com/icg/sa/digital_symposium/docs/dms-2016_blockchain.pdf
https://citrusbits.com/blockchain-stay-bitcoin-might-not-glimpse-future-decentralized-apps/
https://www.cleantech.com/diving-into-blockchain-use-cases-wholesale-energy-trading/
https://cleantechnica.com/2018/09/29/blockchain-is-a-clean-tech-innovation-catalyst-blockchain-report-excerpt/
https://www.cleo.com/blog/think-tank-walmart-mandates-blockchain/
https://www.cleveland.com/news/2018/12/blockland-solutions-conference-is-over-whats-next-for-blockchain-in-cleveland.html
https://www.cleverism.com/ultimate-guide-to-blockchain-technology/
https://www.cmswire.com/digital-workplace/how-blockchain-is-disrupting-enterprise-finance-and-accounting-departments/
https://www.cmswire.com/information-management/blockchain-is-on-the-cusp-of-changing-entire-industries/
https://www.cnbc.com/2017/06/02/cnbc-explains-what-is-blockchain.html
https://www.cnbc.com/2018/01/09/jamie-dimon-says-he-regrets-calling-bitcoin-a-fraud.html
https://www.cnbc.com/2018/01/10/in-the-world-of-cryptocurrency-buzz-blockchain-is-the-real-winner.html
https://www.cnbc.com/2018/03/06/blockchain-nouriel-roubini-one-of-the-most-overhyped-technologies-ever.html
https://www.cnbc.com/2018/06/06/blockchain-is-so-hyped-right-now-and-many-companies-will-get-burned.html
https://www.cnbc.com/2018/06/18/blockchain-what-is-it-and-how-does-it-work.html
https://www.cnbc.com/2018/08/29/bitcoin-world-is-experimenting-with-blockchain.html
https://www.cnbc.com/2018/10/11/roubini-bitcoin-is-mother-of-all-scams.html
https://www.cnbc.com/video/2018/05/18/right-now-blockchain-is-about-information-sharing-amber-baldet.html
https://www.cnet.com/news/blockchain-explained-builds-trust-when-you-need-it-most/
https://www.cognizant.com/whitepapers/Blockchain-in-Banking-A-Measured-Approach-codex1809.pdf
https://www.cognizant.com/whitepapers/Blockchain-Instead-of-Why-Ask-Why-Not-codex1973.pdf
https://coincenter.org/entry/how-long-does-it-take-for-a-bitcoin-transaction-to-be-confirmed
http://coincentral.com/blockchain-hacks
https://coincentral.com/blockchain-hacks/
https://coincentral.com/the-first-business-model-blockchain-is-upending-payments/
https://coincodex.com/article/1151/hashgraph-vs-blockchain-is-the-end-of-bitcoin-and-ethereum-near/
https://www.coindesk.com/3-ways-blockchain-already-delivering-hype
https://www.coindesk.com/blockchain-is-going-mainstream-says-european-commission-official
https://www.coindesk.com/blockchain-perfect-government-services-heres-blueprint
https://www.coindesk.com/blockchain-still-waiting-web-blueprint-getting-us
https://www.coindesk.com/building-blockchain-island
https://www.coindesk.com/china-state-tv-blockchain-is-10-times-more-valuable-than-the-internet
https://www.coindesk.com/consensus-algorithm-and-a-new-model-of-governance
https://www.coindesk.com/crypto-is-far-from-dead-as-these-scaling-projects-show
https://www.coindesk.com/enterprise-blockchain-ready-go-live-2018
https://www.coindesk.com/humans-on-the-blockchain-why-crypto-is-the-best-defense-against-ai-overlords
https://www.coindesk.com/i-cant-believe-this-blockchain-is-free
https://www.coindesk.com/ibm-food-supply-chain-blockchain-carrefour-live-production
https://www.coindesk.com/information/how-does-blockchain-technology-work
https://www.coindesk.com/no-blockchain-island
https://www.coindesk.com/saying-goodbye-to-the-blockchain-romantics
https://www.coindesk.com/the-crypto-winter-wasnt-the-real-story-of-2018-and-it-wont-be-for-2019-either
https://www.coindesk.com/the-eos-blockchain-is-now-live
https://www.coindesk.com/why-blockchain-is-becoming-the-new-normal-in-enterprise
https://www.coindesk.com/wikipedia-competitor-everipedias-blockchain-is-now-live
https://coinhub.news/cs/article/redditcryptocurrency-former-cia-officer-claims-blockchain-is-the-biggest-threat-to-us-national-security
https://coinidol.com/five-ways-blockchain-is-bringing-mixed-reality/
https://coinidol.com/how-the-blockchain-is-about-to-revolutionize-iot/
https://coinjournal.net/etorox-is-granted-a-dlt-license-from-the-gibraltar-financial-services-commission/
https://www.coinmama.com/guide/what-is-the-blockchain
http://coinnewsglobal.com
https://coinnewsglobal.com/after-a-stressful-election-experts-warn-blockchain-is-not-the-answer/
http://coinpedia.org/information/who-created-blockchain
https://coinpedia.org/information/who-created-blockchain/
https://coinrivet.com/what-is-blockchain-as-a-service-baas/
https://coins.ph/about
https://www.coinspeaker.com/blockchain-changes-credit-cards-nature/
https://www.coinspeaker.com/why-nuls-blockchain-is-the-one-to-watch/
http://coinsutra.com/blockchain
https://coinsutra.com/blockchain-changing-identity-management-effectiveness/
http://coinsutra.com/blockchain-videos-for-beginners
https://coinsutra.com/blockchain-videos-for-beginners/
https://coinsutra.com/blockchain/
https://cointelegraph.com/bitcoin-for-beginners/how-blockchain-technology-works-guide-for-beginners
https://cointelegraph.com/news/altcoin-bitcoin-private-confirms-additional-2-million-coins-secretly-premined
https://cointelegraph.com/news/amd-ceo-blockchain-is-important-but-a-bit-of-distraction
https://cointelegraph.com/news/at-least-340-uk-crypto-or-blockchain-companies-ceased-operations-in-2018-report-finds
https://cointelegraph.com/news/bitcoin-ripple-ethereum-bitcoin-cash-stellar-eos-litecoin-bitcoin-sv-tron-cardano-price-analysis-dec-24
https://cointelegraph.com/news/data-security-insurance-how-blockchain-is-disrupting-the-health-industry
https://cointelegraph.com/news/e-commerce-giant-alibabas-jack-ma-says-blockchain-is-not-a-bubble-bitcoin-is
https://cointelegraph.com/news/ethereum-co-founder-calls-the-cryptobottom-of-2018
https://cointelegraph.com/news/everything-blockchain-is-no-joke-taking-world-by-storm
https://cointelegraph.com/news/ex-cia-official-claims-blockchain-is-biggest-threat-to-future-of-us-national-security
https://cointelegraph.com/news/from-south-korea-to-ibm-food-trust-how-blockchain-is-used-in-the-food-industry
https://cointelegraph.com/news/how-blockchain-is-banking-the-unbanked
https://cointelegraph.com/news/is-blockchain-technology-really-the-answer-to-decentralized-storage
https://cointelegraph.com/news/precious-ledgers-why-blockchain-is-the-right-fit-for-gold-and-diamonds
https://cointelegraph.com/news/report-finds-over-3-million-of-altcoin-bitcoin-private-covertly-premined
https://cointelegraph.com/news/tron-reaches-one-million-user-addresses-in-six-months-since-launch
https://cointelegraph.com/news/western-union-considers-crypto-partners-with-ripple-to-test-blockchain-payments
http://cointelegraph.com/news/what-is-the-blockchain-
https://cointelegraph.com/news/why-blockchain-is-cloud-20-expert-take
https://cointelegraph.com/tags/blockchain
http://commonstransition.org/the-revolution-will-not-be-decentralised-blockchains/
https://www.comparitech.com/blog/information-security/what-is-blockchain-experts-explain/
https://www.computerweekly.com/news/252449435/Blockchain-is-no-magic-wand-for-cyber-security
http://www.computerworld.com
https://www.computerworld.com.au/article/606253/understanding-blockchain-hype-why-much-it-nothing-more-than-snake-oil-spin/
https://www.computerworld.com/article/3191077/security/what-is-blockchain-the-most-disruptive-tech-in-decades.html
https://www.computerworld.com/article/3197695/blockchain/5-ways-blockchain-is-the-new-business-collaboration-tool.html
https://www.computerworld.com/article/3327135/blockchain/linkedin-blockchain-developer-is-the-no-1-emerging-job.html
https://www.computerworlduk.com/galleries/security/how-could-blockchain-be-used-the-enterprise-3628558/
https://www.computing.co.uk/ctg/news/3033006/blockchain-update-is-facebook-working-on-a-cryptocurrency
https://www.concordmonitor.com/blockchain-disappointment-granitegeek-14580528
http://www.conduithub.com/blog/why-blockchain-is-going-to-disrupt-customer-retention-crm
https://www.constellationr.com/blog-news/blockchain-almost-everything-you-read-wrong
https://www.continentaltelegraph.com/tech-2/thats-the-end-of-blockchain-then-its-not-actually-useful-for-anything/
https://www.converge.today/engage-articles/what-is-blockchain-technology-an-introduction-to-the-tech-thats-changing-the-world
https://corpgov.law.harvard.edu/2016/01/06/corporate-governance-and-blockchains/
http://www.cpapracticeadvisor.com/article/12402865/blockchain-is-a-database-get-over-it
https://www.cpapracticeadvisor.com/news/12436527/why-and-how-accountants-should-think-blockchain
https://www.cpexecutive.com/post/simplifying-cre-finance-through-blockchain-technology/
https://www.cpomagazine.com/2018/05/07/blockchain-is-the-future-of-antivirus/
https://www.crowdfundinsider.com/2018/03/129412-heard-toronto-ffcon18-blockchain-future-alternative-finance-now/
https://www.crunchbase.com/organization/blockchain-info/
http://www.crypthor.net/
http://cryptnus.com
https://cryptnus.com/2018/12/south-koreas-crypto-craze-is-over-but-a-blockchain-boom-has-just-begun-quartz/
https://cryptoadvisors.blogspot.com/2018/03/why-blockchain-is-cloud-20.html
https://cryptobriefing.com/bitcoin-legal-status/
https://cryptobriefing.com/lisk-management-btc-alts-francs/
https://cryptobriefing.com/qtum-smart-contracts/
https://cryptocoin.news/videos/interviews-videos/john-mcafee-blockchain-is-the-truth-20539/
https://cryptocoingrowth.com/2018/12/24/ex-cia-official-claims-blockchain-is-biggest-threat-to-future-of-us-national-security/
https://www.cryptocompare.com/coins/guides/what-is-the-blockchain/
https://www.cryptocompare.com/wallets/ethereum-wallet-dapp/
http://www.cryptocurrency.net/site/contents/content/2415554/2018-12-24/ex-cia-official-claims-blockchain-is-biggest-threat-to-future-of-us-national-security
http://cryptocurrencyfacts.com/what-is-a-blockchain
http://cryptocurrencyfacts.com/what-is-a-blockchain/
https://cryptocurrencyinvestors.net/what-is-a-blockchain-transaction-anyway/
https://cryptocurrencynews.com/jack-ma-bitcoin-bubble/
https://cryptodaily.co.uk/2018/04/blockchain-building-blocks-construction-industry
https://cryptodaily.co.uk/2018/12/why-blockchain-is-going-to-dominate-2019
https://cryptodigestnews.com/how-blockchain-is-changing-the-gambling-industry-e4a8fd69fc91
https://cryptomaniaks.com/latest-cryptocurrency-news/blockchain/why-is-blockchain-important
https://cryptomoneynew.com/2018/12/05/how-significant-is-blockchain-in-internet-of-things/
https://cryptonews.com/exclusives/mad-corporate-rush-into-blockchain-projects-3103.htm
https://cryptonews.com/exclusives/the-blockchain-is-coming-for-facebook-1229.htm
https://cryptonewsmagnet.com/blockchain-guide/which-blockchain-is-the-best/
http://cryptopotato.com
https://cryptopotato.com/6-ways-blockchain-revitalizing-social-networking/
https://cryptopotato.com/blockchain-changing-financial-industry/
https://cryptopotato.com/turkey-on-the-blockchain-is-it-just-a-buzzword-for-thanksgiving-or-a-real-blockchain-based-use/
https://cryptoslate.com/blockchain-africa/
http://cryptoslate.com/blockchain-social-media
https://cryptoslate.com/blockchain-social-media/
https://cryptosumer.com/2018/12/25/its-time-for-local-governments-to-break-blockchains-regulatory-gridlock/
https://cryptosvibe.com/News/ex-cia-official-claims-blockchain-is-biggest-threat-to-future-of-us-national-security/33494
https://cryptoverze.com/former-cia-officer-claims-blockchain-is-the-biggest-threat-to-u-s-national-security/
https://cryptovest.com/news/gigi-levy-weiss-betting-on-blockchain-is-a-matter-of-personal-risk-preference/
https://www.cso.com.au/article/629644/blockchain-it-future-data-storage/
http://www.csoonline.com
https://www.csoonline.com/article/3050557/security/is-the-blockchain-good-for-security.html
https://www.csoonline.com/article/3241121/cyber-attacks-espionage/hacking-bitcoin-and-blockchain.html
https://ctovision.com/scalability-on-the-blockchain-is-there-a-solution/
https://cubemarketplace.com/
https://www.cuinsight.com/3-ways-blockchain-reducing-uncertainty.html
https://www.cuinsight.com/cuna-payments-blog-blockchain-credit-unions-greatest-opportunity-threat.html
https://www.cuinsight.com/how-the-blockchain-is-going-to-impact-your-credit-union.html
https://dailyfintech.com/2016/01/14/what-does-the-future-hold-for-blockchain-and-insurance/
https://dailyfintech.com/2018/12/15/crumbling-behemoths-why-banking-size-is-a-liability-not-an-asset-in-the-blockchain-economy/
http://dailytexanonline.com/2018/03/10/ethereum-co-founder-joseph-lubin-explains-exactly-why-blockchain-is-the-future-of
http://danielmiessler.com/study/blockchain
https://danielmiessler.com/study/blockchain/
https://www.darkreading.com/application-security/7-ways-blockchain-is-being-used-for-security/d/d-id/1332735
https://www.darkreading.com/endpoint/if-blockchain-is-the-answer-what-is-the-security-question/a/d-id/1329804
https://data.bitcoinity.org/bitcoin/difficulty
https://dataconomy.com/2015/10/wtf-is-the-blockchain-a-guide-for-total-beginners/
http://dataconomy.com/2017/08/blockchain-changing-way-pay
https://dataconomy.com/2017/08/blockchain-changing-way-pay/
https://dataconomy.com/2018/04/blockchain-is-the-great-equalizer-for-predictive-analytics/
https://datafloq.com/read/how-blockchain-is-reinventing-the-regtech-market/4911
https://datafloq.com/read/what-is-the-blockchain-and-why-is-it-so-important/2270
https://www.datanami.com/2018/06/28/how-blockchain-is-impacting-data-and-processes-in-insurance/
http://dataprivacy.foxrothschild.com
https://dataprivacy.foxrothschild.com/
https://www.datasciencecentral.com/profiles/blogs/four-ways-blockchain-is-changing-the-analytics-landscape
http://www.dataversity.net/blockchain-solution-underlying-issues-supply-chain-management/
https://davidederosa.com/basic-blockchain-programming/
https://dealbook.nytimes.com/2014/10/06/blockchain-is-latest-bitcoin-start-up-to-lure-big-investment/
http://degoes.net/articles/blockchain-myths
https://deloitte.wsj.com/cfo/2016/02/26/beyond-bitcoin-blockchain-is-coming-to-disrupt-your-industry-weekend-reading/
https://www.designnews.com/iot/how-blockchain-key-secure-iot/87877979557738
http://desisecret.com/2018/12/24/auto-repair-advice-and-tips-you-can-use-and-explain-bitcoin-blockchain/
https://developers.slashdot.org/story/17/03/09/2139242/the-promise-of-blockchain-is-a-world-without-middlemen
https://digiday.com/marketing/blockchain-in-programmatic/
https://digiday.com/marketing/cheatsheet-blockchain-media-advertising/
http://www.digitalasset.com
https://www.digitalcommerce360.com/2018/11/21/why-blockchain-is-a-natural-fit-with-telehealth/
https://www.digitaldoughnut.com/articles/2016/april/blockchain-is-the-most-disruptive-invention-since
https://www.digitalistmag.com/digital-economy/2016/04/18/blockchain-good-bad-business-case-04145447
https://www.digitalistmag.com/digital-economy/2017/06/20/blockchain-good-for-business-but-not-great-for-consumers-05159853
http://www.digitaljournal.com/business/interview-blockchain-is-overhauling-humanitarian-aid/article/516119
http://www.digitaljournal.com/business/q-a-why-blockchain-is-the-wave-of-the-future/article/536131
http://www.digitaltrends.com
https://www.digitaltrends.com/computing/what-is-a-blockchain/
https://distributed.com/news/how-blockchain-disrupting-programmatic-advertising/
https://www.dlapiper.com/en/uk/insights/publications/2017/06/blockchain-background-challenges-legal-issues/
http://www.dlt.com/blog/2017/08/24/dod-eyes-blockchain-technology-improve-cybersecurity/
https://dmexco.com/de/sessions/a-new-take-on-transparency-how-the-blockchain-is-providing-value-in-the-media-business/
http://www.doc.ic.ac.uk/~ma7614/topics_website/tech.html
http://dogechain.info
https://dogechain.info/
http://dontapscott.com/
http://dontapscott.com/2015/06/blockchain-revolution-the-brilliant-technology-changing-money-business-and-the-world/
http://dontapscott.com/2016/08/tedtalk-blockchain-changing-money-business/
http://dontapscott.com/books/blockchain-revolution/
http://www.dtcc.com/news/2016/february/17/eight-key-features-of-blockchain-and-distributed-ledgers-explained
http://due.com/blog/blockchain-to-change-accounting-forever
https://due.com/blog/blockchain-to-change-accounting-forever/
https://due.com/blog/how-blockchain-technology-stops-payment-scams/
https://due.com/blog/issues-blockchain-security/
https://due.com/blog/why-blockchain-is-set-to-disrupt-business-as-usual/
https://dzone.com/articles/how-blockchain-is-making-it-easier-for-fintech-com
https://e-estonia.com/wp-content/uploads/faq-a4-v02-blockchain.pdf
https://e27.co/blockchain-future-data-privacy-20180525/
http://e3zine.com/2018/04/16/blockchain-value-chain
https://e3zine.com/2018/04/16/blockchain-value-chain/
https://www.easycounter.com/report/blockchain.is-een-geweldige-klant.nl
https://ec.europa.eu/digital-single-market/en/news/european-countries-join-blockchain-partnership
https://economictimes.indiatimes.com/industry/transportation/shipping-/-transport/blockchain-is-about-to-revolutionize-the-shipping-industry/articleshow/63830173.cms
https://www.economist.com/business/2017/01/12/a-rush-to-patent-the-blockchain-is-a-sign-of-the-technologys-promise
https://www.economist.com/leaders/2015/10/31/the-trust-machine
https://www.economist.com/special-report/2015/05/09/the-next-big-thing
https://economyandmarkets.com/markets/stocks/blockchain-grownup-crypto-playroom/
http://www.edexbooks.com/
https://www.eejournal.com/article/blockchain-is-not-bitcoin-bitcoin-is-not-blockchain/
https://www.eft.com/logistics/what-blockchain-and-how-it-going-benefit-logistics-industry
https://elearningindustry.com/bitcoin-blockchain-impacting-elearning-industry
http://www.elexica.com/en/legal-topics/information-communication-and-technology/04-blockchain-the-future-of-finance
https://en.bitcoin.it/wiki/Block_chain
https://en.bitcoin.it/wiki/Off-Chain_Transactions
http://en.finance.sia-partners.com/impact-blockchains-smart-contracts-insurance
https://en.oxforddictionaries.com/definition/blockchain
https://en.tiny.ted.com/talks/don_tapscott_how_the_blockchain_is_changing_money_and_business
https://en.wikipedia.org/wiki/Bitcoin
https://en.wikipedia.org/wiki/Blockchain
https://en.wikipedia.org/wiki/Cryptocurrency
https://en.wikiversity.org/wiki/Blockchain
https://en.wiktionary.org/wiki/blockchain
https://eng.paxos.com/the-blockchain-is-evolutionary-not-revolutionary
https://engineering.stanford.edu/magazine/article/dan-boneh-still-early-days-blockchain-rich-possibility
https://enigma.co/
https://ensia.com/features/blockchain/
https://entrackr.com/2018/12/reliance-vakt-blockchain-technology/
https://www.entrepreneur.com/article/279095
https://www.entrepreneur.com/article/304134
https://www.entrepreneur.com/article/305009
https://www.entrepreneur.com/article/305378
https://www.entrepreneur.com/article/313730
https://www.entrepreneur.com/article/324528
https://www.eposability.com/uvojifaxk
https://eprint.iacr.org/2015/1164.pdf
https://eprint.iacr.org/2015/460.pdf
http://eprint.iacr.org/2017/375.pdf
http://www.eqmagpro.com
https://www.eqmagpro.com/blockchain-is-the-missing-link-to-transform-electric-power-industry-says-globaldata/
http://ethdocs.org/en/latest/frequently-asked-questions/frequently-asked-questions.html
http://www.etherchain.org
https://www.etherchain.org/
https://ethereumworldnews.com/jack-ma-bitcoin-bubble-blockchain-not/
https://ethereumworldnews.com/justin-sun-explains-how-tron-trx-is-working-to-develop-a-sustainable-cryptocurrency-model/
http://etherscan.io
https://etherscan.io/
https://www.ethnews.com/
https://www.ethnews.com/jamie-dimon-the-blockchain-is-real
https://www.ethnews.com/un-women-the-blockchain-and-the-future-of-humanitarianism
http://ethstats.net
https://ethstats.net/
https://www.eventbrite.com/e/gshowdown-blockchain-is-it-worth-the-hype-and-b2b-vs-b2c-tickets-47439566019
https://www.evry.com/globalassets/insight/bank2020/bank-2020---blockchain-powering-the-internet-of-value---whitepaper.pdf
https://www.eweek.com/innovation/predictions-2018-why-blockchain-is-ready-to-break-out-in-the-enterprise
https://execed.economist.com/blog/industry-trends/5-applications-blockchain-your-business
http://www.experian.com/blogs/insights/2016/01/blockchain-is-the-new-buzzword/
http://exponto.net/
https://extranewsfeed.com/the-blockchain-is-perfect-for-government-services-heres-a-blueprint-628d4c73edb7
http://www.extremetech.com
https://www.extremetech.com/extreme/184427-one-bitcoin-group-now-controls-51-of-total-mining-power-threatening-entire-currencys-safety
https://www.extremetech.com/extreme/219651-what-is-blockchain-and-can-ibm-intel-and-big-banks-use-it-to-remake-the-internet
https://www.ey.com/Publication/vwLUAssets/ey-blockchain-and-the-supply-chain-three/$FILE/ey-blockchain-and-the-supply-chain-three.pdf
http://www.ey.com/Publication/vwLUAssets/EY-blockchain-technology-as-a-platform-for-digitization/$File/EY-blockchain-technology-as-a-platform-for-digitization.pdf
http://www.ey.com/Publication/vwLUAssets/EY-implementing-blockchains-and-distributed-infrastructure/$FILE/EY-implementing-blockchains-and-distributed-infrastructure.pdf
https://www.facebook.com/worldeconomicforum/videos/10154095546156479/
https://www.facilitiesnet.com/software/article/Blockchain-Is-Coming-to-FM-and-Real-Estate--17444
https://faculty.fuqua.duke.edu/~charvey/Teaching/898_2016/syl898.htm
https://fairplay.ihs.com/technology/article/4297901/blockchain-is-shipping-prepared
https://www.fastcompany.com/3059425/how-banks-learned-to-stop-worrying-and-love-the-blockchain-bitcoins-underlying-tech
https://www.fastcompany.com/90209617/meet-the-women-who-are-making-sure-blockchain-is-inclusive
https://www.fastcompany.com/90265029/how-the-blockchain-is-changing-the-art-market
https://www.fastcompany.com/90285052/beyond-the-bubble-what-happened-to-bitcoin-in-2018
http://www.fcpablog.com/blog/2017/11/16/emma-hodges-blockchain-is-where-anonymity-meets-transparency.html
https://fee.org/articles/how-blockchain-is-changing-the-art-world/
https://finance.yahoo.com/news/big-banks-interest-in-blockchain-r3-052723646.html
https://finance.yahoo.com/news/one-since-bitcoin-interesting-203611485.html
https://finance.yahoo.com/news/watch-wall-street-blockchain-coming-000919838.html
https://finance.yahoo.com/video/blockchain-future-proxy-process-broadridge-204204783.html
https://www.financemagnates.com/cryptocurrency/news/jamie-dimon-blockchain-real/
https://www.financialexpress.com/industry/sme/no-blockchain-is-not-revolutionary-heres-what-startup-founders-say-about-overhyped-tech/1417758/
http://www.finder.com.au
https://www.finder.com.au/blockchain-guide
https://www.finews.com/news/english-news/29637-blockchain-bitcoin-arturo-bris-imd-technology-innovation-kyc-fintech
https://www.finextra.com/blogposting/12378/how-i-explained-blockchain-to-my-grandmother
https://www.finextra.com/blogposting/16257/why-blockchain-is-a-good-solution-for-kyc-verification
https://www.fingent.com/blog/blockchain-reshaping-enterprise-software-development-2018
http://fintechranking.com/2018/05/28/why-blockchain-is-hard/
http://www.fintechschool.com
http://www.fintechschool.com/
https://www.finyear.com/Explaining-the-Blockchain-s-Impact-via-an-Infographic_a34680.html
https://www.finyear.com/The-Blockchain-is-the-new-Google_a36157.html
http://fitsmallbusiness.com/blockchain-small-business
https://fitsmallbusiness.com/blockchain-small-business/
https://fivethirtyeight.com/features/blockchain-is-just-another-way-make-art-all-about-money/
https://flinthillsgroup.com/blockchain-is-an-answer-but-its-not-the-only-answer/
http://flockchain.uk/blockchain/scalability-on-the-blockchain-is-there-a-solution-ctovision/
https://www.fnlondon.com/articles/blockchain-is-not-the-answer-to-money-laundering-yet-20181101/
https://www.fnlondon.com/articles/blockchain-too-slow-for-banks-warns-top-blockchain-firm-20170707
https://www.fnlondon.com/articles/nouriel-roubini-the-blockchain-is-a-pipe-dream-20180306
https://followmyvote.com/bitcoin-may-fail-but-the-blockchain-is-here-to-stay/
https://followmyvote.com/online-voting-technology/blockchain-technology/
https://www.foodlogistics.com/technology/article/12382466/blockchain-next-on-food-supply-chain-menu
https://www.fool.com/investing/2018/01/10/the-basics-of-blockchain-technology-explained-in-p.aspx
https://www.fool.com/investing/2018/02/16/heres-why-riot-blockchain-is-plunging-even-though.aspx
https://www.fool.com/investing/2018/03/18/what-is-blockchain.aspx
https://www.fool.com/investing/2018/07/12/heres-why-blockchain-is-still-years-away-from-bein.aspx
https://www.forbes.com/sites/andreatinianow/2018/06/04/gdpr-isnt-the-answer-but-blockchain-is/
https://www.forbes.com/sites/andrewarnold/2018/08/28/blockchain-is-not-a-threat-to-accounting-its-an-opportunity/
https://www.forbes.com/sites/arthurherman/2018/10/02/why-blockchain-is-no-silver-bullet-for-cyber-threats/
https://www.forbes.com/sites/bernardmarr/2016/05/27/how-blockchain-technology-could-change-the-world/
https://www.forbes.com/sites/bernardmarr/2017/01/24/a-complete-beginners-guide-to-blockchain/
https://www.forbes.com/sites/bernardmarr/2017/08/10/practical-examples-of-how-blockchains-are-used-in-banking-and-the-financial-services-sector/
https://www.forbes.com/sites/bernardmarr/2018/01/10/blockchain-is-changing-our-world-here-are-the-best-practical-examples-of-how-it-is-used-in-2018/
https://www.forbes.com/sites/bernardmarr/2018/01/22/35-amazing-real-world-examples-of-how-blockchain-is-changing-our-world/
https://www.forbes.com/sites/bernardmarr/2018/02/19/the-5-big-problems-with-blockchain-everyone-should-be-aware-of/
https://www.forbes.com/sites/bernardmarr/2018/03/23/how-blockchain-will-transform-the-supply-chain-and-logistics-industry/
https://www.forbes.com/sites/bernardmarr/2018/07/16/here-are-10-industries-blockchain-is-likely-to-disrupt/
https://www.forbes.com/sites/ciocentral/2018/04/02/how-blockchain-is-impacting-healthcare-and-life-sciences-today/
https://www.forbes.com/sites/ellistalton/2018/01/22/why-blockchain-is-key-to-transforming-how-physical-infrastructure-works-and-how-we-think-about-it/
https://www.forbes.com/sites/emilyjoffrion/2018/07/17/satoshi-is-female-why-this-cryptocurrency-leader-thinks-so/
https://www.forbes.com/sites/forbesagencycouncil/2018/04/05/what-is-blockchain-and-what-can-businesses-benefit-from-it/
https://www.forbes.com/sites/forbescoachescouncil/2018/08/02/the-future-of-blockchain-and-its-potential-impact-on-our-world/
https://www.forbes.com/sites/forbesrealestatecouncil/2018/04/23/the-blockchain-for-real-estate-explained/
https://www.forbes.com/sites/forbestechcouncil/2017/09/01/blockchain-is-set-to-disrupt-industry-infrastructures/
https://www.forbes.com/sites/forbestechcouncil/2018/04/25/blockchain-is-reestablishing-trust-in-nonprofits/
https://www.forbes.com/sites/forbestechcouncil/2018/05/23/crypto-is-the-tree-blockchain-is-the-forest/
https://www.forbes.com/sites/forbestechcouncil/2018/10/12/how-secure-is-blockchain-technology/
https://www.forbes.com/sites/forbestechcouncil/2018/11/07/how-blockchain-is-transforming-health-care/
https://www.forbes.com/sites/francescoppola/2016/06/13/blockchain-meh/
https://www.forbes.com/sites/geraldfenech/2018/12/16/scalability-on-the-blockchain-is-there-a-solution/
https://www.forbes.com/sites/insideasia/2017/12/10/why-blockchain-is-real-and-bitcoin-is-a-mirage/
https://www.forbes.com/sites/jamiemoy/2018/02/22/forget-bitcoin-its-all-about-the-blockchain/
https://www.forbes.com/sites/jemmagreen/2018/03/19/how-blockchain-is-replacing-branding-as-a-source-of-trust/
https://www.forbes.com/sites/jennysplitter/2018/09/30/what-can-blockchain-really-do-for-the-food-industry/
https://www.forbes.com/sites/joemckendrick/2018/03/15/blockchain-is-a-potential-truth-machine-for-the-worlds-transactions/
https://www.forbes.com/sites/johnkoetsier/2018/05/18/vonage-founder-jeff-pulver-blockchain-is-over-hyped-and-a-4-quadrillion-opportunity/
https://www.forbes.com/sites/jonathanchester/2016/10/10/payments-marijuana-different-ways-the-blockchain-is-being-used-today/
https://www.forbes.com/sites/kenrapoza/2018/02/01/the-easiest-way-to-invest-in-blockchain-technologies/
https://www.forbes.com/sites/larrymyler/2017/11/09/transparent-transactions-how-blockchain-payments-can-make-life-easier-for-b2b-companies/
https://www.forbes.com/sites/laurashin/2016/05/10/looking-to-integrate-blockchain-into-your-business-heres-how/
https://www.forbes.com/sites/mitsubishiheavyindustries/2018/11/30/can-blockchain-technology-make-agriculture-safer/
https://www.forbes.com/sites/montymunford/2018/02/10/5-ways-blockchain-is-changing-the-face-of-innovation-of-2018/
https://www.forbes.com/sites/montymunford/2018/11/26/the-immutability-of-blockchain-is-useless-when-it-comes-easy-crypto-thefts-and-hacks/
https://www.forbes.com/sites/naeemaslam/2018/08/31/nouriel-roubini-says-blockchain-is-useless-all-icos-are-scam/
https://www.forbes.com/sites/nelsongranados/2018/12/03/how-blockchain-is-making-waves-in-media-and-entertainment/
https://www.forbes.com/sites/oliversmith/2018/03/07/why-blockchain-is-booming-in-liechtenstein-the-sixth-smallest-country-in-the-world/
https://www.forbes.com/sites/omribarzilay/2017/08/14/why-blockchain-is-the-future-of-the-sharing-economy/
https://www.forbes.com/sites/omribarzilay/2017/08/21/3-ways-blockchain-is-revolutionizing-cybersecurity/
https://www.forbes.com/sites/omribarzilay/2017/08/28/how-blockchain-is-reinventing-your-news-feed/
https://www.forbes.com/sites/paularmstrongtech/2018/08/19/is-the-blockchain-failing-corporates/
https://www.forbes.com/sites/rachelwolfson/2018/12/20/blockchain-and-crypto-leaders-share-their-2019-industry-predictions/
https://www.forbes.com/sites/rogeraitken/2017/08/17/how-the-blockchain-is-disrupting-the-art-economy-as-we-know-it/
https://www.forbes.com/sites/samantharadocchia/2018/06/13/why-the-blockchain-is-standardizing-what-it-means-to-be-authentic-and-sustainable/
https://www.forbes.com/sites/samantharadocchia/2018/06/27/altering-the-apparel-industry-how-the-blockchain-is-changing-fashion/
https://www.forbes.com/sites/sap/2018/12/13/how-to-fight-b2b-payment-fraud-with-blockchain/
https://www.forbes.com/sites/shermanlee/2018/06/08/blockchain-is-critical-to-the-future-of-data-storage-heres-why/
https://www.forbes.com/sites/shermanlee/2018/07/31/privacy-revolution-how-blockchain-is-reshaping-our-economy/
https://www.forbes.com/sites/theyec/2018/03/09/eight-ways-blockchain-will-impact-the-world-beyond-cryptocurrency/
https://www.forbes.com/sites/valleyvoices/2015/12/21/why-the-blockchain-is-the-new-website/
https://www.forbesmiddleeast.com/en/blockchain-is-all-set-to-transform-middle-easts-real-estate-industry
http://www.forfirm.com
https://www.forfirm.com/
https://fortknoxster.com/technology/
http://fortune.com/2016/05/08/why-blockchains-will-change-the-world
http://fortune.com/2016/05/08/why-blockchains-will-change-the-world/
http://fortune.com/2016/05/23/blockchain-definition
http://fortune.com/2016/05/23/blockchain-definition/
http://fortune.com/2016/09/20/accenture-blockchain/
http://fortune.com/2017/08/22/bitcoin-ethereum-blockchain-cryptocurrency/
http://fortune.com/2017/12/07/satire-its-time-to-admit-no-one-knows-what-the-blockchain-is/
http://fortune.com/2017/12/26/blockchain-tech-companies-ibm/
http://forum.ethereum.org
https://forum.ethereum.org/discussion/335/blockchain-size
https://fr.wikipedia.org/wiki/Blockchain
https://www.franchising.com/articles/the_blockchain_is_real_understanding_blockchain_and_its_role_in_global_supp.html
http://www.frankos.org
http://www.frankos.org/
https://freedom-to-tinker.com/2015/09/18/private-blockchain-is-just-a-confusing-name-for-a-shared-database/
https://www.freightwaves.com/news/technology/blockchain-is-the-technology-of-the-logistics-industry-in-the-future-says-cosco-e-logistics-cto
https://www.ft.com/content/454be1c8-2577-11e5-9c4e-a775d2b173ca
https://www.ft.com/content/764aed26-198a-11e5-8201-cbdb03d71480
https://www.ft.com/content/7bfdfe6c-1b6d-11e6-b286-cddde55ca122
https://www.ft.com/content/966f5694-22c6-11e8-ae48-60d3531b7d11
https://ftalphaville.ft.com/2018/01/11/2197546/why-blockchain-is-a-belief-system/
https://fueled.com/blog/how-blockchain-is-solving-the-finance-industrys-biggest-problems/
http://futurethinkers.org/industries-
https://futurethinkers.org/industries-blockchain-disrupt/
https://futurism.com/blockchain-is-transforming-our-society-and-our-world
http://futurism.com/transparent-blockchain-private-china
https://futurism.com/transparent-blockchain-private-china/
https://futurism.com/tunisia-puts-nations-currency-blockchain/
https://futurism.com/videos/sponsored-blockchain-democratizing-cloud/
http://fxdailyreport.com/blockchain-technology
https://www.fxempire.com/education/article/how-blockchain-is-connecting-humans-539721
https://www.fxempire.com/education/article/how-blockchain-will-change-our-life-economy-and-the-world-449304
https://www.gartner.com/doc/3278917/bitcoin-blockchain-magic-myths
https://www.gartner.com/smarterwithgartner/top-3-blockchain-and-data-management-myths/
https://gcn.com/articles/2016/03/22/blockchain-government.aspx
https://www.gearfuse.com/book-of-all-books-here-is-what-blockchain-is-and-why-everything-will-change-because-of-it/
https://www.geekwire.com/2018/cryptocurrency-may-ups-downs-blockchains-stock-rise/
https://geekymint.com/2018/06/28/bitcoin-is-still-amazing-but-blockchain-is-a-bubble-as-per-wozniak/
http://gendal.me
https://gendal.me/
https://gendal.me/2015/05/12/blockchain-is-where-banks-have-the-most-obvious-opportunity-but-you-ignore-bitcoin-at-your-peril/
https://www.giiresearch.com/report/heav358170-blockchain-its-impact-on-telecom-industry.html
https://www.gimletmedia.com/the-pitch/ticket-scalpers-beware-blockchain-is-coming-for-you-50-bandwagon
https://github.com/blockchain/
https://github.com/ChristopherA/revocable-self-signed-tls-certificates-hack
https://github.com/vechain/thor
https://github.com/Xel/Blockchain-stuff
https://gizmodo.com/blockchain-is-especially-at-risk-for-quantum-attacks-s-1830567357
https://gizmodo.com/whats-the-blockchain-and-why-does-bitcoin-depend-on-it-1698025216
https://glennchan.wordpress.com/2018/02/20/blockchain-is-a-useless-technology/
https://globalblockchain.io/
https://globalcoinreport.com/stellar-lumens-xlm-vs-cardano-ada-what-blockchain-is-best-suited-for-your-portfolio/
http://globalnews.ca/news/4658024/what-is-blockchain
https://globalnews.ca/news/4658024/what-is-blockchain/
http://www.globalpmsystems.com/how-the-blockchain-is-becoming-a-better-fit-for-pharma-the-blockrx-project/
https://go.abiresearch.com/how-blockchain-is-impacting-industrial-manufacturing
http://www.goldmansachs.com/insights/pages/blockchain
http://www.gomzin.com
http://www.gomzin.com/
https://good-stockinvest.com/no-the-blockchain-is-not-the-energy-chasm-that-will-definitely-seal-the-fate-of-our-planet-3/39605/
https://www.goodreads.com/book/show/25894041-blockchain-revolution
https://www.goodreads.com/work/quotes/44338116-blockchain-blueprint-for-a-new-economy
https://www.gov.uk/government/speeches/digital-transformation-in-government-and-blockchain-technology
http://www.governing.com/topics/mgmt/gov-blockchain-technology-government-services.html
http://www.govtech.com/fs/data/Blockchain-Is-it-a-Transformative-Tech-for-Government.html
https://gowlingwlg.com/en/insights-resources/topics/blockchain-cryptocurrency/white-papers/
https://gowlingwlg.com/getmedia/ab5aecbb-8997-4bd2-96e7-58070b33e07a/how-blockchain-is-transforming-financial-services.pdf.xml?ext=.pdf
http://graphics.reuters.com/TECHNOLOGY-BLOCKCHAIN/010070P11GN/index.html
https://www.greenbiz.com/article/how-blockchain-will-disrupt-energy-markets
https://www.greentechmedia.com/articles/read/four-predictions-for-blockchain-in-energy-in-2018
https://www.greentechmedia.com/articles/read/utilities-and-blockchain
https://guardtime.com/solutions
https://www.guidingtech.com/blockchain-based-chat-messenger-apps/
https://gulfnews.com/business/markets/days-of-explosive-growth-in-blockchain-is-likely-over-1.2275977
https://www.guru99.com/blockchain-tutorial.html
http://hackeducation.com/2016/04/07/blockchain-education-guide
http://hackeducation.com/2016/04/14/blockchain-ideology
https://hackernoon.com/3-steps-to-understanding-blockchain-8a285572daa3
https://hackernoon.com/a-beginners-guide-to-blockchain-d04266844e7
https://hackernoon.com/blockchain-is-a-waste-of-time-energy-and-mental-space-please-stop-db4cbe35058f
https://hackernoon.com/blockchain-is-beginning-to-revolutionize-ecommerce-e2d644b013a
https://hackernoon.com/blockchain-is-everywhere-46f13be83467
https://hackernoon.com/blockchain-is-helping-to-restructure-the-freelance-economy-cdae29f91ba0
https://hackernoon.com/blockchain-is-it-just-a-hype-fbcaaca91b1d
https://hackernoon.com/blockchain-is-manipulated-and-heres-how-df29d0927438
https://hackernoon.com/blockchain-is-not-meaningless-a-response-to-verge-c938ff789110
https://hackernoon.com/blockchain-is-the-future-of-e-commerce-5d6b118ddb68
https://hackernoon.com/blockchain-is-the-infrastructure-for-a-new-decentralized-sharing-economy-f715da32bece
https://hackernoon.com/blockchain-is-the-ultimate-april-fools-joke-9f6d1085ef2e
https://hackernoon.com/blockchain-technology-the-future-of-transactions-6fb557a98fe2
https://hackernoon.com/blockchain-use-cases-for-insurance-industry-in-2018-f80c46ab2d
https://hackernoon.com/blockchains-dont-scale-not-today-at-least-but-there-s-hope-2cb43946551a
https://hackernoon.com/blockchains-versus-traditional-databases-c1a728159f79
https://hackernoon.com/china-on-the-blockchain-how-the-vechain-thor-blockchain-is-set-to-revolutionize-governance-2c640b7c512c
https://hackernoon.com/crypto-and-blockchain-is-a-bubble-but-not-the-bubble-experts-think-be6258e444d3
https://hackernoon.com/databases-and-blockchains-the-difference-is-in-their-purpose-and-design-56ba6335778b
https://hackernoon.com/decentralization-on-the-blockchain-is-a-pipe-dream-47ded5b75c31
https://hackernoon.com/decentralized-data-why-blockchain-is-meaningless-and-trustless-is-everything-318fd14d3827
https://hackernoon.com/designing-blockchain-equitably-55420e2951f5
https://hackernoon.com/here-is-the-epic-future-blockchain-is-going-to-create-afe167c90568
https://hackernoon.com/how-blockchain-is-changing-banking-and-why-ripple-could-disrupt-the-entire-industry-84567330e413
https://hackernoon.com/how-blockchain-is-changing-money-transfers-e9cb85e94932
https://hackernoon.com/how-blockchain-is-reshaping-the-advertising-and-media-spaces-e65dd6311bb
https://hackernoon.com/how-blockchain-is-revolutionising-careers-caf6c48b1ca0
https://hackernoon.com/how-blockchain-is-set-to-revolutionize-elections-7ebcd2209c69
https://hackernoon.com/how-the-blockchain-will-impact-your-industry-a6374d4c3aaf
https://hackernoon.com/is-the-blockchain-bigger-than-bitcoin-5815c4417770
https://hackernoon.com/learn-blockchains-by-building-one-117428612f46
https://hackernoon.com/streamlining-devops-processes-why-the-blockchain-is-essential-to-your-project-53cdfe023fe0
https://hackernoon.com/ten-years-in-nobody-has-come-up-with-a-use-case-for-blockchain-ee98c180100
https://hackernoon.com/the-blockchain-its-not-what-you-think-it-is-2601f243babd
https://hackernoon.com/the-product-managers-guide-to-the-blockchain-part-1-fb95dfb7af31
https://hackernoon.com/the-ultimate-guide-to-understanding-blockchain-and-cryptocurrencies-f37cf4c0043
https://hackernoon.com/theres-nothing-special-about-the-blockchain-35d38c554394
https://hackernoon.com/this-is-what-a-4th-generation-blockchain-looks-like-multiversum-77165f1b8dea
https://hackernoon.com/what-blockchain-is-and-what-it-isnt-6e4284218bad
https://hackernoon.com/what-blockchain-is-good-for-and-what-it-isnt-79696990fd70
https://hackernoon.com/why-blockchain-is-a-terrible-idea-for-applications-8393d44f6cab
https://hackernoon.com/wtf-is-the-blockchain-1da89ba19348
http://hackingdistributed.com/2014/06/19/bitcoin-and-voting-power/
http://hansteeuwen.com/9qixofc/ordcqco.php?wpmachyaw=real-world-blockchain-applications
http://www.harbus.org/2018/how-blockchain-is-totally-changing-healthcare/
https://hbr.org/2017/01/the-truth-about-blockchain
https://hbr.org/2017/03/how-blockchain-is-changing-finance
https://hbr.org/2017/03/how-safe-are-blockchains-it-depends
https://hbr.org/2017/03/the-promise-of-blockchain-is-a-world-without-middlemen
https://hbr.org/2017/04/who-controls-the-blockchain
https://hbr.org/2018/11/the-hidden-costs-of-initial-coin-offerings
https://hbr.org/ideacast/2017/06/blockchain-what-you-need-to-know
http://www.hcltech.com
https://www.hcltech.com/blogs/how-to-evaluate-blockchain
https://www.healthcareitnews.com/news/blockchain-proving-itself-real-world-healthcare-applications
https://www.healthcareitnews.com/news/blockchain-what-it-and-how-build-business-case
https://www.healthdatamanagement.com/news/blockchain-is-not-a-panacea-technology-for-managing-health-records
http://www.healthintersections.com.au/?p=2512
https://healthitanalytics.com/news/55-of-executives-say-blockchain-is-poised-to-disrupt-healthcare
https://hedgemaven.com/news/crypto/bank-of-america-reveals-fresh-blockchain-patent-targeting-cash-handling-cointelegraph
https://hedgemaven.com/news/crypto/bitcoin-price-falls-below-4000-again-is-another-big-drop-in-store
https://hedgemaven.com/news/crypto/blockchain-competition-is-beginning-to-heat-up-among-big-tech-companies-toshi-times
https://hedgemaven.com/news/crypto/blockchain-last-week-from-solution-to-real-estate-blockpublisher
https://hedgemaven.com/news/crypto/centralization-cannot-sustain-society-enter-blockchain-technology-bitsonline
https://hedgemaven.com/news/crypto/facebook-exploiting-blockchain-for-its-own-gain-coinpedia
https://hedgemaven.com/news/crypto/its-time-for-local-governments-to-lead-the-way-on-blockchain-coindesk
https://hedgemaven.com/news/crypto/nigerian-blockchain-experts-believe-crypto-can-boost-african-economy-ccn
https://hedgemaven.com/news/crypto/smart-contracts-are-what-is-needed-for-alternatives-to-patreon-craig-wright-ccn
https://hedgemaven.com/news/crypto/south-koreas-blockchain-body-wants-6th-largest-city-turned-into-crypto-hub-ccn
https://hedgemaven.com/news/crypto/spain-to-track-renewable-energy-generation-with-blockchain-the-blockchain-land
https://hedgemaven.com/news/crypto/thailand-based-wonderfruit-fest-aims-to-offer-blockchain-technology-coinpedia
https://hedgemaven.com/news/crypto/thats-the-end-of-blockchain-then-its-not-actually-useful-for-anything-continental-telegraph
https://hedgemaven.com/news/crypto/tron-arcade-to-launch-blockchain-cuties-collectibles-game-blocktribune
https://hedgemaven.com/news/crypto/why-would-facebook-hire-blockchain-engineers-blocktribune
https://heisenbergreport.com/2017/12/23/one-ceo-goes-there-what-if-blockchain-is-useless/
https://helgminers.com/humans-on-the-blockchain-why-crypto-is-the-best-defense-against-ai-overlords/
https://hijro.com/
https://hitinfrastructure.com/news/healthcare-blockchain-is-poised-to-transform-patient-care
https://www.hoover.org/research/blockchain-internet-money
https://www.houseofbots.com/news-detail/4319-1-whats-really-behind-blockchains-success-learned-from-30-blockchain-ceos
https://www.housingwire.com/articles/43110-how-do-you-know-if-blockchain-is-right-for-your-business
https://how-to-make-money.info/cryptocurrency/humans-on-the-blockchain-why-crypto-is-the-best-defense-against-ai-overlords/
http://www.howtogeek.com/335814/what-is-a-blockchain
https://www.howtogeek.com/335814/what-is-a-blockchain/
https://www.hrtechnologist.com/articles/digital-transformation/blockchain-what-is-next-for-hr-and-payroll/
https://www.hudson.org/research/14600-why-blockchain-is-no-silver-bullet-for-cyber-threats
https://www.huffingtonpost.com/ameer-rosic-/5-blockchain-applications_b_13279010.html
https://www.huffingtonpost.com/ameer-rosic-/5-incredible-ways-the-blo_b_13671766.html
https://www.huffingtonpost.com/entry/blockchain-will-disrupt-every-industry_us_5963868ce4b08f5c97d06b55
https://www.huffingtonpost.com/entry/how-blockchain-is-redefining-the-future-of-commerce_us_59a44849e4b0cb7715bfd78d
https://www.hyperledger.org/about
https://www.hyperledger.org/blog/2018/06/12/how-blockchain-is-reinventing-business-process-management
https://www.i-scoop.eu/blockchain-distributed-ledger-technology/
https://iapp.org/news/a/blockchain-and-big-data-privacy-in-healthcare/
https://www.ibm.com/blockchain/hyperledger
https://www.ibm.com/blockchain/what-is-blockchain
https://www.ibm.com/blogs/blockchain/2017/05/the-difference-between-bitcoin-and-blockchain-for-business/
https://www.ibm.com/blogs/blockchain/2017/05/the-difference-between-public-and-private-blockchain/
https://www.ibm.com/blogs/insights-on-business/government/ten-things-blockchain-not/
https://www.ibm.com/blogs/systems/why-blockchain-is-good-for-business/
https://www.ibmbigdatahub.com/blog/what-blockchain-and-what-does-it-have-do-internet-things
https://www.icaew.com/technical/technology/blockchain/blockchain-articles/blockchain-and-the-accounting-perspective
http://icn.sap.com
https://icn.sap.com/news/Blockchain.html
https://icoexaminer.com/ico-news/standing-next-to-iota-the-blockchain-is-an-inefficient-imposing-mastodon/
http://ieeexplore.ieee.org/document/7756226/
http://www.iftf.org/blockchainfutureslab/
https://ih.advfn.com/stock-market/COIN/BTCGBP/crypto-news/78912267/amazon-the-blockchain-is-sometimes-not-needed
https://ihodl.com/tutorials/2017-09-04/what-blockchain-laymans-terms/
https://www.inc.com/alisa-cohn/blockchain-is-here-to-stay-here-are-3-ways-you-can-use-it-in-your-business.html
https://www.inc.com/amy-vetter/3-ted-talks-that-show-how-blockchain-is-changing-business.html
https://www.inc.com/arianna-odell/blockchain-is-future-but-its-confusing-heres-an-explanation-in-plain-english.html
https://www.inc.com/brian-d-evans/blockchain-is-now-aiming-to-disrupt-social-network.html
https://www.inc.com/james-paine/how-blockchain-is-disrupting-accounting-industry.html
https://www.inc.com/joel-comm/why-best-blockchain-is-an-invisible-blockchain.html
https://inc42.com/features/why-adopting-blockchain-is-not-an-easy-task-in-india/
http://www.incoda.org/block2018
http://www.incoda.org/block2018/
https://www.indianweb2.com/2018/12/21/blockchain-is-the-missing-link-to-transform-electric-power-industry/
http://www.infoq.com
https://www.infoq.com/articles/blockchain-middleware
https://www.infoq.com/news/2018/06/blockchain-BPM
https://www.information-age.com/data-backup-and-blockchain-123477187/
https://www.information-age.com/the-blockchain-is-here-to-make-cloud-computing-better-123472188/
https://www.informationweek.com/strategic-cio/security-and-risk-strategy/3-ways-blockchain-is-changing-cybersecurity/a/d-id/1329871
https://www.infosecurity-magazine.com/opinions/the-secure-blockchain-is-bitcoins/
http://www.ingenesist.com
http://www.ingenesist.com/
https://www.ingwb.com/media/1609652/banking-on-blockchain.pdf
https://www.ingwb.com/media/1723560/the-disruptive-force-of-blockchain.pdf
https://initio.squarespace.com/assets/papers/blockchain.pdf
https://www.insidephilanthropy.com/home/2018/11/26/brave-new-world-how-cryptocurrencies-and-blockchain-are-changing-philanthropy
https://insights.dice.com/2018/07/17/cryptocurrency-garbage-blockchain-great/
https://insights.sei.cmu.edu/sei_blog/2017/07/what-is-bitcoin-what-is-blockchain.html
http://www.instagram.com/legal_jones
https://www.instagram.com/legal_jones/
https://www.instagram.com/p/BfikublFCJ-/
https://www.instagram.com/p/BfvyfukgSwg/
http://www.instagram.com/p/BjCjaQ8hjmQ
https://www.instagram.com/p/BjCjaQ8hjmQ/
https://www.insuranceinsider.com/articles/123815/if-blockchain-is-the-answer-for-reinsurance-i-am-not-sure-i-know-what-the-question-is
https://www.insurancejournal.com/news/international/2017/11/16/471387.htm
https://www.inta.org/TMR/Pages/vol107_no6_c3_burbidge.aspx
https://www.interactivecrypto.com/blockchain-is-changing-cyber-security-forever
http://www.intergov.org/
https://internationalbanker.com/banking/blockchain-changing-banking-industry/
https://internationalbanker.com/finance/blockchain-impacting-industry/
https://internationalman.com/articles/the-blockchain-is-about-to-disrupt-this-7-trillion-industry/
https://internetofthingsagenda.techtarget.com/feature/Blockchain-for-Dummies
https://www.inverse.com/article/40495-blockchain-what-is-it-bitcoin-cryptocurrency
https://www.inverse.com/article/49158-how-ibm-and-plastic-bank-are-using-blockchain-to-boost-recycling-in-haiti
https://www.investinblockchain.com/2018-ripple-breakthroughs-blockchain/
https://www.investinblockchain.com/altcoins-that-could-move-to-top-100-2019/
https://www.investinblockchain.com/bitcoin-addresses-relevant/
https://www.investinblockchain.com/blockchain-improving-human-rights/
https://www.investinblockchain.com/blockchain-transform-industries/
https://www.investinblockchain.com/coins-bullish-sentiment-2019/
https://www.investinblockchain.com/cryptocurrencies-surge-next-bull-run/
https://www.investinblockchain.com/top-cold-wallets-for-storing-cryptocurrencies/
https://www.investinblockchain.com/western-union-cryptocurrency-adoption/
https://www.investinblockchain.com/what-is-blockchain-technology/
https://www.investing.com/news/cryptocurrency-news/excia-official-claims-blockchain-is-biggest-threat-to-future-of-us-national-security-1730357
https://www.investing.com/news/cryptocurrency-news/fedex-ceo-blockchain-is-the-next-frontier-for-global-supply-chains-1448230
https://investingnews.com/daily/tech-investing/blockchain-investing/big-data-toronto-conference-blockchain-is-exhilarating/
https://investmentmagazine.com.au/2018/03/blockchain-is-already-reshaping-investment-operations/
https://www.investopedia.com/articles/investing/083115/blockchain-technology-revolutionize-traditional-banking.asp
https://www.investopedia.com/ask/answers/063015/what-does-block-chain-record-bitcoin-exchange-transaction.asp
https://www.investopedia.com/how-to-buy-and-sell-4236816
https://www.investopedia.com/news/blockchain-gamechanger-online-advertising/
https://www.investopedia.com/news/how-blockchain-changing-mortgage-game/
https://www.investopedia.com/tech/forget-bitcoin-blockchain-future/
https://www.investopedia.com/terms/b/blockchain.asp
https://investorplace.com/2018/11/the-new-amazon-blockchain-products-could-be-huge-for-amzn/
https://www.investors.com/news/technology/blockchain-technology-blockchain-stock-market-revolution/
https://www.investors.com/news/technology/mindbody-acquired-vista-equity/
http://www.iol.co.za
https://www.iol.co.za/capeargus/opinion/a-blockchain-is-not-the-same-thing-as-bitcoin-17650779
https://irishtechnews.ie/from-null-to-nuls-how-a-blockchain-is-born/
https://irishtechnews.ie/interview-with-dr-catherine-mulligan-cto-datanet-at-ons-europe-blockchain-is-bigger-than-bitcoin/
http://isitdownrightnow.com/blockchain.info.html
https://itnext.io/pulling-the-blockchain-apart-the-transaction-life-cycle-381b76842c6
https://www.itproportal.com/features/disruption-or-evolution-why-blockchain-is-the-future-of-global-lending/
https://www.jeffbullas.com/blockchain-is-disrupting-the-digital-marketing-space/
https://jeiwan.cc/posts/building-blockchain-in-go-part-1/
http://www.jenitennison.com/2015/05/21/blockchain.html
https://www.jllrealviews.com/industries/technology/blockchain-taking-hold-across-asia-pacific/
http://www.johnbozemansbistro.com
http://www.johnbozemansbistro.com/
https://www.josic.com/a-look-at-how-the-blockchain-is-impacting-your-health/
https://www.journalofaccountancy.com/issues/2017/jul/what-is-blockchain.html
https://www.jpmorgan.com/jpmpdf/1320706695973.pdf
http://www.kaspersky.com/blog/bitcoin-
https://www.kaspersky.com/blog/bitcoin-blockchain-issues/18019/
https://www.kaspersky.com/blog/good-good-blockchain/19575/
https://www.kickstarter.com/projects/wmougayar/the-business-blockchain-books
http://knowledge.wharton.upenn.edu/article/blockchain-next-great-hope-hype/
http://knowledge.wharton.upenn.edu/article/blockchain-technology-will-disrupt-financial-services-firms/
http://knowledge.wharton.upenn.edu/article/why-blockchain-creates-a-new-architecture-of-trust/
http://www.kogonuso.com
http://www.kogonuso.com/2018/12/humans-on-blockchain-why-crypto-is-best.html
http://kongzilla.io/blockchain-technology
http://kora.network
https://kora.network/
http://www.ktvn.com/story/37443874/what-blockchain-is-and-why-nevada-wants-companies-that-use-it
https://www.law.com/corpcounsel/2018/09/26/walmarts-lettuce-project-is-reminder-that-blockchain-is-about-more-than-just-crypto/
https://www.lawtechnologytoday.org/2017/01/blockchain-101-for-lawyers-part-1/
https://www.lawtechnologytoday.org/2017/01/blockchain-lawyers-101-part-2/
http://learnmeabitcoin.com/guide/blockchain
https://www.ledgerium.net/home/
http://legislature.vermont.gov/assets/Legislative-Reports/blockchain-technology-report-final.pdf
https://letstalkbitcoin.com/blog/post/the-state-of-the-blockchain-addresses
http://lexicon.ft.com/Term?term=blockchain
https://www.lexology.com/library/detail.aspx?g=7577bb0e-87cf-4000-9a80-c7c41861f82b
https://www.lexology.com/library/detail.aspx?g=a35ff74f-4419-4d33-b0a8-4333f0990ce5
http://www.lgeservice.com
http://www.lgeservice.com/
https://lifehacker.com/what-is-blockchain-1822094625
https://www.lifewire.com/blockchain-explained-4150034
https://lightning.network/
https://www.linkedin.com/company/blockchain
https://www.linkedin.com/learning/blockchain-basics/what-problems-does-the-blockchain-solve
https://www.linkedin.com/pulse/blockchain-disrupts-fashion-industry-susanna-koelblin
https://www.linkedin.com/pulse/blockchain-inc-phil-gomes
https://www.linux.com/news/what-blockchain
https://lisk.io/academy/blockchain-basics/benefits-of-blockchain/what-is-decentralization
https://lisk.io/academy/blockchain-basics/how-does-blockchain-work/nodes
https://lisk.io/academy/blockchain-basics/what-is-blockchain
https://lists.linuxfoundation.org/pipermail/bitcoin-core-dev/2018-December/000072.html
https://litecoin.org/
https://www.livebitcoinnews.com/blockchain-is-useless-and-all-icos-are-scams-claims-economist-nouriel-roubini/
https://www.livebitcoinnews.com/how-blockchain-is-helping-to-clean-up-our-oceans/
https://www.livemint.com/Opinion/yn4vuQbLYrMbe8H4BHNKAJ/Opinion--Mark-Zuckerberg-uses-blockchain-for-his-own-ends.html
https://lloydslist.maritimeintelligence.informa.com/LL1122605/Blockchain-is-a-moneyburning-disaster
https://www.loaddelivered.com/blog/why-blockchain-is-a-game-changer-for-supply-chain-management/
https://localbitcoins.com/faq
https://www.logisticsmgmt.com/article/blockchain_is_everywhere
https://www.logisticsmgmt.com/article/capgemini_report_suggests_blockchain_is_real_for_many_leading_managers
https://logisticsviewpoints.com/2016/06/20/will-blockchain-technology-revolutionize-supply-chain-applications/
https://lolgifs.net/blockchain-beyond-cryptocurrency/
https://www.longhash.com/news/if-blockchain-is-democratic-why-are-events-so-expensive
http://www.lornelantz.com
http://www.lornelantz.com/
https://www.makeuseof.com/tag/bitcoins-blockchain-making-world-secure/
https://www.makeuseof.com/tag/blockchain-technology-change-media/
http://www.managingip.com/Article/3848580/The-race-to-patent-blockchain-is-fragmentedAnt-Financials-IP-head.html
https://www.marketingweek.com/2018/04/17/blockchain-disrupting-loyalty/
https://www.marketsandmoney.com.au/blockchain-is-bigger-than-bitcoin/2018/11/20/
http://www.marketwatch.com
https://www.marketwatch.com/story/bitfinex-hack-shows-how-bitcoins-blockchain-can-be-a-liability-2016-08-03
https://www.marketwatch.com/story/if-blockchain-is-the-future-why-are-so-many-global-execs-ignoring-it-2018-05-03
https://www.marketwatch.com/story/roubini-blockchain-is-one-of-the-most-overhyped-technologies-ever-2018-03-06
https://marmelab.com/blog/2016/04/28/blockchain-for-web-developers-the-theory.html
https://marmelab.com/blog/2016/06/14/blockchain-for-web-developers-the-truth.html
https://martechtoday.com/whats-blockchain-change-marketing-advertising-195798
https://mc2-umd.github.io/ethereumlab/docs/serpent_tutorial.pdf
https://www.mckinsey.com/business-functions/digital-mckinsey/our-insights/blockchain-beyond-the-hype-what-is-the-strategic-business-value
https://www.mckinsey.com/business-functions/digital-mckinsey/our-insights/blockchain-explained-what-it-is-and-isnt-and-why-it-matters
https://www.mckinsey.com/business-functions/digital-mckinsey/our-insights/using-blockchain-to-improve-data-management-in-the-public-sector
https://www.mckinsey.com/industries/financial-services/our-insights/the-promise-of-blockchain
https://www.mckinsey.com/industries/high-tech/our-insights/how-blockchains-could-change-the-world
http://medcitynews.com/2016/09/onc-blockchain-applications
https://medcitynews.com/2016/09/onc-blockchain-applications/
https://media.consensys.net/how-blockchain-is-helping-technology-get-its-soul-back-a2d6cf96a272
https://medium.com/@andrewcretin/its-2018-blockchain-is-on-it-s-way-to-become-the-new-internet-7055ed6851ec
https://medium.com/@bluepnume/blockchain-is-revolutionary-but-could-it-be-effortless-1bc85f58667e
https://medium.com/@brendanrius/where-is-the-blockchain-stored-b7e9e00bc2c2
https://medium.com/@chainfrog/5-reasons-that-blockchain-is-not-just-a-slow-database-55fe9d913578
https://medium.com/@coinrecaps/the-blockchain-is-going-to-dramatically-improve-our-sharing-economy-heres-how-72805338f32d
https://medium.com/@DJohnstonEC/the-block-chain-is-the-true-beginning-of-recorded-history-d5915686cde8
https://medium.com/@Francesco_AI/the-convergence-of-ai-and-blockchain-whats-the-deal-60c618e3accc
https://medium.com/@jimmysong/why-blockchain-is-hard-60416ea4c5c
https://medium.com/@JomarSoto/current-state-of-blockchain-technology-93886427d5e9?source=rss------cryptocurrency-5
https://medium.com/@jonaliang/why-the-blockchain-is-past-being-just-a-fad-d0f914f5b7bb
https://medium.com/@kaistinchcombe/decentralized-and-trustless-crypto-paradise-is-actually-a-medieval-hellhole-c1ca122efdec
https://medium.com/@lancengym/blockchain-is-broken-1bbb581be5ac
https://medium.com/@lhartikk/a-blockchain-in-200-lines-of-code-963cc1cc0e54
https://medium.com/@ninja_org/what-blockchain-is-doing-to-your-industry-8096d7bee308
https://medium.com/@norbert.gehrke/blockchain-is-outdated-b1578e37e5a8
https://medium.com/@ntmoney/the-blockchain-is-important-and-so-is-bitcoin-257963bfeb3a
https://medium.com/@preethikasireddy/fundamental-challenges-with-public-blockchains-253c800e9428
https://medium.com/@ronaldmulder/blockchain-is-first-of-all-a-design-principle-cdec0b8d35c7
https://medium.com/@ryanshea/the-blockchain-as-a-journal-dc1715ffa8a1
https://medium.com/@Saj_JZ/blockchain-is-the-answer-but-what-was-the-question-8143afdeec5a
https://medium.com/@sean.d.norton/the-blockchain-is-revolutionary-48e1b160f2b0
https://medium.com/@wen_xs/what-is-blockchain-really-an-intro-for-regular-people-e51578d98a96
https://medium.com/blockchain-education-network/what-is-blockchain-explained-for-beginners-5e747cea271
https://medium.com/blockchain-media/the-blockchain-is-still-waiting-for-its-web-here-is-why-2a7e49223acf
https://medium.com/blockchain-report/blockchain-report-12-21-2018-db85b7aa619f?source=rss------blockchain-5
https://medium.com/blockchain-report/blockchain-report-12-21-2018-db85b7aa619f?source=rss------cryptocurrency-5
https://medium.com/blockchannel/5-reasons-to-tell-your-friend-what-a-blockchain-is-bfc9c3af4fc6
https://medium.com/coinmonks/a-quick-glimpse-of-blockchain-and-its-revolutionary-applications-3624d2455e69
https://medium.com/coinmonks/blockchain-is-self-regulation-sufficient-5bb68ac7e33f
https://medium.com/coinmonks/how-a-miner-adds-transactions-to-the-blockchain-in-seven-steps-856053271476
https://medium.com/coinmonks/how-bullet-proof-is-the-blockchain-explain-like-im-5-a7b65c74238
https://medium.com/coinmonks/this-is-not-an-explanation-of-the-blockchain-or-is-it-63735adda47b
https://medium.com/coinmonks/what-is-a-51-attack-or-double-spend-attack-aa108db63474
https://medium.com/coinmonks/what-is-blockchain-technology-and-future-world-of-web-3-0-6ba5cdcd5f87
https://medium.com/coinmonks/what-the-hell-is-blockchain-and-how-does-it-works-simplified-b9372ecc26ef
https://medium.com/coinmonks/why-is-the-blockchain-so-revolutionary-explain-like-im-5-be3f6771f64c
https://medium.com/cryptoeconomics-australia/blockchain-is-now-a-competitive-industry-e5a1940895e
https://medium.com/cryptoeconomics-australia/the-blockchain-economy-a-beginners-guide-to-institutional-cryptoeconomics-64bf2f2beec4
https://medium.com/datadriveninvestor/blockchain-is-here-and-its-changing-the-world-c54dd401695e
https://medium.com/edchain/what-is-sharding-in-blockchain-8afd9ed4cff0
https://medium.com/future-crunch/blockchain-is-a-new-model-that-makes-the-existing-model-obsolete-8671ee6dd252
https://medium.com/humanizing-the-singularity/why-the-biggest-winners-of-the-blockchain-might-be-economists-60b9c67f47b4
https://medium.com/ignation/pulling-the-blockchain-apart-the-transaction-life-cycle-7a1465d75fa3
https://medium.com/mindorks/what-is-blockchain-simplest-introduction-to-the-blockchain-764a468e1575
https://medium.com/nakamo-to/blockchain-the-trust-protocol-8f7e5d7bff1b
https://medium.com/ok-blockchain-capital/weekly-blockchain-industry-report-34th-issue-e6b41918d094?source=rss-------1
https://medium.com/omnitude/why-blockchain-is-easy-or-why-jimmy-song-is-wrong-9f406b0f01bd
https://medium.com/ostdotcom/recap-from-ost-live-with-mark-bonchek-founder-ceo-of-shift-thinking-branded-currencies-and-236b553ef323
https://medium.com/polyswarm/why-blockchain-is-perfect-for-securing-our-expanding-online-world-971101ca7991
https://medium.com/s/cointalk/coin-talk-14-whats-so-great-about-the-blockchain-dedc38e9413b
https://medium.com/s/love-hate/the-blockchain-is-a-reminder-of-the-internets-failure-b16c58d70413
https://medium.com/s/story/blockchain-is-a-semantic-wasteland-9450b6e5012
https://medium.com/s/story/how-does-the-blockchain-work-98c8cd01d2ae
https://medium.com/s/story/one-industry-will-be-completely-destroyed-by-blockchain-and-it-will-change-the-world-f24e19ef514f
https://medium.com/s/welcome-to-blockchain/everything-you-need-to-know-about-blockchain-but-were-too-embarrassed-to-ask-b3cee3e918f8
https://medium.com/s/welcome-to-blockchain/the-world-is-waking-up-to-what-blockchain-is-doing-to-money-aed0cbe02498
https://medium.com/swlh/blockchain-for-dummies-d3daf2170068
https://medium.com/swlh/blockchain-is-overhyped-and-misunderstood-c9e81476ed73
https://medium.com/swlh/everything-you-need-to-know-about-blockchain-part-one-d66552425d15
https://medium.com/the-mission/a-simple-explanation-on-how-blockchain-works-e52f75da6e9a
https://medium.com/the-mission/the-popularity-of-blockchain-technology-in-the-world-today-33ca8f36c0f6
https://medium.freecodecamp.org/blockchain-is-our-first-22nd-century-technology-d4ad45fca2ce
https://medium.freecodecamp.org/from-what-is-blockchain-to-building-a-blockchain-within-an-hour-4e738efc819d
https://medium.freecodecamp.org/misconceptions-about-blockchain-8553262e8ff0
http://www.meetup.com/DataDrivenMTL/events/220252725
https://www.meetup.com/DataDrivenMTL/events/220252725/
http://memo.cash
http://memo.cash/
http://www.merriam-webster.com/dictionary/blockchain
https://www.merriam-webster.com/dictionary/legitimate
https://mertarauh.com/2017/08/04/blockchain-is-bad-for-the-environment/
https://www.metalbulletin.com/Article/3849028/HOTTER-ON-METALS-Blockchain-is-coming.html
https://micky.com.au/world-renowned-futurist-believes-blockchain-is-about-to-change-lives/
https://mindmajix.com/blockchain-training
https://www.mises.net/wire/blockchain-tempting-target-central-banks
https://mises.org/library/blockchain-tempting-target-central-banks
https://mises.org/library/central-bank-embrace-blockchain-all-about-control
https://mises.org/wire/blockchain-tempting-target-central-banks
https://www.mobilepaymentstoday.com/articles/the-blockchains-future-opportunities/
http://www.mondaq.com/x/756274/fin+tech/Why+Blockchain
http://www.mondaq.com/x/756274/fin+tech/Why+Blockchain/
http://www.moneco.com/The-Blockchain-is-Coming-to-Banking
https://monero.stackexchange.com/questions/4462/my-blockchain-is-stuck-how-do-i-unstuck-it
https://money.cnn.com/2018/09/06/technology/ibm-blockchain-gamble/index.html
https://money.usnews.com/investing/cryptocurrency/slideshows/11-ways-blockchain-is-revolutionizing-investing
http://moneyweek.com
https://moneyweek.com/494779/heres-what-the-blockchain-is-for-and-when-i-think-bitcoin-will-hit-a-bottom/
https://motherboard.vice.com/en_us/article/3kjyjb/bunz-trading-zone-app-cryptocurrency-btz-toronto
http://www.multichain.com/developers/creating-connecting
https://www.multichain.com/developers/creating-connecting/
http://www.myblockchain.xyz
https://www.myblockchain.xyz/
http://www.myblockchain.xyz/faq
https://www.myblockchain.xyz/faq/
http://www.mycryptopedia.com/what-is-blockchain-technology
https://www.mycryptopedia.com/what-is-blockchain-technology/
http://www.myetherwallet.com
https://www.myetherwallet.com/
https://www.mytotalretail.com/article/five-ways-blockchain-is-changing-e-commerce/
https://myzikk.com/2018/12/25/its-time-for-local-governments-to-break-blockchains-regulatory-gridlock/
https://www.nasdaq.com/article/how-blockchain-is-being-used-to-solve-crossborder-payments-problems-cm864095
https://www.nasdaq.com/article/how-the-blockchain-is-being-used-beyond-bitcoin-and-finance-cm571563
https://www.nasdaq.com/article/how-to-invest-in-the-blockchain-without-buying-bitcoin-cm772841
https://www.nasdaq.com/article/where-amazon-amzn-is-working-with-blockchain-cm1068712
https://navms.com/centralization-can-not-support-society-enter-blockchain-technology/
https://navms.com/this-is-the-end-of-the-blockchain-so-its-not-really-useful-at-all/
https://www.nbcnews.com/tech/tech-news/after-stressful-election-experts-warn-blockchain-not-answer-n934251
http://www.networkworld.com
https://www.networkworld.com/article/3200029/internet-of-things/why-blockchain-is-the-future-of-iot.html
https://www.networkworld.com/article/3295903/internet-of-things/why-blockchain-is-the-missing-link-to-iot-transformations.html
https://www.newgenapps.com/blog/future-of-blockchain-technology-applications
https://news.bitcoin.com/oecd-warns-crypto-and-blockchain-challenging-tax-transparency/
https://news.coinify.com/the-blockchain-is-the-new-standard-for-financial-transparency/
https://news.hpe.com/wondering-if-blockchain-is-the-answer-for-your-business/
https://news.yahoo.com/why-blockchain-much-bigger-bitcoin-200400111.html
https://news.ycombinator.com/item?id=11708226
https://news.ycombinator.com/item?id=14460085
https://news.ycombinator.com/item?id=18267585
https://news.ycombinator.com/item?id=7643625
https://www.newsbtc.com/2018/06/14/ripple-blockchain-growth-not-cost-savings/
https://www.newsbtc.com/2018/09/18/alibabas-jack-ma-blockchain-is-meaningless-without-disruption-in-manufacturing-society/
http://newsroom.cisco.com/feature-content?articleId=1741667
https://newsroom.cisco.com/feature-content?articleId=1941325
https://www.newsweek.com/how-blockchain-about-completely-disrupt-gaming-860146
http://www.nishithdesai.com/fileadmin/user_upload/pdfs/Research%20Papers/Bitcoins.pdf
https://nordicapis.com/the-role-of-apis-in-blockchain/
https://www.npr.org/sections/alltechconsidered/2016/05/04/476597296/not-just-bitcoin-why-blockchain-is-a-seductive-technology-to-many-industries
http://www.nuarca.com/
https://nulltx.com/bitcoin-is-impractical-blockchain-is-overhyped-stripe-coo/
https://nulltx.com/distributed-ledger-technology-vs-blockchain-technology/
http://nulltx.com/what-is-blockchain
https://nulltx.com/what-is-blockchain/
https://www.nytimes.com/2018/01/16/magazine/beyond-the-bitcoin-bubble.html
https://www.nytimes.com/2018/06/08/arts/art-financialization-blockchain.html
https://www.nytimes.com/2018/06/27/business/dealbook/blockchain-stars.html
https://www.nytimes.com/2018/06/27/business/dealbook/blockchain-technology.html
https://observer.com/2016/09/why-the-blockchain-is-perfect-for-government-services/
https://observer.com/2018/01/jp-morgan-jamie-dimon-blockchain-real-not-interested-bitcoin/
https://www.oii.ox.ac.uk/blog/the-blockchain-paradox-why-distributed-ledger-technologies-may-do-little-to-transform-the-economy/
http://oilprice.com
https://oilprice.com/Alternative-Energy/Renewable-Energy/How-Blockchain-Is-Transforming-The-Energy-Industry.html
http://www.oliverwyman.com/content/dam/oliver-wyman/global/en/2016/feb/BlockChain-In-Capital-Markets.pdf
http://www.openassetregistry.com
https://www.openassetregistry.com/
http://www.openchain.org
https://www.openchain.org/
http://openmarkets.cmegroup.com/12212/blockchain-changing-gold-markets
https://opensource.com/article/18/3/3-tests-not-moving-blockchain
https://opensource.com/article/18/7/bitcoin-blockchain-and-open-source
https://opensource.com/life/15/11/open-cryptocurrency-brings-blockchain-people
https://www.opinionlab.com/blog-how-blockchain-is-shaping-CX/
http://www.oracle.com/us/solutions/cloud/oracle-paas-delivery-of-blockchain-4413299.pdf
https://www.oreilly.com/ideas/blockchain-scalability
https://www.oreilly.com/ideas/understanding-the-blockchain
https://papers.ssrn.com/sol3/papers.cfm?abstract_id=2579482
https://partners.wsj.com/oracle/5-ways-blockchain-revolutionizing-higher-education/
https://patrickmn.com/security/why-blockchain-is-so-hard-to-understand/
https://www.paymentssource.com/opinion/blockchain-will-play-a-major-role-in-gaming-payments
http://www.pcmag.com
https://www.pcmag.com/article/351486/blockchain-the-invisible-technology-thats-changing-the-wor
https://www.pcmag.com/article/363274/note-to-it-blockchain-isnt-magic
https://www.pcmag.com/news/352432/how-blockchain-is-helping-china-go-greener
https://www.pexels.com/photo/time-lapse-photography-of-road-near-town-185662/
http://www.pharmtech.com/conference-finds-blockchain-still-years-away-use-pharma
http://phys.org
https://phys.org/news/2015-12-bitcoin-blockchain-tech-banking.html
https://phys.org/news/2015-12-blockchain-bitcoin.html
https://phys.org/news/2018-01-blockchain-tuna-traceability-combat-illegal.html
http://www.planning-research.com/
https://play.google.com/store/apps/details?id=piuk.blockchain.android&hl=en_US
https://www.porttechnology.org/news/blockchain_the_missing_links
https://www.porttechnology.org/news/cargox_qa_how_blockchain_is_evolving_bills_of_lading
https://www.postandcourier.com/business/university-offers-digital-diplomas-to-sc-students-through-the-blockchain/article_32ddfea2-e2b8-11e8-a4bf-ebeb30aea5b2.html
https://www.powershow.com/search/presentations/ppt/blockchain_technology
https://priceofbusiness.com/how-blockchain-is-revolutionizing-the-financial-industry/
https://www.prnewswire.com/news-releases/eos---the-3rd-generation-blockchain-is-up-and-running-300666974.html
https://www.prnewswire.com/news-releases/how-blockchain-is-transforming-payments-and-more-671756564.html
https://www.progressiverailroading.com/internet-digital/article/Technology-disruptor-Blockchain-is-a-potential-game-changer-in-the-rail-realm-industry-adopters-say--54395
https://prohashing.com/explorer/Verge/
http://www.proinertech.com/what-is-blockchain/
https://www.project-syndicate.org/commentary/blockchain-big-lie-by-nouriel-roubini-2018-10
https://promarket.org/blockchain-going-revolutionize-central-banking-monetary-policy/
https://www.provenance.org/whitepaper
https://www.psychologytoday.com/basics/conformity
https://www.psychologytoday.com/us/blog/the-tao-innovation/201705/the-blockchain-is-being-under-hyped
http://www.psyfitec.com
http://www.psyfitec.com/
https://www.ptc.com/en/product-lifecycle-report/how-the-blockchain-might-help-power-the-iot
https://www.pwc.co.uk/blockchain
https://www.pwc.co.uk/blockchain.html
https://www.pwc.com/gx/en/issues/blockchain/blockchain-in-business.html
https://www.pwc.com/jg/en/publications/blockchain-is-here-next-move.html
https://www.pwc.com/us/en/industries/financial-services/fintech/bitcoin-blockchain-cryptocurrency.html
https://www.pymnts.com/news/2015/the-blockchain-just-like-the-internet-except-that-its-not/
https://www.pymnts.com/news/b2b-payments/2018/blockchain-distributed-ledger-technology/
https://www.pymnts.com/news/b2b-payments/2018/paystand-payments-canada-blockchain-eft-paas/
https://www.qlear.com/post/massive-multiplayer-gaming-on-the-blockchain-is-this-real-life
https://quantstamp.com/
http://www.quicksprout.com/2018/11/15/how-blockchain-is-changing-the-digital-marketing-industry/
https://www.quora.com/Is-blockchain-the-future-Or-is-it-just-a-fad
https://www.quora.com/What-is-a-blockchain-2
https://www.quora.com/What-is-the-benefit-of-blockchain-technology
https://qz.com/1260694/why-gaining-a-basic-understanding-of-blockchain-is-absolutely-worth-your-time/
https://qz.com/1471152/ethereums-vitalik-buterin-says-ibms-corporate-blockchain-is-missing-the-point/
https://qz.com/629662/the-unsexy-future-of-blockchain-is-accounting/
https://www.raconteur.net/risk-management/blockchain-revolutionising-legal-sector
https://www.raconteur.net/risk-management/how-blockchain-is-eliminating-online-fraud
http://radar.oreilly.com/2014/12/introduction-to-the-blockchain.html
http://radar.oreilly.com/2015/01/bitcoin-is-just-the-first-app-to-use-blockchain-technology.html
http://radar.oreilly.com/2015/01/the-3ps-of-the-blockchain-platforms-programs-and-protocols.html
http://rampagnet.com/bitcoin_trading_and_investing_a_complete_beginners_guide_to_buying_selling_investing_and_trading_bitcoins_bitcoin_bitcoins_litecoin_litecoins_cryptocurrency_book_2.pdf
https://rampedup.us/blockchain-digital-marketing/
https://rapidcryptonews.com/2018/12/south-koreas-crypto-craze-is-over-but-a-blockchain-boom-has-just-begun-quartz/
http://www.raspberrypifullnode.com
http://www.raspberrypifullnode.com/
http://raspnode.com/diyBitcoin.html
https://ratsnest.io/the-future-of-blockchain-is-boring-8256be988835
https://readwrite.com/2017/10/10/future-tokenization-not-just-icos/
https://readwrite.com/2018/10/17/how-blockchain-brings-innovation-in-staffing/
http://www.realcomm.com/advisory/738/1/what-is-blockchain-and-how-does-it-apply-to-real-estate
https://reason.com/archives/2018/10/27/blockchain-is-changing-lives-i
http://www.recode.net/2015/07/05/forget-bitcoin-what-is-the-blockchain-and-why-should-you-care/
https://www.reddit.com/r/Bitcoin/comments/18wich/is_blockchain_safe/
https://www.reddit.com/r/Bitcoin/comments/2bmuqw/the_blockchain_is_now_25gb_and_i_had_to_move_it/
https://www.reddit.com/r/Bitcoin/comments/a97vbn/i_made_a_bitcoin_based_trading_card_game_ama/
https://www.reddit.com/r/CryptoCurrency/comments/a9440o/smart_cities_whats_wrong_with_them_i_think_that/
https://www.reddit.com/r/CryptoMarkets/comments/a80d49/the_first_real_blockchainbased_browser_metalyfe/
https://www.reddit.com/r/CryptoMarkets/comments/a9fzsj/former_cia_officer_claims_blockchain_is_the/
https://www.reddit.com/r/Stellar/comments/7xwgek/ibm_blockchain_is_stellar/
http://www.remitt.com
http://www.remitt.com/
https://www.renewableenergyworld.com/articles/2018/04/how-blockchain-is-threatening-to-kill-the-traditional-utility.html
https://www.renewableenergyworld.com/articles/2018/04/utilities-can-choose-whether-blockchain-is-a-threat-or-an-opportunity.html
https://research.stlouisfed.org/publications/review/2018/02/13/blockchain-what-it-is-what-it-does-and-why-you-probably-dont-need-one/
https://research.tabbgroup.com/report/v13-049-blockchain-technology-pushing-envelope-fintech
https://www.reuters.com/article/us-finablr-ripple-payments-idUSKBN1OC0IR
https://review.easycounter.com/reputation-Blockchain-Is-Een-Geweldige-Klant-safe
http://revistes.ub.edu/index.php/der/article/download/22759/pdf
http://revistes.ub.edu/index.php/der/article/viewFile/22759/pdf
http://www.righto.com/2014/02/ascii-bernanke-wikileaks-photographs.html
https://ripple.com/insights/swell-2018-report-finds-tipping-point-for-mass-adoption-of-blockchain-is-near/
https://ripple.com/insights/understanding-blockchain-use-cases/
https://www.rmi.org/blockchain-reimagining-rules-game-energy-sector/
http://www.rmmagazine.com/2016/03/01/the-risks-and-rewards-of-blockchain-technology/
https://ronnierocket.com/2014/11/13/the-blockchain-is-getting-visual/
http://www.ruscentre.org
http://www.ruscentre.org/
http://sammantics.com/blog/2016/3/6/how-transactions-are-validated-on-a-shared-ledger
http://www.sas.com
https://www.sas.com/en_us/insights/analytics/blockchain.html
https://www.sbir.gov/sbirsearch/detail/867797
http://scet.berkeley.edu/wp-content/uploads/BlockchainPaper.pdf
https://www.schneier.com/blog/archives/2015/11/good_article_on_1.html
https://scholarworks.uark.edu/isysuht/3/
http://www.scmp.com/business/article/1941514/could-someone-please-explain-me-how-blockchain-works-real-world
https://www.scmp.com/business/money/article/2116620/blockchain-transforming-one-worlds-oldest-professions
https://www.scribd.com/doc/297275446/Deloitte-UK-Blockchain-Full-Report
https://www.sdcexec.com/software-technology/article/12356655/how-blockchain-is-poised-to-impact-supply-chains
https://www.sdcexec.com/software-technology/article/20996560/blockchain-is-the-new-supply-chain
https://searchcio.techtarget.com/definition/blockchain
https://searcherp.techtarget.com/feature/Supply-chain-blockchain-is-quickly-taking-hold
https://www.sec.gov/spotlight/investor-advisory-committee-2012/slides-nancy-liao-brief-intro-to-blockchain-iac-101217.pdf
https://securityboulevard.com/2018/04/how-the-blockchain-is-helping-secure-iot-technology/
https://securityintelligence.com/how-blockchain-ledger-technology-is-coming-of-age/
https://securityintelligence.com/the-blockchain-is-only-as-strong-as-its-weakest-link/
https://www.securityroundtable.org/blockchain-going-mainstream-cybersecurity/
https://seekingalpha.com/article/4177564-blockchain-next-big-thing
https://seekingalpha.com/article/4205624-riot-blockchain-running-cash
http://shop.oreilly.com/product/0636920037040.do
https://www.siliconrepublic.com/advice/blockchain-skills-jobs
https://simple.wikipedia.org/wiki/Bitcoin
https://singularityhub.com/2018/02/28/how-blockchain-is-helping-democratize-access-to-credit/
https://singularityhub.com/2018/12/01/how-blockchain-is-changing-computer-gaming-for-the-better/
https://sites.duke.edu/thefinregblog/2018/04/05/blockchain-is-overhyped/
https://slate.com/technology/2018/06/blockchain-is-likely-to-advance-the-internet-of-things-and-robot-rights.html
https://slate.com/technology/2018/07/blockchain-is-helping-to-circumvent-censorship-in-china.html
https://www.sldx.com/
https://sleekarena.com/news/ex-cia-official-claims-blockchain-is-biggest-threat-to-future-of-us-national-security/
https://sloanreview.mit.edu/article/blockchain-is-changing-how-media-and-entertainment-companies-compete/
http://www.smartcontract.com
https://www.smartcontract.com/
https://www.smartdatacollective.com/how-blockchain-is-fueling-ethereum-trend/
https://smartereum.com/1893/ethereum-predictions-2019-how-high-can-the-price-of-ethereum-go-eth-news-today-mon-dec-24/
https://smartereum.com/2009/ethereum-price-forecast-how-high-can-the-price-of-ethereum-go-ethereum-news-today-mon-dec-24/
https://smartereum.com/2009/ethereum-price-forecast-how-high-can-the-price-of-ethereum-go-ethereum-news-today-tue-dec-25/
https://smartereum.com/2279/ethereum-price-predictions-2019-cryptocurrencys-value-could-triple-how-high-can-the-price-of-ethereum-go-in-2019-ethereum-news-mon-dec-24/
https://smartereum.com/2279/ethereum-price-predictions-2019-cryptocurrencys-value-could-triple-how-high-can-the-price-of-ethereum-go-in-2019-ethereum-news-sun-dec-23/
https://smartereum.com/3351/bitcoin-price-predictions-2019-can-bitcoin-see-the-old-good-20000-days-in-2019-bitcoin-price-today-mon-dec-24/
https://smartereum.com/43626/is-the-blockchain-island-malta-worth-the-hype/
https://smartereum.com/7624/ofo-a-chinese-bike-sharing-company-seems-to-have-ventured-into-blockchain-tue-dec-25/
https://www.smartresilient.com/blockchain-here
https://www.snapmunk.com/what-is-blockchain-how-works-bitcoin-mining/
https://socialmediaexplorer.com/social-media-marketing/5-ways-technology-is-improving-the-job-hunt/
http://sorynipgroup.com
http://sorynipgroup.com/
http://sourceoftitle.com/
http://spacecode.com
http://spacecode.com/
http://www.specialsituationslaw.com
https://www.specialsituationslaw.com/2018/05/14/activist-shareholders-trading-on-the-blockchain-is-the-prized-secrecy-compromised/
https://spendmatters.com/2015/11/09/why-bitcoins-blockchain-technology-could-revolutionize-supply-chain-transparency/
http://startupmanagement.org/2014/12/27/the-blockchain-is-the-new-database-get-ready-to-rewrite-everything/
http://startupmanagement.org/2016/09/04/the-next-phase-of-the-blockchain-is-about-business-and-innovation/
http://startupmanagement.org/2016/09/06/explaining-the-blockchain-via-a-google-docs-analogy/
https://steelkiwi.com/blog/blockchain-what-are-they-and-how-it-can-be-used/
https://www.stellar.org/
https://www.stlouisfed.org/~/media/files/pdfs/dwtf/bitcoin-3-31-14.pdf
https://stpetecatalyst.com/blockchain-goes-mainstream-at-synapse/
https://www.strategy-business.com/article/A-Strategists-Guide-to-Blockchain
http://www.supplychain247.com/article/why_blockchain_is_a_game_changer_for_the_supply_chain
http://www.supplychainquarterly.com/news/20170111-why-blockchain-is-not-just-for-banks/
https://support.coinbase.com/customer/portal/articles/1392055-why-can-t-i-see-my-transaction-in-the-blockchain-
https://support.coinbase.com/customer/portal/articles/1819222-what-is-the-blockchain-
https://support.coinbase.com/customer/portal/articles/1833695-bitcoin-glossary
https://www.sutekhscrypto.com/enterprise-blockchain-is-ready-to-go-live-in-2018/
http://www.svds.com/the-blockchain-is-forever
https://www.svds.com/the-blockchain-is-forever/
https://swarm.fund/
https://www.taketheleadwomen.com/blog/the-future-of-blockchain-is-female-tech-evangelist-praises-role-of-women/
http://www.talking.im
https://www.talking.im/
https://techbeacon.com/blockchain-it-right-your-app
https://www.techbullion.com/blockchain-definition-origin-history/
https://www.techbullion.com/tokenization-of-business-if-there-is-a-profit-after-a-hyip/
https://techcrunch.com/2015/10/03/the-blockchain-might-be-the-next-disruptive-technology/
https://techcrunch.com/2016/05/11/the-blockchain-is-the-new-google/
https://techcrunch.com/2018/01/05/mark-zuckerberg-is-right-to-explore-the-potential-of-the-blockchain-for-facebook/
https://techcrunch.com/2018/02/21/blockchain-valley-of-despair/
https://techcrunch.com/2018/10/26/blockchain-partners-with-ledger-for-its-hardware-wallet/
https://www.techinasia.com/talk/blockchain-cards-payments-industry
https://www.techinasia.com/talk/blockchain-decentralizing-gambling
http://technode.com/2018/05/28/blockathon-beijing
https://technode.com/2018/05/28/blockathon-beijing/
https://technode.com/2018/11/21/block-china-supply-chain-woes/
https://technologyadvice.com/blog/information-technology/blockchain-changing-security-fsm/
https://www.technologyreview.com/s/604227/blockchain-is-helping-to-build-a-new-kind-of-energy-grid/
https://www.technologyreview.com/s/608764/how-blockchain-is-kickstarting-the-financial-lives-of-refugees/
https://www.technologyreview.com/s/610836/how-secure-is-blockchain-really/
https://www.technologyreview.com/the-download/609212/mastercards-new-blockchain-is-interesting-because-of-what-it-leaves-out/
https://www.techopedia.com/definition/30246/blockchain
http://www.techradar.com
https://www.techradar.com/news/a-look-at-the-vital-role-blockchain-is-playing-in-banking-the-unbanked
https://www.techradar.com/news/blockchain-is-not-be-the-answer-to-your-security-troubles-google-boss-says
http://www.techrepublic.com/article/blockchain-cheat-sheet
https://www.techrepublic.com/article/the-blockchain-is-already-transforming-the-food-tech-industry/
https://www.techrepublic.com/article/why-a-fully-trust-less-view-of-blockchain-is-dangerous-for-business/
https://techsauce.co/tech-and-biz/understand-blockchain-in-5-minutes/
https://www.techspot.com/article/1567-blockchain-explained/
http://techtrendske.co.ke/belfrics-global-belrium-ico
http://techtrendske.co.ke/belfrics-global-belrium-ico/
https://techvibes.com/2018/03/16/blockchain-is-not-a-fad-it-might-just-be-the-ultimate-enabler
http://techxplore.com
https://techxplore.com/news/2016-05-blockchain-lot-bitcoin.html
https://www.ted.com/talks/don_tapscott_how_the_blockchain_is_changing_money_and_business
https://www.ted.com/talks/don_tapscott_how_the_blockchain_is_changing_money_and_business?language=en
https://www.ted.com/talks/don_tapscott_how_the_blockchain_is_changing_money_and_business/discussion
https://www.ted.com/talks/don_tapscott_how_the_blockchain_is_changing_money_and_business/discussion?curator=TechREDEF
https://www.ted.com/talks/don_tapscott_how_the_blockchain_is_changing_money_and_business/discussion?utm_campaign=BeepBeepBites%20-%20Nieuwsbrief&utm_source=hs_email&utm_medium=email&_hsenc=p2ANqtz-9HVrYa3yP4c3vHzhXjGgmYGr7v9mNXU_1YpR9HaEsAbZM2f_c_5aybhaq5FpFdwZ-mU5Cb
https://www.ted.com/talks/don_tapscott_how_the_blockchain_is_changing_money_and_business/discussion?utm_campaign=Insights&utm_source=hs_email&utm_medium=email&_hsenc=p2ANqtz-_F2c-eCqAC4o46QnRnuyU9Piw_B8Pfef2xbP3XMzN_eoRf_RYHg2tyGgwuy5o_gjSsCNEkY0EjoTI_F2_wOkIwJBf2vw
https://www.ted.com/talks/don_tapscott_how_the_blockchain_is_changing_money_and_business/transcript
https://www.ted.com/talks/don_tapscott_how_the_blockchain_is_changing_money_and_business/transcript?language=en
https://www.telegraph.co.uk/money/cryptocurrency-explained/blockchain-growing-faster-than-internet/
https://www.telegraph.co.uk/technology/digital-money/what-is-blockchain/
https://www.telehouse.com/2018/06/how-blockchain-technology-is-transforming-the-data-center-infrastructure/
http://www.tellmehow.co/blockchain-advantage-disadvantage/
https://www.temenos.com/en/market-insight/2016/the-blockchain-is-coming-to-banking/
http://theaccountingblockchain.io
https://theaccountingblockchain.io/
https://www.thebalance.com/how-blockchain-is-changing-banking-and-financial-services-4174354
https://www.thebalance.com/how-revolutionary-is-blockchain-technology-4045555
https://thebitcoinnews.com/ripples-blockchain-is-significantly-faster-than-bitcoin-tron-and-litecoin/
https://thebitcoinnews.com/what-is-a-blockchain-transaction-anyway/
http://www.theblockchaincouncil.io
https://www.theblockchaincouncil.io/
https://theblockchainland.com/2018/12/25/regulated-blockchain-based-real-estate-platform/
https://www.theblockcrypto.com/2018/12/09/facebook-blockchain-ramps-up-hiring-states-ultimate-goal-is-to-help-billions-of-people/
https://thebossmagazine.com/blockchain-supply-chain/
http://thebossmagazine.com/blockchain-technology
https://thebossmagazine.com/blockchain-technology/
http://thebossmagazine.com/real-estate-industry-blockchain
https://thebossmagazine.com/real-estate-industry-blockchain/
http://thebusinessblockchain.com/synopsis
http://thebusinessblockchain.com/synopsis/
http://theconversation.com/bitcoin-may-be-reaching-new-heights-but-the-asx-shows-the-blockchain-is-reinventing-business-88937
http://theconversation.com/blockchain-is-useful-for-a-lot-more-than-just-bitcoin-58921
http://theconversation.com/cbas-test-of-government-bond-using-the-blockchain-is-just-that-71987
http://theconversation.com/centrelink-data-matching-problems-show-the-need-for-a-government-blockchain-71156
http://theconversation.com/demystifying-the-blockchain-a-basic-user-guide-60226
http://theconversation.com/how-blockchain-is-strengthening-tuna-traceability-to-combat-illegal-fishing-89965
https://theduran.com/blockchain-is-de-dollarizing-the-investing-world/
http://thefinanser.com
http://thefinanser.com/2016/02/what-is-and-what-isnt-a-blockchain.html/
http://thefinanser.com/2016/07/blockchain-like-internet-browser.html/
https://thefinanser.com/2016/12/blockchain-dead-long-live-blockchain.html/
https://www.theglobeandmail.com/report-on-business/rob-commentary/why-blockchain-is-dominating-discussions-in-davos/article37753396/
https://www.theguardian.com/business/2018/mar/05/bitcoin-is-based-on-the-blockchain-pipe-dream
https://www.theguardian.com/global-development-professionals-network/2017/jan/17/blockchain-digital-technology-development-money
https://www.theguardian.com/technology/2018/jan/30/blockchain-buzzword-hype-open-source-ledger-bitcoin
https://www.theguardian.com/technology/2018/mar/20/child-abuse-imagery-bitcoin-blockchain-illegal-content
https://www.theguardian.com/technology/2018/oct/15/blockchain-democracy-decentralisation-bitcoin-price-cryptocurrencies
https://www.theguardian.com/world/2016/jul/07/blockchain-answer-life-universe-everything-bitcoin-technology
http://thehill.com/opinion/technology/373798-blockchain-is-not-bitcoin-its-far-more
https://www.theinvestor.jll/news/world/others/blockchain-reshaping-real-estate-industry/
https://www.theinvestor.jll/news/world/others/how-blockchain-is-helping-investors-value-real-estate/
https://www.themovingworld.com/news/blockchain-is-about-more-than-cryptocurrency
http://themreport.com
https://themreport.com/daily-dose/04-17-2018/how-blockchains-bringing-technology-conversations-back-in-lending
https://thenextweb.com/business/2017/01/23/blockchain-overshadowing-bitcoin/
https://thenextweb.com/contributors/2018/03/20/cyber-security-blockchain-evolving-technology-safety/
https://thenextweb.com/contributors/2018/10/01/the-blockchain-cant-change-the-world-but-its-a-good-start/
https://thenextweb.com/contributors/2018/12/09/how-blockchain-is-bringing-staffing-innovation/
https://thenextweb.com/hardfork/2018/03/21/bitcoins-blockchain-content-land-in-jail/
https://thenextweb.com/hardfork/2018/05/12/blockchain-is-crappy-technology-and-a-bad-vision-for-the-future/
https://thenextweb.com/hardfork/2018/11/01/cryptocurrency-google-bitcoin-blockchain/
https://thenextweb.com/hardfork/2018/11/02/3-ways-the-blockchain-industry-is-slowly-moving-towards-gender-equality/
https://thenextweb.com/syndication/2018/03/26/blockchain-collision-course-eu-privacy-law/
https://thenib.com/what-is-the-blockchain
https://theoofy.com/26484/this-is-why-its-hard-to-find-blockchain-talent/
http://www.thepaypers.com/expert-opinion/blockchain-for-dummies-a-quick-guide-into-the-ledger-technology/761925
https://www.theregister.co.uk/2018/05/03/gartner_blockchain_hyped/
http://www.thestar.com
https://www.thestar.com/news/canada/2016/05/06/the-blockchain-revolution-an-excerpt-from-don-and-alex-tapscotts-upcoming-book.html
https://www.thestreet.com/investing/bitcoin/what-is-bitcoin-and-blockchain-14543623
https://www.thestreet.com/markets/yahoo-finance-all-markets-summit-live-blog-14718312
https://www.theverge.com/2017/8/11/16126610/square-twitter-founder-jack-dorsey-blockchain-bitcoin-banks
https://www.theverge.com/2018/12/20/18129020/china-internet-great-firewall-censorship-blockchain-metoo-vaccines-2018
https://www.theverge.com/2018/3/7/17091766/blockchain-bitcoin-ethereum-cryptocurrency-meaning
https://www.thomsonreuters.com/en/reports/blockchain.html
http://time.com/4320254/blockchain-tech-behind-bitcoin
http://time.com/4320254/blockchain-tech-behind-bitcoin/
https://www.timesofmalta.com/articles/view/20181223/business-news/is-a-blockchain-solution-for-maltas-taxation-system-far-fetched.697488
http://tinytinykitchen.tumblr.com
http://tinytinykitchen.tumblr.com/
https://tisch.nyu.edu/itp/events/spring-2017/blockchain-is-the-new-internet
https://titanium-blockchain.com/news/new-consensus-algorithm-on-blockchain/
http://www.toddault.com
https://www.toddault.com/2017/09/12/how-the-blockchain-is-changing-money-and-business-don-tapscott/
https://tonyarcieri.com/on-the-dangers-of-a-blockchain-monoculture
http://www.toptal.com
https://www.toptal.com/bitcoin/blockchain-technology-powering-bitcoin
https://towardsdatascience.com/the-difference-between-blockchains-distributed-ledger-technology-42715a0fa92
http://tradeblock.com/blockchain
https://tradeblock.com/blockchain/
https://www.tripwire.com/state-of-security/security-awareness/blockchain-helping-secure-iot-technology/
http://www.truthcoin.info/blog/limits-of-blockchain
http://www.truthcoin.info/blog/limits-of-blockchain/
http://www.truthcoin.info/blog/private-blockchains
http://www.truthcoin.info/blog/private-blockchains/
https://twitter.com/binarybits/status/731531380031692804
https://twitter.com/edent/status/1006248586395508737
https://twitter.com/oleganza/status/1034178524389634048
https://u.today/aerons-arn-token-is-now-available-in-eos-ecosystem
http://www.udemy.com/blockchain
https://www.udemy.com/blockchain/
https://www.udemy.com/blockchain101/
http://ujnews.com/
http://uk.businessinsider.com/barclays-derek-white-on-bitcoin-and-blockchain-2015-9
https://uk.linkedin.com/in/gendal
https://www.universitybusiness.com/article/college-transcripts-transformed
https://www.upwork.com/blog/2018/07/fastest-growing-skills-upwork-q2-2018/
https://www.usatoday.com/story/opinion/2018/01/03/blockchain-behind-bitcoin-worth-editorials-debates/109131594/
http://usblogs.pwc.com/emerging-technology/a-primer-on-blockchain-infographic/
http://usblogs.pwc.com/emerging-technology/blockchain-to-disrupt-trade-finance/
https://www.uspsoig.gov/sites/default/files/document-library-files/2016/RARC-WP-16-001.pdf
https://www.valuewalk.com/2017/07/how-blockchain-is-changing-banking/
http://www.valuewalk.com/2018/06/blockchain-is-not-almighty
https://www.valuewalk.com/2018/06/blockchain-is-not-almighty/
https://www.vccircle.com/why-the-trustless-blockchain-is-actually-the-most-trustable/
https://venturebeat.com/2015/03/28/4-ways-blockchain-technology-will-change-the-world/
https://venturebeat.com/2017/11/04/blockchain-is-bringing-the-sharing-economy-to-everyone/
https://venturebeat.com/2018/05/16/how-blockchain-is-disrupting-ar/
https://verneglobal.com/blog/how-the-blockchain-is-reshaping-the-data-center
https://www.verypossible.com/blog/blockchain-explained-how-does-immutability-work
http://video.foxbusiness.com/v/5688797805001
https://video.foxbusiness.com/v/5688797805001/
http://video.foxbusiness.com/v/5705844729001/
https://vimeo.com/291205220
https://www.virgin.com/entrepreneur/how-blockchain-changing-way-leaders-operate
https://virtuallyinspired.org/blockchain-is-it-good-for-education/
https://www.visualcapitalist.com/blockchain-ecosystem-visualization/
http://www.visualcapitalist.com/blockchain-powering-future
https://www.visualcapitalist.com/blockchain-powering-future/
http://www.visualcapitalist.com/trending-techs-biggest-influencers
http://www.visualcapitalist.com/trending-techs-biggest-influencers/
https://vixennow.com/2018/12/18/humans-on-the-blockchain-why-crypto-is-the-best-defense-against-ai-overlords/
https://www.washingtonpost.com/news/the-switch/wp/2013/11/12/bitcoin-needs-to-scale-by-a-factor-of-1000-to-compete-with-visa-heres-how-to-do-it/
http://www.wavv.org/
https://www.wbur.org/bostonomix/2017/04/20/blockchain-explainer
https://www.weforum.org/agenda/2015/12/what-is-the-future-of-blockchain/
http://www.weforum.org/agenda/2016/06/the-blockchain
https://www.weforum.org/agenda/2016/06/the-blockchain/
https://www.weforum.org/agenda/2017/07/blockchain-the-ledger-that-will-record-everything-of-value/
https://www.weforum.org/agenda/2018/04/blockchain-survive-backlash-social-purpose-jem-bendall/
https://www.weforum.org/agenda/2018/04/how-secure-is-blockchain/
https://www.weforum.org/agenda/2018/04/questions-blockchain-toolkit-right-for-business
https://www.weforum.org/agenda/2018/04/questions-blockchain-toolkit-right-for-business/
https://www.weforum.org/whitepapers/blockchain-beyond-the-hype
http://www.weusecoins.com/assets/pdf/library/Intro
https://www.weusecoins.com/assets/pdf/library/Intro%20to%20Bitcoin%20and%20Blockchain%20Kaye%20Scholer.pdf
http://www.weusecoins.com/blockchain-uses
https://www.weusecoins.com/blockchain-uses/
http://wexboy.wordpress.com
https://wexboy.wordpress.com/
https://which-50.com/exterminating-central-power-with-blockchain-is-an-illusion/
https://which-50.com/the-business-case-for-blockchain-is-often-bigger-than-one-organisation-says-asx-cio/
https://whistlinginthewind.org/
https://whistlinginthewind.org/2018/06/13/the-blockchain-is-a-solution-in-search-of-a-problem/
https://www.whitecase.com/publications/insight/beyond-bitcoin-blockchain-revolution-financial-services
https://www.widebitcoin.com/graft-blockchain-payment-provider-is-replacing-credit-card-networks-with-instant-authorizations/
http://wiki.p2pfoundation.net/Blockchain
http://www.winbrook.com/sandbox/the-promise-of-blockchain-is-a-world-without-middlemen/
https://www.winnesota.com/blockchain
https://www.wired.co.uk/article/bitcoin-myspace-cryptocurrency-blockchain
https://www.wired.co.uk/article/blockchain-conflict-diamonds-everledger
https://www.wired.co.uk/article/unlock-the-blockchain
https://www.wired.co.uk/article/yanis-varoufakis-bitcoin-bubble-interview
https://www.wired.com/story/187-things-the-blockchain-is-supposed-to-fix/
https://www.wired.com/story/future-of-bitcoin-blockchain-2018/
http://www.wired.com/story/guide-blockchain
https://www.wired.com/story/guide-blockchain/
https://www.wired.com/story/how-the-blockchain-is-redefining-trust/
http://www.wiredfocus.com/how-significant-is-blockchain-in-internet-of-things/
https://www.worldbank.org/en/topic/financialsector/brief/blockchain-dlt
https://www.worldfinance.com/strategy/blockchain-technology-is-the-future-of-banking
https://www.wsj.com/articles/the-blockchain-is-the-internet-of-money-1506119424
https://www.wsj.com/articles/what-blockchain-is-and-what-it-can-do-1466388185
http://ww2.cfo.com/applications/2016/05/blockchain-will-disrupt-banking/
http://ww2.cfo.com/payments/2017/05/cfos-need-know-blockchain/
https://www-01.ibm.com/common/ssi/cgi-bin/ssialias?htmlfid=45015045USEN&
https://www2.deloitte.com/content/dam/Deloitte/ch/Documents/innovation/ch-en-innovation-deloitte-what-is-blockchain-2016.pdf
https://www2.deloitte.com/insights/us/en/focus/signals-for-strategists/trends-blockchain-bitcoin-security-transparency.html
https://www2.deloitte.com/mt/en/pages/financial-services/articles/mt-banking-alert-019-blockchain-is-coming-to-disrupt-your-industry.html
https://www2.deloitte.com/uk/en/pages/innovation/articles/blockchain.html
https://www2.deloitte.com/us/en/pages/consulting/articles/innovation-blockchain-survey.html
https://xconomy.com/raleigh-durham/2018/11/20/how-blockchain-is-finding-a-place-at-your-thanksgiving-table/
http://xkcd.com/2030
https://xkcd.com/2030/
https://www.yahoo.com/news/why-blockchain-much-bigger-bitcoin-200400111.html
https://yicaiglobal.com/news/blockchain-value-is-far-more-than-cryptocurrency-webank-vp-says-
http://www.yourtrainingedge.com/how-blockchain-is-changing-learning-development/
https://www.youtube.com/watch?v=_ibaTpBj7D4
https://www.youtube.com/watch?v=6WG7D47tGb0
https://www.youtube.com/watch?v=8o9QxMxhTp8
https://www.youtube.com/watch?v=93E_GzvpMA0
https://www.youtube.com/watch?v=b2D52Ajg9NI
https://www.youtube.com/watch?v=G3psxs3gyf8
https://www.youtube.com/watch?v=jbu6I-8mNUo
https://www.youtube.com/watch?v=kNhixQb8i3Y
https://www.youtube.com/watch?v=kP6EezXJKNM
https://www.youtube.com/watch?v=oSP-taqLWPQ
https://www.youtube.com/watch?v=Pl8OlkkwRpc
https://www.youtube.com/watch?v=QQcBvfP3KBw
https://www.youtube.com/watch?v=r43LhSUUGTQ
https://www.youtube.com/watch?v=RKthmFXOwzs
https://www.youtube.com/watch?v=RplnSVTzvnU
https://www.youtube.com/watch?v=SSo_EIwHSd4
https://www.youtube.com/watch?v=U0_qkjTBE8o
https://www.youtube.com/watch?v=vh3DlM1Angs
https://www.youtube.com/watch?v=w_GFvKkxeaM
https://www.youtube.com/watch?v=WnEYakUxsHU
https://www.youtube.com/watch?v=WrkYjBZ4x9Q
https://www.zdnet.com/article/dont-believe-the-blockchain-hype-examining-its-weaknesses-and-risks/
https://www.zdnet.com/article/how-blockchain-is-likely-to-change-it-and-business-forever/
http://www.zdnet.com/video/how-blockchain-is-eliminating-cheating-in-online-gaming/