create account

Introduction to EOS: the Epic (blockchain) Operating System by trogdor

View this thread on: hive.blogpeakd.comecency.com
· @trogdor · (edited)
$444.70
Introduction to EOS: the Epic (blockchain) Operating System
<b>TL;DR:</b> EOS is a consensus blockchain operating system that provides databases, account permissions, scheduling, authentication, and internet-application communication to massively improve the efficiency of smart business development that uses parallelization to make possible blockchain scalability to millions of users and millions of transactions per second.

<b>Disclaimer:</b> Most of what follows is my cliffs notes summary of Dan's Consensus presentation, and I've also (crudely) redrawn some of his key slides. Anything and everything contained herein should be properly attributed to Dan, @dantheman.

<h2>EOS: the elected, epic, enterprise, consensus, blockchain operating system.</h2>
In order to introduce EOS, we first need to understand the current state of blockchain tech, and how we got here. Bitcoin of course introduced the idea of a public ledger system and Ethereum proved the demand for decentralized applications more generally. However, in order to see blockchains truly go mainstream, we need to address the sheer volume of traffic and operations occurring on real world business applications. For example, credit card networks need to be able to process 20,000 transactions per second. Facebook processes 52,000 likes per second, and that doesn't include actual posts and other activity. The financial industry processes 100,000 transactions per second, potentially per market.

In contrast, Bitcoin is currently limited to ~3 transactions per second because of blocksize, and Ethereum is limited to ~30 transactions per second due to gas restrictions. The most important restriction of current blockchain technology is the single-threaded performance of all major blockchains.

<center><img src="https://s18.postimg.org/r3bi59w7d/EOS.png"><br>EOS has already attracted significant interest and investment.</center>

<h2>How did we get here?</h2>
In 2013, the decentralized exchange Bitshares was built, and in 2014 Bitshares was launched. It used delegated proof-of-stake giving 3 second confirmation times with very predictable, reliable block production. The first version of Bitshares was built off of some of the same ideas as Bitcoin and shared some technology, but still didn't meet the performance requirements of an exchange. In 2015 Graphene was created, and Bitshares was completely rewritten. This was able to achieve 100,000 transaction per second on a single machine, and decentralized global stress testing achieved 18,000 transactions per second on a distributed network. Account names were also introduced with Bitshares (advanced hierarchical dynamic threshold multisig), which separated accounts from keys, allowing organizations to be structured and permissions to be delegated to other users. In 2016 Steem was launched which had new conceptual issues. Social media users don't want to have to pay for every vote, they need account recovery options, etc... Steem also took the block rewards which are wasted in mining and redistributes them to people who are posting on the blockchain, enabling thousands of people to become active participants through massive decentralization allocation of funds. Steem went from concept in January to working blockchain in March to working website in July. At this point, Steem and Bitshares have more real world transactions occurring every day than the rest of the major blockchains combined. Steem also has a higher female-to-male ratio of users than any other blockchain. However, both Steem and Bitshares are application-specific blockchains. If you want to run multiple apps on the same blockchain, there are significant scalability issues that need to be solved.

<h2>There are still significant barriers to mainstream blockchain adoption.</h2>
If you look at the blockchain industry, everyone wants to build smart businesses, decentralized organizations, etc..., and in the process developers built decentralized computers from the ground up which can run their smart apps. In this process, all app developers have to solve many of the same problems: account systems, recovery processes, multi-sig, manage challenges, and what they're missing is the operating system, which could provide all the common features that every application depends upon, allowing applications to focus on what makes them different. For example, there is a huge commonality between Bitshares and Steem in terms of functions, and relatively a very small difference in terms of application business logic. EOS aims to provide this operating system to provide all the core functions to app developers and allow them to focus on just the business logic that makes their apps unique.

<center><img src="https://s18.postimg.org/4snn5ayx5/EOS-pic2.png"><br>EOS provides an operating system and a decentralized computer to radically improve the efficiency of smart business development.</center>

<h2>What do DAPPs require?</h2>
In order to be successful, DAPPs need to be accessible from a web browser (downloadable apps are nice as well), need to scale to millions of users in order to monetize and earn a return on investment, they need to be free for users of the app (especially for social media), they need to be responsive with fast confirmation times, they need to be upgradable, be accessible with human friendly account names, have account recovery, and have a strategy for fixing bugs. EOS provides all of these to application developers.

<center><img src="https://s18.postimg.org/68z5ng1u1/EOS-pic3.png"><br></center>

EOS provides parallel processing of smart contracts through horizontal scalability, asynchronous communication, and interoperability. It will provide databases, account permissions, scheduling, authentication, and internet-application communication. For example, both Bitshares and Steem can be run on EOS in parallel, and because of the asynchronous communication, additional nodes and entire clusters can be thrown behind the processing of transactions to scale up to any transaction volume you want.

EOS is the first blockchain operating system. It provides your application with databases, a schema, multiple indices so you can have sorted data that's easy to manage. it gives you account permissions and a whole set of users, account recovery, handles all the complexities of scheduling multiple tasks across CPU cores or even clusters, handles all the authentication and key management so you can focus on business logic and not cryptography, and it handles all the internet-application communication. EOS is the operating system that we've been waiting for that allows us to focus on building the apps that our users need without getting in the way, without forcing gas, without requiring users to purchase anything before using, and it dramatically accelerates the rate at which developers can build apps.

<center><img src="https://s18.postimg.org/xkueos6kp/EOS-pic4.png"><br></center>

<h2>EOS aims to be scalable, flexible, and usable.</h2>
<b>Scalable:</b> EOS can support 1000s of commercial-scale DAPPs through parallel execution and asynchronous communication. It separates the authentication from the action. For example, a transfer is a simple action of reducing one account's balance and increasing another, but all the authentication steps are validating signatures, checking to make sure that are sufficient funds, etc... but authentication steps only need to happen once when the block is produced. After a block is irreversibly added to the blockchain you never have to authenticate again. EOS puts the source code on the blockchain so that it is human readable what the contract says, and everyone can see it and developers can optimize it and compile on different machines, all without breaking consensus. It also eliminates gas to eliminate the extra operations that are required to count the important operations.

<b>Flexible:</b> Because EOS will use delegated proof-of-stake, if an app is broken or fails, elected block producers can freeze the application until a bug can be fixed and then update the code. So if the DAO had been implemented on EOS, for example, it could have been frozen, fixed, and updated, all without ever having to hard fork or disrupt any other application on the chain. EOS is also flexible in the sense that you only have to run the applications that you need. If you are running an exchange, you don't have to run the social media apps, and you can configure your local node to process only the data you care about. Not every node needs to run and maintain the full state of the blockchain. EOS also publishes source code, not assembly, and provides generalized role-based permissions.

<b>Usable:</b> EOS will include a web toolkit for interface development, self-describing interfaces (data that goes on the blockchain can be read by humans but is also compressed), self-describing database schemas, and a declarative permission scheme. This allows a fine-grained level of permissions in which you can easily delegate specific account permission to other accounts.

<b>Governance:</b> Delegated proof-of-stake has elected block producers. A legally binding constitution (think decentralized peer-to-peer terms of service) establishes a common jurisdiction for disputes and dispute resolution. EOS will also include self-funded community benefit apps that are selected through stake-weighted voting. Ever account will have to sign the constitution. One idea is that every transaction may include the hash of the current state of the constitution. The constitution itself is something that can be modified and evolve, and captures the intent of what the blockchain is trying to express and guides the way when trying to resolve disputes. Signing the constitution expires if you do not use the platform just like other apps updating their terms of service.

<center><img src="https://s18.postimg.org/46yo973ux/EOS-pic5.png"><br></center>

<h2>EOS Token:</h2>
EOS has a token called EOS, which works on the same principles as Steem. Unlike other systems there are no fees, it's not consumed. If you own 1% of the network, you have access to 1% of the computational power, 1% of the bandwidth, and 1% of the network storage. You can then lease it out to other parties or use it for your own app. Once you fund your app with enough EOS to support its usage, you don't have to worry about topping it off or paying any fees, because it's an "own" model, rather than a "rental" model. You then figure out how to monetize your app by charging the user. Network bandwidth can be allocated and delegated paying customers through a free market hosting ecosystem. Block production is controlled through stake-weighted voting as in traditional delegated proof-of-stake. There is also a constitutionally limited 5% annual increase in EOS supply which woulc be lowered to 0%. This supply is distributed to three different smart contracts which are selected based on stake-weighted voting. The additional supply may be simply destroyed by locking them away in a smart contract which prevents them from ever being used (eliminating inflation), or they can be distributed to decentralized administration (such as Steem), or centralized administration (such as the Ethereum foundation, EOS foundation, etc...).

<h2>Current Development Team:</h2>
Brendan Blumer: CEO
Daniel Larimer: CTO
Kokuei (Guo) Yuan: President
Andrew Bliss: CFO
Michael Cao: partner
Ian Grigg: partner
Brock Pierce: partner
Li Xiao Lai: partner
Wendy Lee: CLO
Bo Shen: partner

<h2>Project Status and Roadmap:</h2>
The project was started a couple of months ago, and code will be released on github after the Consensus 2017 conference. Code will be tested out this summer. Visit eos.io to sign up for the newsletter. The EOS team is trying to treat project information very sensitively so that there is no inside group with access to key information before the greater community, so make sure to sign up for the mailing list!
👍  , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , and 486 others
👎  
properties (23)
authortrogdor
permlinkintroduction-to-eos-the-epic-blockchain-operating-system
categoryeos
json_metadata{"tags":["eos","blockchain","consensus","scalability"],"users":["dantheman"],"image":["https://s18.postimg.org/r3bi59w7d/EOS.png","https://s18.postimg.org/4snn5ayx5/EOS-pic2.png","https://s18.postimg.org/68z5ng1u1/EOS-pic3.png","https://s18.postimg.org/xkueos6kp/EOS-pic4.png","https://s18.postimg.org/46yo973ux/EOS-pic5.png"],"app":"steemit/0.1","format":"markdown"}
created2017-05-24 16:24:30
last_update2017-05-24 16:39:21
depth0
children123
last_payout2017-05-31 16:24:30
cashout_time1969-12-31 23:59:59
total_payout_value370.698 HBD
curator_payout_value74.000 HBD
pending_payout_value0.000 HBD
promoted0.000 HBD
body_length11,933
author_reputation22,905,182,177,434
root_title"Introduction to EOS: the Epic (blockchain) Operating System"
beneficiaries[]
max_accepted_payout1,000,000.000 HBD
percent_hbd0
post_id3,743,928
net_rshares34,706,806,308,174
author_curate_reward""
vote details (551)
@aboundlessworld ·
$0.16
Definitely in to support this awesome project. :)
👍  
properties (23)
authoraboundlessworld
permlinkre-trogdor-introduction-to-eos-the-epic-blockchain-operating-system-20170524t232751043z
categoryeos
json_metadata{"tags":["eos"],"app":"steemit/0.1"}
created2017-05-24 23:27:51
last_update2017-05-24 23:27:51
depth1
children1
last_payout2017-05-31 23:27:51
cashout_time1969-12-31 23:59:59
total_payout_value0.145 HBD
curator_payout_value0.019 HBD
pending_payout_value0.000 HBD
promoted0.000 HBD
body_length49
author_reputation6,662,134,441,355
root_title"Introduction to EOS: the Epic (blockchain) Operating System"
beneficiaries[]
max_accepted_payout1,000,000.000 HBD
percent_hbd10,000
post_id3,758,314
net_rshares124,419,661,193
author_curate_reward""
vote details (1)
@trogdor ·
Thumbs up! I'm in too!
properties (22)
authortrogdor
permlinkre-aboundlessworld-re-trogdor-introduction-to-eos-the-epic-blockchain-operating-system-20170524t234250834z
categoryeos
json_metadata{"tags":["eos"],"app":"steemit/0.1"}
created2017-05-24 23:42:51
last_update2017-05-24 23:42:51
depth2
children0
last_payout2017-05-31 23:42:51
cashout_time1969-12-31 23:59:59
total_payout_value0.000 HBD
curator_payout_value0.000 HBD
pending_payout_value0.000 HBD
promoted0.000 HBD
body_length22
author_reputation22,905,182,177,434
root_title"Introduction to EOS: the Epic (blockchain) Operating System"
beneficiaries[]
max_accepted_payout1,000,000.000 HBD
percent_hbd10,000
post_id3,758,689
net_rshares0
@aggroed ·
$0.16
Great post!

