create account

EOS - Developer’s Log Stardate 201707.3 by dan

View this thread on: hive.blogpeakd.comecency.com
· @dan · (edited)
$1,357.76
EOS - Developer’s Log Stardate 201707.3
http://puyaa.ir/wp-content/uploads/2015/09/OpenCL.png


Today I met with the team to discuss the challenges of making smart contracts both easy to develop and easy to execute in parallel. If you are familiar with the challenges associated with parallel execution then you know the general rule that all data must be owned by a single thread. In terms of blockchains, that means all accounts need to own their data. Owning data means that no other thread of execution may read or write the data except by asynchronous message passing.
 
## The Current Balance Problem 
 
Suppose you want to read the current balance of another contract, something that seems like it should be trivial. If the balance is “owned” by another account, say the currency contract, then your contract cannot “read it”.  You could attempt to query it by asynchronous communication, but that would be liking sending your bank a letter asking for a balance update and waiting for a response in the mail. By the time you get the response (if you get a response), the balance may already be out of date.
 
Fortunately, EOS makes it easy for one account to monitor all deposits and withdraws. In this case the reader contract would maintain its own logic duplicating the balance calculation and storage of the currency contract. This approach is also error prone because any small difference in behavior could result in your balance calculation differing from the currency contract.
 
Another alternative is to use an oracle that will notify your contract of the balance while simultaneously delivering a message to the currency contract. The currency contract will reject the transaction if the oracle lied, therefore, your contact can trust the balance reported. Once again this only lets you know the balance for the split second your transaction is applied and creates a new problem that your transaction can be invalidated if other user actions are modifying your balance at the same instance.
 
The underlying challenge here is that the balance data is owned by a different thread and therefore it cannot be reliably read and used when needed.
 
## Redefining the Problem 
 
Under the above model, all data is owned by a single account and its code. This makes each account like its own blockchain and communication among accounts tricky.  Fortunately, GPU developers have used another parallelization strategy: SMID - single instruction multiple data.   Stated more generally, a GPU executes the exact same code over many independent instances of the data. Every pixel and/or vertex is modified by the same set of instructions. 
 
Imagine for a moment that every account balance was represented as pixel in an image. Imagine that a smart contract was defined like a shader. A pixel shader can only write to a single pixel, but it can read from any number of other read-only sources.

Under this model a currency contract is not defined as code that operates on a mapping of account name to balance, but instead as code that operates on a single balance belonging to a single account.  The currency contract would not be able to read other accounts balances, but it would know with certainty that all accounts were running the same code.
 
## What would such a contract look like?
 
```
void apply_simplecoin_transfer() {
   static Transfer message;
   static uint64_t balance = 0;
   load( thisContract(), “balance”, balance );
   
   readMessage( message  );
   requireNotify( {message.from, message.to} );
   
   if( thisAccount() == message.to ) {
      balance += message.amount;
   } else if ( thisAccount() == message.from ) {
      assert( message.amount < balance, "insufficient funds" )
      balance -= message.amount;
   }
   
   if( balance ) store( “balance”, balance );
   else remove( “balance”, balance );
}
```
 
Notice there are a few subtle differences:
1. The apply method only modifies a single balance
2. The behavior of the contract depends upon the value of thisAccount()
3. The load() method takes an extra parameter specifying the current contract
4. The store() and remove() methods always use the “balance” key rather than an account key.  
 
If we assume all accounts run this exact same code on their private data, we can still guarantee that there are no double spends. This is possible because every account requires both the sender and receiver to be notified of the message or the message will be rejected (both parties can be notified in parallel).
 
The receiver knows that the sender must have sufficient funds or the receiver will reject the message; therefore, the receiver can safely increment its own balance. Likewise, the sender knows the receiver will increment his balance so he decrements his own. 
 
## What does this give us?
 
Well now that we have this design pattern we have separated “code” from “data” in terms of parallelization. A single account can now run code provided by other accounts and the code provided by other accounts can now read all data belonging to an account.
 
Suppose you wanted to build a social media platform where vote weight is proportional to current balance.  This is something that requires the social media account to have the ability to read your balance and modify someone else’s post vote totals.  In the ideal world it would be nice for @alice to vote for @bob while @sam is voting for @bill. This could be achieved as follows:
 
```
void apply_social_vote() {
   readMessage( vote );
   if( vote.for == thisContract() ) {
      load( thisContract(), vote.postid, post );
      post.totalvotes += vote.weight;
      store( vote.postid, post );
   } 
   
   if( vote.voter == thisAccount() ) {
      static uint64_t balance = 0;
      load( "simplecoin", "balance", balance );
      assert( balance >= vote.weight, “insufficient balance for vote weight” );
   }
}
```
 
In this case the contract code does two different things depending upon which data it is operating on. If it is operating on the receiver of the vote, then it increments the total votes. If it is operating on the sender, then it simply verifies the vote.weight <= the balance. 
 
It should be noted that the vote receiver is still unable to read the vote giver’s balance.  However, in this model two votes can be processed by 4 different accounts in parallel and it will work so long as the voter reports a vote weight that is accurate.  
 
While it may not be possible to read someone else’s balance while modifying your state, it is possible to read your own balance from the “simplecoin” contract from within the “social” contract.  
 
## What is everything so complicated?
 
As programmers we would love to read whatever we want, whenever we want, and let the computer figure things out. The naive approach is to simply put locks around data. If two people “happen” to read the data at the same time, then one will wait for the other. Unfortunately for blockchain developers, the outcome of these race conditions is not deterministic and therefore could break consensus. 
## A New Hope
 
There is a way to allow one account to read another account’s balance; the transaction can declare that it requires read access.  The blockchain’s transaction scheduler can then ensure that no one that requires write access will execute code at the same time. Using the old approach to simplecoin (one contract owning all the data), this would create a lot of congestion around that contract as everyone needing to read would be blocking those who want to write and everyone would be bottlenecked by a single contract.  
 
However, using the new approach to simplecoin, the probability that two transactions need to access the same account data at the same time is much lower. This will reduce lock contention and maximize throughput.
 
## Conclusion
 
Parallelism is hard, especially when you need things to be deterministic while accessing shared data.  Fortunately, there are solutions available and design patterns proven by those who design GPUs and computer graphics algorithms.
 
 
 
 
 **Disclaimer** Nothing in this blog post should be construed to imply any particular feature or functionality of the EOS.IO software. All software designs subject to change as necessary.