https://media4.giphy.com/media/RuP9W6dBzsqje/giphy.gif
👍  ,
properties (23)
authoraggroed
permlinkre-trogdor-introduction-to-eos-the-epic-blockchain-operating-system-20170525t181246274z
categoryeos
json_metadata{"tags":["eos"],"image":["https://media4.giphy.com/media/RuP9W6dBzsqje/giphy.gif"],"app":"steemit/0.1"}
created2017-05-25 18:12:48
last_update2017-05-25 18:12:48
depth1
children2
last_payout2017-06-01 18:12:48
cashout_time1969-12-31 23:59:59
total_payout_value0.116 HBD
curator_payout_value0.039 HBD
pending_payout_value0.000 HBD
promoted0.000 HBD
body_length67
author_reputation1,343,345,274,857,310
root_title"Introduction to EOS: the Epic (blockchain) Operating System"
beneficiaries[]
max_accepted_payout1,000,000.000 HBD
percent_hbd10,000
post_id3,788,711
net_rshares112,402,341,134
author_curate_reward""
vote details (2)
@trogdor ·
Lol, thanks for the graphic.
properties (22)
authortrogdor
permlinkre-aggroed-re-trogdor-introduction-to-eos-the-epic-blockchain-operating-system-20170525t201927030z
categoryeos
json_metadata{"tags":["eos"],"app":"steemit/0.1"}
created2017-05-25 20:19:18
last_update2017-05-25 20:19:18
depth2
children1
last_payout2017-06-01 20:19:18
cashout_time1969-12-31 23:59:59
total_payout_value0.000 HBD
curator_payout_value0.000 HBD
pending_payout_value0.000 HBD
promoted0.000 HBD
body_length28
author_reputation22,905,182,177,434
root_title"Introduction to EOS: the Epic (blockchain) Operating System"
beneficiaries[]
max_accepted_payout1,000,000.000 HBD
percent_hbd10,000
post_id3,792,899
net_rshares0
@aggroed ·
yeah, I thought you like that.  Now I have to go checka da email.
properties (22)
authoraggroed
permlinkre-trogdor-re-aggroed-re-trogdor-introduction-to-eos-the-epic-blockchain-operating-system-20170525t202033070z
categoryeos
json_metadata{"tags":["eos"],"app":"steemit/0.1"}
created2017-05-25 20:20:33
last_update2017-05-25 20:20:33
depth3
children0
last_payout2017-06-01 20:20:33
cashout_time1969-12-31 23:59:59
total_payout_value0.000 HBD
curator_payout_value0.000 HBD
pending_payout_value0.000 HBD
promoted0.000 HBD
body_length65
author_reputation1,343,345,274,857,310
root_title"Introduction to EOS: the Epic (blockchain) Operating System"
beneficiaries[]
max_accepted_payout1,000,000.000 HBD
percent_hbd10,000
post_id3,792,946
net_rshares0
@akrid ·
Thank you for a very clear and complete understanding of EOS.  Time to invest :-)
👍  
properties (23)
authorakrid
permlinkre-trogdor-introduction-to-eos-the-epic-blockchain-operating-system-2017526t175932872z
categoryeos
json_metadata{"app":"chainbb/0.1","format":"markdown+html","tags":[]}
created2017-05-26 21:59:33
last_update2017-05-26 21:59:33
depth1
children0
last_payout2017-06-02 21:59:33
cashout_time1969-12-31 23:59:59
total_payout_value0.000 HBD
curator_payout_value0.000 HBD
pending_payout_value0.000 HBD
promoted0.000 HBD
body_length81
author_reputation13,705,218,706,244
root_title"Introduction to EOS: the Epic (blockchain) Operating System"
beneficiaries
0.
accountchainbb
weight1,500
max_accepted_payout1,000,000.000 HBD
percent_hbd10,000
post_id3,833,730
net_rshares72,223,009
author_curate_reward""
vote details (1)
@alexpmorris ·
$0.20
wow, great job with this - it's almost like a complete transcript + images of Dan's EOS intro.  gonna include this in my Consensus2017 / EOS highlights post.
👍  , ,
properties (23)
authoralexpmorris
permlinkre-trogdor-introduction-to-eos-the-epic-blockchain-operating-system-20170524t165107039z
categoryeos
json_metadata{"tags":["eos"],"app":"steemit/0.1"}
created2017-05-24 16:51:06
last_update2017-05-24 16:51:06
depth1
children1
last_payout2017-05-31 16:51:06
cashout_time1969-12-31 23:59:59
total_payout_value0.199 HBD
curator_payout_value0.003 HBD
pending_payout_value0.000 HBD
promoted0.000 HBD
body_length157
author_reputation32,063,874,290,523
root_title"Introduction to EOS: the Epic (blockchain) Operating System"
beneficiaries[]
max_accepted_payout1,000,000.000 HBD
percent_hbd10,000
post_id3,744,761
net_rshares148,938,379,832
author_curate_reward""
vote details (3)
@trogdor ·
Thanks so much! I'll definitely be looking out for your highlights post, because all I'm getting is little pieces here and there on other Steemit posts :)
👍  
properties (23)
authortrogdor
permlinkre-alexpmorris-re-trogdor-introduction-to-eos-the-epic-blockchain-operating-system-20170524t165348218z
categoryeos
json_metadata{"tags":["eos"],"app":"steemit/0.1"}
created2017-05-24 16:53:48
last_update2017-05-24 16:53:48
depth2
children0
last_payout2017-05-31 16:53:48
cashout_time1969-12-31 23:59:59
total_payout_value0.000 HBD
curator_payout_value0.000 HBD
pending_payout_value0.000 HBD
promoted0.000 HBD
body_length154
author_reputation22,905,182,177,434
root_title"Introduction to EOS: the Epic (blockchain) Operating System"
beneficiaries[]
max_accepted_payout1,000,000.000 HBD
percent_hbd10,000
post_id3,744,852
net_rshares0
author_curate_reward""
vote details (1)
@andu ·
$0.14
Nicely done! Thank you!
👍  
properties (23)
authorandu
permlinkre-trogdor-introduction-to-eos-the-epic-blockchain-operating-system-20170525t060445231z
categoryeos
json_metadata{"tags":["eos"],"app":"steemit/0.1"}
created2017-05-25 06:04:51
last_update2017-05-25 06:04:51
depth1
children1
last_payout2017-06-01 06:04:51
cashout_time1969-12-31 23:59:59
total_payout_value0.103 HBD
curator_payout_value0.033 HBD
pending_payout_value0.000 HBD
promoted0.000 HBD
body_length23
author_reputation5,355,583,123,081
root_title"Introduction to EOS: the Epic (blockchain) Operating System"
beneficiaries[]
max_accepted_payout1,000,000.000 HBD
percent_hbd10,000
post_id3,769,022
net_rshares104,370,552,031
author_curate_reward""
vote details (1)
@trogdor ·
$0.05
No problem, thanks for checking out the post :)
👍  
properties (23)
authortrogdor
permlinkre-andu-re-trogdor-introduction-to-eos-the-epic-blockchain-operating-system-20170525t115003976z
categoryeos
json_metadata{"tags":["eos"],"app":"steemit/0.1"}
created2017-05-25 11:49:57
last_update2017-05-25 11:49:57
depth2
children0
last_payout2017-06-01 11:49:57
cashout_time1969-12-31 23:59:59
total_payout_value0.035 HBD
curator_payout_value0.011 HBD
pending_payout_value0.000 HBD
promoted0.000 HBD
body_length47
author_reputation22,905,182,177,434
root_title"Introduction to EOS: the Epic (blockchain) Operating System"
beneficiaries[]
max_accepted_payout1,000,000.000 HBD
percent_hbd10,000
post_id3,776,622
net_rshares35,191,547,735
author_curate_reward""
vote details (1)
@arnel ·
$0.19
This is another game changer that I really want to be updated on each development; signed up on its newsletter. Thanks for sharing. Followed you @trogdor
👍  
properties (23)
authorarnel
permlinkre-trogdor-introduction-to-eos-the-epic-blockchain-operating-system-20170524t164159412z
categoryeos
json_metadata{"tags":["eos"],"users":["trogdor"],"app":"steemit/0.1"}
created2017-05-24 16:41:39
last_update2017-05-24 16:41:39
depth1
children3
last_payout2017-05-31 16:41:39
cashout_time1969-12-31 23:59:59
total_payout_value0.188 HBD
curator_payout_value0.004 HBD
pending_payout_value0.000 HBD
promoted0.000 HBD
body_length153
author_reputation46,266,249,863,448
root_title"Introduction to EOS: the Epic (blockchain) Operating System"
beneficiaries[]
max_accepted_payout1,000,000.000 HBD
percent_hbd10,000
post_id3,744,494
net_rshares142,512,403,890
author_curate_reward""
vote details (1)
@trogdor ·
Definitely! I'm hoping we'll get new info as soon as the Consensus conference is over and hopefully any details on a more specific time frame.
properties (22)
authortrogdor
permlinkre-arnel-re-trogdor-introduction-to-eos-the-epic-blockchain-operating-system-20170524t164556996z
categoryeos
json_metadata{"tags":["eos"],"app":"steemit/0.1"}
created2017-05-24 16:45:57
last_update2017-05-24 16:45:57
depth2
children2
last_payout2017-05-31 16:45:57
cashout_time1969-12-31 23:59:59
total_payout_value0.000 HBD
curator_payout_value0.000 HBD
pending_payout_value0.000 HBD
promoted0.000 HBD
body_length142
author_reputation22,905,182,177,434
root_title"Introduction to EOS: the Epic (blockchain) Operating System"
beneficiaries[]
max_accepted_payout1,000,000.000 HBD
percent_hbd10,000
post_id3,744,620
net_rshares0
@arnel ·
Ok, I'll keep watching how everything will unfold... then share a ride when opportunity comes. :)
properties (22)
authorarnel
permlinkre-trogdor-re-arnel-re-trogdor-introduction-to-eos-the-epic-blockchain-operating-system-20170524t164958023z
categoryeos
json_metadata{"tags":["eos"],"app":"steemit/0.1"}
created2017-05-24 16:49:39
last_update2017-05-24 16:49:39
depth3
children1
last_payout2017-05-31 16:49:39
cashout_time1969-12-31 23:59:59
total_payout_value0.000 HBD
curator_payout_value0.000 HBD
pending_payout_value0.000 HBD
promoted0.000 HBD
body_length97
author_reputation46,266,249,863,448
root_title"Introduction to EOS: the Epic (blockchain) Operating System"
beneficiaries[]
max_accepted_payout1,000,000.000 HBD
percent_hbd10,000
post_id3,744,718
net_rshares0
@belerophon ·
Given Coindesk's recent attack on EOS as a "Ponzi Scheme" this article is relevant: https://steemit.com/eos/@belerophon/coindesk-libels-dan-larimer
👍  
properties (23)
authorbelerophon
permlinkre-trogdor-introduction-to-eos-the-epic-blockchain-operating-system-20170628t175535195z
categoryeos
json_metadata{"tags":["eos"],"links":["https://steemit.com/eos/@belerophon/coindesk-libels-dan-larimer"],"app":"steemit/0.1"}
created2017-06-28 17:55:48
last_update2017-06-28 17:55:48
depth1
children0
last_payout2017-07-05 17:55:51
cashout_time1969-12-31 23:59:59
total_payout_value0.000 HBD
curator_payout_value0.000 HBD
pending_payout_value0.000 HBD
promoted0.000 HBD
body_length147
author_reputation3,048,739,387,126
root_title"Introduction to EOS: the Epic (blockchain) Operating System"
beneficiaries[]
max_accepted_payout1,000,000.000 HBD
percent_hbd10,000
post_id6,509,183
net_rshares0
author_curate_reward""
vote details (1)
@blocklab ·
$0.19
that sounds amazing. thanks for the overview. Didn't know that Dan left Steem to work on this...

**Upvoted & followed**
👍  
properties (23)
authorblocklab
permlinkre-trogdor-introduction-to-eos-the-epic-blockchain-operating-system-20170524t170029178z
categoryeos
json_metadata{"tags":["eos"],"app":"steemit/0.1"}
created2017-05-24 17:00:27
last_update2017-05-24 17:00:27
depth1
children1
last_payout2017-05-31 17:00:27
cashout_time1969-12-31 23:59:59
total_payout_value0.167 HBD
curator_payout_value0.026 HBD
pending_payout_value0.000 HBD
promoted0.000 HBD
body_length120
author_reputation7,237,780,740,117
root_title"Introduction to EOS: the Epic (blockchain) Operating System"
beneficiaries[]
max_accepted_payout1,000,000.000 HBD
percent_hbd10,000
post_id3,745,037
net_rshares142,512,403,890
author_curate_reward""
vote details (1)
@trogdor ·
$0.14
Thanks! I'll definitely be excited to see where this thing goes. I thought it was strange that Dan left Steem, but now we see why!
👍  
properties (23)
authortrogdor
permlinkre-blocklab-re-trogdor-introduction-to-eos-the-epic-blockchain-operating-system-20170524t171808843z
categoryeos
json_metadata{"tags":["eos"],"app":"steemit/0.1"}
created2017-05-24 17:18:09
last_update2017-05-24 17:18:09
depth2
children0
last_payout2017-05-31 17:18:09
cashout_time1969-12-31 23:59:59
total_payout_value0.118 HBD
curator_payout_value0.018 HBD
pending_payout_value0.000 HBD
promoted0.000 HBD
body_length130
author_reputation22,905,182,177,434
root_title"Introduction to EOS: the Epic (blockchain) Operating System"
beneficiaries[]
max_accepted_payout1,000,000.000 HBD
percent_hbd10,000
post_id3,745,620
net_rshares101,059,413,088
author_curate_reward""
vote details (1)
@bulakenyo ·
So is EOS trying to become the AWS of DAPPS? Won't that mean they own all the nodes? Trying to wrap my head around it!
properties (22)
authorbulakenyo
permlinkre-trogdor-introduction-to-eos-the-epic-blockchain-operating-system-20170604t215045075z
categoryeos
json_metadata{"tags":["eos"],"app":"steemit/0.1"}
created2017-06-04 21:50:45
last_update2017-06-04 21:50:45
depth1
children1
last_payout2017-06-11 21:50:45
cashout_time1969-12-31 23:59:59
total_payout_value0.000 HBD
curator_payout_value0.000 HBD
pending_payout_value0.000 HBD
promoted0.000 HBD
body_length118
author_reputation678,313,662
root_title"Introduction to EOS: the Epic (blockchain) Operating System"
beneficiaries[]
max_accepted_payout1,000,000.000 HBD
percent_hbd10,000
post_id4,180,106
net_rshares0
@trogdor ·
In a way it is like a decentralized AWS for DAPPs. In delegated proof of stake, the witnesses typically own their own nodes, but the witnesses are elected by stake-weighted voting.
properties (22)
authortrogdor
permlinkre-bulakenyo-re-trogdor-introduction-to-eos-the-epic-blockchain-operating-system-20170605t121237810z
categoryeos
json_metadata{"tags":["eos"],"app":"steemit/0.1"}
created2017-06-05 12:12:39
last_update2017-06-05 12:12:39
depth2
children0
last_payout2017-06-12 12:12:39
cashout_time1969-12-31 23:59:59
total_payout_value0.000 HBD
curator_payout_value0.000 HBD
pending_payout_value0.000 HBD
promoted0.000 HBD
body_length180
author_reputation22,905,182,177,434
root_title"Introduction to EOS: the Epic (blockchain) Operating System"
beneficiaries[]
max_accepted_payout1,000,000.000 HBD
percent_hbd10,000
post_id4,208,175
net_rshares0
@cassidyandfranks ·
$0.18
Great Recap!

Thank you @trogdor
👍  
properties (23)
authorcassidyandfranks
permlinkre-trogdor-introduction-to-eos-the-epic-blockchain-operating-system-20170524t175823586z
categoryeos
json_metadata{"tags":["eos"],"users":["trogdor"],"app":"steemit/0.1"}
created2017-05-24 17:58:27
last_update2017-05-24 17:58:27
depth1
children1
last_payout2017-05-31 17:58:27
cashout_time1969-12-31 23:59:59
total_payout_value0.181 HBD
curator_payout_value0.003 HBD
pending_payout_value0.000 HBD
promoted0.000 HBD
body_length32
author_reputation13,390,877,479,799
root_title"Introduction to EOS: the Epic (blockchain) Operating System"
beneficiaries[]
max_accepted_payout1,000,000.000 HBD
percent_hbd10,000
post_id3,746,893
net_rshares138,553,726,004
author_curate_reward""
vote details (1)
@trogdor ·
Thanks!
properties (22)
authortrogdor
permlinkre-cassidyandfranks-re-trogdor-introduction-to-eos-the-epic-blockchain-operating-system-20170524t180121111z
categoryeos
json_metadata{"tags":["eos"],"app":"steemit/0.1"}
created2017-05-24 18:01:24
last_update2017-05-24 18:01:24
depth2
children0
last_payout2017-05-31 18:01:24
cashout_time1969-12-31 23:59:59
total_payout_value0.000 HBD
curator_payout_value0.000 HBD
pending_payout_value0.000 HBD
promoted0.000 HBD
body_length7
author_reputation22,905,182,177,434
root_title"Introduction to EOS: the Epic (blockchain) Operating System"
beneficiaries[]
max_accepted_payout1,000,000.000 HBD
percent_hbd10,000
post_id3,746,992
net_rshares0
@cckan ·
very interesting
properties (22)
authorcckan
permlinkre-trogdor-introduction-to-eos-the-epic-blockchain-operating-system-20170531t104320744z
categoryeos
json_metadata{"tags":["eos"],"app":"steemit/0.1"}
created2017-05-31 10:43:21
last_update2017-05-31 10:43:21
depth1
children0
last_payout2017-06-07 10:43:21
cashout_time1969-12-31 23:59:59
total_payout_value0.000 HBD
curator_payout_value0.000 HBD
pending_payout_value0.000 HBD
promoted0.000 HBD
body_length16
author_reputation95,358,688,340
root_title"Introduction to EOS: the Epic (blockchain) Operating System"
beneficiaries[]
max_accepted_payout1,000,000.000 HBD
percent_hbd10,000
post_id3,990,281
net_rshares0
@cryopic ·
@trogdor this is very well crafted. Thanks for the information. Clearly you are a big proponent. :) By the looks of things, the contribution total is going to be HUGE. Holy tokens!
properties (22)
authorcryopic
permlinkre-trogdor-introduction-to-eos-the-epic-blockchain-operating-system-20171216t062612307z
categoryeos
json_metadata{"tags":["eos"],"users":["trogdor"],"app":"steemit/0.1"}
created2017-12-16 06:26:12
last_update2017-12-16 06:26:12
depth1
children0
last_payout2017-12-23 06:26:12
cashout_time1969-12-31 23:59:59
total_payout_value0.000 HBD
curator_payout_value0.000 HBD
pending_payout_value0.000 HBD
promoted0.000 HBD
body_length180
author_reputation117,335,736
root_title"Introduction to EOS: the Epic (blockchain) Operating System"
beneficiaries[]
max_accepted_payout1,000,000.000 HBD
percent_hbd10,000
post_id23,714,492
net_rshares0
@cryptogoi ·
It really makes sense ! Organic growth potential !
👍  
properties (23)
authorcryptogoi
permlinkre-trogdor-introduction-to-eos-the-epic-blockchain-operating-system-20170708t174823353z
categoryeos
json_metadata{"tags":["eos"],"app":"steemit/0.1"}
created2017-07-08 17:48:24
last_update2017-07-08 17:48:24
depth1
children0
last_payout2017-07-15 17:48:24
cashout_time1969-12-31 23:59:59
total_payout_value0.000 HBD
curator_payout_value0.000 HBD
pending_payout_value0.000 HBD
promoted0.000 HBD
body_length50
author_reputation57,094,685,924
root_title"Introduction to EOS: the Epic (blockchain) Operating System"
beneficiaries[]
max_accepted_payout1,000,000.000 HBD
percent_hbd10,000
post_id7,777,953
net_rshares1,304,681,902
author_curate_reward""
vote details (1)
@dalaidennis ·
Getting really excited for the release!
👍  
properties (23)
authordalaidennis
permlinkre-trogdor-introduction-to-eos-the-epic-blockchain-operating-system-20170602t211948722z
categoryeos
json_metadata{"tags":["eos"],"app":"steemit/0.1"}
created2017-06-02 21:19:51
last_update2017-06-02 21:19:51
depth1
children0
last_payout2017-06-09 21:19:51
cashout_time1969-12-31 23:59:59
total_payout_value0.000 HBD
curator_payout_value0.000 HBD
pending_payout_value0.000 HBD
promoted0.000 HBD
body_length39
author_reputation20,224,165,380
root_title"Introduction to EOS: the Epic (blockchain) Operating System"
beneficiaries[]
max_accepted_payout1,000,000.000 HBD
percent_hbd10,000
post_id4,083,147
net_rshares0
author_curate_reward""
vote details (1)
@efrageek ·
$0.16
An extremely informative and "stupidly" simple to understand article. I had not "digested" very well what EOS meant so far. Thank you very much!. I would like to request permission to translate this article so that the Spanish-speaking community that does not speak English can also know what EOS means. Of course you would be mentioned as the original author of the article with a link to it and I also propose to send you 50% of the SBD generated. Many greetings and a big hug. @efrageek
👍  , ,
properties (23)
authorefrageek
permlinkre-trogdor-introduction-to-eos-the-epic-blockchain-operating-system-20170525t184950554z
categoryeos
json_metadata{"tags":["eos"],"users":["efrageek"],"app":"steemit/0.1"}
created2017-05-25 18:49:54
last_update2017-05-25 18:49:54
depth1
children2
last_payout2017-06-01 18:49:54
cashout_time1969-12-31 23:59:59
total_payout_value0.118 HBD
curator_payout_value0.039 HBD
pending_payout_value0.000 HBD
promoted0.000 HBD
body_length489
author_reputation3,448,832,927,279
root_title"Introduction to EOS: the Epic (blockchain) Operating System"
beneficiaries[]
max_accepted_payout1,000,000.000 HBD
percent_hbd10,000
post_id3,789,919
net_rshares113,595,781,103
author_curate_reward""
vote details (3)
@clinguer ·
por favor si podes traducirlo te lo agradeceria mucho. escucho mucho sobre EOS y la verdad que  entiendo a medias el proyecto. te voy a empezar a seguir para poder leerlo. es mucho pedir si podes traducir el white papper tambien?? jajaja muchas gracias por la colaboracion!!!
properties (22)
authorclinguer
permlinkre-efrageek-re-trogdor-introduction-to-eos-the-epic-blockchain-operating-system-20170526t195129161z
categoryeos
json_metadata{"tags":["eos"],"app":"steemit/0.1"}
created2017-05-26 19:51:30
last_update2017-05-26 19:51:30
depth2
children0
last_payout2017-06-02 19:51:30
cashout_time1969-12-31 23:59:59
total_payout_value0.000 HBD
curator_payout_value0.000 HBD
pending_payout_value0.000 HBD
promoted0.000 HBD
body_length275
author_reputation0
root_title"Introduction to EOS: the Epic (blockchain) Operating System"
beneficiaries[]
max_accepted_payout1,000,000.000 HBD
percent_hbd10,000
post_id3,830,338
net_rshares0
@trogdor ·
Thanks! Glad I could be helpful, and please feel free to translate the article.
Best,
Trogdor
properties (22)
authortrogdor
permlinkre-efrageek-re-trogdor-introduction-to-eos-the-epic-blockchain-operating-system-20170525t202430743z
categoryeos
json_metadata{"tags":["eos"],"app":"steemit/0.1"}
created2017-05-25 20:24:24
last_update2017-05-25 20:24:24
depth2
children0
last_payout2017-06-01 20:24:24
cashout_time1969-12-31 23:59:59
total_payout_value0.000 HBD
curator_payout_value0.000 HBD
pending_payout_value0.000 HBD
promoted0.000 HBD
body_length93
author_reputation22,905,182,177,434
root_title"Introduction to EOS: the Epic (blockchain) Operating System"
beneficiaries[]
max_accepted_payout1,000,000.000 HBD
percent_hbd10,000
post_id3,793,114
net_rshares0
@eli2017 ·
It is really an amazing design for the EOS and I look forward to its future.
properties (22)
authoreli2017
permlinkre-trogdor-introduction-to-eos-the-epic-blockchain-operating-system-20170716t034300578z
categoryeos
json_metadata{"tags":["eos"],"app":"steemit/0.1"}
created2017-07-16 03:43:00
last_update2017-07-16 03:43:00
depth1
children0
last_payout2017-07-23 03:43:00
cashout_time1969-12-31 23:59:59
total_payout_value0.000 HBD
curator_payout_value0.000 HBD
pending_payout_value0.000 HBD
promoted0.000 HBD
body_length76
author_reputation148,197,449
root_title"Introduction to EOS: the Epic (blockchain) Operating System"
beneficiaries[]
max_accepted_payout1,000,000.000 HBD
percent_hbd10,000
post_id8,633,231
net_rshares0
@embermine-drake ·
Great introduction to EOS! We are happy to say that Embermine, Inc. has committed ourselves to helping in the funding, research, and development of this excellent and needed platform. 
We look forward to showing the world our smart contract deployment environment backed by the quick and powerful EOS! We were already well on our way working with both the Graphene and BitSharesDEX, now we have a chance to easily merge that development track with the development of the Smart Contract deployment module.
Very much looking forward to the Testnet launch!
properties (22)
authorembermine-drake
permlinkre-trogdor-introduction-to-eos-the-epic-blockchain-operating-system-20170531t093218619z
categoryeos
json_metadata{"tags":["eos"],"app":"steemit/0.1"}
created2017-05-31 09:32:21
last_update2017-05-31 09:32:21
depth1
children0
last_payout2017-06-07 09:32:21
cashout_time1969-12-31 23:59:59
total_payout_value0.000 HBD
curator_payout_value0.000 HBD
pending_payout_value0.000 HBD
promoted0.000 HBD
body_length553
author_reputation41,730,644,416
root_title"Introduction to EOS: the Epic (blockchain) Operating System"
beneficiaries[]
max_accepted_payout1,000,000.000 HBD
percent_hbd10,000
post_id3,988,679
net_rshares0
@exploringeos ·
Thanks this is good stuff! 

I started a podcast on EOS You can check it out here: http://exploringeos.com 

Let me know what you think :)
properties (22)
authorexploringeos
permlinkre-trogdor-introduction-to-eos-the-epic-blockchain-operating-system-20180530t151513695z
categoryeos
json_metadata{"tags":["eos"],"links":["http://exploringeos.com"],"app":"steemit/0.1"}
created2018-05-30 15:15:12
last_update2018-05-30 15:15:12
depth1
children0
last_payout2018-06-06 15:15:12
cashout_time1969-12-31 23:59:59
total_payout_value0.000 HBD
curator_payout_value0.000 HBD
pending_payout_value0.000 HBD
promoted0.000 HBD
body_length138
author_reputation135,557,951
root_title"Introduction to EOS: the Epic (blockchain) Operating System"
beneficiaries[]
max_accepted_payout1,000,000.000 HBD
percent_hbd10,000
post_id58,454,121
net_rshares0
@fernando.schmidt ·
@trogdor thanks for postig this and the video on YouTube, where I got the chance to know EOS. Actually I posted your video here on Steemit, if you have any problem with tha, I´ll take it out, thanks and congratulations.
properties (22)
authorfernando.schmidt
permlinkre-trogdor-introduction-to-eos-the-epic-blockchain-operating-system-20170603t013809431z
categoryeos
json_metadata{"tags":["eos"],"users":["trogdor"],"app":"steemit/0.1"}
created2017-06-03 01:38:00
last_update2017-06-03 01:38:00
depth1
children0
last_payout2017-06-10 01:38:00
cashout_time1969-12-31 23:59:59
total_payout_value0.000 HBD
curator_payout_value0.000 HBD
pending_payout_value0.000 HBD
promoted0.000 HBD
body_length219
author_reputation35,631,658
root_title"Introduction to EOS: the Epic (blockchain) Operating System"
beneficiaries[]
max_accepted_payout1,000,000.000 HBD
percent_hbd10,000
post_id4,091,196
net_rshares0
@flanny790 ·
Thanks @trogdor! This was very informative! I really think this is the future of blockchain technology and the future in general. 

PS. Love the name, that cartoon still cracks me up. Keep on burninating the country side.
properties (22)
authorflanny790
permlinkre-trogdor-introduction-to-eos-the-epic-blockchain-operating-system-20170908t030304607z
categoryeos
json_metadata{"tags":["eos"],"users":["trogdor"],"app":"steemit/0.1"}
created2017-09-08 03:03:03
last_update2017-09-08 03:03:03
depth1
children0
last_payout2017-09-15 03:03:03
cashout_time1969-12-31 23:59:59
total_payout_value0.000 HBD
curator_payout_value0.000 HBD
pending_payout_value0.000 HBD
promoted0.000 HBD
body_length221
author_reputation113,294,079
root_title"Introduction to EOS: the Epic (blockchain) Operating System"
beneficiaries[]
max_accepted_payout1,000,000.000 HBD
percent_hbd10,000
post_id14,210,612
net_rshares0
@freedomnation ·
$0.08
This is amazing, thank you for sharing! EOS - a revolution inside blockchain.
👍  
properties (23)
authorfreedomnation
permlinkre-trogdor-introduction-to-eos-the-epic-blockchain-operating-system-20170525t135348679z
categoryeos
json_metadata{"tags":["eos"],"app":"steemit/0.1"}
created2017-05-25 13:53:54
last_update2017-05-25 13:53:54
depth1
children1
last_payout2017-06-01 13:53:54
cashout_time1969-12-31 23:59:59
total_payout_value0.058 HBD
curator_payout_value0.018 HBD
pending_payout_value0.000 HBD
promoted0.000 HBD
body_length77
author_reputation3,691,951,933,327
root_title"Introduction to EOS: the Epic (blockchain) Operating System"
beneficiaries[]
max_accepted_payout1,000,000.000 HBD
percent_hbd10,000
post_id3,780,123
net_rshares56,201,170,567
author_curate_reward""
vote details (1)
@trogdor ·
Definitely, it all sounds pretty revolutionary to me!
properties (22)
authortrogdor
permlinkre-freedomnation-re-trogdor-introduction-to-eos-the-epic-blockchain-operating-system-20170525t202257431z
categoryeos
json_metadata{"tags":["eos"],"app":"steemit/0.1"}
created2017-05-25 20:22:51
last_update2017-05-25 20:22:51
depth2
children0
last_payout2017-06-01 20:22:51
cashout_time1969-12-31 23:59:59
total_payout_value0.000 HBD
curator_payout_value0.000 HBD
pending_payout_value0.000 HBD
promoted0.000 HBD
body_length53
author_reputation22,905,182,177,434
root_title"Introduction to EOS: the Epic (blockchain) Operating System"
beneficiaries[]
max_accepted_payout1,000,000.000 HBD
percent_hbd10,000
post_id3,793,049
net_rshares0
@gregario · (edited)
$0.09
Perhaps you could elaborate a bit regarding smart contracts. Or just point me in the direction of some reading. I really don´t get the concept. This is the paragraph I refer to:

"This supply is distributed to three different smart contracts which are selected based on stake-weighted voting. The additional supply may be simply destroyed by locking them away in a smart contract which prevents them from ever being used (eliminating inflation), or they can be distributed to decentralized administration (such as Steem), or centralized administration (such as the Ethereum foundation, EOS foundation, etc...)" .
👍  
properties (23)
authorgregario
permlinkre-trogdor-introduction-to-eos-the-epic-blockchain-operating-system-2017624t103969z
categoryeos
json_metadata{"app":"chainbb/0.2","format":"markdown+html","tags":[]}
created2017-06-24 13:02:21
last_update2017-06-24 13:03:18
depth1
children0
last_payout2017-07-01 13:02:21
cashout_time1969-12-31 23:59:59
total_payout_value0.086 HBD
curator_payout_value0.000 HBD
pending_payout_value0.000 HBD
promoted0.000 HBD
body_length612
author_reputation2,753,780,591,955
root_title"Introduction to EOS: the Epic (blockchain) Operating System"
beneficiaries
0.
accountchainbb
weight1,500
max_accepted_payout1,000,000.000 HBD
percent_hbd10,000
post_id5,906,302
net_rshares8,817,205,994
author_curate_reward""
vote details (1)
@gregario · (edited)
$0.09
Very interesting and informative post so far. Thank you.

You mention "gas restrictions" while talking about Ethereum processing speed. What does 

that mean?

I tried to resteem this post, but could not. Do you know why? Is it because the post is not very recent, maybe?