👍  , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , and 934 others
👎  ,
properties (23)
authordan
permlinkeos-developer-s-log-starday-201707-3
categoryeos
json_metadata{"tags":["eos"],"users":["alice","bob","sam","bill"],"image":["http://puyaa.ir/wp-content/uploads/2015/09/OpenCL.png"],"app":"steemit/0.1","format":"markdown"}
created2017-07-03 21:47:09
last_update2017-07-03 22:40:54
depth0
children262
last_payout2017-07-10 21:47:09
cashout_time1969-12-31 23:59:59
total_payout_value1,265.642 HBD
curator_payout_value92.118 HBD
pending_payout_value0.000 HBD
promoted0.003 HBD
body_length8,204
author_reputation155,470,101,136,708
root_title"EOS - Developer’s Log Stardate 201707.3"
beneficiaries[]
max_accepted_payout1,000,000.000 HBD
percent_hbd10,000
post_id7,197,597
net_rshares203,604,828,960,064
author_curate_reward""
vote details (1000)
@a-angel ·
@dan 
Thanks for share
properties (22)
authora-angel
permlinkre-dan-eos-developer-s-log-starday-201707-3-20170707t171213543z
categoryeos
json_metadata{"tags":["eos"],"users":["dan"],"app":"steemit/0.1"}
created2017-07-07 17:12:45
last_update2017-07-07 17:12:45
depth1
children0
last_payout2017-07-14 17:12: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_length22
author_reputation259,167,857,111
root_title"EOS - Developer’s Log Stardate 201707.3"
beneficiaries[]
max_accepted_payout1,000,000.000 HBD
percent_hbd10,000
post_id7,665,840
net_rshares0
@abubakrbhatti ·
Hey buddy nice post 
i am going to follow you follow me back on @abubakrbhatti
and visit my profile if you like my blogs then upvote them
properties (22)
authorabubakrbhatti
permlinkre-dan-eos-developer-s-log-starday-201707-3-20170704t211633105z
categoryeos
json_metadata{"tags":["eos"],"users":["abubakrbhatti"],"app":"steemit/0.1"}
created2017-07-04 21:16:33
last_update2017-07-04 21:16:33
depth1
children0
last_payout2017-07-11 21:16: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_length137
author_reputation93,405,046,459
root_title"EOS - Developer’s Log Stardate 201707.3"
beneficiaries[]
max_accepted_payout1,000,000.000 HBD
percent_hbd10,000
post_id7,324,091
net_rshares0
@ace73 ·
Nice post
properties (22)
authorace73
permlinkre-dan-eos-developer-s-log-starday-201707-3-20170704t041607962z
categoryeos
json_metadata{"tags":["eos"],"app":"steemit/0.1"}
created2017-07-04 04:16:12
last_update2017-07-04 04:16:12
depth1
children0
last_payout2017-07-11 04:16: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_length9
author_reputation1,440,061,532
root_title"EOS - Developer’s Log Stardate 201707.3"
beneficiaries[]
max_accepted_payout1,000,000.000 HBD
percent_hbd10,000
post_id7,228,653
net_rshares0
@adamj8 ·
I subscribed because I am very interested in all news about EOS
properties (22)
authoradamj8
permlinkre-dan-eos-developer-s-log-starday-201707-3-20170705t233635032z
categoryeos
json_metadata{"tags":["eos"],"app":"steemit/0.1"}
created2017-07-05 23:36:36
last_update2017-07-05 23:36:36
depth1
children0
last_payout2017-07-12 23:36: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_length63
author_reputation45,522,256,897
root_title"EOS - Developer’s Log Stardate 201707.3"
beneficiaries[]
max_accepted_payout1,000,000.000 HBD
percent_hbd10,000
post_id7,454,347
net_rshares0
@adamzy ·
Good coder. i like it!
properties (22)
authoradamzy
permlinkre-dan-eos-developer-s-log-starday-201707-3-20170703t215618701z
categoryeos
json_metadata{"tags":["eos"],"app":"steemit/0.1"}
created2017-07-03 21:57:03
last_update2017-07-03 21:57:03
depth1
children0
last_payout2017-07-10 21:57: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_length22
author_reputation1,505,936,337
root_title"EOS - Developer’s Log Stardate 201707.3"
beneficiaries[]
max_accepted_payout1,000,000.000 HBD
percent_hbd10,000
post_id7,198,567
net_rshares0
@aesthetips ·
Great post, this article was really helpful :)
properties (22)
authoraesthetips
permlinkre-dan-eos-developer-s-log-starday-201707-3-20170704t035530376z
categoryeos
json_metadata{"tags":["eos"],"app":"steemit/0.1"}
created2017-07-04 03:55:33
last_update2017-07-04 03:55:33
depth1
children0
last_payout2017-07-11 03:55: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_length46
author_reputation450,257,053
root_title"EOS - Developer’s Log Stardate 201707.3"
beneficiaries[]
max_accepted_payout1,000,000.000 HBD
percent_hbd10,000
post_id7,227,148
net_rshares0
@agbaregha ·
Thank you Dan for  the update
👍  
properties (23)
authoragbaregha
permlinkre-dan-eos-developer-s-log-starday-201707-3-20170704t235333105z
categoryeos
json_metadata{"tags":["eos"],"app":"steemit/0.1"}
created2017-07-04 23:53:33
last_update2017-07-04 23:53:33
depth1
children0
last_payout2017-07-11 23:53: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_length29
author_reputation-2,303,639,052,731
root_title"EOS - Developer’s Log Stardate 201707.3"
beneficiaries[]
max_accepted_payout1,000,000.000 HBD
percent_hbd10,000
post_id7,336,534
net_rshares1,942,382,691
author_curate_reward""
vote details (1)
@agbaregha ·
nice post you got and thanks for the update
👍  
properties (23)
authoragbaregha
permlinkre-dan-eos-developer-s-log-starday-201707-3-20170705t131817188z
categoryeos
json_metadata{"tags":["eos"],"app":"steemit/0.1"}
created2017-07-05 13:18:15
last_update2017-07-05 13:18:15
depth1
children0
last_payout2017-07-12 13: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_length43
author_reputation-2,303,639,052,731
root_title"EOS - Developer’s Log Stardate 201707.3"
beneficiaries[]
max_accepted_payout1,000,000.000 HBD
percent_hbd10,000
post_id7,395,982
net_rshares1,942,417,647
author_curate_reward""
vote details (1)
@agbaregha ·
dan why do you flag one of  my post. can give me reason for that. now i have lost  my reputation to -5%  so you are happy now right?
👍  
properties (23)
authoragbaregha
permlinkre-dan-eos-developer-s-log-starday-201707-3-20170707t003810200z
categoryeos
json_metadata{"tags":["eos"],"app":"steemit/0.1"}
created2017-07-07 00:38:09
last_update2017-07-07 00:38:09
depth1
children0
last_payout2017-07-14 00: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_length132
author_reputation-2,303,639,052,731
root_title"EOS - Developer’s Log Stardate 201707.3"
beneficiaries[]
max_accepted_payout1,000,000.000 HBD
percent_hbd10,000
post_id7,584,763
net_rshares0
author_curate_reward""
vote details (1)
@aitssam ·
I love to do programming like that  thank you :)
properties (22)
authoraitssam
permlinkre-dan-eos-developer-s-log-starday-201707-3-20170704t043003526z
categoryeos
json_metadata{"tags":["eos"],"app":"steemit/0.1"}
created2017-07-04 04:30:00
last_update2017-07-04 04:30:00
depth1
children0
last_payout2017-07-11 04:30: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_length48
author_reputation99,084,385,293
root_title"EOS - Developer’s Log Stardate 201707.3"
beneficiaries[]
max_accepted_payout1,000,000.000 HBD
percent_hbd10,000
post_id7,229,498
net_rshares0
@ajayv ·
Excellent job !! I will look for algorithms that make Parallelism becomes easier when sharing data.
properties (22)
authorajayv
permlinkre-dan-eos-developer-s-log-starday-201707-3-20170704t110520192z
categoryeos
json_metadata{"tags":["eos"],"app":"steemit/0.1"}
created2017-07-04 11:05:12
last_update2017-07-04 11:05:12
depth1
children0
last_payout2017-07-11 11:05: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_reputation0
root_title"EOS - Developer’s Log Stardate 201707.3"
beneficiaries[]
max_accepted_payout1,000,000.000 HBD
percent_hbd10,000
post_id7,261,831
net_rshares0
@akkha ·
Thank you so much for the updates ! Thank you so much for your effort !!
https://steemitimages.com/DQmS6dNwmeFN2TyJCd3viNXVBfWMxxRvMtoPeUBoPtrJ3tm/IMG_20170617_144542.jpg
properties (22)
authorakkha
permlinkre-dan-eos-developer-s-log-starday-201707-3-20170704t170657285z
categoryeos
json_metadata{"tags":["eos"],"image":["https://steemitimages.com/DQmS6dNwmeFN2TyJCd3viNXVBfWMxxRvMtoPeUBoPtrJ3tm/IMG_20170617_144542.jpg"],"app":"steemit/0.1"}
created2017-07-04 17:06:57
last_update2017-07-04 17:06:57
depth1
children0
last_payout2017-07-11 17:06: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_length170
author_reputation6,662,251,112,812
root_title"EOS - Developer’s Log Stardate 201707.3"
beneficiaries[]
max_accepted_payout1,000,000.000 HBD
percent_hbd10,000
post_id7,300,073
net_rshares0
@akmalboo ·
Please vote me
👎  ,
properties (23)
authorakmalboo
permlinkre-dan-201775t32229213z
categoryeos
json_metadata{"tags":"eos","app":"esteem/1.4.6","format":"markdown+html","community":"esteem"}
created2017-07-04 20:22:33
last_update2017-07-04 20:22:33
depth1
children0
last_payout2017-07-11 20:22: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_length14
author_reputation-2,432,681,636,871
root_title"EOS - Developer’s Log Stardate 201707.3"
beneficiaries
0.
accountesteemapp
weight500
max_accepted_payout1,000,000.000 HBD
percent_hbd10,000
post_id7,319,261
net_rshares-156,682,059,173,152
author_curate_reward""
vote details (2)
@akraees ·
Hate Coding :-( my mind stuck in coding ...
@akraees
👍  
properties (23)
authorakraees
permlinkre-dan-eos-developer-s-log-starday-201707-3-20170705t091302919z
categoryeos
json_metadata{"tags":["eos"],"users":["akraees"],"app":"steemit/0.1"}
created2017-07-05 09:13:06
last_update2017-07-05 09:13:06
depth1
children0
last_payout2017-07-12 09:13: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_length52
author_reputation13,734,486,252
root_title"EOS - Developer’s Log Stardate 201707.3"
beneficiaries[]
max_accepted_payout1,000,000.000 HBD
percent_hbd10,000
post_id7,375,262
net_rshares139,282,186
author_curate_reward""
vote details (1)
@akun2017 ·
$0.03
![image](https://img.esteem.ws/h7b9cs7evk.jpg)

*How can a little girl defeat the genius human icon that Albert Einstein has been holding? What an unbelievable but real story. Nicole Barr, a 12-year-old from Essex, scored an IQ of 162 on a Mensa IQ test. The score is two points higher than Einstein and the addition of this boy also exceeded the score of genius physicist, Stephen Hawking.*

*Someone is said to be a genius if he gets an IQ test score above 140. So that means Nicole is really a genius. Her's father, Jim Barr took Nicole to take the test with a premonition that his daughter would be accepted at Mensa.*

 ![image](https://img.esteem.ws/1mywe9n4wv.jpg)

***"I hope she can do well. I know she has the speed of mind in solving problems and puzzles. I do not want to press her so we consider this for fun. I had the thought that she would go to Mensa but when I saw the result I thought 'Wow! This is really a high score! '. Until finally I realized that it was the highest score in the test, "*** *said Jim*. 

*Launched from Mashable, a spokesman for Mensa said IQ Nicole took him to the first level of the population. Only children can get more than 161 IQ because it is the maximum IQ for adults. The test Nicole followed was a test for a small child. Even so, @dan
IQ score 162 is rarely found. Nicole herself has an ideals in the field of drama performances. She even practiced in her spare time. But she also has other ideals that step into the medical realm as a pediatrician. Wow so cool 12-year-old child can defeat Einstein. Do you still remember your IQ score?*


***Thank's for you all steemit friends,  don't forget to upvote and comment***
👍  
properties (23)
authorakun2017
permlinkre-dan-201776t1053283z
categoryeos
json_metadata{"tags":"eos","app":"esteem/1.4.6","format":"markdown+html","community":"esteem"}
created2017-07-05 18:00:54
last_update2017-07-05 18:00:54
depth1
children0
last_payout2017-07-12 18:00:54
cashout_time1969-12-31 23:59:59
total_payout_value0.020 HBD
curator_payout_value0.006 HBD
pending_payout_value0.000 HBD
promoted0.000 HBD
body_length1,671
author_reputation150,654,054,341
root_title"EOS - Developer’s Log Stardate 201707.3"
beneficiaries
0.
accountesteemapp
weight500
max_accepted_payout1,000,000.000 HBD
percent_hbd10,000
post_id7,425,646
net_rshares5,488,224,362
author_curate_reward""
vote details (1)
@amirjp ·
Great Blog, Keep up the good work!
👍  ,
properties (23)
authoramirjp
permlinkre-dan-eos-developer-s-log-starday-201707-3-20170703t224043488z
categoryeos
json_metadata{"tags":["eos"],"app":"steemit/0.1"}
created2017-07-03 22:40:42
last_update2017-07-03 22:40:42
depth1
children0
last_payout2017-07-10 22: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_length34
author_reputation1,877,504,477
root_title"EOS - Developer’s Log Stardate 201707.3"
beneficiaries[]
max_accepted_payout1,000,000.000 HBD
percent_hbd10,000
post_id7,202,690
net_rshares1,011,752,307
author_curate_reward""
vote details (2)
@amykyla ·
follow me honey....
👎  ,
properties (23)
authoramykyla
permlinkre-dan-eos-developer-s-log-starday-201707-3-20170704t055858540z
categoryeos
json_metadata{"tags":["eos"],"app":"steemit/0.1"}
created2017-07-04 05:58:42
last_update2017-07-04 05:58:42
depth1
children0
last_payout2017-07-11 05:58: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_length19
author_reputation11,153,181,755
root_title"EOS - Developer’s Log Stardate 201707.3"
beneficiaries[]
max_accepted_payout1,000,000.000 HBD
percent_hbd10,000
post_id7,236,122
net_rshares-1,721,832,393,485
author_curate_reward""
vote details (2)
@ancapwarren ·
This makes my head hurt. CS is an amazing field. Keep up the great work, @dan!
👍  
properties (23)
authorancapwarren
permlinkre-dan-eos-developer-s-log-starday-201707-3-20170704t000337005z
categoryeos
json_metadata{"tags":["eos"],"users":["dan"],"app":"steemit/0.1"}
created2017-07-04 00:03:39
last_update2017-07-04 00:03:39
depth1
children0
last_payout2017-07-11 00:03: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_length78
author_reputation1,366,152,332,356
root_title"EOS - Developer’s Log Stardate 201707.3"
beneficiaries[]
max_accepted_payout1,000,000.000 HBD
percent_hbd10,000
post_id7,209,279
net_rshares529,892,939
author_curate_reward""
vote details (1)
@annex ·
Great post, thank you
properties (22)
authorannex
permlinkre-dan-eos-developer-s-log-starday-201707-3-20170706t215237863z
categoryeos
json_metadata{"tags":["eos"],"app":"steemit/0.1"}
created2017-07-06 21:52:39
last_update2017-07-06 21:52:39
depth1
children0
last_payout2017-07-13 21:52: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_length21
author_reputation155,418,649,587
root_title"EOS - Developer’s Log Stardate 201707.3"
beneficiaries[]
max_accepted_payout1,000,000.000 HBD
percent_hbd10,000
post_id7,571,739
net_rshares0
@arcange ·
Congratulations @dan!
Your post was mentioned in my [hit parade](https://steemit.com/hit-parade/@arcange/daily-hit-parade-20170703) in the following categories:

* Upvotes - Ranked 4 with 647 upvotes
* Pending payout - Ranked 1 with $ 1597,72
properties (22)
authorarcange
permlinkre-eos-developer-s-log-starday-201707-3-20170703t172754000z
categoryeos
json_metadata""
created2017-07-04 15:27:54
last_update2017-07-04 15:27:54
depth1
children0
last_payout2017-07-11 15:27:54
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_length243
author_reputation1,146,606,926,313,931
root_title"EOS - Developer’s Log Stardate 201707.3"
beneficiaries[]
max_accepted_payout1,000,000.000 HBD
percent_hbd10,000
post_id7,289,946
net_rshares0
@arneljayestimada ·
<center>
**This Post is Manually Read, Curated and Upvoted**


[ARNELJAYESTIMADA®]((https://steemit.com/@arneljayestimada) aims to give 300x upvotes to awesome post!
***this post is chosen as great content***
You may choose to reject this ?? and I will no longer Read, Curate And Upvote your future Post
[**this i reserved my rights??**](https://steemit.com/@arneljayestimada)
<center><a href="https://steemit.com/@arneljayestimada"><img src = "https://steemitimages.com/DQmXGjNNZGhZiMPXJt3nwwjuxE9ecFL8KGSTYBhMo7sHonJ/followerbannermini.jpg"></a>
</center>
</center>
properties (22)
authorarneljayestimada
permlinkre-dan-eos-developer-s-log-starday-201707-3-20170706t091010184z
categoryeos
json_metadata{"tags":["eos"],"image":["https://steemitimages.com/DQmXGjNNZGhZiMPXJt3nwwjuxE9ecFL8KGSTYBhMo7sHonJ/followerbannermini.jpg"],"links":["https://steemit.com/@arneljayestimada"],"app":"steemit/0.1"}
created2017-07-06 09:12:15
last_update2017-07-06 09:12:15
depth1
children0
last_payout2017-07-13 09:12: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_length567
author_reputation66,356,726,549
root_title"EOS - Developer’s Log Stardate 201707.3"
beneficiaries[]
max_accepted_payout1,000,000.000 HBD
percent_hbd10,000
post_id7,497,509
net_rshares0
@automatedjanitor · (edited)
$1.12
Much coding will produce much pine sol, Dan unit.  Much pin sol.  Heterogenous computing is  agreeable.

![may-the-source-be-with-you.jpg](https://steemitimages.com/DQmY2L28mQVofZJt1wmfZnkVP6VAW1Vv3rEr3wzWf9PhhLE/may-the-source-be-with-you.jpg)
👍  , ,
properties (23)
authorautomatedjanitor
permlinkre-dan-eos-developer-s-log-starday-201707-3-20170704t000059881z
categoryeos
json_metadata{"tags":["eos"],"app":"steemit/0.1","image":["https://steemitimages.com/DQmY2L28mQVofZJt1wmfZnkVP6VAW1Vv3rEr3wzWf9PhhLE/may-the-source-be-with-you.jpg"]}
created2017-07-04 00:01:00
last_update2017-07-04 00:03:09
depth1
children1
last_payout2017-07-11 00:01:00
cashout_time1969-12-31 23:59:59
total_payout_value0.842 HBD
curator_payout_value0.277 HBD
pending_payout_value0.000 HBD
promoted0.000 HBD
body_length244
author_reputation25,295,943,921
root_title"EOS - Developer’s Log Stardate 201707.3"
beneficiaries[]
max_accepted_payout1,000,000.000 HBD
percent_hbd10,000
post_id7,209,087
net_rshares169,468,333,986
author_curate_reward""
vote details (3)
@automatedjanitor ·
Much gratitude for free pinesol upvote from @jamesc1. Much pine sol to you!
👍  
properties (23)
authorautomatedjanitor
permlinkre-automatedjanitor-re-dan-eos-developer-s-log-starday-201707-3-20170705t024634855z
categoryeos
json_metadata{"tags":["eos"],"users":["jamesc1"],"app":"steemit/0.1"}
created2017-07-05 02:46:36
last_update2017-07-05 02:46:36
depth2
children0
last_payout2017-07-12 02:46: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_length75
author_reputation25,295,943,921
root_title"EOS - Developer’s Log Stardate 201707.3"
beneficiaries[]
max_accepted_payout1,000,000.000 HBD
percent_hbd10,000
post_id7,348,124
net_rshares0
author_curate_reward""
vote details (1)
@babatundehabeeb ·
@Dan. Am kind of interested in the development but i would like to be clarified of some questions.

1)Will the track on deposit and withdrawal currencies of an account be in standard currencies (btc,eth) or in simplecoin as reffered to in the code?

2)How does this development beats the services   (withdrawal and deposit history) exchanger are offering us?

Thump up on the project. More success to it.
properties (22)
authorbabatundehabeeb
permlinkre-dan-eos-developer-s-log-starday-201707-3-20170703t224925109z
categoryeos
json_metadata{"tags":["eos"],"users":["dan"],"app":"steemit/0.1"}
created2017-07-03 22:49:33
last_update2017-07-03 22:49:33
depth1
children0
last_payout2017-07-10 22:49: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_length404
author_reputation-16,926,232,445
root_title"EOS - Developer’s Log Stardate 201707.3"
beneficiaries[]
max_accepted_payout1,000,000.000 HBD
percent_hbd10,000
post_id7,203,454
net_rshares0
@bbrewer ·
$0.31
It's great to read about the progress being made in parallel execution.
👍  
properties (23)
authorbbrewer
permlinkre-dan-eos-developer-s-log-starday-201707-3-20170704t041402036z
categoryeos
json_metadata{"tags":["eos"],"app":"steemit/0.1"}
created2017-07-04 04:14:06
last_update2017-07-04 04:14:06
depth1
children0
last_payout2017-07-11 04:14:06
cashout_time1969-12-31 23:59:59
total_payout_value0.312 HBD
curator_payout_value0.000 HBD
pending_payout_value0.000 HBD
promoted0.000 HBD
body_length71
author_reputation7,852,511,958,185
root_title"EOS - Developer’s Log Stardate 201707.3"
beneficiaries[]
max_accepted_payout1,000,000.000 HBD
percent_hbd10,000
post_id7,228,508
net_rshares47,847,025,416
author_curate_reward""
vote details (1)
@belidged · (edited)
$0.83
It seems the Red Belly Blockchain being developed in Sydney may address the timing and attacks issues. Here is their whitepaper if anyone is interested. http://poseidon.it.usyd.edu.au/~concurrentsystems/doc/ConsensusRedBellyBlockchain.pdf
👍  , , ,
properties (23)
authorbelidged
permlinkre-dan-eos-developer-s-log-starday-201707-3-20170704t040053746z
categoryeos
json_metadata{"tags":["eos"],"links":["http://poseidon.it.usyd.edu.au/~concurrentsystems/doc/ConsensusRedBellyBlockchain.pdf"],"app":"steemit/0.1"}
created2017-07-04 04:00:54
last_update2017-07-04 04:02:42
depth1
children0
last_payout2017-07-11 04:00:54
cashout_time1969-12-31 23:59:59
total_payout_value0.654 HBD
curator_payout_value0.173 HBD
pending_payout_value0.000 HBD
promoted0.000 HBD
body_length238
author_reputation107,019,740,819
root_title"EOS - Developer’s Log Stardate 201707.3"
beneficiaries[]
max_accepted_payout1,000,000.000 HBD
percent_hbd10,000
post_id7,227,567
net_rshares126,583,083,031
author_curate_reward""
vote details (4)
@benberxo ·
@dan i love your blog iam a aspiring software developer you can read my story here
https://steemit.com/introduction/@benberxo/introduction

https://steemit.com/life/@benberxo/my-life-in-pursuit-of-a-happy-life-and-changing-the-world-around-me-by-the-help-of-technology
properties (22)
authorbenberxo
permlinkre-dan-eos-developer-s-log-starday-201707-3-20170705t151327284z
categoryeos
json_metadata{"tags":["eos"],"users":["dan"],"links":["https://steemit.com/introduction/@benberxo/introduction","https://steemit.com/life/@benberxo/my-life-in-pursuit-of-a-happy-life-and-changing-the-world-around-me-by-the-help-of-technology"],"app":"steemit/0.1"}
created2017-07-05 15:13:30
last_update2017-07-05 15:13:30
depth1
children0
last_payout2017-07-12 15:13: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_length268
author_reputation348,775,832
root_title"EOS - Developer’s Log Stardate 201707.3"
beneficiaries[]
max_accepted_payout1,000,000.000 HBD
percent_hbd10,000
post_id7,408,309
net_rshares0
@berdian ·
Nice post@dan
properties (22)
authorberdian
permlinkre-dan-201774t235745553z
categoryeos
json_metadata{"tags":"eos","app":"esteem/1.4.6","format":"markdown+html","community":"esteem"}
created2017-07-04 16:57:51
last_update2017-07-04 16:57:51
depth1
children0
last_payout2017-07-11 16:57: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_length13
author_reputation1,203,650,996,328
root_title"EOS - Developer’s Log Stardate 201707.3"
beneficiaries
0.
accountesteemapp
weight500
max_accepted_payout1,000,000.000 HBD
percent_hbd10,000
post_id7,299,193
net_rshares0
@biancx ·
Nice.. this is so good. Please keep us posted on this..
properties (22)
authorbiancx
permlinkre-dan-eos-developer-s-log-starday-201707-3-20170704t063514134z
categoryeos
json_metadata{"tags":["eos"],"app":"steemit/0.1"}
created2017-07-04 06:35:09
last_update2017-07-04 06:35:09
depth1
children0
last_payout2017-07-11 06:35: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_length55
author_reputation0
root_title"EOS - Developer’s Log Stardate 201707.3"
beneficiaries[]
max_accepted_payout1,000,000.000 HBD
percent_hbd10,000
post_id7,238,749
net_rshares0
@biancx ·
By the way do you know how to program using VB?
properties (22)
authorbiancx
permlinkre-dan-eos-developer-s-log-starday-201707-3-20170704t063556387z
categoryeos
json_metadata{"tags":["eos"],"app":"steemit/0.1"}
created2017-07-04 06:35:54
last_update2017-07-04 06:35:54
depth1
children0
last_payout2017-07-11 06:35:54
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_length47
author_reputation0
root_title"EOS - Developer’s Log Stardate 201707.3"
beneficiaries[]
max_accepted_payout1,000,000.000 HBD
percent_hbd10,000
post_id7,238,799
net_rshares0
@biancx ·
Please follow me @ biancx
properties (22)
authorbiancx
permlinkre-dan-eos-developer-s-log-starday-201707-3-20170704t063643484z
categoryeos
json_metadata{"tags":["eos"],"app":"steemit/0.1"}
created2017-07-04 06:36:39
last_update2017-07-04 06:36:39
depth1
children0
last_payout2017-07-11 06:36: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_length25
author_reputation0
root_title"EOS - Developer’s Log Stardate 201707.3"
beneficiaries[]
max_accepted_payout1,000,000.000 HBD
percent_hbd10,000
post_id7,238,869
net_rshares0
@billionchuks ·
Yeah that is it
properties (22)
authorbillionchuks
permlinkre-dan-eos-developer-s-log-starday-201707-3-20170704t101606817z
categoryeos
json_metadata{"tags":["eos"],"app":"steemit/0.1"}
created2017-07-04 10:16:21
last_update2017-07-04 10:16:21
depth1
children0
last_payout2017-07-11 10:16: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_length15
author_reputation0
root_title"EOS - Developer’s Log Stardate 201707.3"
beneficiaries[]
max_accepted_payout1,000,000.000 HBD
percent_hbd10,000
post_id7,257,379
net_rshares0
@billroth ·
$0.85
Nice info. Thanks :)
👍  
properties (23)
authorbillroth
permlinkre-dan-eos-developer-s-log-starday-201707-3-20170705t233519086z
categoryeos
json_metadata{"tags":["eos"],"app":"steemit/0.1"}
created2017-07-05 23:35:21
last_update2017-07-05 23:35:21
depth1
children0
last_payout2017-07-12 23:35:21
cashout_time1969-12-31 23:59:59
total_payout_value0.637 HBD
curator_payout_value0.211 HBD
pending_payout_value0.000 HBD
promoted0.000 HBD
body_length20
author_reputation434,640,168,970
root_title"EOS - Developer’s Log Stardate 201707.3"
beneficiaries[]
max_accepted_payout1,000,000.000 HBD
percent_hbd10,000
post_id7,454,245
net_rshares170,765,682,496
author_curate_reward""
vote details (1)
@birdistheword ·
$0.28
I read this, and started nodding along, pretending I knew what you were talking about..... but no..... as I got further in, my brain started feeling twitchy, and my eyes got tired. Please don't tell me I'm the only one :D
👍  , , , ,
properties (23)
authorbirdistheword
permlinkre-dan-eos-developer-s-log-starday-201707-3-20170703t215102012z
categoryeos
json_metadata{"tags":["eos"],"app":"steemit/0.1"}
created2017-07-03 21:51:03
last_update2017-07-03 21:51:03
depth1
children8
last_payout2017-07-10 21:51:03
cashout_time1969-12-31 23:59:59
total_payout_value0.214 HBD
curator_payout_value0.064 HBD
pending_payout_value0.000 HBD
promoted0.000 HBD
body_length221
author_reputation2,932,776,635,885
root_title"EOS - Developer’s Log Stardate 201707.3"
beneficiaries[]
max_accepted_payout1,000,000.000 HBD
percent_hbd10,000
post_id7,197,971
net_rshares42,010,029,612
author_curate_reward""
vote details (5)
@andybets ·
Hi man, I think you need to have studied computer science to make much sense of it to be honest ! ;)
properties (22)
authorandybets
permlinkre-birdistheword-re-dan-eos-developer-s-log-starday-201707-3-20170704t064201471z
categoryeos
json_metadata{"tags":["eos"],"app":"steemit/0.1"}
created2017-07-04 06:42:00
last_update2017-07-04 06:42:00
depth2
children1
last_payout2017-07-11 06:42: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_length100
author_reputation15,189,090,569,005
root_title"EOS - Developer’s Log Stardate 201707.3"
beneficiaries[]
max_accepted_payout1,000,000.000 HBD
percent_hbd10,000
post_id7,239,304
net_rshares0
@birdistheword ·
Ha hey man. Yeah I think zero knowledge at all is a slight obstacle. Worth a try though
properties (22)
authorbirdistheword
permlinkre-andybets-re-birdistheword-re-dan-eos-developer-s-log-starday-201707-3-20170704t064536367z
categoryeos
json_metadata{"tags":["eos"],"app":"steemit/0.1"}
created2017-07-04 06:45:39
last_update2017-07-04 06:45:39
depth3
children0
last_payout2017-07-11 06:45: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_length87
author_reputation2,932,776,635,885
root_title"EOS - Developer’s Log Stardate 201707.3"
beneficiaries[]
max_accepted_payout1,000,000.000 HBD
percent_hbd10,000
post_id7,239,601
net_rshares0
@hadidi ·
Exactly same thing......
properties (22)
authorhadidi
permlinkre-birdistheword-201773t235452218z
categoryeos
json_metadata{"tags":"eos","app":"esteem/1.4.6","format":"markdown+html","community":"esteem"}
created2017-07-03 22:54:57
last_update2017-07-03 22:54:57
depth2
children0
last_payout2017-07-10 22:54: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_length24
author_reputation4,645,738,602
root_title"EOS - Developer’s Log Stardate 201707.3"
beneficiaries
0.
accountesteemapp
weight500
max_accepted_payout1,000,000.000 HBD
percent_hbd10,000
post_id7,203,879
net_rshares0
@jamesc1 ·
It worked for me, I just read it slow and a few times.  Come back and try again though if you think your going to invest in someones contract one day.. Your going to have money in the game. Lol
properties (22)
authorjamesc1
permlinkre-birdistheword-re-dan-eos-developer-s-log-starday-201707-3-20170704t132810097z
categoryeos
json_metadata{"tags":["eos"],"app":"steemit/0.1"}
created2017-07-04 13:28:09
last_update2017-07-04 13:28:09
depth2
children1
last_payout2017-07-11 13:28: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_length193
author_reputation939,862,516,890
root_title"EOS - Developer’s Log Stardate 201707.3"
beneficiaries[]
max_accepted_payout1,000,000.000 HBD
percent_hbd10,000
post_id7,275,908
net_rshares0
@birdistheword ·
Okay I'll try again....
properties (22)
authorbirdistheword
permlinkre-jamesc1-re-birdistheword-re-dan-eos-developer-s-log-starday-201707-3-20170704t134023087z
categoryeos
json_metadata{"tags":["eos"],"app":"steemit/0.1"}
created2017-07-04 13:40:27
last_update2017-07-04 13:40:27
depth3
children0
last_payout2017-07-11 13:40: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_length23
author_reputation2,932,776,635,885
root_title"EOS - Developer’s Log Stardate 201707.3"
beneficiaries[]
max_accepted_payout1,000,000.000 HBD
percent_hbd10,000
post_id7,277,402
net_rshares0
@needmorefat ·
$0.05
Us noobs reading this

http://media.boingboing.net/wp-content/uploads/2016/11/bcf.png
👍  , ,
properties (23)
authorneedmorefat
permlinkre-birdistheword-re-dan-eos-developer-s-log-starday-201707-3-20170704t015659979z
categoryeos
json_metadata{"tags":["eos"],"image":["http://media.boingboing.net/wp-content/uploads/2016/11/bcf.png"],"app":"steemit/0.1"}
created2017-07-04 01:57:00
last_update2017-07-04 01:57:00
depth2
children2
last_payout2017-07-11 01:57:00
cashout_time1969-12-31 23:59:59
total_payout_value0.042 HBD
curator_payout_value0.009 HBD
pending_payout_value0.000 HBD
promoted0.000 HBD
body_length85
author_reputation268,870,057,104
root_title"EOS - Developer’s Log Stardate 201707.3"
beneficiaries[]
max_accepted_payout1,000,000.000 HBD
percent_hbd10,000
post_id7,218,041
net_rshares8,073,838,212
author_curate_reward""
vote details (3)
@birdistheword ·
Haha
properties (22)
authorbirdistheword
permlinkre-needmorefat-re-birdistheword-re-dan-eos-developer-s-log-starday-201707-3-20170704t064446367z
categoryeos
json_metadata{"tags":["eos"],"app":"steemit/0.1"}
created2017-07-04 06:44:51
last_update2017-07-04 06:44:51
depth3
children0
last_payout2017-07-11 06:44: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_length4
author_reputation2,932,776,635,885
root_title"EOS - Developer’s Log Stardate 201707.3"
beneficiaries[]
max_accepted_payout1,000,000.000 HBD
percent_hbd10,000
post_id7,239,544
net_rshares0
@lightmatter ·
lol
properties (22)
authorlightmatter
permlinkre-needmorefat-re-birdistheword-re-dan-eos-developer-s-log-starday-201707-3-20170704t221548246z
categoryeos
json_metadata{"tags":["eos"],"app":"steemit/0.1"}
created2017-07-04 22:15:48
last_update2017-07-04 22:15:48
depth3
children0
last_payout2017-07-11 22:15: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_length3
author_reputation288,776,905
root_title"EOS - Developer’s Log Stardate 201707.3"
beneficiaries[]
max_accepted_payout1,000,000.000 HBD
percent_hbd10,000
post_id7,329,101
net_rshares0
@bitzoner ·
What  knowledge do i require for eos developer ? please suggest

Thnaks @bitzoner
properties (22)
authorbitzoner
permlinkre-dan-eos-developer-s-log-starday-201707-3-20170704t044004046z
categoryeos
json_metadata{"tags":["eos"],"users":["bitzoner"],"app":"steemit/0.1"}
created2017-07-04 04:40:09
last_update2017-07-04 04:40:09
depth1
children0
last_payout2017-07-11 04:40: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_length81
author_reputation458,209,487,725
root_title"EOS - Developer’s Log Stardate 201707.3"
beneficiaries[]
max_accepted_payout1,000,000.000 HBD
percent_hbd10,000
post_id7,230,310
net_rshares0
@blockchainbros ·
Sounds great! How long do you think until this is successfully implemented??
properties (22)
authorblockchainbros
permlinkre-dan-eos-developer-s-log-starday-201707-3-20170704t165853740z
categoryeos
json_metadata{"tags":["eos"],"app":"steemit/0.1"}
created2017-07-04 16:58:54
last_update2017-07-04 16:58:54
depth1
children0
last_payout2017-07-11 16:58:54
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_reputation190,442,136,344
root_title"EOS - Developer’s Log Stardate 201707.3"
beneficiaries[]
max_accepted_payout1,000,000.000 HBD
percent_hbd10,000
post_id7,299,285
net_rshares0
@bobeell ·
I just saw a lot of YouTube videos about EOS and his potential.. wich will be the next and improved ETH and something like that, what do you think about it guys? I don't know exactly if I should invest in EOS or not..
👍  
properties (23)
authorbobeell
permlinkre-dan-eos-developer-s-log-starday-201707-3-20170703t222005107z
categoryeos
json_metadata{"tags":["eos"],"app":"steemit/0.1"}
created2017-07-03 22:20:03
last_update2017-07-03 22:20:03
depth1
children0
last_payout2017-07-10 22:20: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_length217
author_reputation12,402,560,052
root_title"EOS - Developer’s Log Stardate 201707.3"
beneficiaries[]
max_accepted_payout1,000,000.000 HBD
percent_hbd10,000
post_id7,200,752
net_rshares249,925,135
author_curate_reward""
vote details (1)
@boch ·
Looking forward for next update thanx.
properties (22)
authorboch
permlinkre-dan-eos-developer-s-log-starday-201707-3-20170705t121322777z
categoryeos
json_metadata{"tags":["eos"],"app":"steemit/0.1"}
created2017-07-05 12:13:27
last_update2017-07-05 12:13:27
depth1
children0
last_payout2017-07-12 12:13: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_length38
author_reputation3,267,792,822
root_title"EOS - Developer’s Log Stardate 201707.3"
beneficiaries[]
max_accepted_payout1,000,000.000 HBD
percent_hbd10,000
post_id7,389,678
net_rshares0
@borislavzlatanov ·
I understood the problem when reaching the "What is everything so complicated?" section. Thank you for putting it there. Now I understand some of the difficulties blockchain developers have to deal with.
properties (22)
authorborislavzlatanov
permlinkre-dan-eos-developer-s-log-starday-201707-3-20170705t124636933z
categoryeos
json_metadata{"tags":["eos"],"app":"steemit/0.1"}
created2017-07-05 12:46:42
last_update2017-07-05 12:46:42
depth1
children0
last_payout2017-07-12 12:46: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_length203
author_reputation23,518,564,419,598
root_title"EOS - Developer’s Log Stardate 201707.3"
beneficiaries[]
max_accepted_payout1,000,000.000 HBD
percent_hbd10,000
post_id7,392,908
net_rshares0
@brentedward ·
Good comparisons to the GPU.. always like detailed posts like this.  Thanks!
properties (22)
authorbrentedward
permlinkre-dan-eos-developer-s-log-starday-201707-3-20170806t235231486z
categoryeos
json_metadata{"tags":["eos"],"app":"steemit/0.1"}
created2017-08-06 23:52:30
last_update2017-08-06 23:52:30
depth1
children1
last_payout2017-08-13 23:52: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_length76
author_reputation1,455,358,702
root_title"EOS - Developer’s Log Stardate 201707.3"
beneficiaries[]
max_accepted_payout1,000,000.000 HBD
percent_hbd10,000
post_id11,000,826
net_rshares0
@jackmiller ·
Just taking this opportunity to say "THANK YOU FOR FOLLOWING ME"

https://media.giphy.com/media/o7ZtPy8AzIl9K/giphy.gif
properties (22)
authorjackmiller
permlinkre-brentedward-re-dan-eos-developer-s-log-starday-201707-3-20170808t181226252z
categoryeos
json_metadata{"tags":["eos"],"image":["https://media.giphy.com/media/o7ZtPy8AzIl9K/giphy.gif"],"app":"steemit/0.1"}
created2017-08-08 18:12:24
last_update2017-08-08 18:12:24
depth2
children0
last_payout2017-08-15 18:12: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_length119
author_reputation68,065,227,692,972
root_title"EOS - Developer’s Log Stardate 201707.3"
beneficiaries[]
max_accepted_payout1,000,000.000 HBD
percent_hbd10,000
post_id11,198,846
net_rshares0
@brucebrownftw ·
Well.. looks like EOS concept is ALREADY doing well.  The market is signaling a huge need for this very thing.  Congrats to you and the team @dan.  I am hoping this is the currency that changes our monetary system for the better.
properties (22)
authorbrucebrownftw
permlinkre-dan-eos-developer-s-log-starday-201707-3-20170704t180156955z
categoryeos
json_metadata{"tags":["eos"],"users":["dan"],"app":"steemit/0.1"}
created2017-07-04 18:01:57
last_update2017-07-04 18:01:57
depth1
children0
last_payout2017-07-11 18:01: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_length229
author_reputation1,092,260,798,193
root_title"EOS - Developer’s Log Stardate 201707.3"
beneficiaries[]
max_accepted_payout1,000,000.000 HBD
percent_hbd10,000
post_id7,305,632
net_rshares0
@bushkil ·
$0.02
Nature #Photography 
Original photo by @bushkil
 ![image](https://img.esteem.ws/x1f7how4k4.jpg)
👍  ,
properties (23)
authorbushkil
permlinkre-dan-201774t143353253z
categoryeos
json_metadata{"tags":"eos","app":"esteem/1.4.6","format":"markdown+html","community":"esteem"}
created2017-07-04 08:34:03
last_update2017-07-04 08:34:03
depth1
children0
last_payout2017-07-11 08:34:03
cashout_time1969-12-31 23:59:59
total_payout_value0.019 HBD
curator_payout_value0.001 HBD
pending_payout_value0.000 HBD
promoted0.000 HBD
body_length95
author_reputation278,339,158,121
root_title"EOS - Developer’s Log Stardate 201707.3"
beneficiaries
0.
accountesteemapp
weight500
max_accepted_payout1,000,000.000 HBD
percent_hbd10,000
post_id7,248,772
net_rshares3,373,233,367
author_curate_reward""
vote details (2)
@bxt ·
nice post , but a little difficult for me , i will keep on reading , hope you can help me improve the technology.
properties (22)
authorbxt
permlinkre-dan-eos-developer-s-log-starday-201707-3-20170703t233333297z
categoryeos
json_metadata{"tags":["eos"],"app":"steemit/0.1"}
created2017-07-03 23:33:30
last_update2017-07-03 23:33:30
depth1
children0
last_payout2017-07-10 23: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_length113
author_reputation1,032,910,936,604,240
root_title"EOS - Developer’s Log Stardate 201707.3"
beneficiaries[]
max_accepted_payout1,000,000.000 HBD
percent_hbd10,000
post_id7,207,107
net_rshares0
@callumcampbell ·
I'm keen to buy EOS, just wish I knew more about it - project sounds very interesting though
properties (22)
authorcallumcampbell
permlinkre-dan-eos-developer-s-log-starday-201707-3-20170703t214823912z
categoryeos
json_metadata{"tags":["eos"],"app":"steemit/0.1"}
created2017-07-03 21:48:24
last_update2017-07-03 21:48:24
depth1
children0
last_payout2017-07-10 21: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_length92
author_reputation156,994,616,562
root_title"EOS - Developer’s Log Stardate 201707.3"
beneficiaries[]
max_accepted_payout1,000,000.000 HBD
percent_hbd10,000
post_id7,197,720
net_rshares0
@carface ·
$5.94
Hi thanks for this update, I have been on the edge of whether to invest or not for a while. Now I see it on the exchanges I am a bit confused, is it most probably going to be cheaper if I buy from the ICO or off the exchange or is it anybodys guess? Thanks.
👍  , ,
properties (23)
authorcarface
permlinkre-dan-eos-developer-s-log-starday-201707-3-20170704t174437496z
categoryeos
json_metadata{"tags":["eos"],"app":"steemit/0.1"}
created2017-07-04 17:44:39
last_update2017-07-04 17:44:39
depth1
children2
last_payout2017-07-11 17:44:39
cashout_time1969-12-31 23:59:59
total_payout_value5.896 HBD
curator_payout_value0.041 HBD
pending_payout_value0.000 HBD
promoted0.000 HBD
body_length257
author_reputation20,232,737,189,861
root_title"EOS - Developer’s Log Stardate 201707.3"
beneficiaries[]
max_accepted_payout1,000,000.000 HBD
percent_hbd10,000
post_id7,303,904
net_rshares941,906,494,082
author_curate_reward""
vote details (3)
@diegobeyer ·
$0.34
from the EOS.IO website I gather that EOS does not support/encourage any transaction made on exchanges. So I would not risk it (i.e. poloniex, kraken etc..)
👍  ,
properties (23)
authordiegobeyer
permlinkre-carface-re-dan-eos-developer-s-log-starday-201707-3-20170704t203219827z
categoryeos
json_metadata{"tags":["eos"],"app":"steemit/0.1"}
created2017-07-04 20:32:18
last_update2017-07-04 20:32:18
depth2
children1
last_payout2017-07-11 20:32:18
cashout_time1969-12-31 23:59:59
total_payout_value0.255 HBD
curator_payout_value0.081 HBD
pending_payout_value0.000 HBD
promoted0.000 HBD
body_length156
author_reputation1,249,142,445
root_title"EOS - Developer’s Log Stardate 201707.3"
beneficiaries[]
max_accepted_payout1,000,000.000 HBD
percent_hbd10,000
post_id7,320,189
net_rshares54,146,232,924
author_curate_reward""
vote details (2)
@carface ·
Thanks yeh, I've just read Jerry Banfield's post about investing in ICO's and I'm going off them now! Although saying that, everytime a new exciting one pops up I'm like I must have this one! Then the rush dies down again until the next time!
properties (22)
authorcarface
permlinkre-diegobeyer-re-carface-re-dan-eos-developer-s-log-starday-201707-3-20170704t211046309z
categoryeos
json_metadata{"tags":["eos"],"app":"steemit/0.1"}
created2017-07-04 21:10:48
last_update2017-07-04 21:10:48
depth3
children0
last_payout2017-07-11 21:10: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_length242
author_reputation20,232,737,189,861
root_title"EOS - Developer’s Log Stardate 201707.3"
beneficiaries[]
max_accepted_payout1,000,000.000 HBD
percent_hbd10,000
post_id7,323,630
net_rshares0
@caspell ·
Thanks to those available solutions and design patterns it makes it easier for us to work with the software.
properties (22)
authorcaspell
permlinkre-dan-eos-developer-s-log-starday-201707-3-20170703t230227811z
categoryeos
json_metadata{"tags":["eos"],"app":"steemit/0.1"}
created2017-07-03 23:00:45
last_update2017-07-03 23:00:45
depth1
children0
last_payout2017-07-10 23:00: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_length108
author_reputation1,395,680,278,751
root_title"EOS - Developer’s Log Stardate 201707.3"
beneficiaries[]
max_accepted_payout1,000,000.000 HBD
percent_hbd10,000
post_id7,204,367
net_rshares0
@charles1 ·
Always enjoy your post @dan the crpyto master, keep it up. I mentioned you on my last blog.

Feel free to check out it out : Why Steemit will disrup social media and gain market share
properties (22)
authorcharles1
permlinkre-dan-eos-developer-s-log-starday-201707-3-20170705t184329567z
categoryeos
json_metadata{"tags":["eos"],"users":["dan"],"app":"steemit/0.1"}
created2017-07-05 18:43:30
last_update2017-07-05 18:43:30
depth1
children0
last_payout2017-07-12 18:43: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_length183
author_reputation73,578,987,512,478
root_title"EOS - Developer’s Log Stardate 201707.3"
beneficiaries[]
max_accepted_payout1,000,000.000 HBD
percent_hbd10,000
post_id7,429,433
net_rshares0
@christianjcv ·
Wow! Great post!
properties (22)
authorchristianjcv
permlinkre-dan-eos-developer-s-log-starday-201707-3-20170704t204954871z
categoryeos
json_metadata{"tags":["eos"],"app":"steemit/0.1"}
created2017-07-04 20:48:06
last_update2017-07-04 20:48:06
depth1
children1
last_payout2017-07-11 20:48: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_length16
author_reputation258,523,042,864
root_title"EOS - Developer’s Log Stardate 201707.3"
beneficiaries[]
max_accepted_payout1,000,000.000 HBD
percent_hbd10,000
post_id7,321,615
net_rshares0
@varys ·
thanks
properties (22)
authorvarys
permlinkre-christianjcv-re-dan-eos-developer-s-log-starday-201707-3-20170704t221727566z
categoryeos
json_metadata{"tags":["eos"],"app":"steemit/0.1"}
created2017-07-04 22:17:27
last_update2017-07-04 22:17:27
depth2
children0
last_payout2017-07-11 22:17: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_length6
author_reputation187,900,233
root_title"EOS - Developer’s Log Stardate 201707.3"
beneficiaries[]
max_accepted_payout1,000,000.000 HBD
percent_hbd10,000
post_id7,329,236
net_rshares0
@chuxlouis ·
Lovely  post that made so much sense... Upvoted and followed
Follow back @chuxlouis Thanks a lot.
👍  
properties (23)
authorchuxlouis
permlinkre-dan-eos-developer-s-log-starday-201707-3-20170705t150752582z
categoryeos
json_metadata{"tags":["eos"],"users":["chuxlouis"],"app":"steemit/0.1"}
created2017-07-05 15:07:54
last_update2017-07-05 15:07:54
depth1
children0
last_payout2017-07-12 15:07:54
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_reputation831,752,393,309
root_title"EOS - Developer’s Log Stardate 201707.3"
beneficiaries[]
max_accepted_payout1,000,000.000 HBD
percent_hbd10,000
post_id7,407,727
net_rshares876,320,306
author_curate_reward""
vote details (1)
@criptoworld ·
good
properties (22)
authorcriptoworld
permlinkre-dan-eos-developer-s-log-starday-201707-3-20170709t050101671z
categoryeos
json_metadata{"tags":["eos"],"app":"steemit/0.1"}
created2017-07-09 05:01:24
last_update2017-07-09 05:01:24
depth1
children0
last_payout2017-07-16 05: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_length4
author_reputation158,581,105,509
root_title"EOS - Developer’s Log Stardate 201707.3"
beneficiaries[]
max_accepted_payout1,000,000.000 HBD
percent_hbd10,000
post_id7,828,515
net_rshares0
@crypt0 ·
$1.87
It's always nice to get an update about a project that many are investing in, and knowing that the minds behind said projects are actually truly interested in what they're doing.

Much luck with the new challenges, but if anyone is suited for solving them it's none other than you, Dan. 

Cheers.
👍  , , , , , , , , , ,
properties (23)
authorcrypt0
permlinkre-dan-eos-developer-s-log-starday-201707-3-20170704t002608075z
categoryeos
json_metadata{"tags":["eos"],"app":"steemit/0.1"}
created2017-07-04 00:26:06
last_update2017-07-04 00:26:06
depth1
children1
last_payout2017-07-11 00:26:06
cashout_time1969-12-31 23:59:59
total_payout_value1.862 HBD
curator_payout_value0.010 HBD
pending_payout_value0.000 HBD
promoted0.000 HBD
body_length296
author_reputation529,629,960,197,218
root_title"EOS - Developer’s Log Stardate 201707.3"
beneficiaries[]
max_accepted_payout1,000,000.000 HBD
percent_hbd10,000
post_id7,211,088
net_rshares283,645,822,985
author_curate_reward""
vote details (11)
@face2face ·
I agree @crypt0
👍  
properties (23)
authorface2face
permlinkre-crypt0-re-dan-eos-developer-s-log-starday-201707-3-20170704t013833175z
categoryeos
json_metadata{"tags":["eos"],"users":["crypt0"],"app":"steemit/0.1"}
created2017-07-04 01:38:39
last_update2017-07-04 01:38:39
depth2
children0
last_payout2017-07-11 01:38: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_length15
author_reputation96,985,200,810,100
root_title"EOS - Developer’s Log Stardate 201707.3"
beneficiaries[]
max_accepted_payout1,000,000.000 HBD
percent_hbd10,000
post_id7,216,592
net_rshares0
author_curate_reward""
vote details (1)
@cryptoblessings ·
http://cdn1.theodysseyonline.com/files/2015/12/17/6358596204340677191059790836_weird%20puzzler.gif
On a serious note time to study up on EOS some more :)
properties (22)
authorcryptoblessings
permlinkre-dan-eos-developer-s-log-starday-201707-3-20170704t022239640z
categoryeos
json_metadata{"tags":["eos"],"image":["http://cdn1.theodysseyonline.com/files/2015/12/17/6358596204340677191059790836_weird%20puzzler.gif"],"app":"steemit/0.1"}
created2017-07-04 02:22:48
last_update2017-07-04 02:22:48
depth1
children0
last_payout2017-07-11 02:22: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_length153
author_reputation145,027,844,611
root_title"EOS - Developer’s Log Stardate 201707.3"
beneficiaries[]
max_accepted_payout1,000,000.000 HBD
percent_hbd10,000
post_id7,220,083
net_rshares0
@cryptodata ·
Great post with the details surrounding EOS. It's always nice to have a good dev who actually knows his stuff!
properties (22)
authorcryptodata
permlinkre-dan-eos-developer-s-log-starday-201707-3-20170705t010845145z
categoryeos
json_metadata{"tags":["eos"],"app":"steemit/0.1"}
created2017-07-05 01:08:48
last_update2017-07-05 01:08:48
depth1
children0
last_payout2017-07-12 01:08: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_length110
author_reputation1,577,806,466,314
root_title"EOS - Developer’s Log Stardate 201707.3"
beneficiaries[]
max_accepted_payout1,000,000.000 HBD
percent_hbd10,000
post_id7,341,598
net_rshares0
@cryptotour ·
Check this link how people coming forward for self voting scams.
https://steemit.com/steemit/@cryptopizza/why-you-do-not-make-money-even-with-enough-votes-and-good-content-does-self-voting-needs-to-be-banned-in-steemit
properties (22)
authorcryptotour
permlinkre-dan-eos-developer-s-log-starday-201707-3-20170707t183644244z
categoryeos
json_metadata{"tags":["eos"],"links":["https://steemit.com/steemit/@cryptopizza/why-you-do-not-make-money-even-with-enough-votes-and-good-content-does-self-voting-needs-to-be-banned-in-steemit"],"app":"steemit/0.1"}
created2017-07-07 18:36:57
last_update2017-07-07 18:36:57
depth1
children0
last_payout2017-07-14 18:36: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_length218
author_reputation-2,035,912,839
root_title"EOS - Developer’s Log Stardate 201707.3"
beneficiaries[]
max_accepted_payout1,000,000.000 HBD
percent_hbd10,000
post_id7,673,884
net_rshares0
@dan ·
$35.83
properties (23)
authordan
permlinkre-dan-eos-developer-s-log-starday-201707-3-20170703t214811489z
categoryeos
json_metadata{"tags":["eos"],"app":"steemit/0.1"}
created2017-07-03 21:48:12
last_update2017-07-03 21:48:12
depth1
children18
last_payout2017-07-10 21:48:12
cashout_time1969-12-31 23:59:59
total_payout_value27.187 HBD
curator_payout_value8.644 HBD
pending_payout_value0.000 HBD
promoted0.000 HBD
body_length112
author_reputation155,470,101,136,708
root_title"EOS - Developer’s Log Stardate 201707.3"
beneficiaries[]
max_accepted_payout1,000,000.000 HBD
percent_hbd10,000
post_id7,197,692
net_rshares5,379,934,166,730
author_curate_reward""
vote details (31)
@blockrush · (edited)
Mr @Dan, your hard work at Steemit might not last if Steemit does not live to its role in maintaining and development Steemit.
With your attention divided between Steemit and EOS, Steemit is needs Steemit Inc now more than ever. There is a new Steemit killer arising > https://steemit.com/steemit/@blockrush/is-wildspark-the-steemit-killer-blockrush
properties (22)
authorblockrush
permlinkre-dan-re-dan-eos-developer-s-log-starday-201707-3-20170706t130310766z
categoryeos
json_metadata{"tags":["eos"],"users":["dan"],"links":["https://steemit.com/steemit/@blockrush/is-wildspark-the-steemit-killer-blockrush"],"app":"steemit/0.1"}
created2017-07-06 13:03:27
last_update2017-07-06 13:05:00
depth2
children0
last_payout2017-07-13 13:03: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_length349
author_reputation5,038,471,003,192
root_title"EOS - Developer’s Log Stardate 201707.3"
beneficiaries[]
max_accepted_payout1,000,000.000 HBD
percent_hbd10,000
post_id7,517,593
net_rshares0
@calamus056 · (edited)
I had the same thing a few days ago and it was annoying. That's why i normally leave the tags empty until i'm absolutely ready to publish...
👍  
properties (23)
authorcalamus056
permlinkre-dan-re-dan-eos-developer-s-log-starday-201707-3-20170705t003006659z
categoryeos
json_metadata{"tags":["eos"],"app":"steemit/0.1"}
created2017-07-05 00:30:24
last_update2017-07-05 08:15:42
depth2
children0
last_payout2017-07-12 00:30: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_length140
author_reputation5,645,464,390,253
root_title"EOS - Developer’s Log Stardate 201707.3"
beneficiaries[]
max_accepted_payout1,000,000.000 HBD
percent_hbd10,000
post_id7,338,953
net_rshares1,033,009,835
author_curate_reward""
vote details (1)
@fiveboringgames ·
$1.20
You know what to put in the next update so
👍  , , ,
properties (23)
authorfiveboringgames
permlinkre-dan-re-dan-eos-developer-s-log-starday-201707-3-20170703t215310370z
categoryeos
json_metadata{"tags":["eos"],"app":"steemit/0.1"}
created2017-07-03 21:53:12
last_update2017-07-03 21:53:12
depth2
children2
last_payout2017-07-10 21:53:12
cashout_time1969-12-31 23:59:59
total_payout_value1.170 HBD
curator_payout_value0.035 HBD
pending_payout_value0.000 HBD
promoted0.000 HBD
body_length42
author_reputation73,849,148,682,162
root_title"EOS - Developer’s Log Stardate 201707.3"
beneficiaries[]
max_accepted_payout1,000,000.000 HBD
percent_hbd10,000
post_id7,198,183
net_rshares181,353,472,665
author_curate_reward""
vote details (4)
@hamzazaman ·
Yeah U Are Right Offcoure He Know What To Put In The Next Update so
properties (22)
authorhamzazaman
permlinkre-fiveboringgames-re-dan-re-dan-eos-developer-s-log-starday-201707-3-20170704t061258478z
categoryeos
json_metadata{"tags":["eos"],"app":"steemit/0.1"}
created2017-07-04 06:13:06
last_update2017-07-04 06:13:06
depth3
children0
last_payout2017-07-11 06:13: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_length67
author_reputation3,742,031,536
root_title"EOS - Developer’s Log Stardate 201707.3"
beneficiaries[]
max_accepted_payout1,000,000.000 HBD
percent_hbd10,000
post_id7,237,175
net_rshares0
@ir3m0del ·
battletoads
properties (22)
authorir3m0del
permlinkre-fiveboringgames-re-dan-re-dan-eos-developer-s-log-starday-201707-3-20170705t025053327z
categoryeos
json_metadata{"tags":["eos"],"app":"steemit/0.1"}
created2017-07-05 02:50:48
last_update2017-07-05 02:50:48
depth3
children0
last_payout2017-07-12 02:50: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_length11
author_reputation92,457,493,937
root_title"EOS - Developer’s Log Stardate 201707.3"
beneficiaries[]
max_accepted_payout1,000,000.000 HBD
percent_hbd10,000
post_id7,348,402
net_rshares0
@fyrstikken ·
$10.86
And why should you not be allowed to be upvoted just like the rest of us? I think your posts are very valuable and we are a legion who thinks the same. Take Our Upvotes! Never Decline!
👍  , , , , , , , , , , , , , , , , , ,
properties (23)
authorfyrstikken
permlinkre-dan-re-dan-eos-developer-s-log-starday-201707-3-20170704t025026253z
categoryeos
json_metadata{"tags":["eos"],"app":"steemit/0.1"}
created2017-07-04 02:50:27
last_update2017-07-04 02:50:27
depth2
children4
last_payout2017-07-11 02:50:27
cashout_time1969-12-31 23:59:59
total_payout_value8.158 HBD
curator_payout_value2.700 HBD
pending_payout_value0.000 HBD
promoted0.000 HBD
body_length184
author_reputation377,187,606,449,589
root_title"EOS - Developer’s Log Stardate 201707.3"
beneficiaries[]
max_accepted_payout1,000,000.000 HBD
percent_hbd10,000
post_id7,222,402
net_rshares1,653,555,842,979
author_curate_reward""
vote details (19)
@blockrush ·
@fyrstikken, self-upvoting might be part of the reasons why a new platform could overtake Steemit > https://steemit.com/steemit/@blockrush/is-wildspark-the-steemit-killer-blockrush
properties (22)
authorblockrush
permlinkre-fyrstikken-re-dan-re-dan-eos-developer-s-log-starday-201707-3-20170706t130706179z
categoryeos
json_metadata{"tags":["eos"],"users":["fyrstikken"],"links":["https://steemit.com/steemit/@blockrush/is-wildspark-the-steemit-killer-blockrush"],"app":"steemit/0.1"}
created2017-07-06 13:07:18
last_update2017-07-06 13:07:18
depth3
children0
last_payout2017-07-13 13:07: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_length180
author_reputation5,038,471,003,192
root_title"EOS - Developer’s Log Stardate 201707.3"
beneficiaries[]
max_accepted_payout1,000,000.000 HBD
percent_hbd10,000
post_id7,518,011
net_rshares0
@cryptonfused ·
Because payouts are declined it is obviously unecessary. It is actually helpful to the community. It would be better to say " thank you for declining payouts"
properties (22)
authorcryptonfused
permlinkre-fyrstikken-re-dan-re-dan-eos-developer-s-log-starday-201707-3-20170705t235054789z
categoryeos
json_metadata{"tags":["eos"],"app":"steemit/0.1"}
created2017-07-05 23:51:03
last_update2017-07-05 23:51:03
depth3
children0
last_payout2017-07-12 23:51: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_length158
author_reputation253,937,837,335
root_title"EOS - Developer’s Log Stardate 201707.3"
beneficiaries[]
max_accepted_payout1,000,000.000 HBD
percent_hbd10,000
post_id7,455,501
net_rshares0
@matt-a ·
Agreed.
properties (22)
authormatt-a
permlinkre-fyrstikken-re-dan-re-dan-eos-developer-s-log-starday-201707-3-20170705t115030359z
categoryeos
json_metadata{"tags":["eos"],"app":"steemit/0.1"}
created2017-07-05 11:50:48
last_update2017-07-05 11:50:48
depth3
children0
last_payout2017-07-12 11:50: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_length7
author_reputation34,621,295,577,150
root_title"EOS - Developer’s Log Stardate 201707.3"
beneficiaries[]
max_accepted_payout1,000,000.000 HBD
percent_hbd10,000
post_id7,387,674
net_rshares0
@shla-rafia ·
yes
properties (22)
authorshla-rafia
permlinkre-fyrstikken-re-dan-re-dan-eos-developer-s-log-starday-201707-3-20170704t112433840z
categoryeos
json_metadata{"tags":["eos"],"app":"steemit/0.1"}
created2017-07-04 11:24:33
last_update2017-07-04 11:24:33
depth3
children0
last_payout2017-07-11 11:24: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_length3
author_reputation67,630,971,735,138
root_title"EOS - Developer’s Log Stardate 201707.3"
beneficiaries[]
max_accepted_payout1,000,000.000 HBD
percent_hbd10,000
post_id7,263,667
net_rshares0
@madmaxfury ·
No need to apologize. Total newbie minnow here, but from what I've seen, Steemit is a win-win environment. The stronger you are, the stronger the community is. 

So, enjoy!
properties (22)
authormadmaxfury
permlinkre-dan-re-dan-eos-developer-s-log-starday-201707-3-20170724t064831616z
categoryeos
json_metadata{"tags":["eos"],"app":"steemit/0.1"}
created2017-07-24 06:48:33
last_update2017-07-24 06:48:33
depth2
children0
last_payout2017-07-31 06:48: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_length172
author_reputation1,414,250,200,620
root_title"EOS - Developer’s Log Stardate 201707.3"
beneficiaries[]
max_accepted_payout1,000,000.000 HBD
percent_hbd10,000
post_id9,500,394
net_rshares0
@matt-a · (edited)
$0.29
Like a mother apologizing for giving birth.  Come on now, Dan!  Accept and reap your rewards!  

I, personally, knowing that you don't even need it, feel great giving you a 100% upvote.  You've navigated the majority of this into existence, and that's something to be proud of. I understand being humble, but you have the right to be proud.  You've emancipated and liberated countless human beings with your work.  Take time to reflect on that.  If you have that ability and execute it, you damn well better believe you have the right to take pride in it all.   

Dude, you're spearheading some seriously revolutionary shit.  Just saying.  It's (well, was) the 4th of July!  Independence!  Emancipation! Sovereignty! FREEDOM!  That is what you are doing.  Reward the shit out of this post as hard as you can.  You and your Dad are straight up on George Washington levels in my eyes.

The platforms that now exist now give myself, my family, my friends, and those that I care about, and society at large a one way ticket to life, liberty, and the pursuit of happiness.  And on a cryptographically secure route!  We live in some wild times . . .  This is pioneer territory . . .

I guess that I'm just writing to say that I don't think that you should apologize for anything.  You all have bestowed upon the Earth something fierce!  A tool that two human beings can utilize to facilitate the transfer of value as they see fit.  True liberation. Take pride in it, and sleep well.

HAPPY *(late)* 4TH OF JULYYYY!!!
```
</drunken4thofJulyRant>
👍  , , ,
properties (23)
authormatt-a
permlinkre-dan-re-dan-eos-developer-s-log-starday-201707-3-20170705t114152017z
categoryeos
json_metadata{"tags":["eos"],"app":"steemit/0.1"}
created2017-07-05 11:42:15
last_update2017-07-05 12:01:00
depth2
children0
last_payout2017-07-12 11:42:15
cashout_time1969-12-31 23:59:59
total_payout_value0.219 HBD
curator_payout_value0.071 HBD
pending_payout_value0.000 HBD
promoted0.000 HBD
body_length1,538
author_reputation34,621,295,577,150
root_title"EOS - Developer’s Log Stardate 201707.3"
beneficiaries[]
max_accepted_payout1,000,000.000 HBD
percent_hbd10,000
post_id7,386,932
net_rshares54,643,969,351
author_curate_reward""
vote details (4)
@morality ·
Oh dan!!
properties (22)
authormorality
permlinkre-dan-re-dan-eos-developer-s-log-starday-201707-3-20170705t141503545z
categoryeos
json_metadata{"tags":["eos"],"app":"steemit/0.1"}
created2017-07-05 14:15:03
last_update2017-07-05 14:15:03
depth2
children0
last_payout2017-07-12 14:15: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_length8
author_reputation174,776,140,429
root_title"EOS - Developer’s Log Stardate 201707.3"
beneficiaries[]
max_accepted_payout1,000,000.000 HBD
percent_hbd10,000
post_id7,402,102
net_rshares0
@ndnd92 ·
i have fallowed you .. and i will vote u
fallow me please and tell me when u do it
tnx
👍  
properties (23)
authorndnd92
permlinkre-dan-re-dan-eos-developer-s-log-starday-201707-3-20170704t114022067z
categoryeos
json_metadata{"tags":["eos"],"app":"steemit/0.1"}
created2017-07-04 11:40:21
last_update2017-07-04 11:40:21
depth2
children1
last_payout2017-07-11 11:40: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_length86
author_reputation-443,134,974,292
root_title"EOS - Developer’s Log Stardate 201707.3"
beneficiaries[]
max_accepted_payout1,000,000.000 HBD
percent_hbd10,000
post_id7,265,130
net_rshares951,761,266
author_curate_reward""
vote details (1)
@alexpmorris ·
🐳 WhaleBoT says: @ndnd92, warning: vote/follow begging is shunned upon, watch out or I'll EAT YA! 🙁
properties (22)
authoralexpmorris
permlinkre-ndnd92-re-dan-re-dan-eos-developer-s-log-starday-201707-3-20170707t144120552z
categoryeos
json_metadata{"tags":["eos"],"users":["ndnd92"],"app":"steemit/0.1"}
created2017-07-07 14:41:21
last_update2017-07-07 14:41:21
depth3
children0
last_payout2017-07-14 14:41: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_length99
author_reputation32,063,874,290,523
root_title"EOS - Developer’s Log Stardate 201707.3"
beneficiaries[]
max_accepted_payout1,000,000.000 HBD
percent_hbd10,000
post_id7,649,977
net_rshares0
@satoshimoto ·
Go get yourself i nive Dinner @Dan, you've earned it ;)
👍  ,
properties (23)
authorsatoshimoto
permlinkre-dan-201774t01830508z
categoryeos
json_metadata{"tags":"eos","app":"esteem/1.4.6","format":"markdown+html","community":"esteem"}
created2017-07-03 23:18:33
last_update2017-07-03 23:18:33
depth2
children0
last_payout2017-07-10 23:18: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_length55
author_reputation269,916,745,612
root_title"EOS - Developer’s Log Stardate 201707.3"
beneficiaries
0.
accountesteemapp
weight500
max_accepted_payout1,000,000.000 HBD
percent_hbd10,000
post_id7,205,797
net_rshares1,830,346,667
author_curate_reward""
vote details (2)
@tomino ·
$0.70
Please don't apologize for beeing awesome :-)

http://memeshappen.com/media/created/2017/04/Whos-awesome-You-are.jpg
👍  , , , , , , , ,
properties (23)
authortomino
permlinkre-dan-re-dan-eos-developer-s-log-starday-201707-3-20170704t142350170z
categoryeos
json_metadata{"tags":["eos"],"image":["http://memeshappen.com/media/created/2017/04/Whos-awesome-You-are.jpg"],"app":"steemit/0.1"}
created2017-07-04 14:23:57
last_update2017-07-04 14:23:57
depth2
children0
last_payout2017-07-11 14:23:57
cashout_time1969-12-31 23:59:59
total_payout_value0.700 HBD
curator_payout_value0.000 HBD
pending_payout_value0.000 HBD
promoted0.000 HBD
body_length116
author_reputation1,913,291,987,918
root_title"EOS - Developer’s Log Stardate 201707.3"
beneficiaries[]
max_accepted_payout1,000,000.000 HBD
percent_hbd10,000
post_id7,282,574
net_rshares109,813,242,638
author_curate_reward""
vote details (9)
@yehey · (edited)
$0.08
Thank you Dan for keeping us updated.

Congrats by the way for the  EOS initial coin offer.
Follow me @Yehey
👍  , , ,
properties (23)
authoryehey
permlinkre-dan-re-dan-eos-developer-s-log-starday-201707-3-20170704t043530703z
categoryeos
json_metadata{"tags":["eos"],"users":["yehey"],"app":"steemit/0.1"}
created2017-07-04 04:35:30
last_update2017-07-04 04:35:42
depth2
children0
last_payout2017-07-11 04:35:30
cashout_time1969-12-31 23:59:59
total_payout_value0.081 HBD
curator_payout_value0.000 HBD
pending_payout_value0.000 HBD
promoted0.000 HBD
body_length108
author_reputation22,184,787,552,504
root_title"EOS - Developer’s Log Stardate 201707.3"
beneficiaries[]
max_accepted_payout1,000,000.000 HBD
percent_hbd10,000
post_id7,229,921
net_rshares12,597,501,023
author_curate_reward""
vote details (4)
@daniel2416 ·
Great post. This Eos contract also can reduce a lot of work pressure from block chain miners who have to execute Hashes to confirm transactions.

 New EOS Contract would give liberty and better data storage optimisation at both sender and receiver's end.
👍  
properties (23)
authordaniel2416
permlinkre-dan-eos-developer-s-log-starday-201707-3-20170704t101709176z
categoryeos
json_metadata{"tags":["eos"],"app":"steemit/0.1"}
created2017-07-04 10:17:18
last_update2017-07-04 10:17:18
depth1
children0
last_payout2017-07-11 10:17: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_length254
author_reputation71,130,677,251
root_title"EOS - Developer’s Log Stardate 201707.3"
beneficiaries[]
max_accepted_payout1,000,000.000 HBD
percent_hbd10,000
post_id7,257,461
net_rshares1,573,829,012
author_curate_reward""
vote details (1)
@dapsyt ·
Wish i am computer literate ... nice update though
properties (22)
authordapsyt
permlinkre-dan-eos-developer-s-log-starday-201707-3-20170704t124036077z
categoryeos
json_metadata{"tags":["eos"],"app":"steemit/0.1"}
created2017-07-04 12:40:45
last_update2017-07-04 12:40:45
depth1
children0
last_payout2017-07-11 12:40: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_length50
author_reputation18,136,052
root_title"EOS - Developer’s Log Stardate 201707.3"
beneficiaries[]
max_accepted_payout1,000,000.000 HBD
percent_hbd10,000
post_id7,271,165
net_rshares0
@deazydee ·
Thx for sharing this information with us, cool post like it!
properties (22)
authordeazydee
permlinkre-dan-eos-developer-s-log-starday-201707-3-20170704t140947396z
categoryeos
json_metadata{"tags":["eos"],"app":"steemit/0.1"}
created2017-07-04 14:09:48
last_update2017-07-04 14:09:48
depth1
children0
last_payout2017-07-11 14:09: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_length60
author_reputation312,441,413,976
root_title"EOS - Developer’s Log Stardate 201707.3"
beneficiaries[]
max_accepted_payout1,000,000.000 HBD
percent_hbd10,000
post_id7,280,919
net_rshares0
@deleni ·
Thank you so much for your good work dear @dan!

Good luck to you and good luck in the future!
properties (22)
authordeleni
permlinkre-dan-eos-developer-s-log-starday-201707-3-20170710t222835795z
categoryeos
json_metadata{"tags":["eos"],"users":["dan"],"app":"steemit/0.1"}
created2017-07-10 22:28:39
last_update2017-07-10 22:28:39
depth1
children0
last_payout2017-07-17 22:28: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_length94
author_reputation659,010,170,363
root_title"EOS - Developer’s Log Stardate 201707.3"
beneficiaries[]
max_accepted_payout1,000,000.000 HBD
percent_hbd10,000
post_id8,038,722
net_rshares0
@dinsha ·
nice work mate.. good luck
properties (22)
authordinsha
permlinkre-dan-eos-developer-s-log-starday-201707-3-20170704t071735050z
categoryeos
json_metadata{"tags":["eos"],"app":"steemit/0.1"}
created2017-07-04 07:17:39
last_update2017-07-04 07:17:39
depth1
children0
last_payout2017-07-11 07:17: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_length26
author_reputation23,079,753,432,500
root_title"EOS - Developer’s Log Stardate 201707.3"
beneficiaries[]
max_accepted_payout1,000,000.000 HBD
percent_hbd10,000
post_id7,242,247
net_rshares0
@dkinx ·
hi , pls i am new to steemit and crypto, and blogging is my hobby, you can follow me  @dkinx
👍  
properties (23)
authordkinx
permlinkre-dan-eos-developer-s-log-starday-201707-3-20170704t175126218z
categoryeos
json_metadata{"tags":["eos"],"users":["dkinx"],"app":"steemit/0.1"}
created2017-07-04 17:51:27
last_update2017-07-04 17:51:27
depth1
children0
last_payout2017-07-11 17:51: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_length92
author_reputation17,499,415,125
root_title"EOS - Developer’s Log Stardate 201707.3"
beneficiaries[]
max_accepted_payout1,000,000.000 HBD
percent_hbd10,000
post_id7,304,560
net_rshares1,786,866,994
author_curate_reward""
vote details (1)
@dlina-v-metrah ·
Do you think we should take the EOS now, or wait for it to appear on different exchanges?
properties (22)
authordlina-v-metrah
permlinkre-dan-eos-developer-s-log-starday-201707-3-20170704t122456419z
categoryeos
json_metadata{"tags":["eos"],"app":"steemit/0.1"}
created2017-07-04 12:25:12
last_update2017-07-04 12:25:12
depth1
children0
last_payout2017-07-11 12:25: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_length89
author_reputation4,193,087,735,412
root_title"EOS - Developer’s Log Stardate 201707.3"
beneficiaries[]
max_accepted_payout1,000,000.000 HBD
percent_hbd10,000
post_id7,269,671
net_rshares0
@dontstopmenow ·
$2.43
Cool, will be getting some tonight, glad they have it in Kraken with a few pairs (ETH, BTC, USD, EUR)

Thanks @dan !!
👍  ,
properties (23)
authordontstopmenow
permlinkre-dan-eos-developer-s-log-starday-201707-3-20170703t220348727z
categoryeos
json_metadata{"tags":["eos"],"users":["dan"],"app":"steemit/0.1"}
created2017-07-03 21:54:12
last_update2017-07-03 21:54:12
depth1
children1
last_payout2017-07-10 21:54:12
cashout_time1969-12-31 23:59:59
total_payout_value1.828 HBD
curator_payout_value0.606 HBD
pending_payout_value0.000 HBD
promoted0.000 HBD
body_length117
author_reputation68,990,690,787,507
root_title"EOS - Developer’s Log Stardate 201707.3"
beneficiaries[]
max_accepted_payout1,000,000.000 HBD
percent_hbd10,000
post_id7,198,279
net_rshares365,697,821,399
author_curate_reward""
vote details (2)
@randowhale ·
This post received a 2.2% upvote from @randowhale thanks to @dontstopmenow!  For more information, [click here](https://steemit.com/steemit/@randowhale/introducing-randowhale-will-you-get-the-100-vote-give-it-a-shot)!
properties (22)
authorrandowhale
permlinkre-re-dan-eos-developer-s-log-starday-201707-3-20170703t220348727z-20170710t032327
categoryeos
json_metadata"{"format": "markdown", "app": "randowhale/0.1"}"
created2017-07-10 03:23:30
last_update2017-07-10 03:23:30
depth2
children0
last_payout2017-07-17 03:23: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_length217
author_reputation47,657,457,485,459
root_title"EOS - Developer’s Log Stardate 201707.3"
beneficiaries[]
max_accepted_payout1,000,000.000 HBD
percent_hbd10,000
post_id7,940,435
net_rshares0
@doqstrader ·
$0.02
good.. keep steemit go further.
👍  
properties (23)
authordoqstrader
permlinkre-dan-eos-developer-s-log-starday-201707-3-20170705t160231922z
categoryeos
json_metadata{"tags":["eos"],"app":"steemit/0.1"}
created2017-07-05 16:02:30
last_update2017-07-05 16:02:30
depth1
children0
last_payout2017-07-12 16:02:30
cashout_time1969-12-31 23:59:59
total_payout_value0.018 HBD
curator_payout_value0.006 HBD
pending_payout_value0.000 HBD
promoted0.000 HBD
body_length31
author_reputation756,354,394,224
root_title"EOS - Developer’s Log Stardate 201707.3"
beneficiaries[]
max_accepted_payout1,000,000.000 HBD
percent_hbd10,000
post_id7,413,455
net_rshares5,063,874,754
author_curate_reward""
vote details (1)
@dougkarr ·
Hey @dan I love Steemit, thank you so much! Been on the platform for 10 months, and today finally wrote my introduceyouself post. If you have a sec to take a look, I'd hugely appreciate it! Thanks for making Steemit what it is!
properties (22)
authordougkarr
permlinkre-dan-eos-developer-s-log-starday-201707-3-20170704t181535592z
categoryeos
json_metadata{"tags":["eos"],"users":["dan"],"app":"steemit/0.1"}
created2017-07-04 18:15:36
last_update2017-07-04 18:15:36
depth1
children0
last_payout2017-07-11 18:15: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_length227
author_reputation42,423,973,873,019
root_title"EOS - Developer’s Log Stardate 201707.3"
beneficiaries[]
max_accepted_payout1,000,000.000 HBD
percent_hbd10,000
post_id7,307,011
net_rshares0
@dowha · (edited)
$0.71
I have steemit, bts and Eos will join the party too
👍  , , , , ,
properties (23)
authordowha
permlinkre-dan-eos-developer-s-log-starday-201707-3-20170703t215024783z
categoryeos
json_metadata{"tags":["eos"],"app":"steemit/0.1"}
created2017-07-03 21:50:03
last_update2017-07-03 21:51:48
depth1
children3
last_payout2017-07-10 21:50:03
cashout_time1969-12-31 23:59:59
total_payout_value0.696 HBD
curator_payout_value0.010 HBD
pending_payout_value0.000 HBD
promoted0.000 HBD
body_length51
author_reputation2,298,201,438,916
root_title"EOS - Developer’s Log Stardate 201707.3"
beneficiaries[]
max_accepted_payout1,000,000.000 HBD
percent_hbd10,000
post_id7,197,877
net_rshares106,334,181,147
author_curate_reward""
vote details (6)
@anonimnotoriu ·
Basically a dan larimer investment. Why not add golos tu the mix? :)
properties (22)
authoranonimnotoriu
permlinkre-dowha-re-dan-eos-developer-s-log-starday-201707-3-20170705t100838507z
categoryeos
json_metadata{"tags":["eos"],"app":"steemit/0.1"}
created2017-07-05 10:08:51
last_update2017-07-05 10:08:51
depth2
children0
last_payout2017-07-12 10:08: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_length68
author_reputation3,101,674,089,461
root_title"EOS - Developer’s Log Stardate 201707.3"
beneficiaries[]
max_accepted_payout1,000,000.000 HBD
percent_hbd10,000
post_id7,379,629
net_rshares0
@richreck ·
$0.79
Smart move 🍷
👍  ,
properties (23)
authorrichreck
permlinkre-dowha-re-dan-eos-developer-s-log-starday-201707-3-20170704t180502671z
categoryeos
json_metadata{"tags":["eos"],"app":"steemit/0.1"}
created2017-07-04 18:05:06
last_update2017-07-04 18:05:06
depth2
children1
last_payout2017-07-11 18:05:06
cashout_time1969-12-31 23:59:59
total_payout_value0.786 HBD
curator_payout_value0.000 HBD
pending_payout_value0.000 HBD
promoted0.000 HBD
body_length12
author_reputation263,519,071,944
root_title"EOS - Developer’s Log Stardate 201707.3"
beneficiaries[]
max_accepted_payout1,000,000.000 HBD
percent_hbd10,000
post_id7,305,918
net_rshares125,119,938,791
author_curate_reward""
vote details (2)
@dowha ·
$0.81
i will wait a little bit more and then try my luck
👍  
properties (23)
authordowha
permlinkre-richreck-re-dowha-re-dan-eos-developer-s-log-starday-201707-3-20170704t181523905z
categoryeos
json_metadata{"tags":["eos"],"app":"steemit/0.1"}
created2017-07-04 18:15:24
last_update2017-07-04 18:15:24
depth3
children0
last_payout2017-07-11 18:15:24
cashout_time1969-12-31 23:59:59
total_payout_value0.607 HBD
curator_payout_value0.201 HBD
pending_payout_value0.000 HBD
promoted0.000 HBD
body_length50
author_reputation2,298,201,438,916
root_title"EOS - Developer’s Log Stardate 201707.3"
beneficiaries[]
max_accepted_payout1,000,000.000 HBD
percent_hbd10,000
post_id7,306,994
net_rshares128,854,903,866
author_curate_reward""
vote details (1)
@dracosalieri ·
I am curious about EOS. I have been watching for the last while but I am as yet unable to jump in. I do wish to though...
properties (22)
authordracosalieri
permlinkre-dan-eos-developer-s-log-starday-201707-3-20170703t222826922z
categoryeos
json_metadata{"tags":["eos"],"app":"steemit/0.1"}
created2017-07-03 22:28:27
last_update2017-07-03 22:28:27
depth1
children0
last_payout2017-07-10 22:28: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_length121
author_reputation4,335,910,933,316
root_title"EOS - Developer’s Log Stardate 201707.3"
beneficiaries[]
max_accepted_payout1,000,000.000 HBD
percent_hbd10,000
post_id7,201,558
net_rshares0
@dveloper ·
I am a noob on this subject and I have read that Ethereum provides a platform for developers but I am not sure how easy it is to develop in such platform. Now with EOS are we trying to achieve ease of development and parallel processing in simple words? I am saying this as one might think, why develop another platform if there is already one, right?

Do you know any sources I can start reading to start embarking on understanding the development of application under a blockchain? I heard to start with asynchronous cryptology and distribution systems.
properties (22)
authordveloper
permlinkre-dan-eos-developer-s-log-starday-201707-3-20170703t233145360z
categoryeos
json_metadata{"tags":["eos"],"app":"steemit/0.1"}
created2017-07-03 23:31:45
last_update2017-07-03 23:31:45
depth1
children0
last_payout2017-07-10 23:31: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_length555
author_reputation676,876,889
root_title"EOS - Developer’s Log Stardate 201707.3"
beneficiaries[]
max_accepted_payout1,000,000.000 HBD
percent_hbd10,000
post_id7,206,956
net_rshares0
@egovandal ·
I understood absolutely everything about that...NOT!  However, I read it anyway, so I could decipher enough to know it's relevance & that others are on it! 🤔🤓
👍  
properties (23)
authoregovandal
permlinkre-dan-eos-developer-s-log-starday-201707-3-20170705t000003585z
categoryeos
json_metadata{"tags":["eos"],"app":"steemit/0.1"}
created2017-07-05 00:00:06
last_update2017-07-05 00:00:06
depth1
children0
last_payout2017-07-12 00:00: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_length158
author_reputation10,111,739,193
root_title"EOS - Developer’s Log Stardate 201707.3"
beneficiaries[]
max_accepted_payout1,000,000.000 HBD
percent_hbd10,000
post_id7,336,948
net_rshares1,218,171,051
author_curate_reward""
vote details (1)
@ejemai ·
You seem to not really be in a hurry to stop discovering these wonderful additions to humanity. Good one.
properties (22)
authorejemai
permlinkre-dan-eos-developer-s-log-starday-201707-3-20170704t121506450z
categoryeos
json_metadata{"tags":["eos"],"app":"steemit/0.1"}
created2017-07-04 12:15:12
last_update2017-07-04 12:15:12
depth1
children0
last_payout2017-07-11 12: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_length105
author_reputation265,163,230,573,530
root_title"EOS - Developer’s Log Stardate 201707.3"
beneficiaries[]
max_accepted_payout1,000,000.000 HBD
percent_hbd10,000
post_id7,268,624
net_rshares0
@encryptcy ·
upvoted! i wish to give at least $55 vote but my max vote only $0.04
properties (22)
authorencryptcy
permlinkre-dan-eos-developer-s-log-starday-201707-3-20170704t052610841z
categoryeos
json_metadata{"tags":["eos"],"app":"steemit/0.1"}
created2017-07-04 05:25:48
last_update2017-07-04 05:25:48
depth1
children0
last_payout2017-07-11 05:25: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_length68
author_reputation1,707,577,567,135
root_title"EOS - Developer’s Log Stardate 201707.3"
beneficiaries[]
max_accepted_payout1,000,000.000 HBD
percent_hbd10,000
post_id7,233,719
net_rshares0
@endeavor ·
Hi Dan, I'm not that knowledgable about blockchain processing, but I'm wondering if anything can be learned by studying the way Visa and Mastercard handle the enormous number of transactions they process.  These transactions are many magnitudes higher than what we currently see on crypto blockchains.  Is there something that could be incorporated from their methods and techniques?
👍  ,
properties (23)
authorendeavor
permlinkre-dan-eos-developer-s-log-starday-201707-3-20170703t223031756z
categoryeos
json_metadata{"tags":["eos"],"app":"steemit/0.1"}
created2017-07-03 22:30:24
last_update2017-07-03 22:30:24
depth1
children5
last_payout2017-07-10 22:30: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_length383
author_reputation73,562,353,995
root_title"EOS - Developer’s Log Stardate 201707.3"
beneficiaries[]
max_accepted_payout1,000,000.000 HBD
percent_hbd10,000
post_id7,201,763
net_rshares1,932,673,817
author_curate_reward""
vote details (2)
@steemtruth ·
EOS is being designed to process as many transactions as Visa and Mastercard - that is one of EOS's USP's.
👍  ,
properties (23)
authorsteemtruth
permlinkre-endeavor-re-dan-eos-developer-s-log-starday-201707-3-20170703t231612195z
categoryeos
json_metadata{"tags":["eos"],"app":"steemit/0.1"}
created2017-07-03 23:16:15
last_update2017-07-03 23:16:15
depth2
children2
last_payout2017-07-10 23:16: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_length106
author_reputation43,608,578,609,619
root_title"EOS - Developer’s Log Stardate 201707.3"
beneficiaries[]
max_accepted_payout1,000,000.000 HBD
percent_hbd10,000
post_id7,205,609
net_rshares841,986,885
author_curate_reward""
vote details (2)
@chaste ·
That will be awesome
👍  
properties (23)
authorchaste
permlinkre-steemtruth-re-endeavor-re-dan-eos-developer-s-log-starday-201707-3-20170703t234645488z
categoryeos
json_metadata{"tags":["eos"],"app":"steemit/0.1"}
created2017-07-03 23:46:57
last_update2017-07-03 23:46:57
depth3
children0
last_payout2017-07-10 23:46: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_length20
author_reputation7,901,506,885
root_title"EOS - Developer’s Log Stardate 201707.3"
beneficiaries[]
max_accepted_payout1,000,000.000 HBD
percent_hbd10,000
post_id7,208,119
net_rshares575,970,586
author_curate_reward""
vote details (1)
@endeavor ·
Thanks for the response, this is great news!
👍  
properties (23)
authorendeavor
permlinkre-steemtruth-re-endeavor-re-dan-eos-developer-s-log-starday-201707-3-20170704t001050987z
categoryeos
json_metadata{"tags":["eos"],"app":"steemit/0.1"}
created2017-07-04 00:10:51
last_update2017-07-04 00:10:51
depth3
children0
last_payout2017-07-11 00:10: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_length44
author_reputation73,562,353,995
root_title"EOS - Developer’s Log Stardate 201707.3"
beneficiaries[]
max_accepted_payout1,000,000.000 HBD
percent_hbd10,000
post_id7,209,840
net_rshares560,611,370
author_curate_reward""
vote details (1)
@steemtruth ·
I've read a few good articles about Dan and EOS over the last few days. These are two of them that may be helpful (not my posts).

https://steemit.com/steemit/@mohit18jan/the-wizard-behind-bitshares-steem-and-eos-how-dan-larimer-is-shaping-our-future

https://steemit.com/crowdsourcing-clarity/@kafkanarchy84/crowdsourcing-clarity-episode-09-looking-for-a-simple-and-thorough-explanation-of-eos-10-sbd-reward-for-most-helpful-answer - there is a really detailed comment from @sameerawan that will explain a fair bit.
👍  
properties (23)
authorsteemtruth
permlinkre-endeavor-re-dan-eos-developer-s-log-starday-201707-3-20170704t114333654z
categoryeos
json_metadata{"tags":["eos"],"users":["sameerawan"],"links":["https://steemit.com/steemit/@mohit18jan/the-wizard-behind-bitshares-steem-and-eos-how-dan-larimer-is-shaping-our-future","https://steemit.com/crowdsourcing-clarity/@kafkanarchy84/crowdsourcing-clarity-episode-09-looking-for-a-simple-and-thorough-explanation-of-eos-10-sbd-reward-for-most-helpful-answer"],"app":"steemit/0.1"}
created2017-07-04 11:43:33
last_update2017-07-04 11:43:33
depth2
children1
last_payout2017-07-11 11:43: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_length516
author_reputation43,608,578,609,619
root_title"EOS - Developer’s Log Stardate 201707.3"
beneficiaries[]
max_accepted_payout1,000,000.000 HBD
percent_hbd10,000
post_id7,265,402
net_rshares893,744,699
author_curate_reward""
vote details (1)
@endeavor ·
Thanks steemtruth!
properties (22)
authorendeavor
permlinkre-steemtruth-re-endeavor-re-dan-eos-developer-s-log-starday-201707-3-20170705t001202178z
categoryeos
json_metadata{"tags":["eos"],"app":"steemit/0.1"}
created2017-07-05 00:12:03
last_update2017-07-05 00:12:03
depth3
children0
last_payout2017-07-12 00:12: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_length18
author_reputation73,562,353,995
root_title"EOS - Developer’s Log Stardate 201707.3"
beneficiaries[]
max_accepted_payout1,000,000.000 HBD
percent_hbd10,000
post_id7,337,697
net_rshares0
@enomujjass ·
thank you for sharing.dan
properties (22)
authorenomujjass
permlinkre-dan-eos-developer-s-log-starday-201707-3-20170704t170227519z
categoryeos
json_metadata{"tags":["eos"],"app":"steemit/0.1"}
created2017-07-04 17:02:30
last_update2017-07-04 17:02:30
depth1
children0
last_payout2017-07-11 17:02: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_length25
author_reputation22,886,438,234,426
root_title"EOS - Developer’s Log Stardate 201707.3"
beneficiaries[]
max_accepted_payout1,000,000.000 HBD
percent_hbd10,000
post_id7,299,628
net_rshares0
@ericrumor · (edited)
Interesting read, Im just starting out learning about how blockchains work. While I don't fully understand everything that's going on in posts like this in the long run I can start to piece stuff together.
👍  
properties (23)
authorericrumor
permlinkre-dan-eos-developer-s-log-starday-201707-3-20170703t224200740z
categoryeos
json_metadata{"tags":["eos"],"app":"steemit/0.1"}
created2017-07-03 22:42:06
last_update2017-07-06 06:15:27
depth1
children0
last_payout2017-07-10 22:42: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_length205
author_reputation718,821,742,604
root_title"EOS - Developer’s Log Stardate 201707.3"
beneficiaries[]
max_accepted_payout1,000,000.000 HBD
percent_hbd10,000
post_id7,202,821
net_rshares0
author_curate_reward""
vote details (1)
@fisch ·
$1.18
Keep up the great work!
👍  
properties (23)
authorfisch
permlinkre-dan-eos-developer-s-log-starday-201707-3-20170703t230810474z
categoryeos
json_metadata{"tags":["eos"],"app":"steemit/0.1"}
created2017-07-03 23:08:15
last_update2017-07-03 23:08:15
depth1
children0
last_payout2017-07-10 23:08:15
cashout_time1969-12-31 23:59:59
total_payout_value0.882 HBD
curator_payout_value0.293 HBD
pending_payout_value0.000 HBD
promoted0.000 HBD
body_length23
author_reputation1,788,529,918,215
root_title"EOS - Developer’s Log Stardate 201707.3"
beneficiaries[]
max_accepted_payout1,000,000.000 HBD
percent_hbd10,000
post_id7,205,002
net_rshares176,931,355,556
author_curate_reward""
vote details (1)
@fiveboringgames ·
$2.44
What language do i need to become a eos developer? Have been looking for a learning project to get me back into programming.
👍  , , , , , , , , , , ,
properties (23)
authorfiveboringgames
permlinkre-dan-eos-developer-s-log-starday-201707-3-20170703t215037342z
categoryeos
json_metadata{"tags":["eos"],"app":"steemit/0.1"}
created2017-07-03 21:50:39
last_update2017-07-03 21:50:39
depth1
children5
last_payout2017-07-10 21:50:39
cashout_time1969-12-31 23:59:59
total_payout_value2.270 HBD
curator_payout_value0.170 HBD
pending_payout_value0.000 HBD
promoted0.000 HBD
body_length124
author_reputation73,849,148,682,162
root_title"EOS - Developer’s Log Stardate 201707.3"
beneficiaries[]
max_accepted_payout1,000,000.000 HBD
percent_hbd10,000
post_id7,197,940
net_rshares366,633,997,245
author_curate_reward""
vote details (12)
@digitalplayer ·
lots of year of practice with C++ , C and block-chain technology
properties (22)
authordigitalplayer
permlinkre-fiveboringgames-re-dan-eos-developer-s-log-starday-201707-3-20170704t200252622z
categoryeos
json_metadata{"tags":["eos"],"app":"steemit/0.1"}
created2017-07-04 20:02:54
last_update2017-07-04 20:02:54
depth2
children0
last_payout2017-07-11 20:02:54
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_length64
author_reputation5,289,318,347,578
root_title"EOS - Developer’s Log Stardate 201707.3"
beneficiaries[]
max_accepted_payout1,000,000.000 HBD
percent_hbd10,000
post_id7,317,320
net_rshares0
@face2face ·
Even Word press is also ok for beginner or can go with C++ , .net platform etc...
properties (22)
authorface2face
permlinkre-fiveboringgames-re-dan-eos-developer-s-log-starday-201707-3-20170704t014155314z
categoryeos
json_metadata{"tags":["eos"],"app":"steemit/0.1"}
created2017-07-04 01:41:57
last_update2017-07-04 01:41:57
depth2
children0
last_payout2017-07-11 01:41: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_length81
author_reputation96,985,200,810,100
root_title"EOS - Developer’s Log Stardate 201707.3"
beneficiaries[]
max_accepted_payout1,000,000.000 HBD
percent_hbd10,000
post_id7,216,871
net_rshares0
@pyrocryptex ·
Their github repo is mainly C++14. So knowing C++ should be sufficient I think.
👍  , ,
properties (23)
authorpyrocryptex
permlinkre-fiveboringgames-re-dan-eos-developer-s-log-starday-201707-3-20170703t224841902z
categoryeos
json_metadata{"tags":["eos"],"app":"steemit/0.1"}
created2017-07-03 22:48:42
last_update2017-07-03 22:48:42
depth2
children0
last_payout2017-07-10 22:48: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_length79
author_reputation1,727,645,453
root_title"EOS - Developer’s Log Stardate 201707.3"
beneficiaries[]
max_accepted_payout1,000,000.000 HBD
percent_hbd10,000
post_id7,203,365
net_rshares2,924,938,481
author_curate_reward""
vote details (3)
@raa228 ·
excellent question ,, want an answer too
properties (22)
authorraa228
permlinkre-fiveboringgames-re-dan-eos-developer-s-log-starday-201707-3-20170704t083905489z
categoryeos
json_metadata{"tags":["eos"],"app":"steemit/0.1"}
created2017-07-04 08:39:03
last_update2017-07-04 08:39:03
depth2
children0
last_payout2017-07-11 08:39: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_length40
author_reputation46,016,260
root_title"EOS - Developer’s Log Stardate 201707.3"
beneficiaries[]
max_accepted_payout1,000,000.000 HBD
percent_hbd10,000
post_id7,249,229
net_rshares0
@risk-a ·
When talking about programming does make a headache. But we must understand this.
👍  
properties (23)
authorrisk-a
permlinkre-fiveboringgames-re-dan-eos-developer-s-log-starday-201707-3-20170703t235200697z
categoryeos
json_metadata{"tags":["eos"],"app":"steemit/0.1"}
created2017-07-03 23:52:45
last_update2017-07-03 23:52:45
depth2
children0
last_payout2017-07-10 23:52: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_length81
author_reputation223,304,452,705
root_title"EOS - Developer’s Log Stardate 201707.3"
beneficiaries[]
max_accepted_payout1,000,000.000 HBD
percent_hbd10,000
post_id7,208,518
net_rshares818,283,113
author_curate_reward""
vote details (1)
@flowerwong66 ·
nice....post....but very technical for me :)
👍  ,
properties (23)
authorflowerwong66
permlinkre-dan-eos-developer-s-log-starday-201707-3-20170703t232513849z
categoryeos
json_metadata{"tags":["eos"],"app":"steemit/0.1"}
created2017-07-03 23:25:15
last_update2017-07-03 23:25:15
depth1
children0
last_payout2017-07-10 23:25: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_length44
author_reputation672,860,897,079
root_title"EOS - Developer’s Log Stardate 201707.3"
beneficiaries[]
max_accepted_payout1,000,000.000 HBD
percent_hbd10,000
post_id7,206,365
net_rshares962,820,618
author_curate_reward""
vote details (2)
@forykw ·
$0.51
Amazing you are looking at this from this perspective! Really looking forward. Parallelism efficiency (then performance) is the key problem here. But we also don't want to restrict too much and allow diversity of code execution. The ability to use atomic actions by the blockchain would allow this "efficiency" to scale better. Then it's just matter of aligning the current hardware to the software. And that can be done at driver  level by manufactures (or in partnership model, like NVIDIA mostly does).
👍  , ,
properties (23)
authorforykw
permlinkre-dan-eos-developer-s-log-starday-201707-3-20170703t230121599z
categoryeos
json_metadata{"tags":["eos"],"app":"steemit/0.1"}
created2017-07-03 23:01:21
last_update2017-07-03 23:01:21
depth1
children0
last_payout2017-07-10 23:01:21
cashout_time1969-12-31 23:59:59
total_payout_value0.513 HBD
curator_payout_value0.001 HBD
pending_payout_value0.000 HBD
promoted0.000 HBD
body_length505
author_reputation92,912,716,270,143
root_title"EOS - Developer’s Log Stardate 201707.3"
beneficiaries[]
max_accepted_payout1,000,000.000 HBD
percent_hbd10,000
post_id7,204,434
net_rshares77,457,571,374
author_curate_reward""
vote details (3)
@fracturedsounds ·
Very helpful, thanks dan. 

Upvotes and followed :)
properties (22)
authorfracturedsounds
permlinkre-dan-eos-developer-s-log-starday-201707-3-20170703t215151245z
categoryeos
json_metadata{"tags":["eos"],"app":"steemit/0.1"}
created2017-07-03 21:51:51
last_update2017-07-03 21:51:51
depth1
children0
last_payout2017-07-10 21:51: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_length51
author_reputation130,816,335,664
root_title"EOS - Developer’s Log Stardate 201707.3"
beneficiaries[]
max_accepted_payout1,000,000.000 HBD
percent_hbd10,000
post_id7,198,053
net_rshares0
@fuckmylife ·
$1.19
If this is a ether killer, would it be wise to dump your ether reserves if you are going to hold eos for the long term? Seems counter productive to invest in something thats suppose to be killed by something else your invested in. Its like investing in batamax and vhs at the same time
👍  ,
properties (23)
authorfuckmylife
permlinkre-dan-eos-developer-s-log-starday-201707-3-20170704t033843441z
categoryeos
json_metadata{"tags":["eos"],"app":"steemit/0.1"}
created2017-07-04 03:38:09
last_update2017-07-04 03:38:09
depth1
children10
last_payout2017-07-11 03:38:09
cashout_time1969-12-31 23:59:59
total_payout_value0.896 HBD
curator_payout_value0.295 HBD
pending_payout_value0.000 HBD
promoted0.000 HBD
body_length285
author_reputation1,365,524,722,971
root_title"EOS - Developer’s Log Stardate 201707.3"
beneficiaries[]
max_accepted_payout1,000,000.000 HBD
percent_hbd10,000
post_id7,225,793
net_rshares182,167,543,808
author_curate_reward""
vote details (2)
@cryptomancer ·
I look at it as hedging my bets.  I love Ethereum and am heavily invested in it, but EOS shows a lot of promise and could solve some of Ethereum's thornier issues.  However Ethereum has first mover advantage much like Bitcoin does.  I have no idea which smart contracts platform will ultimately win out in the end.  So I'm buying both.  And I also bought into the Tezos ICO.  I think there's a very good chance all 3 investments will be highly profitable.  Why own one slice of the smart contract pie when you can stick your fingers in multiple pieces?
👍  
properties (23)
authorcryptomancer
permlinkre-fuckmylife-re-dan-eos-developer-s-log-starday-201707-3-20170704t051442462z
categoryeos
json_metadata{"tags":["eos"],"app":"steemit/0.1"}
created2017-07-04 05:14:45
last_update2017-07-04 05:14:45
depth2
children9
last_payout2017-07-11 05:14: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_length552
author_reputation27,910,646,046,989
root_title"EOS - Developer’s Log Stardate 201707.3"
beneficiaries[]
max_accepted_payout1,000,000.000 HBD
percent_hbd10,000
post_id7,232,843
net_rshares1,182,351,442
author_curate_reward""
vote details (1)
@dlina-v-metrah ·
$0.61
But in fact - what will happen with all the purchased etherium? Will they throw him out for a cheap sale?
👍  
properties (23)
authordlina-v-metrah
permlinkre-cryptomancer-re-fuckmylife-re-dan-eos-developer-s-log-starday-201707-3-20170704t135326883z
categoryeos
json_metadata{"tags":["eos"],"app":"steemit/0.1"}
created2017-07-04 13:53:39
last_update2017-07-04 13:53:39
depth3
children1
last_payout2017-07-11 13:53:39
cashout_time1969-12-31 23:59:59
total_payout_value0.462 HBD
curator_payout_value0.152 HBD
pending_payout_value0.000 HBD
promoted0.000 HBD
body_length105
author_reputation4,193,087,735,412
root_title"EOS - Developer’s Log Stardate 201707.3"
beneficiaries[]
max_accepted_payout1,000,000.000 HBD
percent_hbd10,000
post_id7,278,982
net_rshares96,124,503,808
author_curate_reward""
vote details (1)
@fuckmylife · (edited)
$1.58
It's all depending on your tolerance for risk. For me I just can't handle it. I bought into EOS and there's been so many swings, I can't sleep at night. I don't have much cash right now, so it makes me pretty nervous when I have 30 grand out there. I tried day trading when I should have just held onto it and missed out huge. Sold a bunch at 6 then bought a little bit back at 6 thinking it was on its way up again and it plummeted the last day and a half. Only time will tell.
👍  ,
properties (23)
authorfuckmylife
permlinkre-cryptomancer-re-fuckmylife-re-dan-eos-developer-s-log-starday-201707-3-20170704t084333532z
categoryeos
json_metadata{"tags":["eos"],"app":"steemit/0.1"}
created2017-07-04 08:43:00
last_update2017-07-04 08:45:45
depth3
children5
last_payout2017-07-11 08:43:00
cashout_time1969-12-31 23:59:59
total_payout_value1.185 HBD
curator_payout_value0.392 HBD
pending_payout_value0.000 HBD
promoted0.000 HBD
body_length478
author_reputation1,365,524,722,971
root_title"EOS - Developer’s Log Stardate 201707.3"
beneficiaries[]
max_accepted_payout1,000,000.000 HBD
percent_hbd10,000
post_id7,249,584
net_rshares241,630,466,746
author_curate_reward""
vote details (2)
@fuckmylife ·
Thanks for the reponse by the way.
properties (22)
authorfuckmylife
permlinkre-cryptomancer-re-fuckmylife-re-dan-eos-developer-s-log-starday-201707-3-20170704t084357659z
categoryeos
json_metadata{"tags":["eos"],"app":"steemit/0.1"}
created2017-07-04 08:43:24
last_update2017-07-04 08:43:24
depth3
children0
last_payout2017-07-11 08: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_length34
author_reputation1,365,524,722,971
root_title"EOS - Developer’s Log Stardate 201707.3"
beneficiaries[]
max_accepted_payout1,000,000.000 HBD
percent_hbd10,000
post_id7,249,620
net_rshares0
@fusiontherapy ·
Thanks for the in-depth and frank article. What stimulates me as a public client are security and unique implementation of amazing coding with awesome names like, secure sentinel, protector protocol​, etc. Also, I noticed 'What is everything so complicated?' did you mean to say "Why Is Everything So Complicated?" ps there is a great editor and proof reader www.alexjameseditor.co.uk
properties (22)
authorfusiontherapy
permlinkre-dan-eos-developer-s-log-starday-201707-3-20170705t230511281z
categoryeos
json_metadata{"tags":["eos"],"app":"steemit/0.1"}
created2017-07-05 23:05:09
last_update2017-07-05 23:05:09
depth1
children0
last_payout2017-07-12 23:05: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_length384
author_reputation3,447,783,834
root_title"EOS - Developer’s Log Stardate 201707.3"
beneficiaries[]
max_accepted_payout1,000,000.000 HBD
percent_hbd10,000
post_id7,452,214
net_rshares0
@gikitiki ·
Can someone post the code/repo for the requireNotify function?

This is interesting
properties (22)
authorgikitiki
permlinkre-dan-eos-developer-s-log-starday-201707-3-20170704t001709572z
categoryeos
json_metadata{"tags":["eos"],"app":"steemit/0.1"}
created2017-07-04 00:17:09
last_update2017-07-04 00:17:09
depth1
children0
last_payout2017-07-11 00:17: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_length83
author_reputation16,572,681,158,525
root_title"EOS - Developer’s Log Stardate 201707.3"
beneficiaries[]
max_accepted_payout1,000,000.000 HBD
percent_hbd10,000
post_id7,210,341
net_rshares0
@gpfelizco ·
Helpful article you have here. Thanks!
properties (22)
authorgpfelizco
permlinkre-dan-eos-developer-s-log-starday-201707-3-20170704t104117762z
categoryeos
json_metadata{"tags":["eos"],"app":"steemit/0.1"}
created2017-07-04 10:41:21
last_update2017-07-04 10:41:21
depth1
children0
last_payout2017-07-11 10:41: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_length38
author_reputation193,019,107,785
root_title"EOS - Developer’s Log Stardate 201707.3"
beneficiaries[]
max_accepted_payout1,000,000.000 HBD
percent_hbd10,000
post_id7,259,684
net_rshares0
@gpic ·
im new with this coin, im no much money is good idea invest here? ty
properties (22)
authorgpic
permlinkre-dan-eos-developer-s-log-starday-201707-3-20170705t003819057z
categoryeos
json_metadata{"tags":["eos"],"app":"steemit/0.1"}
created2017-07-05 00:38:21
last_update2017-07-05 00:38:21
depth1
children0
last_payout2017-07-12 00:38: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_length68
author_reputation8,726,833,452
root_title"EOS - Developer’s Log Stardate 201707.3"
beneficiaries[]
max_accepted_payout1,000,000.000 HBD
percent_hbd10,000
post_id7,339,512
net_rshares0
@hadidi ·
So does this mean etherum is dead??
properties (22)
authorhadidi
permlinkre-dan-201773t235233787z
categoryeos
json_metadata{"tags":"eos","app":"esteem/1.4.6","format":"markdown+html","community":"esteem"}
created2017-07-03 22:52:36
last_update2017-07-03 22:52:36
depth1
children0
last_payout2017-07-10 22:52: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_length35
author_reputation4,645,738,602
root_title"EOS - Developer’s Log Stardate 201707.3"
beneficiaries
0.
accountesteemapp
weight500
max_accepted_payout1,000,000.000 HBD
percent_hbd10,000
post_id7,203,697
net_rshares0
@hamzaoui ·
$0.33
Well done post You deserve for getting Upvote from me. I appreciate on it and like it so much . Waiting for your latest post. Keep your good work and steeming on. Let's walk to my blog. I have a latest post. Your upvote is high motivation for me. Almost all Steemians do their best on this site. Keep steeming and earning.
👍  
properties (23)
authorhamzaoui
permlinkre-dan-eos-developer-s-log-starday-201707-3-20170706t202253333z
categoryeos
json_metadata{"tags":["eos"],"app":"steemit/0.1"}
created2017-07-06 20:22:54
last_update2017-07-06 20:22:54
depth1
children1
last_payout2017-07-13 20:22:54
cashout_time1969-12-31 23:59:59
total_payout_value0.248 HBD
curator_payout_value0.082 HBD
pending_payout_value0.000 HBD
promoted0.000 HBD
body_length322
author_reputation2,667,249,998,202
root_title"EOS - Developer’s Log Stardate 201707.3"
beneficiaries[]
max_accepted_payout1,000,000.000 HBD
percent_hbd10,000
post_id7,563,675
net_rshares70,131,198,360
author_curate_reward""
vote details (1)
@booster ·
<p>This comment has received a 0.08 % upvote from @booster thanks to: @hamzaoui.</p>
properties (22)
authorbooster
permlinkre-hamzaoui-re-dan-eos-developer-s-log-starday-201707-3-20170706t202253333z-20170710t205334086z
categoryeos
json_metadata{"tags":["eos-developer-s-log-starday-201707-3"],"app":"drotto/0.0.1"}
created2017-07-10 20:53:54
last_update2017-07-10 20:53:54
depth2
children0
last_payout2017-07-17 20:53:54
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_length85
author_reputation68,767,115,776,562
root_title"EOS - Developer’s Log Stardate 201707.3"
beneficiaries[]
max_accepted_payout1,000,000.000 HBD
percent_hbd10,000
post_id8,030,815
net_rshares0
@heidy0221 ·
Follow me and I Follow you and we like
👍  
properties (23)
authorheidy0221
permlinkre-dan-201773t175716582z
categoryeos
json_metadata{"tags":"eos","app":"esteem/1.4.6","format":"markdown+html","community":"esteem"}
created2017-07-03 22:57:21
last_update2017-07-03 22:57:21
depth1
children3
last_payout2017-07-10 22:57: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_length38
author_reputation5,552,675,743
root_title"EOS - Developer’s Log Stardate 201707.3"
beneficiaries
0.
accountesteemapp
weight500
max_accepted_payout1,000,000.000 HBD
percent_hbd10,000
post_id7,204,082
net_rshares1,676,442,629
author_curate_reward""
vote details (1)
@dkinx ·
i just followed u,follow me back
👍  
properties (23)
authordkinx
permlinkre-heidy0221-re-dan-201773t175716582z-20170704t175713352z
categoryeos
json_metadata{"tags":["eos"],"app":"steemit/0.1"}
created2017-07-04 17:57:15
last_update2017-07-04 17:57:15
depth2
children2
last_payout2017-07-11 17:57: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_length32
author_reputation17,499,415,125
root_title"EOS - Developer’s Log Stardate 201707.3"
beneficiaries[]
max_accepted_payout1,000,000.000 HBD
percent_hbd10,000
post_id7,305,133
net_rshares1,646,326,893
author_curate_reward""
vote details (1)
@celsius100 ·
If you follow each other, you will be going in a circle:)
properties (22)
authorcelsius100
permlinkre-dkinx-re-heidy0221-re-dan-201773t175716582z-20170704t235914597z
categoryeos
json_metadata{"tags":["eos"],"app":"steemit/0.1"}
created2017-07-04 23:59:15
last_update2017-07-04 23:59:15
depth3
children1
last_payout2017-07-11 23:59: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_length57
author_reputation1,890,481,416,542
root_title"EOS - Developer’s Log Stardate 201707.3"
beneficiaries[]
max_accepted_payout1,000,000.000 HBD
percent_hbd10,000
post_id7,336,895
net_rshares0
@hermanhanafiah ·
$0.25
do you think it is a good idea to buy eos ? 
👍  , , , ,
properties (23)
authorhermanhanafiah
permlinkre-dan-eos-developer-s-log-starday-201707-3-201774t01023195z
categoryeos
json_metadata{"app":"chainbb/0.3","format":"markdown+html","tags":[]}
created2017-07-03 22:10:21
last_update2017-07-03 22:10:21
depth1
children1
last_payout2017-07-10 22:10:21
cashout_time1969-12-31 23:59:59
total_payout_value0.246 HBD
curator_payout_value0.001 HBD
pending_payout_value0.000 HBD
promoted0.000 HBD
body_length45
author_reputation-475,659,050,019
root_title"EOS - Developer’s Log Stardate 201707.3"
beneficiaries
0.
accountchainbb
weight1,500
max_accepted_payout1,000,000.000 HBD
percent_hbd10,000
post_id7,199,837
net_rshares43,685,999,288
author_curate_reward""
vote details (5)
@shareme ·
$0.02
Considering that he has multiple successful projects under his belt, I think that it's worth it.
👍  
properties (23)
authorshareme
permlinkre-hermanhanafiah-re-dan-eos-developer-s-log-starday-201707-3-201774t01023195z-20170704t020108098z
categoryeos
json_metadata{"tags":["eos"],"app":"steemit/0.1"}
created2017-07-04 02:01:09
last_update2017-07-04 02:01:09
depth2
children0
last_payout2017-07-11 02:01:09
cashout_time1969-12-31 23:59:59
total_payout_value0.018 HBD
curator_payout_value0.006 HBD
pending_payout_value0.000 HBD
promoted0.000 HBD
body_length96
author_reputation2,000,226,178
root_title"EOS - Developer’s Log Stardate 201707.3"
beneficiaries[]
max_accepted_payout1,000,000.000 HBD
percent_hbd10,000
post_id7,218,356
net_rshares3,915,737,425
author_curate_reward""
vote details (1)
@hyperchannel ·
![](https://steemitimages.com/DQmf8x4QMQbH3f3oAXBtLCQrUKVgWxdNyymkHaiz3Fp7RP2/image.png)
properties (22)
authorhyperchannel
permlinkre-dan-eos-developer-s-log-starday-201707-3-20170704t102518678z
categoryeos
json_metadata{"tags":["eos"],"image":["https://steemitimages.com/DQmf8x4QMQbH3f3oAXBtLCQrUKVgWxdNyymkHaiz3Fp7RP2/image.png"],"app":"steemit/0.1"}
created2017-07-04 10:25:18
last_update2017-07-04 10:25:18
depth1
children0
last_payout2017-07-11 10:25: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_length88
author_reputation13,690,303,411
root_title"EOS - Developer’s Log Stardate 201707.3"
beneficiaries[]
max_accepted_payout1,000,000.000 HBD
percent_hbd10,000
post_id7,258,257
net_rshares0
@hyperchannel ·
EOS is very interesting
properties (22)
authorhyperchannel
permlinkre-dan-eos-developer-s-log-starday-201707-3-20170704t103235769z
categoryeos
json_metadata{"tags":["eos"],"app":"steemit/0.1"}
created2017-07-04 10:32:36
last_update2017-07-04 10:32:36
depth1
children0
last_payout2017-07-11 10:32: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_length23
author_reputation13,690,303,411
root_title"EOS - Developer’s Log Stardate 201707.3"
beneficiaries[]
max_accepted_payout1,000,000.000 HBD
percent_hbd10,000
post_id7,258,900
net_rshares0
@immortal.infidel ·
nice explaanation
properties (22)
authorimmortal.infidel
permlinkre-dan-eos-developer-s-log-starday-201707-3-20170704t061627381z
categoryeos
json_metadata{"tags":["eos"],"app":"steemit/0.1"}
created2017-07-04 06:16:21
last_update2017-07-04 06:16:21
depth1
children0
last_payout2017-07-11 06:16: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_length17
author_reputation407,738,291
root_title"EOS - Developer’s Log Stardate 201707.3"
beneficiaries[]
max_accepted_payout1,000,000.000 HBD
percent_hbd10,000
post_id7,237,391
net_rshares0
@imransoudagar ·
Been reading about EOS and it looks interesting.
properties (22)
authorimransoudagar
permlinkre-dan-eos-developer-s-log-starday-201707-3-20170704t061600181z
categoryeos
json_metadata{"tags":["eos"],"app":"steemit/0.1"}
created2017-07-04 06:16:03
last_update2017-07-04 06:16:03
depth1
children0
last_payout2017-07-11 06:16: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_length48
author_reputation26,680,852,951,193
root_title"EOS - Developer’s Log Stardate 201707.3"
beneficiaries[]
max_accepted_payout1,000,000.000 HBD
percent_hbd10,000
post_id7,237,366
net_rshares0
@isaac.rodebush ·
The EOS inflation rate is 350% the first year
properties (22)
authorisaac.rodebush
permlinkre-dan-eos-developer-s-log-starday-201707-3-20170703t215000911z
categoryeos
json_metadata{"tags":["eos"],"app":"steemit/0.1"}
created2017-07-03 21:50:00
last_update2017-07-03 21:50:00
depth1
children0
last_payout2017-07-10 21:50: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_length45
author_reputation1,868,717,056,233
root_title"EOS - Developer’s Log Stardate 201707.3"
beneficiaries[]
max_accepted_payout1,000,000.000 HBD
percent_hbd10,000
post_id7,197,874
net_rshares0
@iskandarfauzi ·
Very good and makes me want to end the reading ;)
properties (22)
authoriskandarfauzi
permlinkre-dan-eos-developer-s-log-starday-201707-3-20170704t070506397z
categoryeos
json_metadata{"tags":["eos"],"app":"steemit/0.1"}
created2017-07-04 07:06:09
last_update2017-07-04 07:06:09
depth1
children0
last_payout2017-07-11 07:06: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_length49
author_reputation75,093,866,554
root_title"EOS - Developer’s Log Stardate 201707.3"
beneficiaries[]
max_accepted_payout1,000,000.000 HBD
percent_hbd10,000
post_id7,241,302
net_rshares0
@jen8 ·
Interesting...this will take me a while to wrap my head around.  I'm a fairly new hobbyist programmer but haven't really had any involvement on the crypto/blockchain programming side of things at all to date (I started with javascrip then switched to C# to do vr stuff in Unity).

I'm excited about what EOS can do though.  I was one of the early investors in Protoshares back in the day, into steemit now of course, and got some EOS before it opened on the exchanges (and into other cryptos/blockchain stuff too).

Exciting times ahead for sure and I'm looking forward to seeing where this all goes.  Of course, for EOS to really live up to its potential, people have to actually use it so it will be interesting to see some of the first use cases and see how successful they become (once everything's out there and ready to use of course).  Who knows...once the tech's all out there, I may even dabble in building something off of it....
properties (22)
authorjen8
permlinkre-dan-eos-developer-s-log-starday-201707-3-20170703t224209614z
categoryeos
json_metadata{"tags":["eos"],"app":"steemit/0.1"}
created2017-07-03 22:42:09
last_update2017-07-03 22:42:09
depth1
children0
last_payout2017-07-10 22:42: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_length939
author_reputation341,008,036,763
root_title"EOS - Developer’s Log Stardate 201707.3"
beneficiaries[]
max_accepted_payout1,000,000.000 HBD
percent_hbd10,000
post_id7,202,825
net_rshares0
@jga ·
@dan what is the roadmap of the development? how much time it will take?
Thank you.
https://steemit.com/eos/@jga/eos-hits-the-9th-place-in-coinmarketcap
properties (22)
authorjga
permlinkre-dan-eos-developer-s-log-starday-201707-3-20170703t215745635z
categoryeos
json_metadata{"tags":["eos"],"users":["dan"],"links":["https://steemit.com/eos/@jga/eos-hits-the-9th-place-in-coinmarketcap"],"app":"steemit/0.1"}
created2017-07-03 21:57:48
last_update2017-07-03 21:57:48
depth1
children0
last_payout2017-07-10 21:57: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_length152
author_reputation76,172,796,162,312
root_title"EOS - Developer’s Log Stardate 201707.3"
beneficiaries[]
max_accepted_payout1,000,000.000 HBD
percent_hbd10,000
post_id7,198,639
net_rshares0
@johnsmith ·
$5.37
Thank you for the update - great to see this level of communication from a lead dev!
👍  , ,
properties (23)
authorjohnsmith
permlinkre-dan-eos-developer-s-log-starday-201707-3-20170704t145311629z
categoryeos
json_metadata{"tags":["eos"],"app":"steemit/0.1"}
created2017-07-04 14:53:15
last_update2017-07-04 14:53:15
depth1
children0
last_payout2017-07-11 14:53:15
cashout_time1969-12-31 23:59:59
total_payout_value5.368 HBD
curator_payout_value0.006 HBD
pending_payout_value0.000 HBD
promoted0.000 HBD
body_length84
author_reputation22,729,726,767,685
root_title"EOS - Developer’s Log Stardate 201707.3"
beneficiaries[]
max_accepted_payout1,000,000.000 HBD
percent_hbd10,000
post_id7,286,114
net_rshares842,444,779,482
author_curate_reward""
vote details (3)
@joseguevara4 ·
Hello follow me and I will follow you https://steemit.com/@joseguevara4
👎  ,
properties (23)
authorjoseguevara4
permlinkre-dan-eos-developer-s-log-starday-201707-3-20170704t162949805z
categoryeos
json_metadata{"tags":["eos"],"links":["https://steemit.com/@joseguevara4"],"app":"steemit/0.1"}
created2017-07-04 16:35:45
last_update2017-07-04 16:35:45
depth1
children0
last_payout2017-07-11 16:35: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_length71
author_reputation-2,532,078,783,307
root_title"EOS - Developer’s Log Stardate 201707.3"
beneficiaries[]
max_accepted_payout1,000,000.000 HBD
percent_hbd10,000
post_id7,296,799
net_rshares-162,708,290,214,583
author_curate_reward""
vote details (2)
@kabatpatchkids ·
What is better then to have a stronger gpu or cpu
👍  ,
properties (23)
authorkabatpatchkids
permlinkre-dan-eos-developer-s-log-starday-201707-3-20170703t230619869z
categoryeos
json_metadata{"tags":["eos"],"app":"steemit/0.1"}
created2017-07-03 23:06:33
last_update2017-07-03 23:06:33
depth1
children0
last_payout2017-07-10 23:06: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_length49
author_reputation638,387,370
root_title"EOS - Developer’s Log Stardate 201707.3"
beneficiaries[]
max_accepted_payout1,000,000.000 HBD
percent_hbd10,000
post_id7,204,871
net_rshares1,649,779,244
author_curate_reward""
vote details (2)
@kevbot ·
Dan! thank you for updating the community. I look forward to these posts and it keeps me excited about the new things that are going on.
properties (22)
authorkevbot
permlinkre-dan-eos-developer-s-log-starday-201707-3-20170703t221024507z
categoryeos
json_metadata{"tags":["eos"],"app":"steemit/0.1"}
created2017-07-03 22:10:51
last_update2017-07-03 22:10:51
depth1
children0
last_payout2017-07-10 22:10: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_length136
author_reputation3,453,478,685,569
root_title"EOS - Developer’s Log Stardate 201707.3"
beneficiaries[]
max_accepted_payout1,000,000.000 HBD
percent_hbd10,000
post_id7,199,889
net_rshares0
@kozak ·
I think EOS will be the next Ethereum killer, the technique behind it excellent :) - Invest wisely, now when the time is right.
properties (22)
authorkozak
permlinkre-dan-eos-developer-s-log-starday-201707-3-20170704t205419859z
categoryeos
json_metadata{"tags":["eos"],"app":"steemit/0.1"}
created2017-07-04 20:54:12
last_update2017-07-04 20:54:12
depth1
children0
last_payout2017-07-11 20:54: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_length127
author_reputation2,088,627,385,430
root_title"EOS - Developer’s Log Stardate 201707.3"
beneficiaries[]
max_accepted_payout1,000,000.000 HBD
percent_hbd10,000
post_id7,322,149
net_rshares0
@kozak ·
Pulling out of ETH to fund EOS *face palm*....
Two crypto's being bled dry....

I hope this will serve as an example of this ICO madness so that people will keep their money invested in the projects that really matter. 99% of people are here to try and make the fastest buck they can and either don't give a damn about the tech or have no idea what they are investing in and it's destroying the trends. I could probably have an ICO for one of my smelly socks tomorrow and raise 5M in an hour with a wix website and wordpad txt.
properties (22)
authorkozak
permlinkre-dan-eos-developer-s-log-starday-201707-3-20170707t221023751z
categoryeos
json_metadata{"tags":["eos"],"app":"steemit/0.1"}
created2017-07-07 22:10:39
last_update2017-07-07 22:10:39
depth1
children0
last_payout2017-07-14 22:10: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_length527
author_reputation2,088,627,385,430
root_title"EOS - Developer’s Log Stardate 201707.3"
beneficiaries[]
max_accepted_payout1,000,000.000 HBD
percent_hbd10,000
post_id7,692,233
net_rshares0
@kristyn ·
Like this project, converted some of my BTC into EOS.
properties (22)
authorkristyn
permlinkre-dan-eos-developer-s-log-starday-201707-3-20170707t181217259z
categoryeos
json_metadata{"tags":["eos"],"app":"steemit/0.1"}
created2017-07-07 18:12:06
last_update2017-07-07 18:12:06
depth1
children0
last_payout2017-07-14 18:12: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_length53
author_reputation55,518,543
root_title"EOS - Developer’s Log Stardate 201707.3"
beneficiaries[]
max_accepted_payout1,000,000.000 HBD
percent_hbd10,000
post_id7,671,552
net_rshares0
@kumar.malhotra ·
very newest information about new currency EOS. I will really highly appreciate for more updates. Thats y i followed you .
properties (22)
authorkumar.malhotra
permlinkre-dan-eos-developer-s-log-starday-201707-3-20170706t032403759z
categoryeos
json_metadata{"tags":["eos"],"app":"steemit/0.1"}
created2017-07-06 03:24:03
last_update2017-07-06 03:24:03
depth1
children0
last_payout2017-07-13 03:24: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_length122
author_reputation159,754,286,047
root_title"EOS - Developer’s Log Stardate 201707.3"
beneficiaries[]
max_accepted_payout1,000,000.000 HBD
percent_hbd10,000
post_id7,471,368
net_rshares0
@kyawsantun ·
I'm New User Please Help Me Voting This Comment. Thanks
👎  ,
properties (23)
authorkyawsantun
permlinkre-dan-201774t235523317z
categoryeos
json_metadata{"tags":"eos","app":"esteem/1.4.6","format":"markdown+html","community":"esteem"}
created2017-07-04 17:25:30
last_update2017-07-04 17:25:30
depth1
children0
last_payout2017-07-11 17:25: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_length55
author_reputation3,010,146,073,363
root_title"EOS - Developer’s Log Stardate 201707.3"
beneficiaries
0.
accountesteemapp
weight500
max_accepted_payout1,000,000.000 HBD
percent_hbd10,000
post_id7,301,970
net_rshares-1,721,832,393,485
author_curate_reward""
vote details (2)
@lautenglye ·
wow....nice....upvote and resteem
👍  
properties (23)
authorlautenglye
permlinkre-dan-eos-developer-s-log-starday-201707-3-20170703t233316230z
categoryeos
json_metadata{"tags":["eos"],"app":"steemit/0.1"}
created2017-07-03 23:33:18
last_update2017-07-03 23:33:18
depth1
children0
last_payout2017-07-10 23:33: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_length33
author_reputation1,745,262,632,168
root_title"EOS - Developer’s Log Stardate 201707.3"
beneficiaries[]
max_accepted_payout1,000,000.000 HBD
percent_hbd10,000
post_id7,207,087
net_rshares1,672,391,613
author_curate_reward""
vote details (1)
@lheuhchungkhing ·
Thank you for sharing information, the more you start getting a lot of knowledge for me, good work continue his work.
properties (22)
authorlheuhchungkhing
permlinkre-dan-201775t42830143z
categoryeos
json_metadata{"tags":"eos","app":"esteem/1.4.5","format":"markdown+html","community":"esteem"}
created2017-07-04 21:28:30
last_update2017-07-04 21:28:30
depth1
children0
last_payout2017-07-11 21:28: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_length117
author_reputation50,662,819,417
root_title"EOS - Developer’s Log Stardate 201707.3"
beneficiaries
0.
accountesteemapp
weight500
max_accepted_payout1,000,000.000 HBD
percent_hbd10,000
post_id7,325,112
net_rshares0
@life-dailydose ·
will it beat Ethereum in long run?
properties (22)
authorlife-dailydose
permlinkre-dan-eos-developer-s-log-starday-201707-3-20170704t171934842z
categoryeos
json_metadata{"tags":["eos"],"app":"steemit/0.1"}
created2017-07-04 17:19:24
last_update2017-07-04 17:19:24
depth1
children0
last_payout2017-07-11 17:19: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_length34
author_reputation68,784,836,036
root_title"EOS - Developer’s Log Stardate 201707.3"
beneficiaries[]
max_accepted_payout1,000,000.000 HBD
percent_hbd10,000
post_id7,301,309
net_rshares0
@linuslee0216 ·
$0.53
Thanks for your efforts! It is amazing to have such a advance new coin! I like BTS and steemit as they have give me some income. I am going to invest in EOS for my new furture! Hope all of us can be success I think! Keep it! Once again thank you!
👍  ,
properties (23)
authorlinuslee0216
permlinkre-dan-201774t113117228z
categoryeos
json_metadata{"tags":"eos","app":"esteem/1.4.5","format":"markdown+html","community":"esteem"}
created2017-07-04 03:31:21
last_update2017-07-04 03:31:21
depth1
children0
last_payout2017-07-11 03:31:21
cashout_time1969-12-31 23:59:59
total_payout_value0.532 HBD
curator_payout_value0.001 HBD
pending_payout_value0.000 HBD
promoted0.000 HBD
body_length246
author_reputation79,197,233,939,262
root_title"EOS - Developer’s Log Stardate 201707.3"
beneficiaries
0.
accountesteemapp
weight500
max_accepted_payout1,000,000.000 HBD
percent_hbd10,000
post_id7,225,275
net_rshares86,008,308,411
author_curate_reward""
vote details (2)
@lollerfirst ·
Pls upvote my comment for absolute no reason. I'm poor
👎  ,
properties (23)
authorlollerfirst
permlinkre-dan-eos-developer-s-log-starday-201707-3-20170704t180447439z
categoryeos
json_metadata{"tags":["eos"],"app":"steemit/0.1"}
created2017-07-04 18:04:45
last_update2017-07-04 18:04:45
depth1
children0
last_payout2017-07-11 18:04: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_length54
author_reputation-2,501,961,994,881
root_title"EOS - Developer’s Log Stardate 201707.3"
beneficiaries[]
max_accepted_payout1,000,000.000 HBD
percent_hbd10,000
post_id7,305,883
net_rshares-160,125,619,768,255
author_curate_reward""
vote details (2)
@lookupfirst ·
Very interesting!!!! I'm amazed by how smart people are on here!!!!!
properties (22)
authorlookupfirst
permlinkre-dan-eos-developer-s-log-starday-201707-3-20170705t214134768z
categoryeos
json_metadata{"tags":["eos"],"app":"steemit/0.1"}
created2017-07-05 21:41:30
last_update2017-07-05 21:41:30
depth1
children0
last_payout2017-07-12 21:41: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_length68
author_reputation1,837,171,777
root_title"EOS - Developer’s Log Stardate 201707.3"
beneficiaries[]
max_accepted_payout1,000,000.000 HBD
percent_hbd10,000
post_id7,445,659
net_rshares0
@mabre ·
Great Job
properties (22)
authormabre
permlinkre-dan-eos-developer-s-log-starday-201707-3-201775t143432406z
categoryeos
json_metadata{"app":"chainbb/0.3","format":"markdown+html","tags":[]}
created2017-07-05 12:34:33
last_update2017-07-05 12:34:33
depth1
children0
last_payout2017-07-12 12:34: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_length9
author_reputation683,935,240,907
root_title"EOS - Developer’s Log Stardate 201707.3"
beneficiaries
0.
accountchainbb
weight1,500
max_accepted_payout1,000,000.000 HBD
percent_hbd10,000
post_id7,391,580
net_rshares0
@machhour ·
thank you for this great post
The  eos programming is planned to be utilized by outsider engineers as design to construct their own particular blockchain stages on. The innovation concentrates on addressing the requirements of DApps to pick up a far reaching utilize: the eos programming should empower scaling to a great many exchanges for every second dispensing with client charges and empower dApps' fast and simple sending.

i follow you
properties (22)
authormachhour
permlinkre-dan-eos-developer-s-log-starday-201707-3-20170703t231818084z
categoryeos
json_metadata{"tags":["eos"],"app":"steemit/0.1"}
created2017-07-03 23:18:18
last_update2017-07-03 23:18:18
depth1
children0
last_payout2017-07-10 23:18: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_length442
author_reputation10,805,501,595,280
root_title"EOS - Developer’s Log Stardate 201707.3"
beneficiaries[]
max_accepted_payout1,000,000.000 HBD
percent_hbd10,000
post_id7,205,778
net_rshares0
@makrotheblack ·
Far to technical for me?,but I hope you sort the problem out because all steemit users will benefit. 
I sometimes forget about  all the hard work you and your team put into steemit. I would lie to say thanks,keep up the good work it's much appreciated
👍  
properties (23)
authormakrotheblack
permlinkre-dan-eos-developer-s-log-starday-201707-3-20170704t003358679z
categoryeos
json_metadata{"tags":["eos"],"app":"steemit/0.1"}
created2017-07-04 00:33:57
last_update2017-07-04 00:33:57
depth1
children0
last_payout2017-07-11 00:33: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_length251
author_reputation319,818,388,314
root_title"EOS - Developer’s Log Stardate 201707.3"
beneficiaries[]
max_accepted_payout1,000,000.000 HBD
percent_hbd10,000
post_id7,211,671
net_rshares1,670,694,672
author_curate_reward""
vote details (1)
@markydelro ·
Many software/app developers are still naive in blockchain development let alone the very nature of blockchain . I must admit, I am one of the developers who are still a bit confused by the whole concept. Hence, another  baffling Cryptocurrency comes along....good thing there are people like you who are willing to share an in depth perspective about it. Cheers!
👍  
properties (23)
authormarkydelro
permlinkre-dan-eos-developer-s-log-starday-201707-3-20170706t052445312z
categoryeos
json_metadata{"tags":["eos"],"app":"steemit/0.1"}
created2017-07-06 05:24:45
last_update2017-07-06 05:24:45
depth1
children0
last_payout2017-07-13 05:24: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_length363
author_reputation9,611,353
root_title"EOS - Developer’s Log Stardate 201707.3"
beneficiaries[]
max_accepted_payout1,000,000.000 HBD
percent_hbd10,000
post_id7,479,901
net_rshares615,126,600
author_curate_reward""
vote details (1)
@maythinn ·
I followed you and upvote you. Please follow me and upvote to me.
👍  
properties (23)
authormaythinn
permlinkre-dan-201774t54846295z
categoryeos
json_metadata{"tags":"eos","app":"esteem/1.4.6","format":"markdown+html","community":"esteem"}
created2017-07-03 23:20:00
last_update2017-07-03 23:20:00
depth1
children0
last_payout2017-07-10 23:20: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_length65
author_reputation1,929,996,496
root_title"EOS - Developer’s Log Stardate 201707.3"
beneficiaries
0.
accountesteemapp
weight500
max_accepted_payout1,000,000.000 HBD
percent_hbd10,000
post_id7,205,917
net_rshares116,068,671
author_curate_reward""
vote details (1)
@michelhansen75 ·
Great post with a lot of interesting details.  So sad that EOS tanked today after the wild ride in recent days
properties (22)
authormichelhansen75
permlinkre-dan-eos-developer-s-log-starday-201707-3-20170704t172856255z
categoryeos
json_metadata{"tags":["eos"],"app":"steemit/0.1"}
created2017-07-04 17:28:57
last_update2017-07-04 17:28:57
depth1
children0
last_payout2017-07-11 17: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_length110
author_reputation36,213,029
root_title"EOS - Developer’s Log Stardate 201707.3"
beneficiaries[]
max_accepted_payout1,000,000.000 HBD
percent_hbd10,000
post_id7,302,293
net_rshares0
@misticrum ·
Iys alway good to learn new things
properties (22)
authormisticrum
permlinkre-dan-eos-developer-s-log-starday-201707-3-20170704t023719294z
categoryeos
json_metadata{"tags":["eos"],"app":"steemit/0.1"}
created2017-07-04 02:37:18
last_update2017-07-04 02:37:18
depth1
children0
last_payout2017-07-11 02:37: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_length34
author_reputation25,888,349,408
root_title"EOS - Developer’s Log Stardate 201707.3"
beneficiaries[]
max_accepted_payout1,000,000.000 HBD
percent_hbd10,000
post_id7,221,322
net_rshares0
@mohammadreza ·
Helloooooo my friend
excellent
i voted
my voted tnx
properties (22)
authormohammadreza
permlinkre-dan-eos-developer-s-log-starday-201707-3-20170721t085947275z
categoryeos
json_metadata{"tags":["eos"],"app":"steemit/0.1"}
created2017-07-21 08:59:54
last_update2017-07-21 08:59:54
depth1
children0
last_payout2017-07-28 08:59:54
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_reputation291,216,165,727
root_title"EOS - Developer’s Log Stardate 201707.3"
beneficiaries[]
max_accepted_payout1,000,000.000 HBD
percent_hbd10,000
post_id9,173,014
net_rshares0
@mohammedfelahi ·
nice
properties (22)
authormohammedfelahi
permlinkre-dan-eos-developer-s-log-starday-201707-3-20170706t111346556z
categoryeos
json_metadata{"tags":["eos"],"app":"steemit/0.1"}
created2017-07-06 11:13:48
last_update2017-07-06 11:13:48
depth1
children0
last_payout2017-07-13 11:13: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_length4
author_reputation4,562,190,164,246
root_title"EOS - Developer’s Log Stardate 201707.3"
beneficiaries[]
max_accepted_payout1,000,000.000 HBD
percent_hbd10,000
post_id7,507,429
net_rshares0
@monalishabiswas ·
It is a awesome post. Thank you for updates.
properties (22)
authormonalishabiswas
permlinkre-dan-eos-developer-s-log-starday-201707-3-20170704t160304479z
categoryeos
json_metadata{"tags":["eos"],"app":"steemit/0.1"}
created2017-07-04 16:03:12
last_update2017-07-04 16:03:12
depth1
children0
last_payout2017-07-11 16:03: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_length44
author_reputation134,168,998,755
root_title"EOS - Developer’s Log Stardate 201707.3"
beneficiaries[]
max_accepted_payout1,000,000.000 HBD
percent_hbd10,000
post_id7,293,414
net_rshares0
@moneymakercy ·
thx for the info Dan
properties (22)
authormoneymakercy
permlinkre-dan-eos-developer-s-log-starday-201707-3-20170704t111626441z
categoryeos
json_metadata{"tags":["eos"],"app":"steemit/0.1"}
created2017-07-04 11:16:27
last_update2017-07-04 11:16:27
depth1
children0
last_payout2017-07-11 11:16: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_length20
author_reputation1,739,507,989
root_title"EOS - Developer’s Log Stardate 201707.3"
beneficiaries[]
max_accepted_payout1,000,000.000 HBD
percent_hbd10,000
post_id7,262,837
net_rshares0
@moneymaster ·
$0.03
thank you Dan for your time and effort to make Steem big 
im not very good in writing programs but those who can
have many advantages ! SteemOn 

http://i.imgur.com/lfpMHmA.gif
👍  
properties (23)
authormoneymaster
permlinkre-dan-eos-developer-s-log-starday-201707-3-20170705t112504316z
categoryeos
json_metadata{"tags":["eos"],"image":["http://i.imgur.com/lfpMHmA.gif"],"app":"steemit/0.1"}
created2017-07-05 11:25:06
last_update2017-07-05 11:25:06
depth1
children0
last_payout2017-07-12 11:25:06
cashout_time1969-12-31 23:59:59
total_payout_value0.022 HBD
curator_payout_value0.006 HBD
pending_payout_value0.000 HBD
promoted0.000 HBD
body_length176
author_reputation197,148,008,589
root_title"EOS - Developer’s Log Stardate 201707.3"
beneficiaries[]
max_accepted_payout1,000,000.000 HBD
percent_hbd10,000
post_id7,385,541
net_rshares5,609,511,089
author_curate_reward""
vote details (1)
@mrmoneymaken ·
$0.97
https://steemit.com/upvoteforupvote/@mrmoneymaken/eos-discussion

feel free to join
👍  ,
properties (23)
authormrmoneymaken
permlinkre-dan-eos-developer-s-log-starday-201707-3-20170704t095346422z
categoryeos
json_metadata{"tags":["eos"],"links":["https://steemit.com/upvoteforupvote/@mrmoneymaken/eos-discussion"],"app":"steemit/0.1"}
created2017-07-04 09:53:27
last_update2017-07-04 09:53:27
depth1
children0
last_payout2017-07-11 09:53:27
cashout_time1969-12-31 23:59:59
total_payout_value0.726 HBD
curator_payout_value0.239 HBD
pending_payout_value0.000 HBD
promoted0.000 HBD
body_length83
author_reputation176,955,921,251
root_title"EOS - Developer’s Log Stardate 201707.3"
beneficiaries[]
max_accepted_payout1,000,000.000 HBD
percent_hbd10,000
post_id7,255,360
net_rshares148,113,539,844
author_curate_reward""
vote details (2)
@muarju ·
EOS it's Awesome. @dan
properties (22)
authormuarju
permlinkre-dan-eos-developer-s-log-starday-201707-3-20170727t201414833z
categoryeos
json_metadata{"tags":["eos"],"users":["dan"],"app":"steemit/0.1"}
created2017-07-27 20:14:15
last_update2017-07-27 20:14:15
depth1
children0
last_payout2017-08-03 20:14: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_length22
author_reputation54,328,652,939
root_title"EOS - Developer’s Log Stardate 201707.3"
beneficiaries[]
max_accepted_payout1,000,000.000 HBD
percent_hbd10,000
post_id9,948,776
net_rshares0
@nalang ·
thanks.
👍  
properties (23)
authornalang
permlinkre-dan-eos-developer-s-log-starday-201707-3-20170705t143335366z
categoryeos
json_metadata{"tags":["eos"],"app":"steemit/0.1"}
created2017-07-05 14:33:39
last_update2017-07-05 14:33:39
depth1
children0
last_payout2017-07-12 14:33: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_length7
author_reputation263,532,395
root_title"EOS - Developer’s Log Stardate 201707.3"
beneficiaries[]
max_accepted_payout1,000,000.000 HBD
percent_hbd10,000
post_id7,404,033
net_rshares1,098,853,051
author_curate_reward""
vote details (1)
@naseerbhat ·
$0.44
@dan that is what most of the people on @steemit are looking for. U have had a good impression and have sheared a good article in a proper way and proper context. All the best brother. Stay blessed and keep steeming..
@naseerbhat
👍  , , , , , , , , ,
properties (23)
authornaseerbhat
permlinkre-dan-201778t03625230z
categoryeos
json_metadata{"tags":"eos","app":"esteem/1.4.6","format":"markdown+html","community":"esteem"}
created2017-07-07 19:06:39
last_update2017-07-07 19:06:39
depth1
children0
last_payout2017-07-14 19:06:39
cashout_time1969-12-31 23:59:59
total_payout_value0.440 HBD
curator_payout_value0.000 HBD
pending_payout_value0.000 HBD
promoted0.000 HBD
body_length229
author_reputation2,572,727,094,814
root_title"EOS - Developer’s Log Stardate 201707.3"
beneficiaries
0.
accountesteemapp
weight500
max_accepted_payout1,000,000.000 HBD
percent_hbd10,000
post_id7,676,639
net_rshares104,491,142,022
author_curate_reward""
vote details (10)
@ndnd92 ·
Follow me please.. i have fallowed you
👎  ,
properties (23)
authorndnd92
permlinkre-dan-eos-developer-s-log-starday-201707-3-20170704t102552294z
categoryeos
json_metadata{"tags":["eos"],"app":"steemit/0.1"}
created2017-07-04 10:25:51
last_update2017-07-04 10:25:51
depth1
children0
last_payout2017-07-11 10:25: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_length38
author_reputation-443,134,974,292
root_title"EOS - Developer’s Log Stardate 201707.3"
beneficiaries[]
max_accepted_payout1,000,000.000 HBD
percent_hbd10,000
post_id7,258,311
net_rshares-1,721,832,393,485
author_curate_reward""
vote details (2)
@ndnd92 ·
i have fallowed you .. and i will vote u
fallow me please and tell me when u do it
tnx
👎  ,
properties (23)
authorndnd92
permlinkre-dan-eos-developer-s-log-starday-201707-3-20170704t113723442z
categoryeos
json_metadata{"tags":["eos"],"app":"steemit/0.1"}
created2017-07-04 11:37:21
last_update2017-07-04 11:37:21
depth1
children0
last_payout2017-07-11 11:37: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_length86
author_reputation-443,134,974,292
root_title"EOS - Developer’s Log Stardate 201707.3"
beneficiaries[]
max_accepted_payout1,000,000.000 HBD
percent_hbd10,000
post_id7,264,865
net_rshares-26,687,646,707,987
author_curate_reward""
vote details (2)
@needmorefat ·
Me irl

http://media.boingboing.net/wp-content/uploads/2016/11/bcf.png
properties (22)
authorneedmorefat
permlinkre-dan-eos-developer-s-log-starday-201707-3-20170704t015507757z
categoryeos
json_metadata{"tags":["eos"],"image":["http://media.boingboing.net/wp-content/uploads/2016/11/bcf.png"],"app":"steemit/0.1"}
created2017-07-04 01:55:09
last_update2017-07-04 01:55:09
depth1
children0
last_payout2017-07-11 01:55: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_length70
author_reputation268,870,057,104
root_title"EOS - Developer’s Log Stardate 201707.3"
beneficiaries[]
max_accepted_payout1,000,000.000 HBD
percent_hbd10,000
post_id7,217,901
net_rshares0
@noval ·
How you can earn that much dollars @dan
properties (22)
authornoval
permlinkre-dan-201774t185042381z
categoryeos
json_metadata{"tags":"eos","app":"esteem/1.4.6","format":"markdown+html","community":"esteem"}
created2017-07-04 11:50:48
last_update2017-07-04 11:50:48
depth1
children0
last_payout2017-07-11 11:50: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_length39
author_reputation78,049,643,501
root_title"EOS - Developer’s Log Stardate 201707.3"
beneficiaries
0.
accountesteemapp
weight500
max_accepted_payout1,000,000.000 HBD
percent_hbd10,000
post_id7,266,117
net_rshares0
@novale ·
$0.46
Very useful for beginners like me, but I have not fully understood the concept and implementation. For newcomers like me, understanding this kind of article is a difficult thing, however I try to follow every development of your comments and posts @dan. This is amazing, happy to keep following every content of your blog and I will follow every development. thanks for sharing
👍  , , , , , , , ,
properties (23)
authornovale
permlinkre-dan-201775t164827562z
categoryeos
json_metadata{"tags":"eos","app":"esteem/1.4.6","format":"markdown+html","community":"esteem"}
created2017-07-05 09:48:33
last_update2017-07-05 09:48:33
depth1
children0
last_payout2017-07-12 09:48:33
cashout_time1969-12-31 23:59:59
total_payout_value0.463 HBD
curator_payout_value0.000 HBD
pending_payout_value0.000 HBD
promoted0.000 HBD
body_length377
author_reputation23,451,887,862,777
root_title"EOS - Developer’s Log Stardate 201707.3"
beneficiaries
0.
accountesteemapp
weight500
max_accepted_payout1,000,000.000 HBD
percent_hbd10,000
post_id7,378,078
net_rshares90,188,580,190
author_curate_reward""
vote details (9)
@nutela ·
Remember **BeOS** (and now [Haiku](https://www.haiku-os.org)? Both are entirely in C++. 
I've read a *lot* on parallel processing from those days. So it's funny to *meet* all this again here on Steemit. Too bad they are not so well known, they were so ahead of their time. And *what* a time it was!
properties (22)
authornutela
permlinkre-dan-eos-developer-s-log-starday-201707-3-20170704t113303074z
categoryeos
json_metadata{"tags":["eos"],"links":["https://www.haiku-os.org"],"app":"steemit/0.1"}
created2017-07-04 11:33:00
last_update2017-07-04 11:33:00
depth1
children0
last_payout2017-07-11 11:33: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_length298
author_reputation12,740,113,194,550
root_title"EOS - Developer’s Log Stardate 201707.3"
beneficiaries[]
max_accepted_payout1,000,000.000 HBD
percent_hbd10,000
post_id7,264,426
net_rshares0
@osaka ·
$0.53
My question, for the security of our financial transactions, the manna application is very suitable for us to use, because in these few days many transactions failed in the transaction process, here are some events from my friends, please explain @dan
👍  ,
properties (23)
authorosaka
permlinkre-dan-201774t115653210z
categoryeos
json_metadata{"tags":"eos","app":"esteem/1.4.5","format":"markdown+html","community":"esteem"}
created2017-07-04 04:57:00
last_update2017-07-04 04:57:00
depth1
children0
last_payout2017-07-11 04:57:00
cashout_time1969-12-31 23:59:59
total_payout_value0.530 HBD
curator_payout_value0.000 HBD
pending_payout_value0.000 HBD
promoted0.000 HBD
body_length251
author_reputation-221,197,013,380
root_title"EOS - Developer’s Log Stardate 201707.3"
beneficiaries
0.
accountesteemapp
weight500
max_accepted_payout1,000,000.000 HBD
percent_hbd10,000
post_id7,231,532
net_rshares85,279,576,196
author_curate_reward""
vote details (2)
@othmanesl ·
thanks for this solution I was searching for it thanks for this posts and it really worked thank you!
properties (22)
authorothmanesl
permlinkre-dan-eos-developer-s-log-starday-201707-3-20170703t222932162z
categoryeos
json_metadata{"tags":["eos"],"app":"steemit/0.1"}
created2017-07-03 22:29:33
last_update2017-07-03 22:29:33
depth1
children0
last_payout2017-07-10 22:29: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_length101
author_reputation422,822,256,945
root_title"EOS - Developer’s Log Stardate 201707.3"
beneficiaries[]
max_accepted_payout1,000,000.000 HBD
percent_hbd10,000
post_id7,201,675
net_rshares0
@outhori5ed ·
this is very useful. Thank you
properties (22)
authorouthori5ed
permlinkre-dan-eos-developer-s-log-starday-201707-3-20170705t094704524z
categoryeos
json_metadata{"tags":["eos"],"app":"steemit/0.1"}
created2017-07-05 09:47:06
last_update2017-07-05 09:47:06
depth1
children0
last_payout2017-07-12 09:47: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_length30
author_reputation39,356,239,578,011
root_title"EOS - Developer’s Log Stardate 201707.3"
beneficiaries[]
max_accepted_payout1,000,000.000 HBD
percent_hbd10,000
post_id7,377,961
net_rshares0
@outhori5ed ·
please anyone here who will like to share advice and opinion on sex education? there is a move we plan to make and we will appreciate advice, opinion and instructions. please feel free to share your view on this 
https://steemit.com/sex/@outhori5ed/sex-education-by-ogunleye-dele-victor

thank you
properties (22)
authorouthori5ed
permlinkre-dan-eos-developer-s-log-starday-201707-3-20170708t215556791z
categoryeos
json_metadata{"tags":["eos"],"links":["https://steemit.com/sex/@outhori5ed/sex-education-by-ogunleye-dele-victor"],"app":"steemit/0.1"}
created2017-07-08 21:56:00
last_update2017-07-08 21:56:00
depth1
children0
last_payout2017-07-15 21:56: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_length297
author_reputation39,356,239,578,011
root_title"EOS - Developer’s Log Stardate 201707.3"
beneficiaries[]
max_accepted_payout1,000,000.000 HBD
percent_hbd10,000
post_id7,799,052
net_rshares0
@pablito ·
Nice job
properties (22)
authorpablito
permlinkre-dan-201773t234821239z
categoryeos
json_metadata{"tags":"eos","app":"esteem/1.4.5","format":"markdown+html","community":"esteem"}
created2017-07-03 21:48:21
last_update2017-07-03 21:48:21
depth1
children0
last_payout2017-07-10 21:48: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_length8
author_reputation6,023,171,893,864
root_title"EOS - Developer’s Log Stardate 201707.3"
beneficiaries
0.
accountesteemapp
weight500
max_accepted_payout1,000,000.000 HBD
percent_hbd10,000
post_id7,197,713
net_rshares0
@patyto ·
Hello from Colombia, hey really you are so good, the best. Congratulations. Excellent post.
properties (22)
authorpatyto
permlinkre-dan-eos-developer-s-log-starday-201707-3-20170704t053812544z
categoryeos
json_metadata{"tags":["eos"],"app":"steemit/0.1"}
created2017-07-04 05:38:06
last_update2017-07-04 05:38:06
depth1
children0
last_payout2017-07-11 05:38: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_length91
author_reputation5,803,455,972
root_title"EOS - Developer’s Log Stardate 201707.3"
beneficiaries[]
max_accepted_payout1,000,000.000 HBD
percent_hbd10,000
post_id7,234,601
net_rshares0
@princekayani ·
A Good Post
properties (22)
authorprincekayani
permlinkre-dan-eos-developer-s-log-starday-201707-3-20170703t223507691z
categoryeos
json_metadata{"tags":["eos"],"app":"steemit/0.1"}
created2017-07-03 22:35:36
last_update2017-07-03 22:35:36
depth1
children0
last_payout2017-07-10 22:35: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_length11
author_reputation61,289,909,290
root_title"EOS - Developer’s Log Stardate 201707.3"
beneficiaries[]
max_accepted_payout1,000,000.000 HBD
percent_hbd10,000
post_id7,202,249
net_rshares0
@qadeeruddin ·
@qadeeruddin
Follow me and   vote me   and  get back same
properties (22)
authorqadeeruddin
permlinkre-dan-eos-developer-s-log-starday-201707-3-20170703t222549393z
categoryeos
json_metadata{"tags":["eos"],"users":["qadeeruddin"],"app":"steemit/0.1"}
created2017-07-03 22:25:51
last_update2017-07-03 22:25:51
depth1
children0
last_payout2017-07-10 22:25: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_length57
author_reputation10,542,505,628
root_title"EOS - Developer’s Log Stardate 201707.3"
beneficiaries[]
max_accepted_payout1,000,000.000 HBD
percent_hbd10,000
post_id7,201,296
net_rshares0
@raku ·
It's good to see the post which gives you extra knowledge.
Your post is interesting as ever. 
Keep posting and hope to see other post.
Good day.
properties (22)
authorraku
permlinkre-dan-201774t104614311z
categoryeos
json_metadata{"tags":"eos","app":"esteem/1.4.6","format":"markdown+html","community":"esteem"}
created2017-07-04 05:01:18
last_update2017-07-04 05:01:18
depth1
children0
last_payout2017-07-11 05:01: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_length144
author_reputation78,878,401,625
root_title"EOS - Developer’s Log Stardate 201707.3"
beneficiaries
0.
accountesteemapp
weight500
max_accepted_payout1,000,000.000 HBD
percent_hbd10,000
post_id7,231,856
net_rshares0
@raserrano ·
I'm really excited to see how thing are going to change in the future and how things ar resolved as small issues show up
properties (22)
authorraserrano
permlinkre-dan-eos-developer-s-log-starday-201707-3-20170704t023910053z
categoryeos
json_metadata{"tags":["eos"],"app":"steemit/0.1"}
created2017-07-04 02:39:09
last_update2017-07-04 02:39:09
depth1
children0
last_payout2017-07-11 02:39: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_length120
author_reputation17,096,448,295,650
root_title"EOS - Developer’s Log Stardate 201707.3"
beneficiaries[]
max_accepted_payout1,000,000.000 HBD
percent_hbd10,000
post_id7,221,486
net_rshares0
@rebatesteem ·
Your posts are very good. Me and others would also like. May your work and experience be a new science for all of us. Currently I am @rebatesteem doing steemit and steem promotion in my new post to build a great community in ACEH. Hope you also join, upvote and reesteemit. Because this action can be a big difference and make my work or information better known.
properties (22)
authorrebatesteem
permlinkre-dan-eos-developer-s-log-starday-201707-3-20170706t112426730z
categoryeos
json_metadata{"tags":["eos"],"users":["rebatesteem"],"app":"steemit/0.1"}
created2017-07-06 11:24:51
last_update2017-07-06 11:24:51
depth1
children0
last_payout2017-07-13 11:24: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_length363
author_reputation13,668,437,279,391
root_title"EOS - Developer’s Log Stardate 201707.3"
beneficiaries[]
max_accepted_payout1,000,000.000 HBD
percent_hbd10,000
post_id7,508,337
net_rshares0
@resteemit ·
nice post
👎  ,
properties (23)
authorresteemit
permlinkre-dan-201774t125538499z
categoryeos
json_metadata{"tags":"eos","app":"esteem/1.4.6","format":"markdown+html","community":"esteem"}
created2017-07-04 05:55:45
last_update2017-07-04 05:55:45
depth1
children1
last_payout2017-07-11 05:55: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_length9
author_reputation15,796,661,345
root_title"EOS - Developer’s Log Stardate 201707.3"
beneficiaries
0.
accountesteemapp
weight500
max_accepted_payout1,000,000.000 HBD
percent_hbd10,000
post_id7,235,867
net_rshares-1,721,832,393,485
author_curate_reward""
vote details (2)
@resteemit ·
$0.82
hello @dan, I am new member in steemit, so before I do not quite understand using steemit, I feel very sad you have done flag to me
I want to know a reason from you?
Is my comment wrong?
Others I see provide similar comments with my comments, why am I in the flag?
👍  ,
properties (23)
authorresteemit
permlinkre-resteemit-re-dan-201774t125538499z-20170724t192300383z
categoryeos
json_metadata{"tags":["eos"],"users":["dan"],"app":"steemit/0.1"}
created2017-07-24 19:23:03
last_update2017-07-24 19:23:03
depth2
children0
last_payout2017-07-31 19:23:03
cashout_time1969-12-31 23:59:59
total_payout_value0.616 HBD
curator_payout_value0.203 HBD
pending_payout_value0.000 HBD
promoted0.000 HBD
body_length264
author_reputation15,796,661,345
root_title"EOS - Developer’s Log Stardate 201707.3"
beneficiaries[]
max_accepted_payout1,000,000.000 HBD
percent_hbd10,000
post_id9,576,096
net_rshares220,986,137,114
author_curate_reward""
vote details (2)
@reyadelhamzawy ·
it's very good post about developer
properties (22)
authorreyadelhamzawy
permlinkre-dan-eos-developer-s-log-starday-201707-3-20170703t222302695z
categoryeos
json_metadata{"tags":["eos"],"app":"steemit/0.1"}
created2017-07-03 22:23:09
last_update2017-07-03 22:23:09
depth1
children0
last_payout2017-07-10 22:23: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_length35
author_reputation-2,676,488,917,934
root_title"EOS - Developer’s Log Stardate 201707.3"
beneficiaries[]
max_accepted_payout1,000,000.000 HBD
percent_hbd10,000
post_id7,201,036
net_rshares0
@ricardot ·
great post
properties (22)
authorricardot
permlinkre-dan-eos-developer-s-log-starday-201707-3-20170703t230542073z
categoryeos
json_metadata{"tags":["eos"],"app":"steemit/0.1"}
created2017-07-03 23:05:45
last_update2017-07-03 23:05:45
depth1
children0
last_payout2017-07-10 23:05: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_length10
author_reputation24,387,146,684
root_title"EOS - Developer’s Log Stardate 201707.3"
beneficiaries[]
max_accepted_payout1,000,000.000 HBD
percent_hbd10,000
post_id7,204,806
net_rshares0
@richreck ·
$0.79
Thanks for the  updates. Got in on the EOS ICO, should have bought more in the first 5 day opening period as that was the time to buy 😎
👍  
properties (23)
authorrichreck
permlinkre-dan-eos-developer-s-log-starday-201707-3-20170704t180043881z
categoryeos
json_metadata{"tags":["eos"],"app":"steemit/0.1"}
created2017-07-04 18:00:45
last_update2017-07-04 18:00:45
depth1
children0
last_payout2017-07-11 18:00:45
cashout_time1969-12-31 23:59:59
total_payout_value0.790 HBD
curator_payout_value0.001 HBD
pending_payout_value0.000 HBD
promoted0.000 HBD
body_length135
author_reputation263,519,071,944
root_title"EOS - Developer’s Log Stardate 201707.3"
beneficiaries[]
max_accepted_payout1,000,000.000 HBD
percent_hbd10,000
post_id7,305,511
net_rshares126,017,816,438
author_curate_reward""
vote details (1)
@riskimauliza ·
Hey friend help me,I just learned steemit.
Promote me .
👍  
properties (23)
authorriskimauliza
permlinkre-dan-201774t75849252z
categoryeos
json_metadata{"tags":"eos","app":"esteem/1.4.6","format":"markdown+html","community":"esteem"}
created2017-07-04 00:58:54
last_update2017-07-04 00:58:54
depth1
children0
last_payout2017-07-11 00:58:54
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_length55
author_reputation219,805,209,163
root_title"EOS - Developer’s Log Stardate 201707.3"
beneficiaries
0.
accountesteemapp
weight500
max_accepted_payout1,000,000.000 HBD
percent_hbd10,000
post_id7,213,727
net_rshares1,160,707,380
author_curate_reward""
vote details (1)
@riskimauliza ·
Good post
properties (22)
authorriskimauliza
permlinkre-dan-201775t13658272z
categoryeos
json_metadata{"tags":"eos","app":"esteem/1.4.6","format":"markdown+html","community":"esteem"}
created2017-07-04 18:37:06
last_update2017-07-04 18:37:06
depth1
children0
last_payout2017-07-11 18:37: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_length9
author_reputation219,805,209,163
root_title"EOS - Developer’s Log Stardate 201707.3"
beneficiaries
0.
accountesteemapp
weight500
max_accepted_payout1,000,000.000 HBD
percent_hbd10,000
post_id7,309,129
net_rshares0
@rodolfocastrodz ·
Very interesting, I liked to see it was very nice
properties (22)
authorrodolfocastrodz
permlinkre-dan-eos-developer-s-log-starday-201707-3-20170705t121627276z
categoryeos
json_metadata{"tags":["eos"],"app":"steemit/0.1"}
created2017-07-05 12:16:24
last_update2017-07-05 12:16:24
depth1
children0
last_payout2017-07-12 12:16: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_length49
author_reputation11,181,125,913
root_title"EOS - Developer’s Log Stardate 201707.3"
beneficiaries[]
max_accepted_payout1,000,000.000 HBD
percent_hbd10,000
post_id7,389,948
net_rshares0
@rohitbisht ·
such a great blog
properties (22)
authorrohitbisht
permlinkre-dan-eos-developer-s-log-starday-201707-3-20170704t152913125z
categoryeos
json_metadata{"tags":["eos"],"app":"steemit/0.1"}
created2017-07-04 15:29:24
last_update2017-07-04 15:29:24
depth1
children0
last_payout2017-07-11 15:29: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_length17
author_reputation206,795,220,204
root_title"EOS - Developer’s Log Stardate 201707.3"
beneficiaries[]
max_accepted_payout1,000,000.000 HBD
percent_hbd10,000
post_id7,290,098
net_rshares0
@s3rg3 ·
Ehh I guess this is an informative post but I think my mind is too simple to understand. Nevertheless I just today got me some EOS via Kraken so I am excited what this will bring us in the near or far future. Glad I am on board
properties (22)
authors3rg3
permlinkre-dan-eos-developer-s-log-starday-201707-3-20170703t215725821z
categoryeos
json_metadata{"tags":["eos"],"app":"steemit/0.1"}
created2017-07-03 21:57:24
last_update2017-07-03 21:57:24
depth1
children0
last_payout2017-07-10 21:57: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_length227
author_reputation50,804,432,544,955
root_title"EOS - Developer’s Log Stardate 201707.3"
beneficiaries[]
max_accepted_payout1,000,000.000 HBD
percent_hbd10,000
post_id7,198,599
net_rshares0
@sam19 ·
great read Dan, even though most of the stuff didnt make sense, i would like to be your steemit friend, i just joined. i dont know what im doing but i just wana learn and im willing to
properties (22)
authorsam19
permlinkre-dan-eos-developer-s-log-starday-201707-3-20170703t223654445z
categoryeos
json_metadata{"tags":["eos"],"app":"steemit/0.1"}
created2017-07-03 22:37:03
last_update2017-07-03 22:37:03
depth1
children0
last_payout2017-07-10 22:37: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_length184
author_reputation-94,571,600,344
root_title"EOS - Developer’s Log Stardate 201707.3"
beneficiaries[]
max_accepted_payout1,000,000.000 HBD
percent_hbd10,000
post_id7,202,380
net_rshares0
@sanat ·
This is yet another project I am looking forward to see...
properties (22)
authorsanat
permlinkre-dan-eos-developer-s-log-starday-201707-3-20170704t143604601z
categoryeos
json_metadata{"tags":["eos"],"app":"steemit/0.1"}
created2017-07-04 14:36:06
last_update2017-07-04 14:36:06
depth1
children0
last_payout2017-07-11 14:36: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_length58
author_reputation2,167,003,527,810
root_title"EOS - Developer’s Log Stardate 201707.3"
beneficiaries[]
max_accepted_payout1,000,000.000 HBD
percent_hbd10,000
post_id7,284,007
net_rshares0
@sandwich ·
$0.11
Looking forward to more technical updates
👍  ,
properties (23)
authorsandwich
permlinkre-dan-eos-developer-s-log-starday-201707-3-20170703t220831751z
categoryeos
json_metadata{"tags":["eos"],"app":"steemit/0.1"}
created2017-07-03 22:08:33
last_update2017-07-03 22:08:33
depth1
children1
last_payout2017-07-10 22:08:33
cashout_time1969-12-31 23:59:59
total_payout_value0.084 HBD
curator_payout_value0.024 HBD
pending_payout_value0.000 HBD
promoted0.000 HBD
body_length41
author_reputation7,919,075,206,622
root_title"EOS - Developer’s Log Stardate 201707.3"
beneficiaries[]
max_accepted_payout1,000,000.000 HBD
percent_hbd10,000
post_id7,199,664
net_rshares16,563,486,064
author_curate_reward""
vote details (2)
@belidged ·
I've been seeing a lot of you lately. "I know a good sandwich when I see one"
👍  
properties (23)
authorbelidged
permlinkre-sandwich-re-dan-eos-developer-s-log-starday-201707-3-20170704t040435773z
categoryeos
json_metadata{"tags":["eos"],"app":"steemit/0.1"}
created2017-07-04 04:04:36
last_update2017-07-04 04:04:36
depth2
children0
last_payout2017-07-11 04:04: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_length77
author_reputation107,019,740,819
root_title"EOS - Developer’s Log Stardate 201707.3"
beneficiaries[]
max_accepted_payout1,000,000.000 HBD
percent_hbd10,000
post_id7,227,853
net_rshares2,456,446,073
author_curate_reward""
vote details (1)
@sanees ·
How abt security Then. Understood its only read only but no harm is knowing the balance???
👍  
properties (23)
authorsanees
permlinkre-dan-eos-developer-s-log-starday-201707-3-20170704t004205808z
categoryeos
json_metadata{"tags":["eos"],"app":"steemit/0.1"}
created2017-07-04 00:42:06
last_update2017-07-04 00:42:06
depth1
children0
last_payout2017-07-11 00:42: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_length90
author_reputation2,019,131,877,450
root_title"EOS - Developer’s Log Stardate 201707.3"
beneficiaries[]
max_accepted_payout1,000,000.000 HBD
percent_hbd10,000
post_id7,212,351
net_rshares1,991,987,694
author_curate_reward""
vote details (1)
@senor ·
Let's see what the future holds.
It is a good sign that the problems were discussed.
👍  
properties (23)
authorsenor
permlinkre-dan-eos-developer-s-log-starday-201707-3-20170703t231248662z
categoryeos
json_metadata{"tags":["eos"],"app":"steemit/0.1"}
created2017-07-03 23:12:48
last_update2017-07-03 23:12:48
depth1
children0
last_payout2017-07-10 23:12: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_length84
author_reputation431,911,756,947
root_title"EOS - Developer’s Log Stardate 201707.3"
beneficiaries[]
max_accepted_payout1,000,000.000 HBD
percent_hbd10,000
post_id7,205,357
net_rshares522,213,331
author_curate_reward""
vote details (1)
@shariff ·
Thank you Dan for keeping us updated.
properties (22)
authorshariff
permlinkre-dan-eos-developer-s-log-starday-201707-3-20170704t081817779z
categoryeos
json_metadata{"tags":["eos"],"app":"steemit/0.1"}
created2017-07-04 08:18:18
last_update2017-07-04 08:18:18
depth1
children0
last_payout2017-07-11 08:18: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_length37
author_reputation172,337,616,135
root_title"EOS - Developer’s Log Stardate 201707.3"
beneficiaries[]
max_accepted_payout1,000,000.000 HBD
percent_hbd10,000
post_id7,247,385
net_rshares0
@shotokanzh ·
You rock guy. Amazing.
properties (22)
authorshotokanzh
permlinkre-dan-eos-developer-s-log-starday-201707-3-20170704t150353256z
categoryeos
json_metadata{"tags":["eos"],"app":"steemit/0.1"}
created2017-07-04 15:03:54
last_update2017-07-04 15:03:54
depth1
children0
last_payout2017-07-11 15:03:54
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_reputation47,284,538,927
root_title"EOS - Developer’s Log Stardate 201707.3"
beneficiaries[]
max_accepted_payout1,000,000.000 HBD
percent_hbd10,000
post_id7,287,303
net_rshares0
@shovonswift ·
good idea
👍  
properties (23)
authorshovonswift
permlinkre-dan-eos-developer-s-log-starday-201707-3-20170704t011756166z
categoryeos
json_metadata{"tags":["eos"],"app":"steemit/0.1"}
created2017-07-04 01:18:03
last_update2017-07-04 01:18:03
depth1
children0
last_payout2017-07-11 01:18: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_length9
author_reputation-135,867,443,450
root_title"EOS - Developer’s Log Stardate 201707.3"
beneficiaries[]
max_accepted_payout1,000,000.000 HBD
percent_hbd10,000
post_id7,215,178
net_rshares986,659,249
author_curate_reward""
vote details (1)
@sixteen4narchist ·
Hi, I've followed you for a while, could you upvote my most recent article as i'm only small and trying to grow? (:
👎  ,
properties (23)
authorsixteen4narchist
permlinkre-dan-eos-developer-s-log-starday-201707-3-20170704t215706348z
categoryeos
json_metadata{"tags":["eos"],"app":"steemit/0.1"}
created2017-07-04 21:57:24
last_update2017-07-04 21:57:24
depth1
children0
last_payout2017-07-11 21:57: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_length115
author_reputation-186,217,745,272
root_title"EOS - Developer’s Log Stardate 201707.3"
beneficiaries[]
max_accepted_payout1,000,000.000 HBD
percent_hbd10,000
post_id7,327,620
net_rshares-1,721,832,393,485
author_curate_reward""
vote details (2)
@skapaneas ·
Donate for the steemfest and join the party.

:)
properties (22)
authorskapaneas
permlinkre-dan-eos-developer-s-log-starday-201707-3-20170705t223201146z
categoryeos
json_metadata{"tags":["eos"],"app":"steemit/0.1"}
created2017-07-05 22:32:03
last_update2017-07-05 22:32:03
depth1
children0
last_payout2017-07-12 22:32: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_length48
author_reputation126,745,380,231,329
root_title"EOS - Developer’s Log Stardate 201707.3"
beneficiaries[]
max_accepted_payout1,000,000.000 HBD
percent_hbd10,000
post_id7,449,800
net_rshares0
@smokebox ·
follow me
👎  ,
properties (23)
authorsmokebox
permlinkre-dan-eos-developer-s-log-starday-201707-3-20170704t153831190z
categoryeos
json_metadata{"tags":["eos"],"app":"steemit/0.1"}
created2017-07-04 15:38:27
last_update2017-07-04 15:38:27
depth1
children0
last_payout2017-07-11 15:38: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_length9
author_reputation-2,596,119,939,751
root_title"EOS - Developer’s Log Stardate 201707.3"
beneficiaries[]
max_accepted_payout1,000,000.000 HBD
percent_hbd10,000
post_id7,291,064
net_rshares-166,151,850,809,687
author_curate_reward""
vote details (2)
@snorlex20 ·
amazing blog @dan
properties (22)
authorsnorlex20
permlinkre-dan-eos-developer-s-log-starday-201707-3-20170704t021038737z
categoryeos
json_metadata{"tags":["eos"],"users":["dan"],"app":"steemit/0.1"}
created2017-07-04 02:10:39
last_update2017-07-04 02:10:39
depth1
children0
last_payout2017-07-11 02:10: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_length17
author_reputation20,255,848,295
root_title"EOS - Developer’s Log Stardate 201707.3"
beneficiaries[]
max_accepted_payout1,000,000.000 HBD
percent_hbd10,000
post_id7,219,092
net_rshares0
@space-explorer ·
Would you be recommending Python?
👍  
properties (23)
authorspace-explorer
permlinkre-dan-eos-developer-s-log-starday-201707-3-20170704t015124499z
categoryeos
json_metadata{"tags":["eos"],"app":"steemit/0.1"}
created2017-07-04 01:51:24
last_update2017-07-04 01:51:24
depth1
children0
last_payout2017-07-11 01:51: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_length33
author_reputation83,400,813
root_title"EOS - Developer’s Log Stardate 201707.3"
beneficiaries[]
max_accepted_payout1,000,000.000 HBD
percent_hbd10,000
post_id7,217,637
net_rshares1,160,684,883
author_curate_reward""
vote details (1)
@sparrow ·
Thanks for sharing this information with us, valuable on all terms!
properties (22)
authorsparrow
permlinkre-dan-eos-developer-s-log-starday-201707-3-20170703t223217139z
categoryeos
json_metadata{"tags":["eos"],"app":"steemit/0.1"}
created2017-07-03 22:32:18
last_update2017-07-03 22:32:18
depth1
children0
last_payout2017-07-10 22:32: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_length67
author_reputation1,287,682,859
root_title"EOS - Developer’s Log Stardate 201707.3"
beneficiaries[]
max_accepted_payout1,000,000.000 HBD
percent_hbd10,000
post_id7,201,947
net_rshares0
@star02037 ·
I love eos  HODL!!
properties (22)
authorstar02037
permlinkre-dan-eos-developer-s-log-starday-201707-3-20170704t190407766z
categoryeos
json_metadata{"tags":["eos"],"app":"steemit/0.1"}
created2017-07-04 19:04:09
last_update2017-07-04 19:04:09
depth1
children0
last_payout2017-07-11 19:04: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_length18
author_reputation86,861,760,667
root_title"EOS - Developer’s Log Stardate 201707.3"
beneficiaries[]
max_accepted_payout1,000,000.000 HBD
percent_hbd10,000
post_id7,311,617
net_rshares0
@steemisupport ·
Here's a small tip for a great post. I will be following you. 
please visit my blog @steemisupport
properties (22)
authorsteemisupport
permlinkre-dan-eos-developer-s-log-starday-201707-3-20170704t140604225z
categoryeos
json_metadata{"tags":["eos"],"users":["steemisupport"],"app":"steemit/0.1"}
created2017-07-04 14:06:06
last_update2017-07-04 14:06:06
depth1
children0
last_payout2017-07-11 14:06: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_length98
author_reputation95,939,675,825
root_title"EOS - Developer’s Log Stardate 201707.3"
beneficiaries[]
max_accepted_payout1,000,000.000 HBD
percent_hbd10,000
post_id7,280,480
net_rshares0
@steemitboard ·
Congratulations @dan! You have completed some achievement on Steemit and have been rewarded with new badge(s) :

[![](https://steemitimages.com/70x80/http://steemitboard.com/notifications/voted.png)](http://steemitboard.com/@dan) Award for the number of upvotes received

Click on any badge to view your own Board of Honor on SteemitBoard.
For more information about SteemitBoard, click [here](https://steemit.com/@steemitboard)

If you no longer want to receive notifications, reply to this comment with the word `STOP`

> By upvoting this notification, you can help all Steemit users. Learn how [here](https://steemit.com/steemitboard/@steemitboard/http-i-cubeupload-com-7ciqeo-png)!
properties (22)
authorsteemitboard
permlinksteemitboard-notify-dan-20170705t030635000z
categoryeos
json_metadata{"image":["https://steemitboard.com/img/notifications.png"]}
created2017-07-05 03:06:33
last_update2017-07-05 03:06:33
depth1
children0
last_payout2017-07-12 03:06: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_length685
author_reputation38,975,615,169,260
root_title"EOS - Developer’s Log Stardate 201707.3"
beneficiaries[]
max_accepted_payout1,000,000.000 HBD
percent_hbd10,000
post_id7,349,429
net_rshares0
@stefen ·
$1.12
Nice post mate. It's very good to see some techie here.
👍  , ,
properties (23)
authorstefen
permlinkre-dan-eos-developer-s-log-starday-201707-3-20170703t214832745z
categoryeos
json_metadata{"tags":["eos"],"app":"steemit/0.1"}
created2017-07-03 21:48:36
last_update2017-07-03 21:48:36
depth1
children0
last_payout2017-07-10 21:48:36
cashout_time1969-12-31 23:59:59
total_payout_value0.844 HBD
curator_payout_value0.279 HBD
pending_payout_value0.000 HBD
promoted0.000 HBD
body_length55
author_reputation6,803,833,244,756
root_title"EOS - Developer’s Log Stardate 201707.3"
beneficiaries[]
max_accepted_payout1,000,000.000 HBD
percent_hbd10,000
post_id7,197,743
net_rshares168,818,352,754
author_curate_reward""
vote details (3)
@stonecrypto ·
GREAT information! thank you.
properties (22)
authorstonecrypto
permlinkre-dan-eos-developer-s-log-starday-201707-3-20170704t132229100z
categoryeos
json_metadata{"tags":["eos"],"app":"steemit/0.1"}
created2017-07-04 13:22:27
last_update2017-07-04 13:22:27
depth1
children0
last_payout2017-07-11 13:22: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_length29
author_reputation12,550,550,373
root_title"EOS - Developer’s Log Stardate 201707.3"
beneficiaries[]
max_accepted_payout1,000,000.000 HBD
percent_hbd10,000
post_id7,275,325
net_rshares0
@styxer ·
Woah thats some data, gotta check out! Upvoted
properties (22)
authorstyxer
permlinkre-dan-eos-developer-s-log-starday-201707-3-20170706t184440763z
categoryeos
json_metadata{"tags":["eos"],"app":"steemit/0.1"}
created2017-07-06 18:44:39
last_update2017-07-06 18:44:39
depth1
children0
last_payout2017-07-13 18:44: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_length46
author_reputation497,741,871,659
root_title"EOS - Developer’s Log Stardate 201707.3"
beneficiaries[]
max_accepted_payout1,000,000.000 HBD
percent_hbd10,000
post_id7,553,609
net_rshares0
@subcdy ·
I need more information  on this
properties (22)
authorsubcdy
permlinkre-dan-eos-developer-s-log-starday-201707-3-20170704t231934699z
categoryeos
json_metadata{"tags":["eos"],"app":"steemit/0.1"}
created2017-07-04 23:20:03
last_update2017-07-04 23:20:03
depth1
children0
last_payout2017-07-11 23:20: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_length32
author_reputation15,514,900,032
root_title"EOS - Developer’s Log Stardate 201707.3"
beneficiaries[]
max_accepted_payout1,000,000.000 HBD
percent_hbd10,000
post_id7,334,110
net_rshares0
@sukhvir ·
Hello Friend Nice Post by You

Please see my post under the title 
"Please Check the POST"
& Respond...

Thank you very much
properties (22)
authorsukhvir
permlinkre-dan-eos-developer-s-log-starday-201707-3-20170705t101628097z
categoryeos
json_metadata{"tags":["eos"],"app":"steemit/0.1"}
created2017-07-05 10:16:36
last_update2017-07-05 10:16:36
depth1
children0
last_payout2017-07-12 10:16: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_length124
author_reputation19,206,567,288
root_title"EOS - Developer’s Log Stardate 201707.3"
beneficiaries[]
max_accepted_payout1,000,000.000 HBD
percent_hbd10,000
post_id7,380,247
net_rshares0
@syehlah ·
Thanks for sharing @dan, good post, I hope your days are fun
properties (22)
authorsyehlah
permlinkre-dan-eos-developer-s-log-starday-201707-3-20170704t190547240z
categoryeos
json_metadata{"tags":["eos"],"users":["dan"],"app":"steemit/0.1"}
created2017-07-04 19:06:09
last_update2017-07-04 19:06:09
depth1
children0
last_payout2017-07-11 19:06: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_length60
author_reputation14,638,883,409,413
root_title"EOS - Developer’s Log Stardate 201707.3"
beneficiaries[]
max_accepted_payout1,000,000.000 HBD
percent_hbd10,000
post_id7,311,801
net_rshares0
@tarquinmaine · (edited)
$0.57
@dan - You're posting again in person... welcome back! ;)
👍  
properties (23)
authortarquinmaine
permlinkre-dan-eos-developer-s-log-starday-201707-3-20170704t234438048z
categoryeos
json_metadata{"tags":["eos"],"users":["dan"],"app":"steemit/0.1"}
created2017-07-04 23:44:39
last_update2017-07-04 23:45:48
depth1
children0
last_payout2017-07-11 23:44:39
cashout_time1969-12-31 23:59:59
total_payout_value0.574 HBD
curator_payout_value0.000 HBD
pending_payout_value0.000 HBD
promoted0.000 HBD
body_length57
author_reputation2,247,973,866,257
root_title"EOS - Developer’s Log Stardate 201707.3"
beneficiaries[]
max_accepted_payout1,000,000.000 HBD
percent_hbd10,000
post_id7,335,925
net_rshares92,217,792,794
author_curate_reward""
vote details (1)
@teukurobbybinor ·
Good information @dan
Very usefull
properties (22)
authorteukurobbybinor
permlinkre-dan-eos-developer-s-log-starday-201707-3-20170704t120712480z
categoryeos
json_metadata{"tags":["eos"],"users":["dan"],"app":"steemit/0.1"}
created2017-07-04 12:07:18
last_update2017-07-04 12:07:18
depth1
children0
last_payout2017-07-11 12:07: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_length34
author_reputation2,114,612,743,120
root_title"EOS - Developer’s Log Stardate 201707.3"
beneficiaries[]
max_accepted_payout1,000,000.000 HBD
percent_hbd10,000
post_id7,267,814
net_rshares0
@thecryptopaper ·
Dan the man. thanks for the update. i love the same fact as crypt0. i love the technology behind this and the goal. looking forward to the next update

Cheers
properties (22)
authorthecryptopaper
permlinkre-dan-eos-developer-s-log-starday-201707-3-20170704t022435885z
categoryeos
json_metadata{"tags":["eos"],"app":"steemit/0.1"}
created2017-07-04 02:24:33
last_update2017-07-04 02:24:33
depth1
children0
last_payout2017-07-11 02:24: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_length158
author_reputation127,274,222,468
root_title"EOS - Developer’s Log Stardate 201707.3"
beneficiaries[]
max_accepted_payout1,000,000.000 HBD
percent_hbd10,000
post_id7,220,218
net_rshares0
@thehutchreport ·
Nice post and great to get a deeper understanding of what developers and coders are looking at in building out the platform to support smart contracts. According to out investigation on smart contracts there is also still a fair amount of legal work required as the platform will provide the logs and statuses, however, there will still be legal aspects to the interpretations.
properties (22)
authorthehutchreport
permlinkre-dan-eos-developer-s-log-starday-201707-3-20170706t103134865z
categoryeos
json_metadata{"tags":["eos"],"app":"steemit/0.1"}
created2017-07-06 10:31:36
last_update2017-07-06 10:31:36
depth1
children0
last_payout2017-07-13 10:31: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_length377
author_reputation1,348,400,951,691
root_title"EOS - Developer’s Log Stardate 201707.3"
beneficiaries[]
max_accepted_payout1,000,000.000 HBD
percent_hbd10,000
post_id7,503,925
net_rshares0
@theking ·
$0.24
very helpful , eos is very good
👍  , , ,
properties (23)
authortheking
permlinkre-dan-eos-developer-s-log-starday-201707-3-201774t194358467z
categoryeos
json_metadata{"app":"chainbb/0.3","format":"markdown+html","tags":[]}
created2017-07-04 11:44:09
last_update2017-07-04 11:44:09
depth1
children0
last_payout2017-07-11 11:44:09
cashout_time1969-12-31 23:59:59
total_payout_value0.238 HBD
curator_payout_value0.001 HBD
pending_payout_value0.000 HBD
promoted0.000 HBD
body_length31
author_reputation16,809,049,928,438
root_title"EOS - Developer’s Log Stardate 201707.3"
beneficiaries
0.
accountchainbb
weight1,500
max_accepted_payout1,000,000.000 HBD
percent_hbd10,000
post_id7,265,451
net_rshares43,538,650,095
author_curate_reward""
vote details (4)
@tommyquest ·
although i could barely follow the technical aspects of much of this, i 'm pleased that you took the time and effort to put it together.  i can though see the difficulties in keeping everything 'synchronized' in real-time so everything comes out as intended.  blockchain and smart contracts are real game changers that few people realize will give them greater autonomy.  resteemed! may the steem ever be in your favor!
👍  
properties (23)
authortommyquest
permlinkre-dan-eos-developer-s-log-starday-201707-3-20170707t063847907z
categoryeos
json_metadata{"tags":["eos"],"app":"steemit/0.1"}
created2017-07-07 06:38:48
last_update2017-07-07 06:38:48
depth1
children0
last_payout2017-07-14 06:38: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_length419
author_reputation336,506,422,737
root_title"EOS - Developer’s Log Stardate 201707.3"
beneficiaries[]
max_accepted_payout1,000,000.000 HBD
percent_hbd10,000
post_id7,610,993
net_rshares0
author_curate_reward""
vote details (1)
@tsinrong ·
@dan Do you mind I translate into Chinese and share it?
properties (22)
authortsinrong
permlinkre-dan-eos-developer-s-log-starday-201707-3-20170709t082556984z
categoryeos
json_metadata{"tags":["eos"],"users":["dan"],"app":"steemit/0.1"}
created2017-07-09 08:25:57
last_update2017-07-09 08:25:57
depth1
children0
last_payout2017-07-16 08:25: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_length55
author_reputation92,231,012,305
root_title"EOS - Developer’s Log Stardate 201707.3"
beneficiaries[]
max_accepted_payout1,000,000.000 HBD
percent_hbd10,000
post_id7,842,105
net_rshares0
@turpsy ·
I got to know about this on twitter today. I am following right away.
properties (22)
authorturpsy
permlinkre-dan-eos-developer-s-log-starday-201707-3-20170703t221917245z
categoryeos
json_metadata{"tags":["eos"],"app":"steemit/0.1"}
created2017-07-03 22:19:21
last_update2017-07-03 22:19:21
depth1
children0
last_payout2017-07-10 22:19: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_length69
author_reputation22,352,016,062,417
root_title"EOS - Developer’s Log Stardate 201707.3"
beneficiaries[]
max_accepted_payout1,000,000.000 HBD
percent_hbd10,000
post_id7,200,690
net_rshares0
@usefree ·
$0.02
So, GPU manufacturing is far from uselessness for crypto.
👍  
properties (23)
authorusefree
permlinkre-dan-eos-developer-s-log-starday-201707-3-20170704t115228394z
categoryeos
json_metadata{"tags":["eos"],"app":"steemit/0.1"}
created2017-07-04 11:49:15
last_update2017-07-04 11:49:15
depth1
children0
last_payout2017-07-11 11:49:15
cashout_time1969-12-31 23:59:59
total_payout_value0.022 HBD
curator_payout_value0.000 HBD
pending_payout_value0.000 HBD
promoted0.000 HBD
body_length57
author_reputation3,199,795,184,038
root_title"EOS - Developer’s Log Stardate 201707.3"
beneficiaries[]
max_accepted_payout1,000,000.000 HBD
percent_hbd10,000
post_id7,265,976
net_rshares3,761,127,297
author_curate_reward""
vote details (1)
@vahidrazavi ·
hi my friend its great post may i follow me and up vote me thanks alot
properties (22)
authorvahidrazavi
permlinkre-dan-eos-developer-s-log-starday-201707-3-20170727t071613830z
categoryeos
json_metadata{"tags":["eos"],"app":"steemit/0.1"}
created2017-07-28 07:15:27
last_update2017-07-28 07:15:27
depth1
children0
last_payout2017-08-04 07:15: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_length70
author_reputation12,096,741,882,065
root_title"EOS - Developer’s Log Stardate 201707.3"
beneficiaries[]
max_accepted_payout1,000,000.000 HBD
percent_hbd10,000
post_id9,992,813
net_rshares0
@varys · (edited)
Someone knows what language will be used to develop applications on EOS? Since they're developing in C++ I'm hoping  that they'll stick with a well known static language and not a new crap hipster language. I'd be flabbergasted to see c# or java :-)
properties (22)
authorvarys
permlinkre-dan-eos-developer-s-log-starday-201707-3-20170704t221154490z
categoryeos
json_metadata{"tags":["eos"],"app":"steemit/0.1"}
created2017-07-04 22:11:54
last_update2017-07-04 22:16:42
depth1
children0
last_payout2017-07-11 22:11:54
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_length249
author_reputation187,900,233
root_title"EOS - Developer’s Log Stardate 201707.3"
beneficiaries[]
max_accepted_payout1,000,000.000 HBD
percent_hbd10,000
post_id7,328,790
net_rshares0
@vellaattaqy ·
A good planing master 👍👍👍👍👍
properties (22)
authorvellaattaqy
permlinkre-dan-201774t17178960z
categoryeos
json_metadata{"tags":"eos","app":"esteem/1.4.6","format":"markdown+html","community":"esteem"}
created2017-07-04 10:17:12
last_update2017-07-04 10:17:12
depth1
children0
last_payout2017-07-11 10:17: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_length27
author_reputation-465,224,412,810
root_title"EOS - Developer’s Log Stardate 201707.3"
beneficiaries
0.
accountesteemapp
weight500
max_accepted_payout1,000,000.000 HBD
percent_hbd10,000
post_id7,257,448
net_rshares0
@vikbuddy ·
Another Awesome Post , Keep Going @dan. You Rock Bro. Upvoted. Good Luck. Nice Share. :)
👍  
properties (23)
authorvikbuddy
permlinkre-dan-eos-developer-s-log-starday-201707-3-20170704t040258133z
categoryeos
json_metadata{"tags":["eos"],"users":["dan"],"app":"steemit/0.1"}
created2017-07-04 04:03:33
last_update2017-07-04 04:03:33
depth1
children0
last_payout2017-07-11 04:03: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_length88
author_reputation116,485,656,320,953
root_title"EOS - Developer’s Log Stardate 201707.3"
beneficiaries[]
max_accepted_payout1,000,000.000 HBD
percent_hbd10,000
post_id7,227,763
net_rshares499,174,508
author_curate_reward""
vote details (1)
@vinyprop ·
This is my very first activity on this amazing platform. And nothing is better than knowing a little more about the next big thing i.e EOS. I am a big supporter of it and I really believe that it will give ethereum a run for its money very soon. 🤘✌️
👍  
properties (23)
authorvinyprop
permlinkre-dan-201774t72317144z
categoryeos
json_metadata{"tags":"eos","app":"esteem/1.4.6","format":"markdown+html","community":"esteem"}
created2017-07-04 01:53:21
last_update2017-07-04 01:53:21
depth1
children0
last_payout2017-07-11 01:53: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_length249
author_reputation3,650,202,029,790
root_title"EOS - Developer’s Log Stardate 201707.3"
beneficiaries
0.
accountesteemapp
weight500
max_accepted_payout1,000,000.000 HBD
percent_hbd10,000
post_id7,217,770
net_rshares945,958,307
author_curate_reward""
vote details (1)
@vinyprop ·
$0.74
EOS for Dummies

Since you are in this post then I would imagine that you already have some idea about EOS.IO, but if you are a complete new on the topic then also you are at the right place. So let me start by giving a brief overview of EOS.IO, before we get into the details of it.

What is EOS.IO Platform:

EOS.IO platform is the newest entrant on the market which is based on the blockchain technology. Its architecture has been designed to keep the philosophy of horizontal & vertical scalability of any DAPP (Decentralized Application) at the epicenter.
In order to achieve such a feat the developers have created a operating system like construct, upon which all these DAPPs can be deployed.

Salient Features of EOS.IO Platform:

The platform provides Accounts to the DAPPs developers.
Authentication is also taken care by the EOS.IO system itself.
The database is an integral part of any application and it is provided by the platform.
Parallel processing etc.
Scalability

What Makes it an Ethereum Killer:

EOS.IO can cater too millions of transactions every second, which is totally unprecedented in the blockchain ecosystem.
It is the only blockchain platform that is free to use for the users. This empowers the developer & the business community to formulate and implement their own monetization strategies.
The EOS.IO platform is robust enough to provide flexibility, to the developer, to fix any bugs in the code, should the need arises.
Blockchain technology still lags behind on the front of latency. The EOS.IO tries to correct that by ensuring lowest of latency possible.
Any application that can not be implemented on a parallel algorithm, due to the very nature of the business, EOS.IO provides a robust and fast sequential performance platform.

To be continued…

References-EOS.IO Technical White Paper
👍  , , , , , , , ,
properties (23)
authorvinyprop
permlinkre-dan-201775t0846618z
categoryeos
json_metadata{"tags":"eos","app":"esteem/1.4.6","format":"markdown+html","community":"esteem"}
created2017-07-04 18:38:51
last_update2017-07-04 18:38:51
depth1
children0
last_payout2017-07-11 18:38:51
cashout_time1969-12-31 23:59:59
total_payout_value0.580 HBD
curator_payout_value0.160 HBD
pending_payout_value0.000 HBD
promoted0.000 HBD
body_length1,828
author_reputation3,650,202,029,790
root_title"EOS - Developer’s Log Stardate 201707.3"
beneficiaries
0.
accountesteemapp
weight500
max_accepted_payout1,000,000.000 HBD
percent_hbd10,000
post_id7,309,302
net_rshares122,816,450,576
author_curate_reward""
vote details (9)
@vmsolutionsltd ·
$0.08
@dan Does it make me sound like too big of a newb to say that reading this post you have written makes me feel cool, like I have access to some advanced technical lecture or briefing only available to those activiely taking part in changing the wotld. It's dope as fuck how detailed you get into the complexity of not just a durable agreement but the true challenge of how the agreement is automatically executed and tracked on the blockchain? Can I ask you honestly, where do you think EOS will ultimately fall within the smart contract ecosystem? Will there still be a smart contract ecosystem with plenty of room for all the current players (stratis, ETH, ETC, etc...no pun intended)? Or do you see it as winner take all with EOS succeeding where ETH failed?
👍  
properties (23)
authorvmsolutionsltd
permlinkre-dan-201776t14937142z
categoryeos
json_metadata{"tags":"eos","app":"esteem/1.4.6","format":"markdown+html","community":"esteem"}
created2017-07-05 23:49:39
last_update2017-07-05 23:49:39
depth1
children0
last_payout2017-07-12 23:49:39
cashout_time1969-12-31 23:59:59
total_payout_value0.058 HBD
curator_payout_value0.019 HBD
pending_payout_value0.000 HBD
promoted0.000 HBD
body_length761
author_reputation309,421,562,457
root_title"EOS - Developer’s Log Stardate 201707.3"
beneficiaries
0.
accountesteemapp
weight500
max_accepted_payout1,000,000.000 HBD
percent_hbd10,000
post_id7,455,371
net_rshares16,663,108,986
author_curate_reward""
vote details (1)
@wvm ·
Ethereum on Steroids? But a lot better, EOS could stand for anything much like my name WVM. Gonna buy some more!
properties (22)
authorwvm
permlinkre-dan-eos-developer-s-log-starday-201707-3-20170704t065154387z
categoryeos
json_metadata{"tags":["eos"],"app":"steemit/0.1"}
created2017-07-04 06:51:54
last_update2017-07-04 06:51:54
depth1
children0
last_payout2017-07-11 06:51:54
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_length112
author_reputation1,755,829,867,297
root_title"EOS - Developer’s Log Stardate 201707.3"
beneficiaries[]
max_accepted_payout1,000,000.000 HBD
percent_hbd10,000
post_id7,240,092
net_rshares0
@xdark21 ·
SteemIt is the best community around the globe so far. As of now the youth of today has been too busy wasting their time onto social networks that add to nothing except wasting precious hours of the day.

Whereas SteemIt is a total different story. You do what you like best BLOGGING and still get paid sitting at your homes.
properties (22)
authorxdark21
permlinkre-dan-201776t15244689z
categoryeos
json_metadata{"tags":"eos","app":"esteem/1.4.6","format":"markdown+html","community":"esteem"}
created2017-07-05 23:52:48
last_update2017-07-05 23:52:48
depth1
children0
last_payout2017-07-12 23:52: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_length325
author_reputation-11,506,922,188
root_title"EOS - Developer’s Log Stardate 201707.3"
beneficiaries
0.
accountesteemapp
weight500
max_accepted_payout1,000,000.000 HBD
percent_hbd10,000
post_id7,455,651
net_rshares0
@yakuhi ·
Reminds me of exactly why i couldn't progress further than Q-Basic in programming. Still fun to read and think about logic processes though :) Before i knew it i read the whole thing. xD
properties (22)
authoryakuhi
permlinkre-dan-eos-developer-s-log-starday-201707-3-20170704t170652896z
categoryeos
json_metadata{"tags":["eos"],"app":"steemit/0.1"}
created2017-07-04 17:06:51
last_update2017-07-04 17:06:51
depth1
children0
last_payout2017-07-11 17:06: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_length186
author_reputation3,459,100,868,106
root_title"EOS - Developer’s Log Stardate 201707.3"
beneficiaries[]
max_accepted_payout1,000,000.000 HBD
percent_hbd10,000
post_id7,300,064
net_rshares0
@ycyr ·
I love your posts! Keep em coming!!!
👍  ,
properties (23)
authorycyr
permlinkre-dan-eos-developer-s-log-starday-201707-3-20170704t130134800z
categoryeos
json_metadata{"tags":["eos"],"app":"steemit/0.1"}
created2017-07-04 13:01:33
last_update2017-07-04 13:01:33
depth1
children0
last_payout2017-07-11 13:01: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_length36
author_reputation17,287,946,451
root_title"EOS - Developer’s Log Stardate 201707.3"
beneficiaries[]
max_accepted_payout1,000,000.000 HBD
percent_hbd10,000
post_id7,273,143
net_rshares1,644,628,100
author_curate_reward""
vote details (2)
@yerdna87 ·
You are a very good user. I will read all your articles because I noticed that they just write interesting articles. Because I have a lot to learn from you .. Mersi frumos
properties (22)
authoryerdna87
permlinkre-dan-eos-developer-s-log-starday-201707-3-20170704t002726912z
categoryeos
json_metadata{"tags":["eos"],"app":"steemit/0.1"}
created2017-07-04 00:26:15
last_update2017-07-04 00:26:15
depth1
children1
last_payout2017-07-11 00:26: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_length171
author_reputation518,679,575,212
root_title"EOS - Developer’s Log Stardate 201707.3"
beneficiaries[]
max_accepted_payout1,000,000.000 HBD
percent_hbd10,000
post_id7,211,100
net_rshares0
@j3dy ·
how much have you read in 10 days?
properties (22)
authorj3dy
permlinkre-yerdna87-re-dan-eos-developer-s-log-starday-201707-3-20170714t061204679z
categoryeos
json_metadata{"tags":["eos"],"app":"steemit/0.1"}
created2017-07-14 06:12:12
last_update2017-07-14 06:12:12
depth2
children0
last_payout2017-07-21 06:12: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_length34
author_reputation9,439,758,416,991
root_title"EOS - Developer’s Log Stardate 201707.3"
beneficiaries[]
max_accepted_payout1,000,000.000 HBD
percent_hbd10,000
post_id8,422,086
net_rshares0
@yuvi ·
$0.04
Very helpful post 👍 
👍  ,
properties (23)
authoryuvi
permlinkre-dan-eos-developer-s-log-starday-201707-3-201774t19053228z
categoryeos
json_metadata{"app":"chainbb/0.3","format":"markdown+html","tags":[]}
created2017-07-04 13:30:57
last_update2017-07-04 13:30:57
depth1
children0
last_payout2017-07-11 13:30:57
cashout_time1969-12-31 23:59:59
total_payout_value0.044 HBD
curator_payout_value0.000 HBD
pending_payout_value0.000 HBD
promoted0.000 HBD
body_length20
author_reputation384,624,060,388
root_title"EOS - Developer’s Log Stardate 201707.3"
beneficiaries
0.
accountchainbb
weight1,500
max_accepted_payout1,000,000.000 HBD
percent_hbd10,000
post_id7,276,242
net_rshares8,410,274,502
author_curate_reward""
vote details (2)
@zert ·
Informative and metadowned Roger that :)
👍  
properties (23)
authorzert
permlinkre-dan-eos-developer-s-log-starday-201707-3-20170704t134956866z
categoryeos
json_metadata{"tags":["eos"],"app":"steemit/0.1"}
created2017-07-04 13:50:00
last_update2017-07-04 13:50:00
depth1
children0
last_payout2017-07-11 13:50: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_length40
author_reputation-90,455,819,221
root_title"EOS - Developer’s Log Stardate 201707.3"
beneficiaries[]
max_accepted_payout1,000,000.000 HBD
percent_hbd10,000
post_id7,278,554
net_rshares632,573,041
author_curate_reward""
vote details (1)