PS I see more than 90 replies, but only my vote. Maybe I am responding at the wrong place.
👍  
properties (23)
authorgregario
permlinkre-trogdor-introduction-to-eos-the-epic-blockchain-operating-system-2017624t9126908z
categoryeos
json_metadata{"app":"chainbb/0.2","format":"markdown+html","tags":[]}
created2017-06-24 12:11:21
last_update2017-06-24 12:38:00
depth1
children0
last_payout2017-07-01 12:11:21
cashout_time1969-12-31 23:59:59
total_payout_value0.086 HBD
curator_payout_value0.000 HBD
pending_payout_value0.000 HBD
promoted0.000 HBD
body_length363
author_reputation2,753,780,591,955
root_title"Introduction to EOS: the Epic (blockchain) Operating System"
beneficiaries
0.
accountchainbb
weight1,500
max_accepted_payout1,000,000.000 HBD
percent_hbd10,000
post_id5,901,332
net_rshares8,814,921,611
author_curate_reward""
vote details (1)
@gregario ·
$0.09
"There is also a constitutionally limited 5% annual increase in EOS supply which would be lowered to 0% ". 

This I like, I can´t help thinking about fractional reserve banking and fiat currencies when cryptocurrencies are discussed.
👍  
properties (23)
authorgregario
permlinkre-trogdor-introduction-to-eos-the-epic-blockchain-operating-system-2017624t9545247z
categoryeos
json_metadata{"app":"chainbb/0.2","format":"markdown+html","tags":[]}
created2017-06-24 12:54:06
last_update2017-06-24 12:54:06
depth1
children0
last_payout2017-07-01 12:54:06
cashout_time1969-12-31 23:59:59
total_payout_value0.086 HBD
curator_payout_value0.000 HBD
pending_payout_value0.000 HBD
promoted0.000 HBD
body_length233
author_reputation2,753,780,591,955
root_title"Introduction to EOS: the Epic (blockchain) Operating System"
beneficiaries
0.
accountchainbb
weight1,500
max_accepted_payout1,000,000.000 HBD
percent_hbd10,000
post_id5,905,468
net_rshares8,816,935,088
author_curate_reward""
vote details (1)
@gunthermarina080 ·
This article is very helpful to me to have a some knowledge about eos. Please make more and ill surely wait for the time that you have new listing. Keep up the good work!
properties (22)
authorgunthermarina080
permlinkpxpugh
categoryeos
json_metadata{"tags":["eos"],"app":"steemit/0.1"}
created2019-09-12 11:26:45
last_update2019-09-12 11:26:45
depth1
children0
last_payout2019-09-19 11:26:45
cashout_time1969-12-31 23:59:59
total_payout_value0.000 HBD
curator_payout_value0.000 HBD
pending_payout_value0.000 HBD
promoted0.000 HBD
body_length170
author_reputation823,871,922
root_title"Introduction to EOS: the Epic (blockchain) Operating System"
beneficiaries[]
max_accepted_payout1,000,000.000 HBD
percent_hbd10,000
post_id90,504,546
net_rshares0
@henok ·
Very interesting. Thanks for sharing! Depending on how this is done, it can potentially disrupt on-demand cloud services, like AWS EC2/Lambda.  But there are problems that would have to be solved: 

1. Ensure strict isolation of DAPP containers - Access only specific local resources. Ensure someone cannot develop malicious DAPPS intended to harm/scam other people on the network. 

2. Setting caps/limits -  Allow network participants to statically or dynamically adjust how much of their resources they want utilized. 

3. Speed - Running  a function on the blockchain must be fast, very fast. Otherwise, the types of operations will be limited to things that are not time-sensitive. Like batch processing work. 

I'm sure there are much more problems than this, but just a few things that I can think of.
👍  
properties (23)
authorhenok
permlinkre-trogdor-introduction-to-eos-the-epic-blockchain-operating-system-20170720t215352429z
categoryeos
json_metadata{"tags":["eos"],"app":"steemit/0.1"}
created2017-07-20 21:53:51
last_update2017-07-20 21:53:51
depth1
children0
last_payout2017-07-27 21:53:51
cashout_time1969-12-31 23:59:59
total_payout_value0.000 HBD
curator_payout_value0.000 HBD
pending_payout_value0.000 HBD
promoted0.000 HBD
body_length808
author_reputation18,135,536
root_title"Introduction to EOS: the Epic (blockchain) Operating System"
beneficiaries[]
max_accepted_payout1,000,000.000 HBD
percent_hbd10,000
post_id9,124,411
net_rshares1,160,674,348
author_curate_reward""
vote details (1)
@hms818 ·
$0.21
Desperately waiting to test EOS , once it gets released....I think this will be a game changer  for blockchain based technologies with some superior features.
👍  , , , , ,
properties (23)
authorhms818
permlinkre-trogdor-introduction-to-eos-the-epic-blockchain-operating-system-20170524t163714924z
categoryeos
json_metadata{"tags":["eos"],"app":"steemit/0.1"}
created2017-05-24 16:37:12
last_update2017-05-24 16:37:12
depth1
children1
last_payout2017-05-31 16:37:12
cashout_time1969-12-31 23:59:59
total_payout_value0.210 HBD
curator_payout_value0.002 HBD
pending_payout_value0.000 HBD
promoted0.000 HBD
body_length158
author_reputation11,503,740,391,093
root_title"Introduction to EOS: the Epic (blockchain) Operating System"
beneficiaries[]
max_accepted_payout1,000,000.000 HBD
percent_hbd10,000
post_id3,744,349
net_rshares157,088,285,435
author_curate_reward""
vote details (6)
@trogdor ·
I definitely agree! Thanks for commenting.
👍  ,
properties (23)
authortrogdor
permlinkre-hms818-re-trogdor-introduction-to-eos-the-epic-blockchain-operating-system-20170524t163809160z
categoryeos
json_metadata{"tags":["eos"],"app":"steemit/0.1"}
created2017-05-24 16:38:09
last_update2017-05-24 16:38:09
depth2
children0
last_payout2017-05-31 16:38:09
cashout_time1969-12-31 23:59:59
total_payout_value0.000 HBD
curator_payout_value0.000 HBD
pending_payout_value0.000 HBD
promoted0.000 HBD
body_length42
author_reputation22,905,182,177,434
root_title"Introduction to EOS: the Epic (blockchain) Operating System"
beneficiaries[]
max_accepted_payout1,000,000.000 HBD
percent_hbd10,000
post_id3,744,383
net_rshares697,067,842
author_curate_reward""
vote details (2)
@ico-reviews ·
We Covered EOS' ICO. Hope you'll find it helpful - https://coins.best/ico-reviews/eos/
👍  
properties (23)
authorico-reviews
permlinkre-trogdor-introduction-to-eos-the-epic-blockchain-operating-system-20170724t105009379z
categoryeos
json_metadata{"tags":["eos"],"links":["https://coins.best/ico-reviews/eos/"],"app":"steemit/0.1"}
created2017-07-24 10:50:15
last_update2017-07-24 10:50:15
depth1
children0
last_payout2017-07-31 10:50:15
cashout_time1969-12-31 23:59:59
total_payout_value0.000 HBD
curator_payout_value0.000 HBD
pending_payout_value0.000 HBD
promoted0.000 HBD
body_length86
author_reputation66,082,291,095
root_title"Introduction to EOS: the Epic (blockchain) Operating System"
beneficiaries[]
max_accepted_payout1,000,000.000 HBD
percent_hbd10,000
post_id9,519,126
net_rshares1,160,662,548
author_curate_reward""
vote details (1)
@imperfect-one ·
$0.14
i like the idea a lot :) Keep us informed about improvements. Followed :)
👍  
properties (23)
authorimperfect-one
permlinkre-trogdor-introduction-to-eos-the-epic-blockchain-operating-system-20170525t095646167z
categoryeos
json_metadata{"tags":["eos"],"app":"steemit/0.1"}
created2017-05-25 09:56:45
last_update2017-05-25 09:56:45
depth1
children1
last_payout2017-06-01 09:56:45
cashout_time1969-12-31 23:59:59
total_payout_value0.105 HBD
curator_payout_value0.035 HBD
pending_payout_value0.000 HBD
promoted0.000 HBD
body_length73
author_reputation14,794,792,589,844
root_title"Introduction to EOS: the Epic (blockchain) Operating System"
beneficiaries[]
max_accepted_payout1,000,000.000 HBD
percent_hbd10,000
post_id3,774,318
net_rshares104,370,552,031
author_curate_reward""
vote details (1)
@trogdor ·
Thanks, I'm hoping we will start to get more updates as soon as the Consensus conference is over.
properties (22)
authortrogdor
permlinkre-imperfect-one-re-trogdor-introduction-to-eos-the-epic-blockchain-operating-system-20170525t115143554z
categoryeos
json_metadata{"tags":["eos"],"app":"steemit/0.1"}
created2017-05-25 11:51:36
last_update2017-05-25 11:51:36
depth2
children0
last_payout2017-06-01 11:51:36
cashout_time1969-12-31 23:59:59
total_payout_value0.000 HBD
curator_payout_value0.000 HBD
pending_payout_value0.000 HBD
promoted0.000 HBD
body_length97
author_reputation22,905,182,177,434
root_title"Introduction to EOS: the Epic (blockchain) Operating System"
beneficiaries[]
max_accepted_payout1,000,000.000 HBD
percent_hbd10,000
post_id3,776,659
net_rshares0
@jbenticer ·
When is the next major catalyst for EOS? There are a lot of negative conspiracy theories circulating.
👍  
properties (23)
authorjbenticer
permlinkre-trogdor-introduction-to-eos-the-epic-blockchain-operating-system-20170903t232907993z
categoryeos
json_metadata{"tags":["eos"],"app":"steemit/0.1"}
created2017-09-03 23:29:09
last_update2017-09-03 23:29:09
depth1
children0
last_payout2017-09-10 23:29:09
cashout_time1969-12-31 23:59:59
total_payout_value0.000 HBD
curator_payout_value0.000 HBD
pending_payout_value0.000 HBD
promoted0.000 HBD
body_length101
author_reputation426,227,517,338
root_title"Introduction to EOS: the Epic (blockchain) Operating System"
beneficiaries[]
max_accepted_payout1,000,000.000 HBD
percent_hbd10,000
post_id13,790,769
net_rshares5,309,725,824
author_curate_reward""
vote details (1)
@jonnyrevolution ·
$0.19
Wow...thanks. Definitely signing up for the newsletter.
👍  ,
properties (23)
authorjonnyrevolution
permlinkre-trogdor-introduction-to-eos-the-epic-blockchain-operating-system-20170524t171000676z
categoryeos
json_metadata{"tags":["eos"],"app":"steemit/0.1"}
created2017-05-24 17:10:00
last_update2017-05-24 17:10:00
depth1
children1
last_payout2017-05-31 17:10:00
cashout_time1969-12-31 23:59:59
total_payout_value0.176 HBD
curator_payout_value0.012 HBD
pending_payout_value0.000 HBD
promoted0.000 HBD
body_length55
author_reputation6,856,797,960,121
root_title"Introduction to EOS: the Epic (blockchain) Operating System"
beneficiaries[]
max_accepted_payout1,000,000.000 HBD
percent_hbd10,000
post_id3,745,359
net_rshares139,250,793,846
author_curate_reward""
vote details (2)
@trogdor ·
Definitely, I'm hoping that they will start sending some updates after the Consensus conference is over.
properties (22)
authortrogdor
permlinkre-jonnyrevolution-re-trogdor-introduction-to-eos-the-epic-blockchain-operating-system-20170524t171841019z
categoryeos
json_metadata{"tags":["eos"],"app":"steemit/0.1"}
created2017-05-24 17:18:42
last_update2017-05-24 17:18:42
depth2
children0
last_payout2017-05-31 17:18:42
cashout_time1969-12-31 23:59:59
total_payout_value0.000 HBD
curator_payout_value0.000 HBD
pending_payout_value0.000 HBD
promoted0.000 HBD
body_length104
author_reputation22,905,182,177,434
root_title"Introduction to EOS: the Epic (blockchain) Operating System"
beneficiaries[]
max_accepted_payout1,000,000.000 HBD
percent_hbd10,000
post_id3,745,632
net_rshares0
@jubedube ·
$0.18
Wow, this looks incredibly exciting. Thank you so much for the write-up. I am getting on this newsletter.
👍  ,
properties (23)
authorjubedube
permlinkre-trogdor-introduction-to-eos-the-epic-blockchain-operating-system-20170524t194023431z
categoryeos
json_metadata{"tags":["eos"],"app":"steemit/0.1"}
created2017-05-24 19:40:21
last_update2017-05-24 19:40:21
depth1
children1
last_payout2017-05-31 19:40:21
cashout_time1969-12-31 23:59:59
total_payout_value0.146 HBD
curator_payout_value0.036 HBD
pending_payout_value0.000 HBD
promoted0.000 HBD
body_length105
author_reputation232,657,159,282
root_title"Introduction to EOS: the Epic (blockchain) Operating System"
beneficiaries[]
max_accepted_payout1,000,000.000 HBD
percent_hbd10,000
post_id3,750,870
net_rshares137,125,892,325
author_curate_reward""
vote details (2)
@trogdor ·
Thanks! I'm hoping that we'll start getting some updates sometime soon.
👍  
properties (23)
authortrogdor
permlinkre-jubedube-re-trogdor-introduction-to-eos-the-epic-blockchain-operating-system-20170524t200501832z
categoryeos
json_metadata{"tags":["eos"],"app":"steemit/0.1"}
created2017-05-24 20:05:03
last_update2017-05-24 20:05:03
depth2
children0
last_payout2017-05-31 20:05:03
cashout_time1969-12-31 23:59:59
total_payout_value0.000 HBD
curator_payout_value0.000 HBD
pending_payout_value0.000 HBD
promoted0.000 HBD
body_length71
author_reputation22,905,182,177,434
root_title"Introduction to EOS: the Epic (blockchain) Operating System"
beneficiaries[]
max_accepted_payout1,000,000.000 HBD
percent_hbd10,000
post_id3,751,753
net_rshares606,145,949
author_curate_reward""
vote details (1)
@jyezie ·
I stopped here: 
> Steem also has a higher female-to-male ratio of users than any other blockchain. 

How could you know that? That is just an assumption (with a lot of *ifs* maybe true but still).
👍  
properties (23)
authorjyezie
permlinkre-trogdor-introduction-to-eos-the-epic-blockchain-operating-system-20170531t210815990z
categoryeos
json_metadata{"tags":["eos"],"app":"steemit/0.1"}
created2017-05-31 21:08:15
last_update2017-05-31 21:08:15
depth1
children1
last_payout2017-06-07 21:08:15
cashout_time1969-12-31 23:59:59
total_payout_value0.000 HBD
curator_payout_value0.000 HBD
pending_payout_value0.000 HBD
promoted0.000 HBD
body_length197
author_reputation10,455,245,950,375
root_title"Introduction to EOS: the Epic (blockchain) Operating System"
beneficiaries[]
max_accepted_payout1,000,000.000 HBD
percent_hbd10,000
post_id4,008,303
net_rshares0
author_curate_reward""
vote details (1)
@trogdor ·
That's something that Dan said during his presentation. I don't know how he arrived at that result, but at least for the major blockchains, polls have been done in this area. This is from a quick google search which claims less than 2% of bitcoin users are female: https://cointelegraph.com/news/its-a-mans-world-only-176-of-bitcoin-community-are-women

I do remember seeing a post a while back that claimed more than 50% of Steemit users are female, not sure. Once again, this is Dan's claim, not mine, but I would guess it's probably true.
👍  
properties (23)
authortrogdor
permlinkre-jyezie-re-trogdor-introduction-to-eos-the-epic-blockchain-operating-system-20170531t222855438z
categoryeos
json_metadata{"tags":["eos"],"links":["https://cointelegraph.com/news/its-a-mans-world-only-176-of-bitcoin-community-are-women"],"app":"steemit/0.1"}
created2017-05-31 22:29:03
last_update2017-05-31 22:29:03
depth2
children0
last_payout2017-06-07 22:29:03
cashout_time1969-12-31 23:59:59
total_payout_value0.000 HBD
curator_payout_value0.000 HBD
pending_payout_value0.000 HBD
promoted0.000 HBD
body_length541
author_reputation22,905,182,177,434
root_title"Introduction to EOS: the Epic (blockchain) Operating System"
beneficiaries[]
max_accepted_payout1,000,000.000 HBD
percent_hbd10,000
post_id4,010,524
net_rshares0
author_curate_reward""
vote details (1)
@jyezie ·
$0.28
I still don't understand what this actually do. Will people running the nodes be actually running the OS?
👍  ,
properties (23)
authorjyezie
permlinkre-trogdor-introduction-to-eos-the-epic-blockchain-operating-system-20170531t213343728z
categoryeos
json_metadata{"tags":["eos"],"app":"steemit/0.1"}
created2017-05-31 21:33:45
last_update2017-05-31 21:33:45
depth1
children8
last_payout2017-06-07 21:33:45
cashout_time1969-12-31 23:59:59
total_payout_value0.212 HBD
curator_payout_value0.069 HBD
pending_payout_value0.000 HBD
promoted0.000 HBD
body_length105
author_reputation10,455,245,950,375
root_title"Introduction to EOS: the Epic (blockchain) Operating System"
beneficiaries[]
max_accepted_payout1,000,000.000 HBD
percent_hbd10,000
post_id4,009,078
net_rshares114,870,006,436
author_curate_reward""
vote details (2)
@trogdor ·
So, I'm not an expert, just a guy who is interested and trying to answer the same question as you. Basically, there will be many similarities to Bitshares and Steem, just more general. So, the system will be delegated proof of stake, which means (as far as I know) that only the witnesses are actually running the full EOS blockchain. Then many different users who are interested in specific apps (like Bitshares or Steem) can run significantly reduced code on their computer that interacts with the blockchain, but only with the data from the app they are interested in. That's my naive understanding. I need to learn more.
👍  , , , ,
properties (23)
authortrogdor
permlinkre-jyezie-re-trogdor-introduction-to-eos-the-epic-blockchain-operating-system-20170531t223250892z
categoryeos
json_metadata{"tags":["eos"],"app":"steemit/0.1"}
created2017-05-31 22:32:57
last_update2017-05-31 22:32:57
depth2
children7
last_payout2017-06-07 22:32:57
cashout_time1969-12-31 23:59:59
total_payout_value0.000 HBD
curator_payout_value0.000 HBD
pending_payout_value0.000 HBD
promoted0.000 HBD
body_length624
author_reputation22,905,182,177,434
root_title"Introduction to EOS: the Epic (blockchain) Operating System"
beneficiaries[]
max_accepted_payout1,000,000.000 HBD
percent_hbd10,000
post_id4,010,626
net_rshares3,067,909,941
author_curate_reward""
vote details (5)
@jyezie ·
They are confusing me by calling it an operating system. For now I will just summarize it as a smarter Ethereum platform. 
Thanks for your post.
👍  
properties (23)
authorjyezie
permlinkre-trogdor-re-jyezie-re-trogdor-introduction-to-eos-the-epic-blockchain-operating-system-20170601t075112808z
categoryeos
json_metadata{"tags":["eos"],"app":"steemit/0.1"}
created2017-06-01 07:51:12
last_update2017-06-01 07:51:12
depth3
children1
last_payout2017-06-08 07:51:12
cashout_time1969-12-31 23:59:59
total_payout_value0.000 HBD
curator_payout_value0.000 HBD
pending_payout_value0.000 HBD
promoted0.000 HBD
body_length144
author_reputation10,455,245,950,375
root_title"Introduction to EOS: the Epic (blockchain) Operating System"
beneficiaries[]
max_accepted_payout1,000,000.000 HBD
percent_hbd10,000
post_id4,023,163
net_rshares0
author_curate_reward""
vote details (1)
@surfyogi ·
$9.41
I assume STEEM is a more "application specific" blockchain, and EOS will be more Ethereum based and generic, to run many kinds of apps.
To me, it's very interesting that Dan wants to work with Ethereum at all. Here is someone that has "rolled their own" blockchain and is now working with Ethereum, so I'm thinking he learned something from Brenden and BAT?
👍  , ,
properties (23)
authorsurfyogi
permlinkre-trogdor-re-jyezie-re-trogdor-introduction-to-eos-the-epic-blockchain-operating-system-20170704t041727527z
categoryeos
json_metadata{"tags":["eos"],"app":"steemit/0.1"}
created2017-07-04 04:17:30
last_update2017-07-04 04:17:30
depth3
children4
last_payout2017-07-11 04:17:30
cashout_time1969-12-31 23:59:59
total_payout_value7.941 HBD
curator_payout_value1.470 HBD
pending_payout_value0.000 HBD
promoted0.000 HBD
body_length357
author_reputation31,155,045,810,316
root_title"Introduction to EOS: the Epic (blockchain) Operating System"
beneficiaries[]
max_accepted_payout1,000,000.000 HBD
percent_hbd10,000
post_id7,228,742
net_rshares1,436,966,584,343
author_curate_reward""
vote details (3)
@kay001 ·
This sounds like an interesti ng twechnology. If, we are to go by the edges it has compared to Ethereum, then Ethereum better improve on their tech or EOS has a chance to take over.
Am looking forward to this.
properties (22)
authorkay001
permlinkre-trogdor-introduction-to-eos-the-epic-blockchain-operating-system-20170622t075000797z
categoryeos
json_metadata{"tags":["eos"],"app":"steemit/0.1"}
created2017-06-22 07:50:09
last_update2017-06-22 07:50:09
depth1
children0
last_payout2017-06-29 07:50:09
cashout_time1969-12-31 23:59:59
total_payout_value0.000 HBD
curator_payout_value0.000 HBD
pending_payout_value0.000 HBD
promoted0.000 HBD
body_length209
author_reputation-58,470,171,352
root_title"Introduction to EOS: the Epic (blockchain) Operating System"
beneficiaries[]
max_accepted_payout1,000,000.000 HBD
percent_hbd10,000
post_id5,600,673
net_rshares0
@kelvc ·
how do i sign up for the mailing list?
properties (22)
authorkelvc
permlinkre-trogdor-introduction-to-eos-the-epic-blockchain-operating-system-20170527t005716347z
categoryeos
json_metadata{"tags":["eos"],"app":"steemit/0.1"}
created2017-05-27 00:57:30
last_update2017-05-27 00:57:30
depth1
children2
last_payout2017-06-03 00:57:30
cashout_time1969-12-31 23:59:59
total_payout_value0.000 HBD
curator_payout_value0.000 HBD
pending_payout_value0.000 HBD
promoted0.000 HBD
body_length38
author_reputation40,367,975,055
root_title"Introduction to EOS: the Epic (blockchain) Operating System"
beneficiaries[]
max_accepted_payout1,000,000.000 HBD
percent_hbd10,000
post_id3,838,016
net_rshares0
@trogdor ·
Hi Kelvin, you can sign up at https://eos.io
The sign up is pretty much the only thing on the site.
properties (22)
authortrogdor
permlinkre-kelvc-re-trogdor-introduction-to-eos-the-epic-blockchain-operating-system-20170527t010610471z
categoryeos
json_metadata{"tags":["eos"],"links":["https://eos.io"],"app":"steemit/0.1"}
created2017-05-27 01:06:12
last_update2017-05-27 01:06:12
depth2
children1
last_payout2017-06-03 01:06:12
cashout_time1969-12-31 23:59:59
total_payout_value0.000 HBD
curator_payout_value0.000 HBD
pending_payout_value0.000 HBD
promoted0.000 HBD
body_length99
author_reputation22,905,182,177,434
root_title"Introduction to EOS: the Epic (blockchain) Operating System"
beneficiaries[]
max_accepted_payout1,000,000.000 HBD
percent_hbd10,000
post_id3,838,201
net_rshares0
@kelvc ·
whoops! Thanks!
properties (22)
authorkelvc
permlinkre-trogdor-re-kelvc-re-trogdor-introduction-to-eos-the-epic-blockchain-operating-system-20170527t010741297z
categoryeos
json_metadata{"tags":["eos"],"app":"steemit/0.1"}
created2017-05-27 01:07:57
last_update2017-05-27 01:07:57
depth3
children0
last_payout2017-06-03 01:07:57
cashout_time1969-12-31 23:59:59
total_payout_value0.000 HBD
curator_payout_value0.000 HBD
pending_payout_value0.000 HBD
promoted0.000 HBD
body_length15
author_reputation40,367,975,055
root_title"Introduction to EOS: the Epic (blockchain) Operating System"
beneficiaries[]
max_accepted_payout1,000,000.000 HBD
percent_hbd10,000
post_id3,838,235
net_rshares0
@markpluto ·
$0.14
Intriguing article! This is some good information. I'll be reading more of your posts.
👍  ,
properties (23)
authormarkpluto
permlinkre-trogdor-introduction-to-eos-the-epic-blockchain-operating-system-20170525t071129232z
categoryeos
json_metadata{"tags":["eos"],"app":"steemit/0.1"}
created2017-05-25 07:11:27
last_update2017-05-25 07:11:27
depth1
children0
last_payout2017-06-01 07:11:27
cashout_time1969-12-31 23:59:59
total_payout_value0.105 HBD
curator_payout_value0.034 HBD
pending_payout_value0.000 HBD
promoted0.000 HBD
body_length86
author_reputation147,786,950,782
root_title"Introduction to EOS: the Epic (blockchain) Operating System"
beneficiaries[]
max_accepted_payout1,000,000.000 HBD
percent_hbd10,000
post_id3,770,617
net_rshares105,576,016,796
author_curate_reward""
vote details (2)
@matt-a ·
$0.17
Hey, man!  Care if I copy/paste this into my EOS talk video?  Of course, linking to this post as well.  

Side note:  Dan said they're throwing together a well-produced version of his talks.  Just a heads up on something to look forward to!
👍  
properties (23)
authormatt-a
permlinkre-trogdor-introduction-to-eos-the-epic-blockchain-operating-system-20170527t035428376z
categoryeos
json_metadata{"tags":["eos"],"app":"steemit/0.1"}
created2017-05-27 03:54:42
last_update2017-05-27 03:54:42
depth1
children3
last_payout2017-06-03 03:54:42
cashout_time1969-12-31 23:59:59
total_payout_value0.127 HBD
curator_payout_value0.042 HBD
pending_payout_value0.000 HBD
promoted0.000 HBD
body_length240
author_reputation34,621,295,577,150
root_title"Introduction to EOS: the Epic (blockchain) Operating System"
beneficiaries[]
max_accepted_payout1,000,000.000 HBD
percent_hbd10,000
post_id3,841,973
net_rshares116,472,049,079
author_curate_reward""
vote details (1)
@trogdor ·
Sure thing, go ahead. And thanks for the heads up!
properties (22)
authortrogdor
permlinkre-matt-a-re-trogdor-introduction-to-eos-the-epic-blockchain-operating-system-20170527t135358012z
categoryeos
json_metadata{"tags":["eos"],"app":"steemit/0.1"}
created2017-05-27 13:54:03
last_update2017-05-27 13:54:03
depth2
children2
last_payout2017-06-03 13:54:03
cashout_time1969-12-31 23:59:59
total_payout_value0.000 HBD
curator_payout_value0.000 HBD
pending_payout_value0.000 HBD
promoted0.000 HBD
body_length50
author_reputation22,905,182,177,434
root_title"Introduction to EOS: the Epic (blockchain) Operating System"
beneficiaries[]
max_accepted_payout1,000,000.000 HBD
percent_hbd10,000
post_id3,853,661
net_rshares0
@matt-a ·
Awesome, thanks!  You're welcome, just paying respects and giving credit where it's due.

Also, super glad to see someone reppin' my boy Trogdor!!!
properties (22)
authormatt-a
permlinkre-trogdor-re-matt-a-re-trogdor-introduction-to-eos-the-epic-blockchain-operating-system-20170527t161640026z
categoryeos
json_metadata{"tags":["eos"],"app":"steemit/0.1"}
created2017-05-27 16:16:51
last_update2017-05-27 16:16:51
depth3
children0
last_payout2017-06-03 16:16:51
cashout_time1969-12-31 23:59:59
total_payout_value0.000 HBD
curator_payout_value0.000 HBD
pending_payout_value0.000 HBD
promoted0.000 HBD
body_length147
author_reputation34,621,295,577,150
root_title"Introduction to EOS: the Epic (blockchain) Operating System"
beneficiaries[]
max_accepted_payout1,000,000.000 HBD
percent_hbd10,000
post_id3,857,938
net_rshares0
@matt-a · (edited)
Aaaaaand, it's up!  Thanks again.

**EDIT:**  It's actually too long to fit in the description so I'm just going to add the TL;DR and link to the full article, is that cool.  Thanks again!  Following ya.
properties (22)
authormatt-a
permlinkre-trogdor-re-matt-a-re-trogdor-introduction-to-eos-the-epic-blockchain-operating-system-20170527t161954172z
categoryeos
json_metadata{"tags":["eos"],"app":"steemit/0.1"}
created2017-05-27 16:20:06
last_update2017-05-27 17:39:48
depth3
children0
last_payout2017-06-03 16:20:06
cashout_time1969-12-31 23:59:59
total_payout_value0.000 HBD
curator_payout_value0.000 HBD
pending_payout_value0.000 HBD
promoted0.000 HBD
body_length203
author_reputation34,621,295,577,150
root_title"Introduction to EOS: the Epic (blockchain) Operating System"
beneficiaries[]
max_accepted_payout1,000,000.000 HBD
percent_hbd10,000
post_id3,858,053
net_rshares0
@michaelstobiersk ·
$0.14
Thank you for sharing this outstanding information! ☆☆☆☆☆😎
👍  
properties (23)
authormichaelstobiersk
permlinkre-trogdor-introduction-to-eos-the-epic-blockchain-operating-system-20170525t060604146z
categoryeos
json_metadata{"tags":["eos"],"app":"steemit/0.1"}
created2017-05-25 06:06:06
last_update2017-05-25 06:06:06
depth1
children1
last_payout2017-06-01 06:06:06
cashout_time1969-12-31 23:59:59
total_payout_value0.103 HBD
curator_payout_value0.033 HBD
pending_payout_value0.000 HBD
promoted0.000 HBD
body_length58
author_reputation28,639,834,562,096
root_title"Introduction to EOS: the Epic (blockchain) Operating System"
beneficiaries[]
max_accepted_payout1,000,000.000 HBD
percent_hbd10,000
post_id3,769,059
net_rshares104,370,552,031
author_curate_reward""
vote details (1)
@trogdor ·
No problem, thanks for checking out the post!
properties (22)
authortrogdor
permlinkre-michaelstobiersk-re-trogdor-introduction-to-eos-the-epic-blockchain-operating-system-20170525t115042754z
categoryeos
json_metadata{"tags":["eos"],"app":"steemit/0.1"}
created2017-05-25 11:50:36
last_update2017-05-25 11:50:36
depth2
children0
last_payout2017-06-01 11:50:36
cashout_time1969-12-31 23:59:59
total_payout_value0.000 HBD
curator_payout_value0.000 HBD
pending_payout_value0.000 HBD
promoted0.000 HBD
body_length45
author_reputation22,905,182,177,434
root_title"Introduction to EOS: the Epic (blockchain) Operating System"
beneficiaries[]
max_accepted_payout1,000,000.000 HBD
percent_hbd10,000
post_id3,776,632
net_rshares0
@mmikhail ·
You are working on a very promising project. Thanks for the article! 
Looking forward to see new posts on SteemIt about EOS.
👍  
properties (23)
authormmikhail
permlinkre-trogdor-introduction-to-eos-the-epic-blockchain-operating-system-20170704t085549314z
categoryeos
json_metadata{"tags":["eos"],"app":"steemit/0.1"}
created2017-07-04 08:55:48
last_update2017-07-04 08:55:48
depth1
children0
last_payout2017-07-11 08:55:48
cashout_time1969-12-31 23:59:59
total_payout_value0.000 HBD
curator_payout_value0.000 HBD
pending_payout_value0.000 HBD
promoted0.000 HBD
body_length124
author_reputation8,718,729,530
root_title"Introduction to EOS: the Epic (blockchain) Operating System"
beneficiaries[]
max_accepted_payout1,000,000.000 HBD
percent_hbd10,000
post_id7,250,598
net_rshares236,260,314
author_curate_reward""
vote details (1)
@moharlevi ·
Good article. Ill have to check out the OS. 

Here's my understanding of some of the key points that were written:

-Blocksize and Gas restrictions are holding Bitcoin and Ethereum from competing with more mainstream businesses.

-Bitshares and Graphine in 2015 helped to achieve 100,000 transactions per second on a single machine and 18,000 transactions on a distributed network.

-EOS blockchain operating system helps support 1000s of decentralized apps.

-EOS allows you to choose what nodes to run therefore allowing you to choose what applications to support.

-EOS tokens allow consumers to hold shares in company, and directly influence ability to share with other parties.
properties (22)
authormoharlevi
permlinkre-trogdor-introduction-to-eos-the-epic-blockchain-operating-system-20170525t203208996z
categoryeos
json_metadata{"tags":["eos"],"app":"steemit/0.1"}
created2017-05-25 20:32:15
last_update2017-05-25 20:32:15
depth1
children0
last_payout2017-06-01 20:32:15
cashout_time1969-12-31 23:59:59
total_payout_value0.000 HBD
curator_payout_value0.000 HBD
pending_payout_value0.000 HBD
promoted0.000 HBD
body_length682
author_reputation16,020,903,750
root_title"Introduction to EOS: the Epic (blockchain) Operating System"
beneficiaries[]
max_accepted_payout1,000,000.000 HBD
percent_hbd10,000
post_id3,793,412
net_rshares0
@nathanjones ·
$0.16
Thanks @trogdor for this great expanation of EOS.  This is the project that i am most excited for right now.  Do you know when we will be able to invest, buy EOS tokens?
👍  
properties (23)
authornathanjones
permlinkre-trogdor-introduction-to-eos-the-epic-blockchain-operating-system-20170525t175416690z
categoryeos
json_metadata{"tags":["eos"],"users":["trogdor"],"app":"steemit/0.1"}
created2017-05-25 17:54:18
last_update2017-05-25 17:54:18
depth1
children2
last_payout2017-06-01 17:54:18
cashout_time1969-12-31 23:59:59
total_payout_value0.116 HBD
curator_payout_value0.039 HBD
pending_payout_value0.000 HBD
promoted0.000 HBD
body_length169
author_reputation1,260,270,751,640
root_title"Introduction to EOS: the Epic (blockchain) Operating System"
beneficiaries[]
max_accepted_payout1,000,000.000 HBD
percent_hbd10,000
post_id3,788,047
net_rshares112,402,341,134
author_curate_reward""
vote details (1)
@trogdor ·
I haven't heard much about when we'll be able to buy the tokens. I know the roadmap includes testing the code over the summer, and the timescale for development for Dan's projects has been quite fast in the past, i.e. Steem was built and launched in a matter of months.
properties (22)
authortrogdor
permlinkre-nathanjones-re-trogdor-introduction-to-eos-the-epic-blockchain-operating-system-20170525t194911839z
categoryeos
json_metadata{"tags":["eos"],"app":"steemit/0.1"}
created2017-05-25 19:49:03
last_update2017-05-25 19:49:03
depth2
children1
last_payout2017-06-01 19:49:03
cashout_time1969-12-31 23:59:59
total_payout_value0.000 HBD
curator_payout_value0.000 HBD
pending_payout_value0.000 HBD
promoted0.000 HBD
body_length269
author_reputation22,905,182,177,434
root_title"Introduction to EOS: the Epic (blockchain) Operating System"
beneficiaries[]
max_accepted_payout1,000,000.000 HBD
percent_hbd10,000
post_id3,791,809
net_rshares0
@nathanjones ·
Thanks, i will keep am eye out for more info.
properties (22)
authornathanjones
permlinkre-trogdor-re-nathanjones-re-trogdor-introduction-to-eos-the-epic-blockchain-operating-system-20170525t195848065z
categoryeos
json_metadata{"tags":["eos"],"app":"steemit/0.1"}
created2017-05-25 19:58:51
last_update2017-05-25 19:58:51
depth3
children0
last_payout2017-06-01 19:58:51
cashout_time1969-12-31 23:59:59
total_payout_value0.000 HBD
curator_payout_value0.000 HBD
pending_payout_value0.000 HBD
promoted0.000 HBD
body_length45
author_reputation1,260,270,751,640
root_title"Introduction to EOS: the Epic (blockchain) Operating System"
beneficiaries[]
max_accepted_payout1,000,000.000 HBD
percent_hbd10,000
post_id3,792,156
net_rshares0
@nationalpark ·
Thanks for the article. Very helpful
properties (22)
authornationalpark
permlinkre-trogdor-introduction-to-eos-the-epic-blockchain-operating-system-20170626t201259098z
categoryeos
json_metadata{"tags":["eos"],"app":"steemit/0.1"}
created2017-06-26 20:13:00
last_update2017-06-26 20:13:00
depth1
children0
last_payout2017-07-03 20:13:00
cashout_time1969-12-31 23:59:59
total_payout_value0.000 HBD
curator_payout_value0.000 HBD
pending_payout_value0.000 HBD
promoted0.000 HBD
body_length36
author_reputation20,784,116,939,091
root_title"Introduction to EOS: the Epic (blockchain) Operating System"
beneficiaries[]
max_accepted_payout1,000,000.000 HBD
percent_hbd10,000
post_id6,228,701
net_rshares0
@niann ·
$0.17
This is a fantastic idea! I've never heard of the project before this post, thank you very much for introducing me to it!
👍  
properties (23)
authorniann
permlinkre-trogdor-introduction-to-eos-the-epic-blockchain-operating-system-20170527t033619090z
categoryeos
json_metadata{"tags":["eos"],"app":"steemit/0.1"}
created2017-05-27 03:36:45
last_update2017-05-27 03:36:45
depth1
children1
last_payout2017-06-03 03:36:45
cashout_time1969-12-31 23:59:59
total_payout_value0.127 HBD
curator_payout_value0.042 HBD
pending_payout_value0.000 HBD
promoted0.000 HBD
body_length121
author_reputation83,874,595,330
root_title"Introduction to EOS: the Epic (blockchain) Operating System"
beneficiaries[]
max_accepted_payout1,000,000.000 HBD
percent_hbd10,000
post_id3,841,609
net_rshares116,472,049,079
author_curate_reward""
vote details (1)
@trogdor ·
No problem, thanks for reading!
👍  
properties (23)
authortrogdor
permlinkre-niann-re-trogdor-introduction-to-eos-the-epic-blockchain-operating-system-20170527t135422990z
categoryeos
json_metadata{"tags":["eos"],"app":"steemit/0.1"}
created2017-05-27 13:54:27
last_update2017-05-27 13:54:27
depth2
children0
last_payout2017-06-03 13:54:27
cashout_time1969-12-31 23:59:59
total_payout_value0.000 HBD
curator_payout_value0.000 HBD
pending_payout_value0.000 HBD
promoted0.000 HBD
body_length31
author_reputation22,905,182,177,434
root_title"Introduction to EOS: the Epic (blockchain) Operating System"
beneficiaries[]
max_accepted_payout1,000,000.000 HBD
percent_hbd10,000
post_id3,853,675
net_rshares1,469,350,304
author_curate_reward""
vote details (1)
@noisy ·
from where did you got those slides?
👍  
properties (23)
authornoisy
permlinkre-trogdor-introduction-to-eos-the-epic-blockchain-operating-system-20170524t173709700z
categoryeos
json_metadata{"tags":["eos"],"app":"steemit/0.1"}
created2017-05-24 17:37:09
last_update2017-05-24 17:37:09
depth1
children3
last_payout2017-05-31 17:37:09
cashout_time1969-12-31 23:59:59
total_payout_value0.000 HBD
curator_payout_value0.000 HBD
pending_payout_value0.000 HBD
promoted0.000 HBD
body_length36
author_reputation59,974,373,499,600
root_title"Introduction to EOS: the Epic (blockchain) Operating System"
beneficiaries[]
max_accepted_payout1,000,000.000 HBD
percent_hbd10,000
post_id3,746,225
net_rshares697,067,842
author_curate_reward""
vote details (1)
@trogdor ·
Drew them with GIMP :)
👍  
properties (23)
authortrogdor
permlinkre-noisy-re-trogdor-introduction-to-eos-the-epic-blockchain-operating-system-20170524t175359431z
categoryeos
json_metadata{"tags":["eos"],"app":"steemit/0.1"}
created2017-05-24 17:54:00
last_update2017-05-24 17:54:00
depth2
children2
last_payout2017-05-31 17:54:00
cashout_time1969-12-31 23:59:59
total_payout_value0.000 HBD
curator_payout_value0.000 HBD
pending_payout_value0.000 HBD
promoted0.000 HBD
body_length22
author_reputation22,905,182,177,434
root_title"Introduction to EOS: the Epic (blockchain) Operating System"
beneficiaries[]
max_accepted_payout1,000,000.000 HBD
percent_hbd10,000
post_id3,746,758
net_rshares697,067,842
author_curate_reward""
vote details (1)
@noisy ·
no way. They are like from presentation :)
👍  
properties (23)
authornoisy
permlinkre-trogdor-re-noisy-re-trogdor-introduction-to-eos-the-epic-blockchain-operating-system-20170524t175522449z
categoryeos
json_metadata{"tags":["eos"],"app":"steemit/0.1"}
created2017-05-24 17:55:21
last_update2017-05-24 17:55:21
depth3
children1
last_payout2017-05-31 17:55:21
cashout_time1969-12-31 23:59:59
total_payout_value0.000 HBD
curator_payout_value0.000 HBD
pending_payout_value0.000 HBD
promoted0.000 HBD
body_length42
author_reputation59,974,373,499,600
root_title"Introduction to EOS: the Epic (blockchain) Operating System"
beneficiaries[]
max_accepted_payout1,000,000.000 HBD
percent_hbd10,000
post_id3,746,788
net_rshares666,760,544
author_curate_reward""
vote details (1)
@notimecrypto ·
$0.14
That looks promising!
👍  ,
properties (23)
authornotimecrypto
permlinkre-trogdor-introduction-to-eos-the-epic-blockchain-operating-system-20170703t211641390z
categoryeos
json_metadata{"tags":["eos"],"app":"steemit/0.1"}
created2017-07-03 21:16:42
last_update2017-07-03 21:16:42
depth1
children0
last_payout2017-07-10 21:16:42
cashout_time1969-12-31 23:59:59
total_payout_value0.138 HBD
curator_payout_value0.000 HBD
pending_payout_value0.000 HBD
promoted0.000 HBD
body_length21
author_reputation21,204,542,647
root_title"Introduction to EOS: the Epic (blockchain) Operating System"
beneficiaries[]
max_accepted_payout1,000,000.000 HBD
percent_hbd10,000
post_id7,194,629
net_rshares20,913,982,564
author_curate_reward""
vote details (2)
@peterchen145 ·
$0.14
hi there! great job!
may I translate this article to Chinese and post with my steem account?
👍  
properties (23)
authorpeterchen145
permlinkre-trogdor-introduction-to-eos-the-epic-blockchain-operating-system-20170525t094935393z
categoryeos
json_metadata{"tags":["eos"],"app":"steemit/0.1"}
created2017-05-25 09:49:36
last_update2017-05-25 09:49:36
depth1
children1
last_payout2017-06-01 09:49:36
cashout_time1969-12-31 23:59:59
total_payout_value0.105 HBD
curator_payout_value0.035 HBD
pending_payout_value0.000 HBD
promoted0.000 HBD
body_length92
author_reputation8,737,186,524,298
root_title"Introduction to EOS: the Epic (blockchain) Operating System"
beneficiaries[]
max_accepted_payout1,000,000.000 HBD
percent_hbd10,000
post_id3,774,178
net_rshares104,370,552,031
author_curate_reward""
vote details (1)
@trogdor ·
Thanks! Feel free to translate, and thanks for asking :)
properties (22)
authortrogdor
permlinkre-peterchen145-re-trogdor-introduction-to-eos-the-epic-blockchain-operating-system-20170525t115112661z
categoryeos
json_metadata{"tags":["eos"],"app":"steemit/0.1"}
created2017-05-25 11:51:06
last_update2017-05-25 11:51:06
depth2
children0
last_payout2017-06-01 11:51:06
cashout_time1969-12-31 23:59:59
total_payout_value0.000 HBD
curator_payout_value0.000 HBD
pending_payout_value0.000 HBD
promoted0.000 HBD
body_length56
author_reputation22,905,182,177,434
root_title"Introduction to EOS: the Epic (blockchain) Operating System"
beneficiaries[]
max_accepted_payout1,000,000.000 HBD
percent_hbd10,000
post_id3,776,645
net_rshares0
@pnc ·
$0.22
Well written. Congratulation for serving this to the community. Upvoted...this surely need tips. The function is coming soon and it will make it easy to tips a post. thks
👍  , , , ,
properties (23)
authorpnc
permlinkre-trogdor-introduction-to-eos-the-epic-blockchain-operating-system-20170524t194556313z
categoryeos
json_metadata{"tags":["eos"],"app":"steemit/0.1"}
created2017-05-24 19:45:57
last_update2017-05-24 19:45:57
depth1
children1
last_payout2017-05-31 19:45:57
cashout_time1969-12-31 23:59:59
total_payout_value0.183 HBD
curator_payout_value0.032 HBD
pending_payout_value0.000 HBD
promoted0.000 HBD
body_length170
author_reputation31,713,611,208,250
root_title"Introduction to EOS: the Epic (blockchain) Operating System"
beneficiaries[]
max_accepted_payout1,000,000.000 HBD
percent_hbd10,000
post_id3,751,049
net_rshares160,175,505,362
author_curate_reward""
vote details (5)
@trogdor ·
Thanks! I hadn't heard about the tip function yet. I need to spend some time looking into the updates coming up soon.
👍  
properties (23)
authortrogdor
permlinkre-pnc-re-trogdor-introduction-to-eos-the-epic-blockchain-operating-system-20170524t200344751z
categoryeos
json_metadata{"tags":["eos"],"app":"steemit/0.1"}
created2017-05-24 20:03:45
last_update2017-05-24 20:03:45
depth2
children0
last_payout2017-05-31 20:03:45
cashout_time1969-12-31 23:59:59
total_payout_value0.000 HBD
curator_payout_value0.000 HBD
pending_payout_value0.000 HBD
promoted0.000 HBD
body_length117
author_reputation22,905,182,177,434
root_title"Introduction to EOS: the Epic (blockchain) Operating System"
beneficiaries[]
max_accepted_payout1,000,000.000 HBD
percent_hbd10,000
post_id3,751,700
net_rshares0
author_curate_reward""
vote details (1)
@robertgenito ·
$3.97
Very exciting! Anyone remember when BitShares was "ProtoShares"?
👍  , , , , , , , , ,
properties (23)
authorrobertgenito
permlinkre-trogdor-introduction-to-eos-the-epic-blockchain-operating-system-20170620t082623917z
categoryeos
json_metadata{"tags":["eos"],"app":"steemit/0.1"}
created2017-06-20 08:26:24
last_update2017-06-20 08:26:24
depth1
children1
last_payout2017-06-27 08:26:24
cashout_time1969-12-31 23:59:59
total_payout_value2.984 HBD
curator_payout_value0.990 HBD
pending_payout_value0.000 HBD
promoted0.000 HBD
body_length64
author_reputation7,257,911,690,980
root_title"Introduction to EOS: the Epic (blockchain) Operating System"
beneficiaries[]
max_accepted_payout1,000,000.000 HBD
percent_hbd10,000
post_id5,332,122
net_rshares216,833,999,530
author_curate_reward""
vote details (10)
@trogdor ·
It's been a while now :p I think with EOS we might see Bitshares 3.0 built on top of it.
👍  
properties (23)
authortrogdor
permlinkre-robertgenito-re-trogdor-introduction-to-eos-the-epic-blockchain-operating-system-20170620t130256099z
categoryeos
json_metadata{"tags":["eos"],"app":"steemit/0.1"}
created2017-06-20 13:02:57
last_update2017-06-20 13:02:57
depth2
children0
last_payout2017-06-27 13:02:57
cashout_time1969-12-31 23:59:59
total_payout_value0.000 HBD
curator_payout_value0.000 HBD
pending_payout_value0.000 HBD
promoted0.000 HBD
body_length88
author_reputation22,905,182,177,434
root_title"Introduction to EOS: the Epic (blockchain) Operating System"
beneficiaries[]
max_accepted_payout1,000,000.000 HBD
percent_hbd10,000
post_id5,348,386
net_rshares0
author_curate_reward""
vote details (1)
@rocking-dave ·
This sounds really interesting. I'm not sure I understand it all yet, but I will surely keep an eye on this and read into it a bit more. Thanks for the in depth explanation.
properties (22)
authorrocking-dave
permlinkre-trogdor-introduction-to-eos-the-epic-blockchain-operating-system-20170528t084101334z
categoryeos
json_metadata{"tags":["eos"],"app":"steemit/0.1"}
created2017-05-28 08:41:03
last_update2017-05-28 08:41:03
depth1
children0
last_payout2017-06-04 08:41:03
cashout_time1969-12-31 23:59:59
total_payout_value0.000 HBD
curator_payout_value0.000 HBD
pending_payout_value0.000 HBD
promoted0.000 HBD
body_length173
author_reputation4,146,063,643,264
root_title"Introduction to EOS: the Epic (blockchain) Operating System"
beneficiaries[]
max_accepted_payout1,000,000.000 HBD
percent_hbd10,000
post_id3,881,200
net_rshares0
@rok-sivante · (edited)
$0.20
nicely written. and adding the video presentation for ease of access for other readers:

https://www.pscp.tv/w/1YpJknevAnEGj
👍  , , , , ,
properties (23)
authorrok-sivante
permlinkre-trogdor-introduction-to-eos-the-epic-blockchain-operating-system-20170524t163745197z
categoryeos
json_metadata{"tags":["eos"],"links":["https://www.pscp.tv/w/1YpJknevAnEGj"],"app":"steemit/0.1"}
created2017-05-24 16:37:45
last_update2017-05-24 19:22:57
depth1
children2
last_payout2017-05-31 16:37:45
cashout_time1969-12-31 23:59:59
total_payout_value0.198 HBD
curator_payout_value0.003 HBD
pending_payout_value0.000 HBD
promoted0.000 HBD
body_length124
author_reputation664,045,451,891,191
root_title"Introduction to EOS: the Epic (blockchain) Operating System"
beneficiaries[]
max_accepted_payout1,000,000.000 HBD
percent_hbd10,000
post_id3,744,365
net_rshares148,750,256,502
author_curate_reward""
vote details (6)
@trogdor ·
Great, thanks for adding the video! Fun fact about Brock Pierce: he once starred in the Mighty Ducks :)
👍  , , ,
properties (23)
authortrogdor
permlinkre-rok-sivante-re-trogdor-introduction-to-eos-the-epic-blockchain-operating-system-20170524t164041440z
categoryeos
json_metadata{"tags":["eos"],"app":"steemit/0.1"}
created2017-05-24 16:40:42
last_update2017-05-24 16:40:42
depth2
children1
last_payout2017-05-31 16:40:42
cashout_time1969-12-31 23:59:59
total_payout_value0.000 HBD
curator_payout_value0.000 HBD
pending_payout_value0.000 HBD
promoted0.000 HBD
body_length103
author_reputation22,905,182,177,434
root_title"Introduction to EOS: the Epic (blockchain) Operating System"
beneficiaries[]
max_accepted_payout1,000,000.000 HBD
percent_hbd10,000
post_id3,744,461
net_rshares5,556,188,706
author_curate_reward""
vote details (4)
@martinamartini ·
Oh, a nice movie!
properties (22)
authormartinamartini
permlinkre-trogdor-re-rok-sivante-re-trogdor-introduction-to-eos-the-epic-blockchain-operating-system-20171214t213615146z
categoryeos
json_metadata{"tags":["eos"],"app":"steemit/0.1"}
created2017-12-14 21:36:15
last_update2017-12-14 21:36:15
depth3
children0
last_payout2017-12-21 21:36:15
cashout_time1969-12-31 23:59:59
total_payout_value0.000 HBD
curator_payout_value0.000 HBD
pending_payout_value0.000 HBD
promoted0.000 HBD
body_length17
author_reputation1,812,997,708,099
root_title"Introduction to EOS: the Epic (blockchain) Operating System"
beneficiaries[]
max_accepted_payout1,000,000.000 HBD
percent_hbd10,000
post_id23,543,967
net_rshares0
@rubenalexander ·
$0.17
Thank you for this effort.
👍  
properties (23)
authorrubenalexander
permlinkre-trogdor-introduction-to-eos-the-epic-blockchain-operating-system-20170524t211941926z
categoryeos
json_metadata{"tags":["eos"],"app":"steemit/0.1"}
created2017-05-24 21:19:42
last_update2017-05-24 21:19:42
depth1
children1
last_payout2017-05-31 21:19:42
cashout_time1969-12-31 23:59:59
total_payout_value0.124 HBD
curator_payout_value0.041 HBD
pending_payout_value0.000 HBD
promoted0.000 HBD
body_length26
author_reputation104,241,284,386,244
root_title"Introduction to EOS: the Epic (blockchain) Operating System"
beneficiaries[]
max_accepted_payout1,000,000.000 HBD
percent_hbd10,000
post_id3,754,323
net_rshares124,419,661,193
author_curate_reward""
vote details (1)
@trogdor ·
$0.03
No problem, thanks for commenting!
👍  
properties (23)
authortrogdor
permlinkre-rubenalexander-re-trogdor-introduction-to-eos-the-epic-blockchain-operating-system-20170524t234310659z
categoryeos
json_metadata{"tags":["eos"],"app":"steemit/0.1"}
created2017-05-24 23:43:12
last_update2017-05-24 23:43:12
depth2
children0
last_payout2017-05-31 23:43:12
cashout_time1969-12-31 23:59:59
total_payout_value0.028 HBD
curator_payout_value0.000 HBD
pending_payout_value0.000 HBD
promoted0.000 HBD
body_length34
author_reputation22,905,182,177,434
root_title"Introduction to EOS: the Epic (blockchain) Operating System"
beneficiaries[]
max_accepted_payout1,000,000.000 HBD
percent_hbd10,000
post_id3,758,701
net_rshares22,179,383,023
author_curate_reward""
vote details (1)
@sevinwilson ·
$0.20
I have signed up for this mailing list! I love the scalability factor of EOS! Do you think this becomes bigger than ETH?
👍  , ,
properties (23)
authorsevinwilson
permlinkre-trogdor-introduction-to-eos-the-epic-blockchain-operating-system-20170524t164534018z
categoryeos
json_metadata{"tags":["eos"],"app":"steemit/0.1"}
created2017-05-24 16:45:33
last_update2017-05-24 16:45:33
depth1
children5
last_payout2017-05-31 16:45:33
cashout_time1969-12-31 23:59:59
total_payout_value0.196 HBD
curator_payout_value0.006 HBD
pending_payout_value0.000 HBD
promoted0.000 HBD
body_length120
author_reputation30,294,228,295,664
root_title"Introduction to EOS: the Epic (blockchain) Operating System"
beneficiaries[]
max_accepted_payout1,000,000.000 HBD
percent_hbd10,000
post_id3,744,610
net_rshares148,938,379,832
author_curate_reward""
vote details (3)
@trogdor ·
Thanks for commenting! It's hard to say about ultimate potential, but it sounds like in terms of sheer network capacity, EOS should be able to handle orders-of-magnitude more transactions than the Ethereum network. I think that probably app developers will also come to see it as a much more efficient platform for building apps on, since they can focus on just the business logic and let EOS handle the crypto.
👍  , , ,
properties (23)
authortrogdor
permlinkre-sevinwilson-re-trogdor-introduction-to-eos-the-epic-blockchain-operating-system-20170524t165034546z
categoryeos
json_metadata{"tags":["eos"],"app":"steemit/0.1"}
created2017-05-24 16:50:36
last_update2017-05-24 16:50:36
depth2
children4
last_payout2017-05-31 16:50:36
cashout_time1969-12-31 23:59:59
total_payout_value0.000 HBD
curator_payout_value0.000 HBD
pending_payout_value0.000 HBD
promoted0.000 HBD
body_length411
author_reputation22,905,182,177,434
root_title"Introduction to EOS: the Epic (blockchain) Operating System"
beneficiaries[]
max_accepted_payout1,000,000.000 HBD
percent_hbd10,000
post_id3,744,746
net_rshares14,297,178,434
author_curate_reward""
vote details (4)
@fernando.schmidt ·
I`m new to this, but it seems better than Ethereum.
👍  ,
properties (23)
authorfernando.schmidt
permlinkre-trogdor-re-sevinwilson-re-trogdor-introduction-to-eos-the-epic-blockchain-operating-system-20170603t014331801z
categoryeos
json_metadata{"tags":["eos"],"app":"steemit/0.1"}
created2017-06-03 01:43:24
last_update2017-06-03 01:43:24
depth3
children0
last_payout2017-06-10 01:43:24
cashout_time1969-12-31 23:59:59
total_payout_value0.000 HBD
curator_payout_value0.000 HBD
pending_payout_value0.000 HBD
promoted0.000 HBD
body_length51
author_reputation35,631,658
root_title"Introduction to EOS: the Epic (blockchain) Operating System"
beneficiaries[]
max_accepted_payout1,000,000.000 HBD
percent_hbd10,000
post_id4,091,339
net_rshares0
author_curate_reward""
vote details (2)
@sevinwilson ·
$0.19
It continues to get better in the blockchain world! 

It makes sense that developers would rather not have to focus on the crypto side!
👍  , ,
properties (23)
authorsevinwilson
permlinkre-trogdor-re-sevinwilson-re-trogdor-introduction-to-eos-the-epic-blockchain-operating-system-20170524t165335721z
categoryeos
json_metadata{"tags":["eos"],"app":"steemit/0.1"}
created2017-05-24 16:53:36
last_update2017-05-24 16:53:36
depth3
children2
last_payout2017-05-31 16:53:36
cashout_time1969-12-31 23:59:59
total_payout_value0.189 HBD
curator_payout_value0.003 HBD
pending_payout_value0.000 HBD
promoted0.000 HBD
body_length135
author_reputation30,294,228,295,664
root_title"Introduction to EOS: the Epic (blockchain) Operating System"
beneficiaries[]
max_accepted_payout1,000,000.000 HBD
percent_hbd10,000
post_id3,744,844
net_rshares142,512,403,890
author_curate_reward""
vote details (3)
@solar ·
$0.22
The constitution element is really interesting. Haven't been this interested in a project for a while.
👍  , , , ,
properties (23)
authorsolar
permlinkre-trogdor-introduction-to-eos-the-epic-blockchain-operating-system-20170524t185354903z
categoryeos
json_metadata{"tags":["eos"],"app":"steemit/0.1"}
created2017-05-24 18:54:03
last_update2017-05-24 18:54:03
depth1
children4
last_payout2017-05-31 18:54:03
cashout_time1969-12-31 23:59:59
total_payout_value0.204 HBD
curator_payout_value0.017 HBD
pending_payout_value0.000 HBD
promoted0.000 HBD
body_length102
author_reputation1,511,386,357,565
root_title"Introduction to EOS: the Epic (blockchain) Operating System"
beneficiaries[]
max_accepted_payout1,000,000.000 HBD
percent_hbd10,000
post_id3,749,049
net_rshares163,467,611,736
author_curate_reward""
vote details (5)
@trogdor ·
$0.02
I definitely agree. I'm going to be following this one closely.
👍  ,
properties (23)
authortrogdor
permlinkre-solar-re-trogdor-introduction-to-eos-the-epic-blockchain-operating-system-20170524t190250010z
categoryeos
json_metadata{"tags":["eos"],"app":"steemit/0.1"}
created2017-05-24 19:02:42
last_update2017-05-24 19:02:42
depth2
children3
last_payout2017-05-31 19:02:42
cashout_time1969-12-31 23:59:59
total_payout_value0.020 HBD
curator_payout_value0.000 HBD
pending_payout_value0.000 HBD
promoted0.000 HBD
body_length63
author_reputation22,905,182,177,434
root_title"Introduction to EOS: the Epic (blockchain) Operating System"
beneficiaries[]
max_accepted_payout1,000,000.000 HBD
percent_hbd10,000
post_id3,749,440
net_rshares17,037,705,371
author_curate_reward""
vote details (2)
@sacred-agent ·
$0.15
@trogdor Thank You 4 the time & work You put into creating this post !!

UpVoted & Following... please consider following me. Thanks again !!
👍  
properties (23)
authorsacred-agent
permlinkre-trogdor-re-solar-re-trogdor-introduction-to-eos-the-epic-blockchain-operating-system-20170527t010343155z
categoryeos
json_metadata{"tags":["eos"],"users":["trogdor"],"app":"steemit/0.1"}
created2017-05-27 01:03:45
last_update2017-05-27 01:03:45
depth3
children2
last_payout2017-06-03 01:03:45
cashout_time1969-12-31 23:59:59
total_payout_value0.143 HBD
curator_payout_value0.008 HBD
pending_payout_value0.000 HBD
promoted0.000 HBD
body_length141
author_reputation4,833,164,215,661
root_title"Introduction to EOS: the Epic (blockchain) Operating System"
beneficiaries[]
max_accepted_payout1,000,000.000 HBD
percent_hbd10,000
post_id3,838,149
net_rshares104,422,699,073
author_curate_reward""
vote details (1)
@steem360 ·
$0.15
Thanks a lot!
👍  
properties (23)
authorsteem360
permlinkre-trogdor-introduction-to-eos-the-epic-blockchain-operating-system-20170525t153533447z
categoryeos
json_metadata{"tags":["eos"],"app":"steemit/0.1"}
created2017-05-25 15:35:39
last_update2017-05-25 15:35:39
depth1
children1
last_payout2017-06-01 15:35:39
cashout_time1969-12-31 23:59:59
total_payout_value0.116 HBD
curator_payout_value0.038 HBD
pending_payout_value0.000 HBD
promoted0.000 HBD
body_length13
author_reputation54,344,674,413
root_title"Introduction to EOS: the Epic (blockchain) Operating System"
beneficiaries[]
max_accepted_payout1,000,000.000 HBD
percent_hbd10,000
post_id3,783,608
net_rshares112,402,341,134
author_curate_reward""
vote details (1)
@trogdor ·
No problem, thanks for reading!
properties (22)
authortrogdor
permlinkre-steem360-re-trogdor-introduction-to-eos-the-epic-blockchain-operating-system-20170525t194759370z
categoryeos
json_metadata{"tags":["eos"],"app":"steemit/0.1"}
created2017-05-25 19:47:51
last_update2017-05-25 19:47:51
depth2
children0
last_payout2017-06-01 19:47:51
cashout_time1969-12-31 23:59:59
total_payout_value0.000 HBD
curator_payout_value0.000 HBD
pending_payout_value0.000 HBD
promoted0.000 HBD
body_length31
author_reputation22,905,182,177,434
root_title"Introduction to EOS: the Epic (blockchain) Operating System"
beneficiaries[]
max_accepted_payout1,000,000.000 HBD
percent_hbd10,000
post_id3,791,756
net_rshares0
@steemint ·
$0.33
Hello @trogdor & thank you for this very solid intro to EOS!
Your post has been featured in the latest issue of <a href="https://steemit.com/steem/@steemint/steemint-004-the-steem-intelligence-journal-special-eos-edition">STEEMINT - The STEEM Intelligence Journal</a>
👍  , , , , , , , ,
properties (23)
authorsteemint
permlinkre-trogdor-introduction-to-eos-the-epic-blockchain-operating-system-20170525t045213573z
categoryeos
json_metadata{"tags":["eos"],"users":["trogdor"],"links":["https://steemit.com/steem/@steemint/steemint-004-the-steem-intelligence-journal-special-eos-edition"],"app":"steemit/0.1"}
created2017-05-25 04:52:15
last_update2017-05-25 04:52:15
depth1
children1
last_payout2017-06-01 04:52:15
cashout_time1969-12-31 23:59:59
total_payout_value0.284 HBD
curator_payout_value0.046 HBD
pending_payout_value0.000 HBD
promoted0.000 HBD
body_length267
author_reputation1,185,807,592,882
root_title"Introduction to EOS: the Epic (blockchain) Operating System"
beneficiaries[]
max_accepted_payout1,000,000.000 HBD
percent_hbd10,000
post_id3,767,305
net_rshares240,112,015,853
author_curate_reward""
vote details (9)
@trogdor ·
$0.18
Thanks! and thanks also for the shout out, I'll check out the post.
👍  , , ,
properties (23)
authortrogdor
permlinkre-steemint-re-trogdor-introduction-to-eos-the-epic-blockchain-operating-system-20170525t114833653z
categoryeos
json_metadata{"tags":["eos"],"app":"steemit/0.1"}
created2017-05-25 11:48:27
last_update2017-05-25 11:48:27
depth2
children0
last_payout2017-06-01 11:48:27
cashout_time1969-12-31 23:59:59
total_payout_value0.137 HBD
curator_payout_value0.042 HBD
pending_payout_value0.000 HBD
promoted0.000 HBD
body_length67
author_reputation22,905,182,177,434
root_title"Introduction to EOS: the Epic (blockchain) Operating System"
beneficiaries[]
max_accepted_payout1,000,000.000 HBD
percent_hbd10,000
post_id3,776,579
net_rshares131,014,001,978
author_curate_reward""
vote details (4)
@steemuwe ·
$0.15
Excellent summary, overview and recap of an important section in this evolving crypto ecosphere Dr. Trogdor. I'm glad Princeton allows you to be let loose into the Steemworld ;-) Looking forward to many more of your contributions. Just hit the follow button ;-)
👍  
properties (23)
authorsteemuwe
permlinkre-trogdor-introduction-to-eos-the-epic-blockchain-operating-system-20170525t150703789z
categoryeos
json_metadata{"tags":["eos"],"app":"steemit/0.1"}
created2017-05-25 15:07:15
last_update2017-05-25 15:07:15
depth1
children1
last_payout2017-06-01 15:07:15
cashout_time1969-12-31 23:59:59
total_payout_value0.112 HBD
curator_payout_value0.036 HBD
pending_payout_value0.000 HBD
promoted0.000 HBD
body_length261
author_reputation1,872,066,472,934
root_title"Introduction to EOS: the Epic (blockchain) Operating System"
beneficiaries[]
max_accepted_payout1,000,000.000 HBD
percent_hbd10,000
post_id3,782,651
net_rshares108,385,554,009
author_curate_reward""
vote details (1)
@trogdor ·
Thanks! It's amazing how much Steeming you can do when you're on vacation :p
👍  
properties (23)
authortrogdor
permlinkre-steemuwe-re-trogdor-introduction-to-eos-the-epic-blockchain-operating-system-20170525t162904532z
categoryeos
json_metadata{"tags":["eos"],"app":"steemit/0.1"}
created2017-05-25 16:28:57
last_update2017-05-25 16:28:57
depth2
children0
last_payout2017-06-01 16:28:57
cashout_time1969-12-31 23:59:59
total_payout_value0.000 HBD
curator_payout_value0.000 HBD
pending_payout_value0.000 HBD
promoted0.000 HBD
body_length76
author_reputation22,905,182,177,434
root_title"Introduction to EOS: the Epic (blockchain) Operating System"
beneficiaries[]
max_accepted_payout1,000,000.000 HBD
percent_hbd10,000
post_id3,785,285
net_rshares3,589,822,632
author_curate_reward""
vote details (1)
@susueng ·
Thank you.
I have been very helpful in studying EOS
properties (22)
authorsusueng
permlinkre-trogdor-introduction-to-eos-the-epic-blockchain-operating-system-20170606t024900307z
categoryeos
json_metadata{"tags":["eos"],"app":"steemit/0.1"}
created2017-06-06 02:48:57
last_update2017-06-06 02:48:57
depth1
children0
last_payout2017-06-13 02:48:57
cashout_time1969-12-31 23:59:59
total_payout_value0.000 HBD
curator_payout_value0.000 HBD
pending_payout_value0.000 HBD
promoted0.000 HBD
body_length51
author_reputation2,550,737,615,366
root_title"Introduction to EOS: the Epic (blockchain) Operating System"
beneficiaries[]
max_accepted_payout1,000,000.000 HBD
percent_hbd10,000
post_id4,247,684
net_rshares0
@teamsteem ·
$0.26
Thank you for sharing @trogdor!
👍  , , ,
properties (23)
authorteamsteem
permlinkre-trogdor-introduction-to-eos-the-epic-blockchain-operating-system-20170529t235636620z
categoryeos
json_metadata{"tags":["eos"],"users":["trogdor"],"app":"steemit/0.1"}
created2017-05-29 23:56:15
last_update2017-05-29 23:56:15
depth1
children1
last_payout2017-06-05 23:56:15
cashout_time1969-12-31 23:59:59
total_payout_value0.212 HBD
curator_payout_value0.045 HBD
pending_payout_value0.000 HBD
promoted0.000 HBD
body_length31
author_reputation284,804,541,406,803
root_title"Introduction to EOS: the Epic (blockchain) Operating System"
beneficiaries[]
max_accepted_payout1,000,000.000 HBD
percent_hbd10,000
post_id3,939,879
net_rshares132,713,893,411
author_curate_reward""
vote details (4)
@trogdor ·
Thanks for reading, it's my pleasure!
properties (22)
authortrogdor
permlinkre-teamsteem-re-trogdor-introduction-to-eos-the-epic-blockchain-operating-system-20170530t001809800z
categoryeos
json_metadata{"tags":["eos"],"app":"steemit/0.1"}
created2017-05-30 00:18:15
last_update2017-05-30 00:18:15
depth2
children0
last_payout2017-06-06 00:18:15
cashout_time1969-12-31 23:59:59
total_payout_value0.000 HBD
curator_payout_value0.000 HBD
pending_payout_value0.000 HBD
promoted0.000 HBD
body_length37
author_reputation22,905,182,177,434
root_title"Introduction to EOS: the Epic (blockchain) Operating System"
beneficiaries[]
max_accepted_payout1,000,000.000 HBD
percent_hbd10,000
post_id3,940,315
net_rshares0
@theb0red1 ·
$0.14
Thank you so much for writing this all down, I watched the video of Dan's presentation last night and had a hard time hearing everything he said.  Having read all this, I'm even more excited about this project, it really sounds amazing!  
👍  
properties (23)
authortheb0red1
permlinkre-trogdor-introduction-to-eos-the-epic-blockchain-operating-system-2017525t201120839z
categoryeos
json_metadata{"app":"chainbb/0.1","format":"markdown+html","tags":[]}
created2017-05-26 03:11:21
last_update2017-05-26 03:11:21
depth1
children1
last_payout2017-06-02 03:11:21
cashout_time1969-12-31 23:59:59
total_payout_value0.098 HBD
curator_payout_value0.037 HBD
pending_payout_value0.000 HBD
promoted0.000 HBD
body_length238
author_reputation65,302,406,341,562
root_title"Introduction to EOS: the Epic (blockchain) Operating System"
beneficiaries
0.
accountchainbb
weight1,500
max_accepted_payout1,000,000.000 HBD
percent_hbd10,000
post_id3,804,519
net_rshares108,414,169,960
author_curate_reward""
vote details (1)
@trogdor ·
No problem! Thanks for reading!
👍  
properties (23)
authortrogdor
permlinkre-theb0red1-re-trogdor-introduction-to-eos-the-epic-blockchain-operating-system-2017525t201120839z-20170526t093324784z
categoryeos
json_metadata{"tags":["eos"],"app":"steemit/0.1"}
created2017-05-26 09:33:30
last_update2017-05-26 09:33:30
depth2
children0
last_payout2017-06-02 09:33:30
cashout_time1969-12-31 23:59:59
total_payout_value0.000 HBD
curator_payout_value0.000 HBD
pending_payout_value0.000 HBD
promoted0.000 HBD
body_length31
author_reputation22,905,182,177,434
root_title"Introduction to EOS: the Epic (blockchain) Operating System"
beneficiaries[]
max_accepted_payout1,000,000.000 HBD
percent_hbd10,000
post_id3,812,637
net_rshares6,705,396,049
author_curate_reward""
vote details (1)
@vmf ·
Awesome material! Thanks for sharing
properties (22)
authorvmf
permlinkre-trogdor-introduction-to-eos-the-epic-blockchain-operating-system-20180104t003906337z
categoryeos
json_metadata{"tags":["eos"],"app":"steemit/0.1"}
created2018-01-04 00:39:06
last_update2018-01-04 00:39:06
depth1
children0
last_payout2018-01-11 00:39:06
cashout_time1969-12-31 23:59:59
total_payout_value0.000 HBD
curator_payout_value0.000 HBD
pending_payout_value0.000 HBD
promoted0.000 HBD
body_length36
author_reputation1,110,072,859
root_title"Introduction to EOS: the Epic (blockchain) Operating System"
beneficiaries[]
max_accepted_payout1,000,000.000 HBD
percent_hbd10,000
post_id26,904,165
net_rshares0
@wadeboat ·
@trogdor , or can anyone answer me this.  If I have bought my EOS on an exchange, need I only send it to My Ether Wallet to stake my tokens on the EOS network and enjoy all of the benefits?
properties (22)
authorwadeboat
permlinkre-trogdor-introduction-to-eos-the-epic-blockchain-operating-system-20171224t012756346z
categoryeos
json_metadata{"tags":["eos"],"users":["trogdor"],"app":"steemit/0.1"}
created2017-12-24 01:27:57
last_update2017-12-24 01:27:57
depth1
children1
last_payout2017-12-31 01:27:57
cashout_time1969-12-31 23:59:59
total_payout_value0.000 HBD
curator_payout_value0.000 HBD
pending_payout_value0.000 HBD
promoted0.000 HBD
body_length189
author_reputation4,384,708,242
root_title"Introduction to EOS: the Epic (blockchain) Operating System"
beneficiaries[]
max_accepted_payout1,000,000.000 HBD
percent_hbd10,000
post_id24,942,691
net_rshares0
@trogdor ·
Hi, honestly I'm not that sure. What exchange did you use? Also, do the EOS have their own set of keys, or are theu just ethereum keys? I don't really know.
properties (22)
authortrogdor
permlinkre-wadeboat-re-trogdor-introduction-to-eos-the-epic-blockchain-operating-system-20171224t015346377z
categoryeos
json_metadata{"tags":["eos"],"app":"steemit/0.1"}
created2017-12-24 01:53:51
last_update2017-12-24 01:53:51
depth2
children0
last_payout2017-12-31 01:53:51
cashout_time1969-12-31 23:59:59
total_payout_value0.000 HBD
curator_payout_value0.000 HBD
pending_payout_value0.000 HBD
promoted0.000 HBD
body_length156
author_reputation22,905,182,177,434
root_title"Introduction to EOS: the Epic (blockchain) Operating System"
beneficiaries[]
max_accepted_payout1,000,000.000 HBD
percent_hbd10,000
post_id24,945,206
net_rshares0
@whatspp ·
Very insightful! I have been following EOS and other crypto currencies recently. Looking forward to the growth and how things are developing with this one in the future.
properties (22)
authorwhatspp
permlinkre-trogdor-introduction-to-eos-the-epic-blockchain-operating-system-20171219t035436690z
categoryeos
json_metadata{"tags":["eos"],"app":"steemit/0.1"}
created2017-12-19 03:54:36
last_update2017-12-19 03:54:36
depth1
children0
last_payout2017-12-26 03:54:36
cashout_time1969-12-31 23:59:59
total_payout_value0.000 HBD
curator_payout_value0.000 HBD
pending_payout_value0.000 HBD
promoted0.000 HBD
body_length169
author_reputation2,692,013,595
root_title"Introduction to EOS: the Epic (blockchain) Operating System"
beneficiaries[]
max_accepted_payout1,000,000.000 HBD
percent_hbd10,000
post_id24,122,442
net_rshares0