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.
author | dan |
---|---|
permlink | eos-developer-s-log-starday-201707-3 |
category | eos |
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"} |
created | 2017-07-03 21:47:09 |
last_update | 2017-07-03 22:40:54 |
depth | 0 |
children | 262 |
last_payout | 2017-07-10 21:47:09 |
cashout_time | 1969-12-31 23:59:59 |
total_payout_value | 1,265.642 HBD |
curator_payout_value | 92.118 HBD |
pending_payout_value | 0.000 HBD |
promoted | 0.003 HBD |
body_length | 8,204 |
author_reputation | 155,470,101,136,708 |
root_title | "EOS - Developer’s Log Stardate 201707.3" |
beneficiaries | [] |
max_accepted_payout | 1,000,000.000 HBD |
percent_hbd | 10,000 |
post_id | 7,197,597 |
net_rshares | 203,604,828,960,064 |
author_curate_reward | "" |
voter | weight | wgt% | rshares | pct | time |
---|---|---|---|---|---|
berkah | 0 | 376,612,433,101 | 100% | ||
dan | 0 | 0 | 0% | ||
xeldal | 0 | 62,739,951,669 | 0.4% | ||
samupaha | 0 | 810,483,015,895 | 100% | ||
sandra | 0 | 13,901,011,729 | 6% | ||
ihashfury | 0 | 2,252,279,557 | 1.56% | ||
boy | 0 | 645,450,697 | 100% | ||
steem-id | 0 | 451,692,097,334 | 100% | ||
bue-witness | 0 | 787,018,124 | 100% | ||
bunny | 0 | 105,929,396 | 100% | ||
ajvest | 0 | 295,029,526,476 | 100% | ||
bue | 0 | 13,352,812,729 | 100% | ||
mini | 0 | 344,982,684 | 100% | ||
moon | 0 | 87,724,426 | 100% | ||
jason | 0 | 7,740,331,953 | 2.16% | ||
boombastic | 0 | 656,949,696,802 | 19% | ||
benjojo | 0 | 91,858,090,945 | 100% | ||
healthcare | 0 | 128,564,546 | 100% | ||
tuck-fheman | 0 | 337,392,220,643 | 100% | ||
daniel.pan | 0 | 203,392,126 | 100% | ||
fractalnode | 0 | 494,974,127,292 | 100% | ||
fusan | 0 | 3,737,857,085 | 6% | ||
coindup | 0 | 375,366,914,676 | 100% | ||
jabberw0cky | 0 | 26,306,330,425 | 100% | ||
pnc | 0 | 302,159,970,875 | 100% | ||
helen.tan | 0 | 90,604,983 | 100% | ||
nikolai | 0 | 644,961,737,903 | 100% | ||
gregory-f | 0 | 6,822,972,119 | 4% | ||
cheolwoo-kim | 0 | 6,530,968,699 | 100% | ||
chryspano | 0 | 767,022,093,978 | 100% | ||
sandwich | 0 | 33,451,980,577 | 100% | ||
adsactly | 0 | 181,847,353,310 | 7% | ||
ppitonak | 0 | 9,676,410,492 | 100% | ||
max-infeld | 0 | 8,830,085,477 | 100% | ||
ninzacode | 0 | 391,442,640,329 | 100% | ||
full-measure | 0 | 201,243,968,296 | 47% | ||
bleepcoin | 0 | 757,529,473,791 | 100% | ||
spaninv | 0 | 684,651,008 | 100% | ||
teamsteem | 0 | 18,840,095,028,772 | 100% | ||
avarice | 0 | 269,319,343,540 | 100% | ||
amartinezque | 0 | 276,367,159,956 | 100% | ||
tosch | 0 | 442,485,110,932 | 100% | ||
kevinwong | 0 | 868,734,331,370 | 30% | ||
stino-san | 0 | 166,785,852,458 | 100% | ||
lang-feng | 0 | 628,187,157 | 100% | ||
marc-fa-schiwo | 0 | 5,045,057,112 | 100% | ||
billbutler | 0 | 1,047,356,166,737 | 100% | ||
cm-steem | 0 | 210,979,610,968 | 100% | ||
stellabelle | 0 | 22,919,937,271 | 1% | ||
digitalplayer | 0 | 206,093,407 | 100% | ||
hedge-x | 0 | 275,007,749,303 | 100% | ||
will-zewe | 0 | 12,649,797,264 | 100% | ||
william-ekeson | 0 | 1,287,743,979 | 100% | ||
facer | 0 | 170,311,889,321 | 100% | ||
omarb | 0 | 398,683,373,202 | 100% | ||
g-dubs | 0 | 74,509,078,561 | 100% | ||
grandpere | 0 | 120,712,112,698 | 25% | ||
sean-king | 0 | 6,557,626,365,790 | 100% | ||
geoffrey | 0 | 1,520,611,403,120 | 100% | ||
mauricemikkers | 0 | 43,720,576,779 | 100% | ||
tyler-fletcher | 0 | 48,017,389,035 | 100% | ||
living-freedom | 0 | 28,171,878,212 | 100% | ||
freedomengineer | 0 | 204,260,387,560 | 100% | ||
superfreek | 0 | 3,077,717,190 | 100% | ||
fyrstikken | 0 | 941,152,370,824 | 100% | ||
pmartynov | 0 | 452,283,628,018 | 100% | ||
catchfire | 0 | 19,814,955,978 | 11% | ||
nadejde | 0 | 8,284,614,247 | 100% | ||
skapaneas | 0 | 126,563,394,272 | 100% | ||
grey580 | 0 | 44,391,756,541 | 100% | ||
digi3d | 0 | 0 | 100% | ||
lauralemons | 0 | 19,698,680,555 | 50% | ||
roelandp | 0 | 224,550,087,127 | 5% | ||
kakradetome | 0 | 393,421,962 | 25% | ||
hitmeasap | 0 | 26,962,042,605 | 100% | ||
matt-a | 0 | 4,109,149,112,724 | 100% | ||
chekimon | 0 | 117,461,273 | 100% | ||
rnevet | 0 | 34,010,326,660 | 100% | ||
strawhat | 0 | 178,647,178,255 | 100% | ||
chamviet | 0 | 1,681,525,798 | 100% | ||
r4fken | 0 | 695,775,312 | 100% | ||
slowwalker | 0 | 2,980,222,685,120 | 39% | ||
bitshares101 | 0 | 25,828,490,829 | 25% | ||
crypt0 | 0 | 269,198,547,782 | 100% | ||
ausbitbank | 0 | 4,571,796,019,616 | 42% | ||
joseph.kalu | 0 | 611,005,464 | 100% | ||
gikitiki | 0 | 5,295,386,612 | 25% | ||
flyingmind | 0 | 2,804,129,142,392 | 100% | ||
sitaru | 0 | 145,282,263 | 100% | ||
revulv | 0 | 39,407,410,510 | 100% | ||
incomemonthly | 0 | 14,922,346,413 | 100% | ||
ralidiak | 0 | 1,564,154,913 | 100% | ||
deviedev | 0 | 9,984,414,690 | 100% | ||
sephiroth | 0 | 342,491,382,368 | 100% | ||
blinova | 0 | 33,935,228,025 | 100% | ||
shla-rafia | 0 | 242,158,636 | 1% | ||
stomatolog2 | 0 | 110,663,238 | 100% | ||
sudnokpok | 0 | 779,111,779 | 100% | ||
kendewitt | 0 | 12,130,520,928 | 10% | ||
hichman | 0 | 451,455,521 | 100% | ||
manthostsakirid | 0 | 66,331,928,090 | 100% | ||
fiveboringgames | 0 | 151,297,829,028 | 100% | ||
deanoza | 0 | 5,053,945,742 | 100% | ||
coininstant | 0 | 256,685,484,202 | 60% | ||
ubg | 0 | 1,477,800,032 | 100% | ||
azurejasper | 0 | 85,191,372,870 | 100% | ||
atsobanakis | 0 | 219,342,092 | 100% | ||
arconite | 0 | 19,590,781,514 | 80% | ||
johnsmith | 0 | 822,710,509,417 | 100% | ||
tobythecat | 0 | 2,745,773,085 | 100% | ||
sompitonov | 0 | 6,522,325,371 | 100% | ||
bbrewer | 0 | 12,196,300,596 | 25% | ||
clonewarz | 0 | 27,261,762,574 | 100% | ||
flexifriday | 0 | 664,412,682 | 100% | ||
fatboy | 0 | 422,474,298,652 | 72% | ||
claudiop63 | 0 | 39,654,051,167 | 100% | ||
ace108 | 0 | 24,098,523,480 | 1% | ||
cronk | 0 | 1,920,193,185 | 100% | ||
remlaps | 0 | 8,908,025,812 | 25% | ||
alexpmorris | 0 | 15,195,825,202 | 18% | ||
sterlinluxan | 0 | 422,794,638,405 | 100% | ||
lsc9999 | 0 | 133,001,461,510 | 100% | ||
spookypooky | 0 | 8,633,862,788 | 100% | ||
gaitan | 0 | 4,632,489,777 | 100% | ||
craigslist | 0 | 86,992,889 | 100% | ||
planet.earth | 0 | 5,253,739,685 | 100% | ||
warofcraft | 0 | 120,649,966,579 | 50% | ||
painterjuwon | 0 | 526,706,039,628 | 100% | ||
kalimor | 0 | 4,531,423,532 | 100% | ||
veerprit | 0 | 15,251,941,633 | 100% | ||
hyndai | 0 | 786,930,992,937 | 100% | ||
mhui | 0 | 245,787,565 | 100% | ||
jrcornel | 0 | 319,557,920,977 | 10% | ||
hanshotfirst | 0 | 166,172,399,224 | 5% | ||
madscientistx13 | 0 | 4,578,742,238 | 100% | ||
dowha | 0 | 101,765,208,929 | 100% | ||
bhavnapatel68 | 0 | 44,975,585,733 | 50% | ||
bledarus | 0 | 1,348,753,067 | 100% | ||
sparrow | 0 | 233,304,408 | 100% | ||
bitminter | 0 | 11,832,588,471 | 100% | ||
razberrijam | 0 | 629,760,585 | 25% | ||
rubenalexander | 0 | 69,222,854,652 | 38% | ||
kyriacos | 0 | 95,136,590,564 | 20% | ||
michelnilles | 0 | 1,243,402,384 | 25% | ||
instahater | 0 | 657,471,337 | 100% | ||
chanbam | 0 | 10,527,053,841 | 100% | ||
lamech-m | 0 | 19,956,236,637 | 100% | ||
husamia | 0 | 202,162,549 | 100% | ||
lemmon714 | 0 | 244,296,070 | 100% | ||
anarchyhasnogods | 0 | 402,906,186,258 | 100% | ||
mada | 0 | 61,907,260,832 | 100% | ||
stillsafe | 0 | 9,596,975,056 | 100% | ||
gaio | 0 | 0 | 100% | ||
chrisaiks | 0 | 230,637,771 | 100% | ||
pataxis | 0 | 1,096,485,701 | 50% | ||
davidmwy | 0 | 342,439,351 | 100% | ||
leesmoketree | 0 | 140,348,990,808 | 100% | ||
themonetaryfew | 0 | 34,901,574,863 | 10% | ||
sumiiit | 0 | 2,448,067,135 | 100% | ||
runridefly | 0 | 8,148,420,707 | 2% | ||
krnel | 0 | 90,738,359,167 | 25% | ||
uwelang | 0 | 10,410,146,560 | 1.65% | ||
funkywanderer | 0 | 3,289,387,407 | 100% | ||
richardcrill | 0 | 81,023,058,083 | 25% | ||
holoz0r | 0 | 629,240,650 | 3% | ||
krazyninja | 0 | 194,963,726 | 100% | ||
getonthebus | 0 | 3,771,140,609 | 100% | ||
matthewtiii | 0 | 11,966,400,638 | 100% | ||
saphira | 0 | 1,588,598,555 | 100% | ||
sixteen4narchist | 0 | 1,276,084,518 | 100% | ||
kyusho | 0 | 10,423,449,331 | 5% | ||
bady | 0 | 160,773,321 | 100% | ||
crazy | 0 | 137,737,624 | 100% | ||
renijra | 0 | 3,907,778,209 | 100% | ||
daxxog | 0 | 215,802,897 | 100% | ||
allyouneedtoknow | 0 | 706,193,214 | 0.6% | ||
bitcoinparadise | 0 | 22,460,852,505 | 100% | ||
positivesteem | 0 | 19,842,858,180 | 100% | ||
thefernandaman | 0 | 134,819,381 | 100% | ||
bontonstory | 0 | 149,483,686,361 | 30% | ||
noborders | 0 | 111,646,213 | 100% | ||
i-repost | 0 | 274,394,195 | 100% | ||
freebornangel | 0 | 2,689,827,621 | 4% | ||
tarekadam | 0 | 150,527,573,469 | 15% | ||
honna | 0 | 10,328,806,707 | 1% | ||
bestofreddit | 0 | 30,145,412,337 | 90% | ||
hql2016 | 0 | 17,973,744,809 | 100% | ||
technium | 0 | 6,411,311,247 | 100% | ||
robotics | 0 | 200,849,384 | 100% | ||
ancapwarren | 0 | 1,221,847,990 | 25% | ||
timbot606 | 0 | 3,712,489,543 | 25% | ||
luzcypher | 0 | 51,065,856,856 | 100% | ||
peaceloveliberty | 0 | 8,036,079,571 | 100% | ||
rymlen | 0 | 23,959,565,690 | 100% | ||
gennadij | 0 | 642,609,839 | 100% | ||
swtcamito | 0 | 676,559,404 | 100% | ||
zet | 0 | 152,216,286,908 | 100% | ||
tata.lucette | 0 | 6,312,114,279 | 100% | ||
goldmatters | 0 | 170,854,002,952 | 100% | ||
bleujay | 0 | 1,702,313,949,264 | 100% | ||
dougkarr | 0 | 19,753,108,169 | 100% | ||
steemtruth | 0 | 21,139,306,132 | 10% | ||
hendrikdegrote | 0 | 52,648,418,778,715 | 100% | ||
yowskie | 0 | 608,087,743 | 100% | ||
iyuta | 0 | 40,718,823,494 | 100% | ||
groundbreaker | 0 | 1,577,684,225 | 95% | ||
tomino | 0 | 1,182,351,442 | 1% | ||
br-real | 0 | 74,028,844,158 | 100% | ||
forestwest | 0 | 6,532,994,753 | 100% | ||
hilongs | 0 | 728,086,457 | 100% | ||
graviton | 0 | 18,115,196,247 | 100% | ||
sanghkaang | 0 | 449,922,118,043 | 10% | ||
ianstrat | 0 | 26,008,731,413 | 100% | ||
gdouramanis | 0 | 3,816,434,142 | 100% | ||
thejohalfiles | 0 | 48,757,280,948,074 | 100% | ||
themeanbean | 0 | 36,787,279,000 | 100% | ||
lafilip | 0 | 528,680,136 | 100% | ||
sircarlo | 0 | 2,788,149,708 | 100% | ||
judasp | 0 | 28,218,885,208 | 100% | ||
joshuaatiemo | 0 | 286,069,359 | 100% | ||
jmehta | 0 | 1,681,462,646 | 100% | ||
willybobob | 0 | 276,533,989 | 100% | ||
voronoi | 0 | 184,474,292,639 | 30% | ||
al-basir | 0 | 164,812,199 | 100% | ||
sabsel | 0 | 1,049,519,899 | 100% | ||
j3dy | 0 | 21,665,955,543 | 100% | ||
nigelmarkdias | 0 | 817,015,316 | 1% | ||
breezin | 0 | 3,130,828,640 | 10% | ||
gacherih | 0 | 3,766,363,951 | 100% | ||
systema | 0 | 12,569,090,721,603 | 100% | ||
apsu | 0 | 3,835,010,838 | 100% | ||
druegun | 0 | 2,345,087,330 | 100% | ||
belidged | 0 | 3,456,566,066 | 100% | ||
anel13 | 0 | 1,861,650,682 | 100% | ||
rinatot | 0 | 2,203,961,420 | 100% | ||
intelligentvan | 0 | 0 | 100% | ||
hexdek16 | 0 | 2,175,396,083 | 100% | ||
fricibacsi | 0 | 100,137,701,301 | 100% | ||
soushi888 | 0 | 5,294,813,660 | 12% | ||
rebatesteem | 0 | 1,044,514,814 | 100% | ||
volcom2558 | 0 | 1,283,308,684 | 100% | ||
petermonien | 0 | 2,136,883,882 | 100% | ||
dddcoinz | 0 | 10,524,352,516 | 100% | ||
dimidrolshina | 0 | 164,786,158 | 100% | ||
mathworksheets | 0 | 4,167,021,908 | 35% | ||
dragon40 | 0 | 1,782,139,037 | 10% | ||
bambam808 | 0 | 5,890,097,800 | 100% | ||
covey | 0 | 0 | 100% | ||
watchout2017 | 0 | 5,735,358,667 | 13% | ||
opanyin | 0 | 1,425,661,030 | 100% | ||
birrulibmc | 0 | 375,216,813 | 44.47% | ||
fajarsdq | 0 | 763,886,447 | 100% | ||
marieta88 | 0 | 21,293,277,222 | 100% | ||
kasperfred | 0 | 30,701,296,982 | 100% | ||
luxman | 0 | 379,657,110 | 100% | ||
riskdebonair | 0 | 176,230,886,722 | 100% | ||
lifelovelifting | 0 | 1,313,079,403 | 30% | ||
davidcurwain | 0 | 279,454,684 | 100% | ||
pavelkanks | 0 | 774,874,051 | 100% | ||
akiyoshi | 0 | 9,343,845,314 | 100% | ||
ryanthegecko | 0 | 3,952,386,081 | 30% | ||
eazyh | 0 | 1,123,218,824 | 100% | ||
ejemai | 0 | 1,332,124,173 | 100% | ||
mage00000 | 0 | 2,896,695,552 | 10% | ||
kwallace | 0 | 1,620,253,973 | 100% | ||
moneymustacheman | 0 | 1,282,336,596 | 100% | ||
riskimauliza | 0 | 473,876,664 | 100% | ||
paolobeneforti | 0 | 4,980,928,624 | 5% | ||
cljg918 | 0 | 412,005,872,133 | 13% | ||
esterinapeka | 0 | 8,302,651,091 | 100% | ||
wattacut | 0 | 2,126,640,853 | 100% | ||
cassidyandfranks | 0 | 4,915,227,637 | 100% | ||
walil | 0 | 1,229,526,417 | 100% | ||
maximdraws | 0 | 3,356,335,610 | 5% | ||
pomperipossa | 0 | 54,310,939,679 | 100% | ||
morinjesus | 0 | 1,994,469,243 | 100% | ||
ihsan19 | 0 | 580,992,135 | 100% | ||
todaysrant2017 | 0 | 4,330,284,462 | 100% | ||
syibran | 0 | 2,583,556,262 | 100% | ||
hightouch | 0 | 1,313,079,748 | 100% | ||
sudutpandang | 0 | 1,141,421,272 | 50% | ||
rebelskum | 0 | 71,634,804,819 | 100% | ||
gavvett | 0 | 1,667,934,671 | 100% | ||
samuelpaddy | 0 | 364,405,447 | 100% | ||
peuhaba2020 | 0 | 2,017,478,522 | 100% | ||
mostshirleyalysa | 0 | 1,303,283,420 | 100% | ||
normanvortex | 0 | 0 | 100% | ||
mv009 | 0 | 867,394,952 | 100% | ||
thehoneybee | 0 | 21,960,824,907 | 100% | ||
anonimnotoriu | 0 | 1,954,088,258 | 50.56% | ||
bhikkhu | 0 | 0 | 100% | ||
khairul5577 | 0 | 2,886,471,291 | 100% | ||
ackza | 0 | 235,462,868 | 1% | ||
comfortgenius | 0 | 1,871,426,050 | 100% | ||
wahyuway93 | 0 | 1,456,784,427 | 100% | ||
rcecelja2503 | 0 | 618,639,007 | 100% | ||
tarquinmaine | 0 | 120,878,354,257 | 100% | ||
taz77 | 0 | 1,008,153,064 | 100% | ||
jamesc1 | 0 | 3,289,467,848,930 | 20% | ||
bobeell | 0 | 1,495,429,130 | 100% | ||
lawrenceho84 | 0 | 2,545,888,836 | 1% | ||
gladbhoy | 0 | 2,301,546,162 | 100% | ||
borislavzlatanov | 0 | 7,478,257,676 | 100% | ||
joanawatts | 0 | 8,420,357,642 | 100% | ||
trafalgar | 0 | 1,546,471,651,565 | 7% | ||
wisri | 0 | 1,273,135,246 | 100% | ||
s3rg3 | 0 | 51,834,510,156 | 100% | ||
jacky5979 | 0 | 2,197,892,138 | 100% | ||
leviarcoin | 0 | 5,980,664,985 | 100% | ||
tudisco | 0 | 1,557,749,706 | 100% | ||
sassal | 0 | 18,247,699,572 | 40% | ||
akkha | 0 | 2,461,965,876 | 100% | ||
nba05 | 0 | 5,387,141,811 | 100% | ||
taspingo | 0 | 1,453,517,503 | 100% | ||
connecteconomy | 0 | 24,155,429,837 | 100% | ||
dr-boo | 0 | 2,255,253,624 | 100% | ||
awesomianist | 0 | 210,452,412 | 0.1% | ||
inkubux | 0 | 621,795,349 | 100% | ||
iwillrootyou | 0 | 599,593,100 | 100% | ||
fingersik | 0 | 14,899,731,217 | 100% | ||
daio | 0 | 891,086,619 | 100% | ||
bogey09 | 0 | 39,675,795,519 | 100% | ||
aarellanes | 0 | 37,442,452,193 | 100% | ||
raindrop | 0 | 608,913,200 | 100% | ||
altccy | 0 | 129,088,127,221 | 100% | ||
daudimitch | 0 | 1,624,496,811 | 100% | ||
viqral | 0 | 106,855,668 | 100% | ||
strimi | 0 | 29,092,933,359 | 100% | ||
arjane | 0 | 13,519,204,934 | 100% | ||
brentedward | 0 | 0 | 100% | ||
hamidreza-asgari | 0 | 317,393,784 | 100% | ||
sirryg | 0 | 624,240,228 | 100% | ||
kalamur | 0 | 3,206,210,258 | 100% | ||
endeavor | 0 | 602,267,285 | 100% | ||
ugaard | 0 | 663,597,213 | 100% | ||
hiimamazing | 0 | 1,021,910,262 | 100% | ||
synapse | 0 | 905,389,020 | 100% | ||
passion-fruit | 0 | 4,804,518,784 | 25% | ||
coocoocachoo | 0 | 3,505,725,722 | 16% | ||
yuhjtman | 0 | 5,929,585,438 | 29% | ||
ludorum | 0 | 1,048,392,157,238 | 50% | ||
greencrypto | 0 | 1,043,963,090 | 100% | ||
egregorian | 0 | 1,963,103,631 | 14.72% | ||
thehutchreport | 0 | 5,181,990,087 | 100% | ||
themevlog | 0 | 1,063,892,524 | 100% | ||
aarkay | 0 | 398,488,512 | 100% | ||
nitinchugh | 0 | 2,838,293,431 | 100% | ||
frankydoodle | 0 | 3,643,052,772 | 100% | ||
newsdesk | 0 | 10,104,796,691 | 50% | ||
igor-steem | 0 | 595,228,703 | 100% | ||
clin10 | 0 | 276,496,300 | 45.77% | ||
maros | 0 | 403,924,796 | 100% | ||
coinhub | 0 | 1,087,310,140 | 100% | ||
billyjohnsonart | 0 | 1,376,160,723 | 49.93% | ||
foways | 0 | 5,458,315,581 | 100% | ||
printking | 0 | 469,919,255 | 100% | ||
life-dailydose | 0 | 649,993,081 | 100% | ||
sighmanjestah | 0 | 6,990,343,022 | 100% | ||
tnkspe119 | 0 | 296,467,603,753 | 100% | ||
endthefed2017 | 0 | 65,370,243 | 10% | ||
thorleyjo | 0 | 375,910,700 | 100% | ||
gregb80 | 0 | 564,185,602 | 100% | ||
sharmin | 0 | 2,363,627,302 | 100% | ||
clodoweg | 0 | 7,852,240,917 | 100% | ||
head2themountain | 0 | 728,458,536 | 100% | ||
kersmash | 0 | 1,114,481,946 | 100% | ||
garden-to-eat | 0 | 3,466,856,877 | 100% | ||
rbfromsa | 0 | 5,530,080,874 | 100% | ||
frostkyekye | 0 | 6,247,144,770 | 100% | ||
hansenator | 0 | 395,198,495 | 1% | ||
elderberryranch | 0 | 5,124,149,595 | 100% | ||
ayrton | 0 | 5,959,916,401 | 100% | ||
bdl1165 | 0 | 6,419,609,344 | 100% | ||
ricardohd | 0 | 5,499,445,435 | 100% | ||
tellall | 0 | 3,785,265,584 | 100% | ||
schlees | 0 | 3,401,246,516 | 100% | ||
robi | 0 | 8,323,228,068 | 100% | ||
hammadkhan | 0 | 4,678,986,548 | 100% | ||
belleontherocks | 0 | 13,384,576,553 | 100% | ||
drpuffnstuff | 0 | 130,391,789,820 | 100% | ||
lautenglye | 0 | 3,041,306,588 | 100% | ||
svinsent | 0 | 1,809,832,743 | 100% | ||
lucidletters | 0 | 6,064,336,312 | 100% | ||
etcbits | 0 | 775,399,627 | 100% | ||
forykw | 0 | 77,222,676,369 | 100% | ||
natxlaw | 0 | 2,373,916,922 | 100% | ||
altcointrends | 0 | 137,431,045 | 5% | ||
deniscoman | 0 | 621,340,000 | 100% | ||
sanees | 0 | 1,915,724,599 | 100% | ||
praz735u5 | 0 | 1,240,827,948 | 100% | ||
julia-alexis22 | 0 | 7,352,545,228 | 100% | ||
batman33 | 0 | 5,770,706,721 | 100% | ||
trueflip | 0 | 9,842,621,215 | 100% | ||
pajak | 0 | 4,924,104,199 | 100% | ||
indend007 | 0 | 10,746,687,742 | 100% | ||
dave-steem | 0 | 6,064,123,861 | 100% | ||
ijoel | 0 | 4,998,624,047 | 100% | ||
sugarrock | 0 | 5,165,726,829 | 100% | ||
headliner | 0 | 9,323,319,355 | 100% | ||
crisgojar | 0 | 7,370,941,308 | 100% | ||
gatmi | 0 | 3,067,774,669 | 100% | ||
newprepper | 0 | 6,001,425,886 | 100% | ||
redbanana | 0 | 282,730,961 | 1% | ||
luckize | 0 | 843,839,888 | 100% | ||
temps88 | 0 | 6,413,181,676 | 85.03% | ||
ginasarasini | 0 | 6,542,032,059 | 100% | ||
akmaladilla | 0 | 3,763,052,504 | 100% | ||
uncle-t | 0 | 6,061,467,895 | 100% | ||
ayardstick | 0 | 16,752,609,398 | 100% | ||
charity-aceh | 0 | 5,285,004,494 | 100% | ||
doqstrader | 0 | 5,341,347,343 | 100% | ||
lowsome | 0 | 6,752,613,485 | 100% | ||
carface | 0 | 106,307,694,142 | 10% | ||
roomservice | 0 | 2,966,369,908 | 10% | ||
graphicalx | 0 | 2,084,104,152 | 100% | ||
rt395 | 0 | 8,725,039,051 | 100% | ||
leomichael | 0 | 22,910,369,332 | 14% | ||
trafficbit | 0 | 151,536,548 | 100% | ||
classicstar | 0 | 8,797,556,843 | 100% | ||
grimboslice819 | 0 | 45,809,137,244 | 100% | ||
nanza | 0 | 6,061,459,169 | 100% | ||
evo-x-gsr | 0 | 6,092,174,294 | 100% | ||
thethreehugs | 0 | 0 | 100% | ||
misterd21 | 0 | 5,009,045,141 | 100% | ||
sallsteem | 0 | 1,821,540,586 | 35% | ||
spliffmacgyver | 0 | 6,061,456,986 | 100% | ||
zeitspringer | 0 | 5,970,535,042 | 100% | ||
jsant72 | 0 | 1,592,541,371 | 100% | ||
gktown | 0 | 50,254,349,237 | 100% | ||
agoric.systems | 0 | 10,635,989,644 | 100% | ||
muslem | 0 | 3,025,720,890 | 100% | ||
newsflash | 0 | 13,865,002,976,733 | 100% | ||
gkohinkar | 0 | 3,025,719,840 | 100% | ||
jfgrissom | 0 | 11,075,169,464 | 100% | ||
wvm | 0 | 10,149,220,876 | 100% | ||
karnainali | 0 | 574,148,058 | 100% | ||
muhammadhaseeb | 0 | 484,101,395 | 100% | ||
jkim1285 | 0 | 10,975,107,570 | 100% | ||
ikegass33 | 0 | 58,736,061,386 | 80% | ||
e-saber | 0 | 12,299,809,538 | 100% | ||
waystobecalm | 0 | 13,548,088,768 | 100% | ||
nevil | 0 | 644,564,085 | 100% | ||
asralf | 0 | 1,682,038,651 | 100% | ||
mike-power | 0 | 1,094,799,955 | 100% | ||
rkaz | 0 | 1,269,647,665 | 100% | ||
eliran6 | 0 | 6,529,915,804 | 100% | ||
rahulyadav | 0 | 22,720,817,210 | 100% | ||
kashima | 0 | 3,025,719,575 | 100% | ||
sevenstars | 0 | 3,722,926,004 | 100% | ||
ifzgotdatpiff | 0 | 779,859,323 | 100% | ||
liffecoin | 0 | 413,191,100 | 100% | ||
shaunf | 0 | 81,826,145 | 100% | ||
newold | 0 | 0 | 100% | ||
orgnolf | 0 | 6,587,947,391 | 100% | ||
natra | 0 | 12,044,379,934 | 100% | ||
williamtrouble | 0 | 3,200,780,676 | 100% | ||
suedgrisoni | 0 | 599,593,100 | 100% | ||
star02037 | 0 | 3,180,532,931 | 100% | ||
noval | 0 | 595,117,163 | 100% | ||
swimmer | 0 | 4,122,264,909 | 100% | ||
revelim | 0 | 3,740,119,690 | 20% | ||
hangeul | 0 | 229,849,683 | 100% | ||
yehey | 0 | 3,904,076,420 | 20% | ||
cryptoizotx | 0 | 621,340,000 | 100% | ||
freethink | 0 | 674,339,987 | 100% | ||
dududagrav | 0 | 537,600,172 | 100% | ||
efim-off | 0 | 382,139,072 | 100% | ||
cha-ching | 0 | 531,013,754 | 100% | ||
contributor77 | 0 | 1,730,320,435 | 100% | ||
jarekzip | 0 | 1,108,969,901 | 100% | ||
wowynewyork | 0 | 731,092,032 | 100% | ||
bloomview | 0 | 787,800,888 | 15.74% | ||
enomujjass | 0 | 7,775,442,405 | 100% | ||
newgaia | 0 | 14,114,506,161 | 7% | ||
wolvesabyss | 0 | 456,699,404 | 100% | ||
cryptohustler | 0 | 701,661,075 | 8% | ||
yguhan | 0 | 4,399,018,082 | 100% | ||
scottland | 0 | 1,119,988,009 | 100% | ||
fatamorgan | 0 | 3,820,450,610 | 100% | ||
nealwalters | 0 | 4,717,859,470 | 100% | ||
safran | 0 | 99,345,072 | 100% | ||
manishmike10 | 0 | 2,526,190,308 | 100% | ||
snorlex20 | 0 | 3,151,045,949 | 100% | ||
mrmoneymaken | 0 | 2,779,171,639 | 100% | ||
kumotune | 0 | 2,637,320,648 | 100% | ||
arsar | 0 | 2,394,262,201 | 100% | ||
almost-digital | 0 | 137,590,786,427 | 100% | ||
pooldarbashi | 0 | 3,159,070,385 | 100% | ||
toscos | 0 | 3,407,362,997 | 100% | ||
swsmexico | 0 | 847,409,768 | 100% | ||
billroth | 0 | 1,742,506,964 | 1% | ||
anhdung7112000 | 0 | 379,109,197 | 100% | ||
erickjongo | 0 | 3,355,895,935 | 100% | ||
philipkoon | 0 | 6,984,562,108 | 100% | ||
markydelro | 0 | 571,632,800 | 100% | ||
zeteticmindset | 0 | 10,464,295,665 | 100% | ||
bluerabbit | 0 | 1,713,819,458 | 100% | ||
kadri | 0 | 692,817,373 | 100% | ||
dizhmur | 0 | 0 | -100% | ||
bitminertje | 0 | 619,517,716 | 100% | ||
a4illusionist | 0 | 587,166,300 | 100% | ||
sergeylee23 | 0 | 97,778,874 | 100% | ||
saylor | 0 | 1,160,715,070 | 100% | ||
yazeed | 0 | 1,160,715,003 | 100% | ||
kemal13 | 0 | 8,586,036,948 | 100% | ||
alexmartinez | 0 | 503,322,862 | 100% | ||
v1kt0r | 0 | 1,030,974,800 | 100% | ||
allsave | 0 | 966,371,151 | 100% | ||
robertvogt | 0 | 1,602,817,890 | 100% | ||
dominiklederer | 0 | 1,586,228,333 | 100% | ||
ramontorresps | 0 | 12,224,985,311 | 100% | ||
theex | 0 | 162,108,902 | 100% | ||
isacoin | 0 | 1,393,592,488 | 100% | ||
daniweav | 0 | 1,121,063,197 | 100% | ||
ansek | 0 | 1,073,693,735 | 100% | ||
cryptotalking | 0 | 1,058,729,328 | 100% | ||
mazidoank | 0 | 1,160,708,546 | 100% | ||
bmgreece | 0 | 1,573,169,052 | 100% | ||
agbaregha | 0 | -1,816,314,886 | 0% | ||
pablito | 0 | 5,340,763,135 | 100% | ||
edb1984 | 0 | 23,743,626,363 | 47% | ||
joecoleman | 0 | 1,239,114,248 | 100% | ||
writtenbird | 0 | 680,535,715 | 100% | ||
parnny | 0 | 1,161,080,846 | 100% | ||
kakilasak | 0 | 463,835,275 | 100% | ||
antibyte | 0 | 1,558,655,252 | 100% | ||
tsinrong | 0 | 554,205,217 | 100% | ||
sjwl | 0 | 1,143,297,600 | 100% | ||
solehmustakim | 0 | 1,100,858,514 | 100% | ||
lbrt | 0 | 1,674,110,868 | 100% | ||
sambo-rambo | 0 | 113,203,992 | 30% | ||
ganymede | 0 | 2,028,161,312 | 90% | ||
princeshady5 | 0 | 1,085,262,043 | 100% | ||
chedo | 0 | 281,089,665 | 100% | ||
cryptopanda | 0 | 1,262,616,830 | 100% | ||
drled | 0 | 175,940,448 | 100% | ||
cirememoh | 0 | 3,590,047,460 | 100% | ||
new.context2 | 0 | 1,216,645,085 | 100% | ||
misty1z | 0 | 17,053,386,415 | 100% | ||
ekan | 0 | 191,912,922 | 100% | ||
xnerdmasterx | 0 | 1,143,419,431 | 100% | ||
samuelwealth | 0 | 1,298,686,557 | 100% | ||
myroadtours | 0 | 264,011,493 | 100% | ||
richie88 | 0 | 1,212,437,984 | 100% | ||
hamzarasheed | 0 | 1,154,186,462 | 100% | ||
gtimages | 0 | 1,336,039,767 | 100% | ||
junaidfarooq | 0 | 601,840,823 | 100% | ||
bewe | 0 | 1,808,860,571 | 100% | ||
slavix | 0 | 60,868,880,671 | 100% | ||
evil-genius | 0 | 1,506,827,900 | 100% | ||
filmonaut | 0 | 1,042,977,701 | 100% | ||
omega-not | 0 | 2,497,132,414 | 100% | ||
siddm96 | 0 | 731,610,840 | 100% | ||
tastetwist | 0 | 21,020,215,202 | 50% | ||
varys | 0 | 1,160,707,588 | 100% | ||
cryptolove | 0 | 1,056,734,032 | 100% | ||
sagan-on-roids | 0 | 11,899,067,722 | 100% | ||
janpolasek | 0 | 1,160,707,546 | 100% | ||
bitrus2yk | 0 | 88,285,561 | 100% | ||
jordanpetrov | 0 | 1,148,008,090 | 100% | ||
ddkothar | 0 | 1,137,493,389 | 100% | ||
slon21veka | 0 | 1,395,896,764 | 100% | ||
etherwolf | 0 | 1,160,707,492 | 100% | ||
digitalcoma | 0 | 948,307,261 | 100% | ||
leon.enrrique | 0 | 1,198,223,933 | 100% | ||
shemabukhari | 0 | 1,962,463,161 | 100% | ||
lewmen | 0 | 1,143,296,816 | 100% | ||
hegetiby | 0 | 189,854,224 | 100% | ||
jeremylarter | 0 | 1,160,707,401 | 100% | ||
raserrano | 0 | 1,209,620,752 | 100% | ||
moomoo | 0 | 2,106,432,323 | 100% | ||
claudeskitchen | 0 | 0 | 100% | ||
shaihryar-nisar | 0 | 992,404,779 | 100% | ||
syehlah | 0 | 559,768,471 | 100% | ||
them680813 | 0 | 208,744,796,917 | 100% | ||
bolgan | 0 | 2,059,241,663 | 100% | ||
dijana969 | 0 | 521,787,950 | 10% | ||
janny | 0 | 771,419,355 | 50% | ||
mikej | 0 | 2,751,991,229 | 100% | ||
shenchensucc | 0 | 3,272,543,552 | 100% | ||
ilovewailuku | 0 | 849,472,399 | 100% | ||
cryptogaming | 0 | 1,245,682,455 | 100% | ||
ginjaninja007 | 0 | 870,530,419 | 100% | ||
mathieu4013 | 0 | 307,155,908 | 100% | ||
ryanhkr | 0 | 367,334,005 | 10.17% | ||
hueso | 0 | 2,936,496,792 | 100% | ||
punitchoudhary | 0 | 595,296,280 | 100% | ||
ricancoin | 0 | 998,537,910 | 100% | ||
bellvilleboi | 0 | 922,762,060 | 100% | ||
itissimple | 0 | 349,586,324 | 100% | ||
randell | 0 | 1,076,868,207 | 100% | ||
kardevis | 0 | 1,668,317,044 | 100% | ||
angelsalais | 0 | 1,161,658,720 | 100% | ||
yuvi | 0 | 759,131,598 | 100% | ||
crypto-booster | 0 | -429,118,617 | -100% | ||
kapitan52 | 0 | 1,376,533,943 | 100% | ||
sdilan | 0 | 1,677,365,264 | 100% | ||
ericrumor | 0 | 4,422,396,618 | 100% | ||
ikmar | 0 | 1,136,437,917 | 100% | ||
agusdiansyah | 0 | 953,571,971 | 100% | ||
chasewest | 0 | 1,373,547,812 | 100% | ||
kingst | 0 | 1,135,694,500 | 100% | ||
danielroolz | 0 | 1,808,942,619 | 100% | ||
cryptotaddtherad | 0 | 0 | 100% | ||
solidace | 0 | 1,770,948,564 | 100% | ||
jaydebjana | 0 | 1,278,896,083 | 100% | ||
birdistheword | 0 | 12,259,679,331 | 100% | ||
isidora | 0 | 1,160,705,748 | 100% | ||
bdmel | 0 | 969,189,236 | 100% | ||
crownsamuel | 0 | 747,400,567 | 100% | ||
fsonline | 0 | 2,875,503,111 | 100% | ||
bigdan | 0 | 1,160,705,207 | 100% | ||
leetyt2 | 0 | 2,169,807,006 | 100% | ||
marekdavid | 0 | 2,381,147,548 | 100% | ||
izanmangi | 0 | 779,650,631 | 100% | ||
machhour | 0 | 234,607,397 | 100% | ||
sockles | 0 | 1,279,612,853 | 100% | ||
chadym | 0 | 1,009,813,255 | 100% | ||
mlomongo | 0 | 1,136,001,568 | 100% | ||
aashishpandey34 | 0 | 895,686,825 | 100% | ||
backpacker | 0 | 1,160,911,719 | 100% | ||
naren | 0 | 1,140,126,534 | 100% | ||
nyaree | 0 | 319,193,764 | 100% | ||
kumar.malhotra | 0 | 1,149,097,422 | 100% | ||
rahdit | 0 | 133,298,877 | 100% | ||
liuke96player | 0 | 1,428,893,050 | 100% | ||
ycyr | 0 | 1,134,222,561 | 100% | ||
yo117 | 0 | 1,449,268,139 | 100% | ||
eskilxan | 0 | 1,098,508,151 | 100% | ||
dojoexle | 0 | 1,404,779,779 | 100% | ||
schneidor | 0 | 5,958,405,171 | 100% | ||
asuleymanov | 0 | 1,141,707,552 | 100% | ||
monkrypto | 0 | 992,402,026 | 100% | ||
steemituser77 | 0 | 1,030,330,757 | 100% | ||
king-crypto | 0 | 4,173,465,539 | 100% | ||
mrcryptoman | 0 | 824,509,497 | 100% | ||
jbp | 0 | 20,231,636,071 | 100% | ||
moekyawsoe | 0 | 1,151,753,164 | 100% | ||
mondaymornin | 0 | 1,066,352,233 | 100% | ||
ryanart | 0 | 1,480,454,210 | 100% | ||
jen8 | 0 | 4,066,885,940 | 100% | ||
divilati | 0 | 1,330,959,937 | 100% | ||
richalyandesty | 0 | 1,520,760,890 | 100% | ||
edde | 0 | 1,164,013,689 | 100% | ||
sensation | 0 | 906,348,958 | 100% | ||
bobrice | 0 | 1,160,702,921 | 100% | ||
awkzone | 0 | 1,160,702,864 | 100% | ||
arneljayestimada | 0 | 1,248,461,167 | 100% | ||
sutarin | 0 | 1,284,688,062 | 100% | ||
majikthought | 0 | 1,733,581,176 | 100% | ||
bitcoinneverdie | 0 | 1,120,077,980 | 100% | ||
carebbear | 0 | 958,910,840 | 100% | ||
zhelto | 0 | 1,082,872,304 | 100% | ||
daniel2416 | 0 | 1,597,795,951 | 100% | ||
vikbuddy | 0 | 1,096,863,542 | 100% | ||
sigstart | 0 | 755,048,039 | 100% | ||
kazegawa | 0 | 694,973,696 | 52% | ||
dr-waldo | 0 | 1,494,713,663 | 100% | ||
dwarrilow2002 | 0 | 0 | 0% | ||
resteemit | 0 | 808,154,426 | 100% | ||
georgejohnson | 0 | 1,501,368,384 | 100% | ||
sidkey | 0 | 273,406,744 | 100% | ||
ishah | 0 | 874,606,822 | 100% | ||
chanceb | 0 | 371,424,545 | 100% | ||
bajeheart | 0 | 969,474,396 | 100% | ||
animelovers | 0 | 1,151,568,402 | 100% | ||
koffee | 0 | 930,343,624 | 100% | ||
musicfever | 0 | 220,533,264 | 100% | ||
mrpankajssm | 0 | 714,211,139 | 100% | ||
dobro88888888 | 0 | 77,290,723 | 100% | ||
artbyrasho | 0 | 519,027,352 | 100% | ||
defensorspes | 0 | 2,094,180,838 | 100% | ||
gingyptian | 0 | 2,329,089,999 | 100% | ||
ginacarole | 0 | 13,575,295,450 | 100% | ||
secondstar | 0 | 327,589,179 | 100% | ||
sta | 0 | 1,168,104,701 | 100% | ||
juliany | 0 | 1,274,856,536 | 100% | ||
happy.man | 0 | 51,501,858,603 | 100% | ||
agamii | 0 | 1,109,288,752 | 100% | ||
callumcampbell | 0 | 940,220,587 | 100% | ||
greencornermedia | 0 | 1,160,742,177 | 100% | ||
earthborn | 0 | 1,172,701,017 | 100% | ||
rajan7 | 0 | 1,120,076,164 | 100% | ||
galahan | 0 | 1,160,700,505 | 100% | ||
greatsam | 0 | 1,078,138,044 | 100% | ||
viguamu | 0 | 1,139,229,885 | 100% | ||
shifty0g | 0 | 16,671,214,616 | 100% | ||
philip.willemse | 0 | 1,363,165,189 | 100% | ||
slawroc | 0 | 1,181,720,007 | 100% | ||
samrehat | 0 | 1,193,721,367 | 100% | ||
kozak | 0 | 2,178,327,297 | 100% | ||
krisnawan | 0 | 1,097,096,079 | 100% | ||
bilal7 | 0 | 213,052,399 | 100% | ||
ajohn | 0 | 435,668,729 | 100% | ||
gulshannsaini | 0 | 1,095,027,122 | 100% | ||
daxed | 0 | 2,287,133,413 | 3% | ||
ilhamkdk | 0 | 624,096,128 | 100% | ||
hunikej567 | 0 | 1,160,699,832 | 100% | ||
jekramos | 0 | 1,169,310,180 | 100% | ||
emrekaykusuz | 0 | 733,524,471 | 100% | ||
mark4004 | 0 | 935,619,948 | 100% | ||
torypapa | 0 | 2,460,050,088 | 100% | ||
egovandal | 0 | 1,218,171,051 | 100% | ||
yeah-science | 0 | 249,612,631 | 100% | ||
kevbot | 0 | 1,261,770,113 | 100% | ||
nana.ama | 0 | 903,362,188 | 100% | ||
irfaniriski | 0 | 1,068,098,009 | 100% | ||
dipesh213 | 0 | 1,107,180,775 | 100% | ||
siwy | 0 | 1,096,860,550 | 100% | ||
saadi | 0 | 789,612,965 | 100% | ||
mahmoudh | 0 | 992,020,269 | 100% | ||
pipiczech | 0 | 1,307,665,198 | 100% | ||
slinky | 0 | 1,167,568,121 | 100% | ||
mohammedfelahi | 0 | 146,635,211 | 100% | ||
zarch95 | 0 | 1,688,784,473 | 100% | ||
dldb1604 | 0 | 285,983,406 | 100% | ||
gimgurra | 0 | 934,146,752 | 70% | ||
bruiselee | 0 | 1,432,936,773 | 100% | ||
callistus | 0 | 1,109,612,732 | 100% | ||
jackthar1ppir | 0 | 460,020,626 | 100% | ||
crisjecamo | 0 | 1,298,662,034 | 100% | ||
makrotheblack | 0 | 878,005,545 | 100% | ||
ericslonaker312 | 0 | 1,160,698,367 | 100% | ||
luigienius | 0 | 1,184,892,154 | 100% | ||
sebastianic | 0 | 9,493,796,778 | 100% | ||
s-h-entertainmen | 0 | 1,033,021,479 | 100% | ||
khatisam | 0 | 1,161,567,224 | 100% | ||
gopegrit | 0 | 117,205,900,939 | 100% | ||
mkq1991 | 0 | 1,161,442,854 | 100% | ||
rapsoo | 0 | 790,146,970 | 100% | ||
ketobasic | 0 | 1,160,780,668 | 100% | ||
susanli3769 | 0 | 819,238,140 | 100% | ||
rccc | 0 | 1,172,481,557 | 100% | ||
bitzoner | 0 | 1,189,793,334 | 100% | ||
pumasight | 0 | 1,108,466,377 | 100% | ||
ydeaki | 0 | 1,096,859,100 | 100% | ||
nbhaines | 0 | 1,160,697,446 | 100% | ||
andjay | 0 | 1,234,940,259 | 100% | ||
ssgallant | 0 | 1,011,210,527 | 100% | ||
espanol | 0 | 1,143,327,730 | 100% | ||
frankbuse | 0 | 557,452,524 | 100% | ||
webidente | 0 | 1,120,711,803 | 100% | ||
yanies | 0 | 1,230,404,996 | 100% | ||
chadwickthecrab | 0 | 1,767,793,870 | 100% | ||
nextstar | 0 | 827,753,631 | 100% | ||
rishabhgrover | 0 | 1,315,352,869 | 100% | ||
mcoinz79 | 0 | 400,483,413 | 100% | ||
cryptopizza | 0 | 0 | 0% | ||
johndoe6688 | 0 | 1,053,127,286 | 100% | ||
cryptosiko | 0 | 1,120,152,696 | 100% | ||
brendanmcpherson | 0 | 1,443,338,714 | 100% | ||
shuke0327 | 0 | 1,159,501,333 | 100% | ||
travelcliff | 0 | 533,920,710 | 100% | ||
nalang | 0 | 1,162,807,461 | 100% | ||
rememberramu | 0 | 1,160,697,188 | 100% | ||
btudek | 0 | 1,010,562,459 | 100% | ||
dextrian | 0 | 1,160,697,161 | 100% | ||
aung | 0 | 986,885,839 | 100% | ||
bgping | 0 | 1,102,662,285 | 100% | ||
vnukkarpov | 0 | 1,317,839,947 | 100% | ||
rameshkumar | 0 | 310,739,796 | 100% | ||
d7795 | 0 | 1,600,413,401 | 100% | ||
bhagwan | 0 | 1,050,468,277 | 100% | ||
atif3737 | 0 | 1,143,775,652 | 100% | ||
egzon | 0 | 466,920,243 | 100% | ||
dzikriarraiyan | 0 | 1,122,228,720 | 100% | ||
thednp | 0 | 278,616,917 | 100% | ||
tradingpotential | 0 | 656,106,608 | 100% | ||
efkabe | 0 | 1,180,333,891 | 100% | ||
hereforawhile | 0 | 1,203,047,985 | 100% | ||
bucho | 0 | 6,216,407,894 | 100% | ||
beltashazzar | 0 | 1,100,499,475 | 100% | ||
annex | 0 | 780,941,358 | 100% | ||
veganrobot | 0 | 793,831,389 | 100% | ||
davidoberaxo | 0 | 458,540,490 | 100% | ||
hayko | 0 | 1,560,207,481 | 100% | ||
fracturedsounds | 0 | 3,003,092,819 | 100% | ||
sagor0707 | 0 | 1,009,805,921 | 100% | ||
hasanyoussef94 | 0 | 1,419,025,533 | 100% | ||
steemmanju | 0 | 1,436,766,750 | 100% | ||
lesliehydesjr | 0 | 661,620,515 | 100% | ||
steemvotes | 0 | 487,004,616 | 100% | ||
stefen | 0 | 383,043,451 | 100% | ||
teukufandy | 0 | 1,253,251,203 | 100% | ||
imrantaj | 0 | 536,154,777 | 100% | ||
blessedman939 | 0 | 272,773,342 | 100% | ||
donjuandon | 0 | 462,837,589 | 100% | ||
beatriz | 0 | 1,308,076,072 | 100% | ||
zararina | 0 | 1,112,603,777 | 100% | ||
bitphex | 0 | 1,138,049,896 | 100% | ||
gadgetsrepair | 0 | 1,120,071,778 | 100% | ||
kelvanis | 0 | 953,472,746 | 100% | ||
skjones57 | 0 | 116,069,607 | 10% | ||
kingmalik | 0 | 1,137,482,101 | 100% | ||
avajean | 0 | 876,700,336 | 100% | ||
crypto.don | 0 | 597,703,079 | 100% | ||
hafizulislam | 0 | 976,305,281 | 100% | ||
mabre | 0 | 5,420,823,487 | 25% | ||
swiftrhythm | 0 | 1,160,695,830 | 100% | ||
ishratamin | 0 | 424,256,727 | 100% | ||
subflix | 0 | 756,510,269 | 100% | ||
emmyato | 0 | 1,021,412,083 | 100% | ||
mauga | 0 | 1,160,695,521 | 100% | ||
akun2017 | 0 | 1,297,075,505 | 100% | ||
polaleye50 | 0 | 742,977,410 | 100% | ||
zeidlitwhips | 0 | 563,017,480 | 51% | ||
fmg | 0 | 2,129,431,218 | 100% | ||
kingsleysky | 0 | 0 | 0% | ||
flowerwong66 | 0 | 498,412,282 | 100% | ||
awakeini | 0 | 1,090,115,877 | 100% | ||
kkotto | 0 | 1,014,004,323 | 100% | ||
nandakyaw | 0 | 1,120,070,294 | 100% | ||
jstark | 0 | 1,056,344,970 | 100% | ||
ikenna | 0 | 1,264,773,960 | 100% | ||
oddi18 | 0 | 87,067,593 | 100% | ||
lumberjax | 0 | 1,005,324,456 | 100% | ||
drakezrull | 0 | 581,484,697 | 100% | ||
matzunaga2111 | 0 | 1,075,402,241 | 100% | ||
woundedknee | 0 | 650,523,055 | 100% | ||
samsam | 0 | 969,351,799 | 100% | ||
lenastorifier | 0 | 1,170,705,172 | 100% | ||
nightknight | 0 | 264,659,110 | 100% | ||
dreamchaser4063 | 0 | 1,015,772,420 | 100% | ||
fahrullah | 0 | 121,881,465 | 100% | ||
muhammadsafri | 0 | 493,294,571 | 100% | ||
jvdotsls | 0 | 1,120,148,705 | 100% | ||
edwinbasulto | 0 | 1,160,693,106 | 100% | ||
joseburgos | 0 | 1,149,086,168 | 100% | ||
zurumsories | 0 | 75,445,051 | 10.46% | ||
socialrandoms | 0 | 731,736,402 | 100% | ||
steemitcurator | 0 | 1,120,068,835 | 100% | ||
mawanda | 0 | 1,160,734,474 | 100% | ||
kujtimh | 0 | 936,828,606 | 100% | ||
kult300 | 0 | 938,932,693 | 100% | ||
gaga83 | 0 | 580,967,094 | 100% | ||
gruzinas93 | 0 | 1,073,641,088 | 100% | ||
brooke.oth | 0 | 1,073,641,088 | 100% | ||
prashant | 0 | 836,994,741 | 100% | ||
crownduels | 0 | 1,160,693,061 | 100% | ||
mikibon | 0 | 1,070,387,337 | 100% | ||
jatinaus | 0 | 117,070,469 | 100% | ||
dobsdies | 0 | 1,277,818,670 | 100% | ||
tmoz | 0 | 261,360,716 | 100% | ||
thefrogpepe | 0 | 890,874,003 | 100% | ||
josek | 0 | 19,823,706,490 | 100% | ||
digitalharmony | 0 | 2,454,966,958 | 100% | ||
princekayani | 0 | 524,737,216 | 100% | ||
steemitblogger | 0 | 335,667,006 | 100% | ||
witus777 | 0 | 226,335,130 | 100% | ||
mauessa | 0 | 1,125,872,182 | 100% | ||
avestochka | 0 | 1,000,952,441 | 100% | ||
kizzonia | 0 | 1,160,692,964 | 100% | ||
euni | 0 | 925,379,541 | 100% | ||
hendh | 0 | 1,073,794,048 | 100% | ||
talaslegraps | 0 | 18,787,327,579 | 100% | ||
steemlover | 0 | 145,164,186 | 100% | ||
mohammadreza | 0 | 0 | 100% | ||
caution | 0 | 1,161,768,699 | 100% | ||
shugamena | 0 | 1,033,016,675 | 100% | ||
animejp | 0 | 905,598,632 | 100% | ||
bitcoin-paul | 0 | 464,277,141 | 100% | ||
sarkawt909 | 0 | 1,148,131,298 | 100% | ||
canadiandragon | 0 | 1,160,692,843 | 100% | ||
gentlesteem | 0 | 1,120,068,592 | 100% | ||
icedrum | 0 | 98,658,891 | 100% | ||
matthew23 | 0 | 1,160,692,836 | 100% | ||
ishaq | 0 | 1,108,501,150 | 100% | ||
joedirt | 0 | 567,621,976 | 100% | ||
akhenkheires | 0 | 664,322,603 | 100% | ||
hendartea | 0 | 1,120,068,498 | 100% | ||
monalishabiswas | 0 | 110,859,255 | 100% | ||
elshan | 0 | 934,357,648 | 100% | ||
jpederson96 | 0 | 1,093,613,371 | 100% | ||
tprahul97 | 0 | 1,160,692,691 | 100% | ||
nandikafuture | 0 | 948,337,356 | 100% | ||
dizel | 0 | 500,609,880 | 100% | ||
haywizzy | 0 | 1,160,692,579 | 100% | ||
welcomesteemians | 0 | 197,479,480 | 100% | ||
drolu | 0 | 1,091,050,904 | 100% | ||
bulex | 0 | 916,947,030 | 100% | ||
aitssam | 0 | 197,317,711 | 100% | ||
crypto-ta | 0 | 1,105,478,053 | 100% | ||
aircypto | 0 | 969,178,154 | 100% | ||
gooze | 0 | 1,027,249,286 | 100% | ||
bikashny | 0 | 1,160,692,246 | 100% | ||
all.about.sports | 0 | 1,160,692,239 | 100% | ||
monkeyjump | 0 | 1,160,692,171 | 100% | ||
chrone | 0 | 1,386,644,970 | 100% | ||
dailybeauty-tips | 0 | 1,160,733,504 | 100% | ||
shaolinstuntz | 0 | 1,162,222,730 | 100% | ||
deleni | 0 | 0 | 100% | ||
zimway | 0 | 684,832,743 | 100% | ||
alexhudson | 0 | 533,937,392 | 100% | ||
primzy81 | 0 | 1,120,067,855 | 100% | ||
matzep | 0 | 14,737,645,874 | 100% | ||
yon118 | 0 | 882,125,930 | 100% | ||
dr-physics | 0 | 417,849,100 | 100% | ||
misticrum | 0 | 63,844,883 | 100% | ||
asistex | 0 | 1,137,478,089 | 100% | ||
i0x | 0 | 975,050,722 | 100% | ||
melgarcia | 0 | 1,073,640,009 | 100% | ||
kidylee | 0 | 1,160,691,873 | 100% | ||
sunnybank007 | 0 | 1,160,691,852 | 100% | ||
xaviee | 0 | 1,110,356,957 | 100% | ||
arkimedi | 0 | 847,305,026 | 100% | ||
q0t | 0 | 1,102,696,532 | 100% | ||
reddeadpanda2012 | 0 | 1,161,022,806 | 100% | ||
dawnmaker | 0 | 1,160,691,759 | 100% | ||
soeminphyo | 0 | 116,069,175 | 100% | ||
kobraa | 0 | 1,141,126,528 | 100% | ||
lezzime | 0 | 998,194,880 | 100% | ||
joesky | 0 | 1,038,893,106 | 100% | ||
chasdabigone | 0 | 1,160,691,601 | 100% | ||
kingjan | 0 | 567,610,143 | 100% | ||
hendhlast | 0 | 1,120,067,321 | 100% | ||
brumlito-loco | 0 | 1,160,691,508 | 100% | ||
vonnaputra | 0 | 336,600,532 | 100% | ||
beautifulbullies | 0 | 514,053,309 | 100% | ||
drakoman | 0 | 1,231,550,765 | 100% | ||
delvamaynardreid | 0 | 580,345,696 | 100% | ||
jespervdv | 0 | 1,160,691,268 | 100% | ||
nurita | 0 | 1,160,732,595 | 100% | ||
sayandude | 0 | 1,160,939,458 | 100% | ||
hadidi | 0 | 1,079,442,807 | 100% | ||
khairil007 | 0 | 1,137,477,285 | 100% | ||
heidy0221 | 0 | 708,046,789 | 100% | ||
frankeisten | 0 | 1,056,614,079 | 100% | ||
gpfelizco | 0 | 766,056,009 | 100% | ||
kaan | 0 | 1,160,690,917 | 100% | ||
nofalali | 0 | 475,900,210 | 100% | ||
lordp | 0 | 998,514,329 | 100% | ||
iuri | 0 | 708,021,410 | 100% | ||
calito | 0 | 464,276,334 | 100% | ||
krayzie29 | 0 | 464,276,330 | 100% | ||
vladimgor | 0 | 568,819,596 | 100% | ||
deemoniy | 0 | 1,062,032,101 | 100% | ||
elsayed | 0 | 980,783,741 | 100% | ||
outhori5ed | 0 | 893,731,929 | 100% | ||
mountrock | 0 | 232,837,088 | 100% | ||
othmanesl | 0 | 1,102,656,254 | 100% | ||
chacalj81 | 0 | 1,073,638,981 | 100% | ||
anabelen | 0 | 1,096,852,796 | 100% | ||
phxurbangardens | 0 | 1,160,690,776 | 100% | ||
bmathov | 0 | 696,414,400 | 100% | ||
junioraceh | 0 | 766,055,765 | 100% | ||
gautamjakhar111 | 0 | 970,523,534 | 100% | ||
miangee | 0 | 670,407,784 | 100% | ||
cryptofan212 | 0 | 1,102,655,810 | 100% | ||
ferkzman | 0 | 1,021,407,460 | 100% | ||
crypto.girl | 0 | 2,369,626,558 | 100% | ||
smkc | 0 | 1,096,852,138 | 100% | ||
allel | 0 | 992,390,005 | 100% | ||
yikkih | 0 | 1,143,401,969 | 100% | ||
naqeebnajub | 0 | 1,120,065,838 | 100% | ||
larissasantana | 0 | 1,050,424,362 | 100% | ||
colmanlamkh | 0 | 376,736,595 | 100% | ||
spidersprog | 0 | 1,008,258,801 | 100% | ||
wooyounyoon | 0 | 1,160,689,713 | 100% | ||
arvictpacheco | 0 | 504,900,019 | 100% | ||
rogasa3000 | 0 | 0 | 100% | ||
ndnd92 | 0 | 1,021,406,900 | 100% | ||
worldwidetravel | 0 | 104,462,066 | 100% | ||
fisnikk | 0 | 1,021,406,862 | 100% | ||
theapple | 0 | 690,610,316 | 100% | ||
giimages | 0 | 1,079,441,327 | 100% | ||
yunkzilla | 0 | 617,799,059 | 100% | ||
vulturestkn | 0 | 603,558,535 | 100% | ||
tdotgto | 0 | 423,651,638 | 100% | ||
jealson | 0 | 470,079,204 | 100% | ||
nileshdudhane | 0 | 1,137,475,551 | 100% | ||
immortal.infidel | 0 | 1,073,637,626 | 100% | ||
bearandoci | 0 | 899,534,196 | 100% | ||
aesthetips | 0 | 1,160,689,263 | 100% | ||
acecardx | 0 | 504,899,794 | 100% | ||
acronym | 0 | 1,096,851,263 | 100% | ||
revile | 0 | 1,160,689,131 | 100% | ||
tanversaadakash | 0 | 1,079,440,876 | 100% | ||
suwung | 0 | 1,160,689,071 | 100% | ||
amosei | 0 | 1,160,689,014 | 100% | ||
elnenewalt | 0 | 1,143,278,587 | 100% | ||
iqbalmarwadi | 0 | 237,941,222 | 100% | ||
aifuture | 0 | 173,785,601 | 100% | ||
crowcoin | 0 | 1,056,659,958 | 100% | ||
momar | 0 | 377,223,786 | 100% | ||
skyeman222 | 0 | 1,143,278,200 | 100% | ||
wanderingmind | 0 | 906,950,464 | 100% | ||
teukurobbybinor | 0 | 638,401,406 | 100% | ||
shivs | 0 | 1,012,552,321 | 100% | ||
trefifund | 0 | 626,861,055 | 100% | ||
oktaviani | 0 | 1,160,688,214 | 100% | ||
abdullahalrafiq | 0 | 696,412,925 | 100% | ||
emrekeles | 0 | 92,855,043 | 100% | ||
subcdy | 0 | 1,120,063,957 | 100% | ||
thinnkaloud | 0 | 568,737,137 | 100% | ||
theodora.pap | 0 | 1,050,422,671 | 100% | ||
felipe-wolf | 0 | 354,022,465 | 100% | ||
zilmyde | 0 | 423,651,126 | 100% | ||
ismuhar300693 | 0 | 702,216,227 | 100% | ||
lukakorba | 0 | 528,113,026 | 100% | ||
rufi | 0 | 412,044,207 | 100% |
@dan Thanks for share
author | a-angel |
---|---|
permlink | re-dan-eos-developer-s-log-starday-201707-3-20170707t171213543z |
category | eos |
json_metadata | {"tags":["eos"],"users":["dan"],"app":"steemit/0.1"} |
created | 2017-07-07 17:12:45 |
last_update | 2017-07-07 17:12:45 |
depth | 1 |
children | 0 |
last_payout | 2017-07-14 17:12:45 |
cashout_time | 1969-12-31 23:59:59 |
total_payout_value | 0.000 HBD |
curator_payout_value | 0.000 HBD |
pending_payout_value | 0.000 HBD |
promoted | 0.000 HBD |
body_length | 22 |
author_reputation | 259,167,857,111 |
root_title | "EOS - Developer’s Log Stardate 201707.3" |
beneficiaries | [] |
max_accepted_payout | 1,000,000.000 HBD |
percent_hbd | 10,000 |
post_id | 7,665,840 |
net_rshares | 0 |
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
author | abubakrbhatti |
---|---|
permlink | re-dan-eos-developer-s-log-starday-201707-3-20170704t211633105z |
category | eos |
json_metadata | {"tags":["eos"],"users":["abubakrbhatti"],"app":"steemit/0.1"} |
created | 2017-07-04 21:16:33 |
last_update | 2017-07-04 21:16:33 |
depth | 1 |
children | 0 |
last_payout | 2017-07-11 21:16:33 |
cashout_time | 1969-12-31 23:59:59 |
total_payout_value | 0.000 HBD |
curator_payout_value | 0.000 HBD |
pending_payout_value | 0.000 HBD |
promoted | 0.000 HBD |
body_length | 137 |
author_reputation | 93,405,046,459 |
root_title | "EOS - Developer’s Log Stardate 201707.3" |
beneficiaries | [] |
max_accepted_payout | 1,000,000.000 HBD |
percent_hbd | 10,000 |
post_id | 7,324,091 |
net_rshares | 0 |
Nice post
author | ace73 |
---|---|
permlink | re-dan-eos-developer-s-log-starday-201707-3-20170704t041607962z |
category | eos |
json_metadata | {"tags":["eos"],"app":"steemit/0.1"} |
created | 2017-07-04 04:16:12 |
last_update | 2017-07-04 04:16:12 |
depth | 1 |
children | 0 |
last_payout | 2017-07-11 04:16:12 |
cashout_time | 1969-12-31 23:59:59 |
total_payout_value | 0.000 HBD |
curator_payout_value | 0.000 HBD |
pending_payout_value | 0.000 HBD |
promoted | 0.000 HBD |
body_length | 9 |
author_reputation | 1,440,061,532 |
root_title | "EOS - Developer’s Log Stardate 201707.3" |
beneficiaries | [] |
max_accepted_payout | 1,000,000.000 HBD |
percent_hbd | 10,000 |
post_id | 7,228,653 |
net_rshares | 0 |
I subscribed because I am very interested in all news about EOS
author | adamj8 |
---|---|
permlink | re-dan-eos-developer-s-log-starday-201707-3-20170705t233635032z |
category | eos |
json_metadata | {"tags":["eos"],"app":"steemit/0.1"} |
created | 2017-07-05 23:36:36 |
last_update | 2017-07-05 23:36:36 |
depth | 1 |
children | 0 |
last_payout | 2017-07-12 23:36:36 |
cashout_time | 1969-12-31 23:59:59 |
total_payout_value | 0.000 HBD |
curator_payout_value | 0.000 HBD |
pending_payout_value | 0.000 HBD |
promoted | 0.000 HBD |
body_length | 63 |
author_reputation | 45,522,256,897 |
root_title | "EOS - Developer’s Log Stardate 201707.3" |
beneficiaries | [] |
max_accepted_payout | 1,000,000.000 HBD |
percent_hbd | 10,000 |
post_id | 7,454,347 |
net_rshares | 0 |
Good coder. i like it!
author | adamzy |
---|---|
permlink | re-dan-eos-developer-s-log-starday-201707-3-20170703t215618701z |
category | eos |
json_metadata | {"tags":["eos"],"app":"steemit/0.1"} |
created | 2017-07-03 21:57:03 |
last_update | 2017-07-03 21:57:03 |
depth | 1 |
children | 0 |
last_payout | 2017-07-10 21:57:03 |
cashout_time | 1969-12-31 23:59:59 |
total_payout_value | 0.000 HBD |
curator_payout_value | 0.000 HBD |
pending_payout_value | 0.000 HBD |
promoted | 0.000 HBD |
body_length | 22 |
author_reputation | 1,505,936,337 |
root_title | "EOS - Developer’s Log Stardate 201707.3" |
beneficiaries | [] |
max_accepted_payout | 1,000,000.000 HBD |
percent_hbd | 10,000 |
post_id | 7,198,567 |
net_rshares | 0 |
Great post, this article was really helpful :)
author | aesthetips |
---|---|
permlink | re-dan-eos-developer-s-log-starday-201707-3-20170704t035530376z |
category | eos |
json_metadata | {"tags":["eos"],"app":"steemit/0.1"} |
created | 2017-07-04 03:55:33 |
last_update | 2017-07-04 03:55:33 |
depth | 1 |
children | 0 |
last_payout | 2017-07-11 03:55:33 |
cashout_time | 1969-12-31 23:59:59 |
total_payout_value | 0.000 HBD |
curator_payout_value | 0.000 HBD |
pending_payout_value | 0.000 HBD |
promoted | 0.000 HBD |
body_length | 46 |
author_reputation | 450,257,053 |
root_title | "EOS - Developer’s Log Stardate 201707.3" |
beneficiaries | [] |
max_accepted_payout | 1,000,000.000 HBD |
percent_hbd | 10,000 |
post_id | 7,227,148 |
net_rshares | 0 |
Thank you Dan for the update
author | agbaregha |
---|---|
permlink | re-dan-eos-developer-s-log-starday-201707-3-20170704t235333105z |
category | eos |
json_metadata | {"tags":["eos"],"app":"steemit/0.1"} |
created | 2017-07-04 23:53:33 |
last_update | 2017-07-04 23:53:33 |
depth | 1 |
children | 0 |
last_payout | 2017-07-11 23:53:33 |
cashout_time | 1969-12-31 23:59:59 |
total_payout_value | 0.000 HBD |
curator_payout_value | 0.000 HBD |
pending_payout_value | 0.000 HBD |
promoted | 0.000 HBD |
body_length | 29 |
author_reputation | -2,303,639,052,731 |
root_title | "EOS - Developer’s Log Stardate 201707.3" |
beneficiaries | [] |
max_accepted_payout | 1,000,000.000 HBD |
percent_hbd | 10,000 |
post_id | 7,336,534 |
net_rshares | 1,942,382,691 |
author_curate_reward | "" |
voter | weight | wgt% | rshares | pct | time |
---|---|---|---|---|---|
agbaregha | 0 | 1,942,382,691 | 100% |
nice post you got and thanks for the update
author | agbaregha |
---|---|
permlink | re-dan-eos-developer-s-log-starday-201707-3-20170705t131817188z |
category | eos |
json_metadata | {"tags":["eos"],"app":"steemit/0.1"} |
created | 2017-07-05 13:18:15 |
last_update | 2017-07-05 13:18:15 |
depth | 1 |
children | 0 |
last_payout | 2017-07-12 13:18:15 |
cashout_time | 1969-12-31 23:59:59 |
total_payout_value | 0.000 HBD |
curator_payout_value | 0.000 HBD |
pending_payout_value | 0.000 HBD |
promoted | 0.000 HBD |
body_length | 43 |
author_reputation | -2,303,639,052,731 |
root_title | "EOS - Developer’s Log Stardate 201707.3" |
beneficiaries | [] |
max_accepted_payout | 1,000,000.000 HBD |
percent_hbd | 10,000 |
post_id | 7,395,982 |
net_rshares | 1,942,417,647 |
author_curate_reward | "" |
voter | weight | wgt% | rshares | pct | time |
---|---|---|---|---|---|
agbaregha | 0 | 1,942,417,647 | 100% |
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?
author | agbaregha |
---|---|
permlink | re-dan-eos-developer-s-log-starday-201707-3-20170707t003810200z |
category | eos |
json_metadata | {"tags":["eos"],"app":"steemit/0.1"} |
created | 2017-07-07 00:38:09 |
last_update | 2017-07-07 00:38:09 |
depth | 1 |
children | 0 |
last_payout | 2017-07-14 00:38:09 |
cashout_time | 1969-12-31 23:59:59 |
total_payout_value | 0.000 HBD |
curator_payout_value | 0.000 HBD |
pending_payout_value | 0.000 HBD |
promoted | 0.000 HBD |
body_length | 132 |
author_reputation | -2,303,639,052,731 |
root_title | "EOS - Developer’s Log Stardate 201707.3" |
beneficiaries | [] |
max_accepted_payout | 1,000,000.000 HBD |
percent_hbd | 10,000 |
post_id | 7,584,763 |
net_rshares | 0 |
author_curate_reward | "" |
voter | weight | wgt% | rshares | pct | time |
---|---|---|---|---|---|
kingsleysky | 0 | 0 | 0% |
I love to do programming like that thank you :)
author | aitssam |
---|---|
permlink | re-dan-eos-developer-s-log-starday-201707-3-20170704t043003526z |
category | eos |
json_metadata | {"tags":["eos"],"app":"steemit/0.1"} |
created | 2017-07-04 04:30:00 |
last_update | 2017-07-04 04:30:00 |
depth | 1 |
children | 0 |
last_payout | 2017-07-11 04:30:00 |
cashout_time | 1969-12-31 23:59:59 |
total_payout_value | 0.000 HBD |
curator_payout_value | 0.000 HBD |
pending_payout_value | 0.000 HBD |
promoted | 0.000 HBD |
body_length | 48 |
author_reputation | 99,084,385,293 |
root_title | "EOS - Developer’s Log Stardate 201707.3" |
beneficiaries | [] |
max_accepted_payout | 1,000,000.000 HBD |
percent_hbd | 10,000 |
post_id | 7,229,498 |
net_rshares | 0 |
Excellent job !! I will look for algorithms that make Parallelism becomes easier when sharing data.
author | ajayv |
---|---|
permlink | re-dan-eos-developer-s-log-starday-201707-3-20170704t110520192z |
category | eos |
json_metadata | {"tags":["eos"],"app":"steemit/0.1"} |
created | 2017-07-04 11:05:12 |
last_update | 2017-07-04 11:05:12 |
depth | 1 |
children | 0 |
last_payout | 2017-07-11 11:05:12 |
cashout_time | 1969-12-31 23:59:59 |
total_payout_value | 0.000 HBD |
curator_payout_value | 0.000 HBD |
pending_payout_value | 0.000 HBD |
promoted | 0.000 HBD |
body_length | 99 |
author_reputation | 0 |
root_title | "EOS - Developer’s Log Stardate 201707.3" |
beneficiaries | [] |
max_accepted_payout | 1,000,000.000 HBD |
percent_hbd | 10,000 |
post_id | 7,261,831 |
net_rshares | 0 |
Thank you so much for the updates ! Thank you so much for your effort !! https://steemitimages.com/DQmS6dNwmeFN2TyJCd3viNXVBfWMxxRvMtoPeUBoPtrJ3tm/IMG_20170617_144542.jpg
author | akkha |
---|---|
permlink | re-dan-eos-developer-s-log-starday-201707-3-20170704t170657285z |
category | eos |
json_metadata | {"tags":["eos"],"image":["https://steemitimages.com/DQmS6dNwmeFN2TyJCd3viNXVBfWMxxRvMtoPeUBoPtrJ3tm/IMG_20170617_144542.jpg"],"app":"steemit/0.1"} |
created | 2017-07-04 17:06:57 |
last_update | 2017-07-04 17:06:57 |
depth | 1 |
children | 0 |
last_payout | 2017-07-11 17:06:57 |
cashout_time | 1969-12-31 23:59:59 |
total_payout_value | 0.000 HBD |
curator_payout_value | 0.000 HBD |
pending_payout_value | 0.000 HBD |
promoted | 0.000 HBD |
body_length | 170 |
author_reputation | 6,662,251,112,812 |
root_title | "EOS - Developer’s Log Stardate 201707.3" |
beneficiaries | [] |
max_accepted_payout | 1,000,000.000 HBD |
percent_hbd | 10,000 |
post_id | 7,300,073 |
net_rshares | 0 |
Please vote me
author | akmalboo | ||||||
---|---|---|---|---|---|---|---|
permlink | re-dan-201775t32229213z | ||||||
category | eos | ||||||
json_metadata | {"tags":"eos","app":"esteem/1.4.6","format":"markdown+html","community":"esteem"} | ||||||
created | 2017-07-04 20:22:33 | ||||||
last_update | 2017-07-04 20:22:33 | ||||||
depth | 1 | ||||||
children | 0 | ||||||
last_payout | 2017-07-11 20:22:33 | ||||||
cashout_time | 1969-12-31 23:59:59 | ||||||
total_payout_value | 0.000 HBD | ||||||
curator_payout_value | 0.000 HBD | ||||||
pending_payout_value | 0.000 HBD | ||||||
promoted | 0.000 HBD | ||||||
body_length | 14 | ||||||
author_reputation | -2,432,681,636,871 | ||||||
root_title | "EOS - Developer’s Log Stardate 201707.3" | ||||||
beneficiaries |
| ||||||
max_accepted_payout | 1,000,000.000 HBD | ||||||
percent_hbd | 10,000 | ||||||
post_id | 7,319,261 | ||||||
net_rshares | -156,682,059,173,152 | ||||||
author_curate_reward | "" |
voter | weight | wgt% | rshares | pct | time |
---|---|---|---|---|---|
dan | 0 | -156,682,007,077,218 | -100% | ||
blacklist-a | 0 | -52,095,934 | -10% |
Hate Coding :-( my mind stuck in coding ... @akraees
author | akraees |
---|---|
permlink | re-dan-eos-developer-s-log-starday-201707-3-20170705t091302919z |
category | eos |
json_metadata | {"tags":["eos"],"users":["akraees"],"app":"steemit/0.1"} |
created | 2017-07-05 09:13:06 |
last_update | 2017-07-05 09:13:06 |
depth | 1 |
children | 0 |
last_payout | 2017-07-12 09:13:06 |
cashout_time | 1969-12-31 23:59:59 |
total_payout_value | 0.000 HBD |
curator_payout_value | 0.000 HBD |
pending_payout_value | 0.000 HBD |
promoted | 0.000 HBD |
body_length | 52 |
author_reputation | 13,734,486,252 |
root_title | "EOS - Developer’s Log Stardate 201707.3" |
beneficiaries | [] |
max_accepted_payout | 1,000,000.000 HBD |
percent_hbd | 10,000 |
post_id | 7,375,262 |
net_rshares | 139,282,186 |
author_curate_reward | "" |
voter | weight | wgt% | rshares | pct | time |
---|---|---|---|---|---|
akraees | 0 | 139,282,186 | 100% |
 *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.*  ***"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***
author | akun2017 | ||||||
---|---|---|---|---|---|---|---|
permlink | re-dan-201776t1053283z | ||||||
category | eos | ||||||
json_metadata | {"tags":"eos","app":"esteem/1.4.6","format":"markdown+html","community":"esteem"} | ||||||
created | 2017-07-05 18:00:54 | ||||||
last_update | 2017-07-05 18:00:54 | ||||||
depth | 1 | ||||||
children | 0 | ||||||
last_payout | 2017-07-12 18:00:54 | ||||||
cashout_time | 1969-12-31 23:59:59 | ||||||
total_payout_value | 0.020 HBD | ||||||
curator_payout_value | 0.006 HBD | ||||||
pending_payout_value | 0.000 HBD | ||||||
promoted | 0.000 HBD | ||||||
body_length | 1,671 | ||||||
author_reputation | 150,654,054,341 | ||||||
root_title | "EOS - Developer’s Log Stardate 201707.3" | ||||||
beneficiaries |
| ||||||
max_accepted_payout | 1,000,000.000 HBD | ||||||
percent_hbd | 10,000 | ||||||
post_id | 7,425,646 | ||||||
net_rshares | 5,488,224,362 | ||||||
author_curate_reward | "" |
voter | weight | wgt% | rshares | pct | time |
---|---|---|---|---|---|
lucidletters | 0 | 5,488,224,362 | 100% |
author | amirjp |
---|---|
permlink | re-dan-eos-developer-s-log-starday-201707-3-20170703t224043488z |
category | eos |
json_metadata | {"tags":["eos"],"app":"steemit/0.1"} |
created | 2017-07-03 22:40:42 |
last_update | 2017-07-03 22:40:42 |
depth | 1 |
children | 0 |
last_payout | 2017-07-10 22:40:42 |
cashout_time | 1969-12-31 23:59:59 |
total_payout_value | 0.000 HBD |
curator_payout_value | 0.000 HBD |
pending_payout_value | 0.000 HBD |
promoted | 0.000 HBD |
body_length | 34 |
author_reputation | 1,877,504,477 |
root_title | "EOS - Developer’s Log Stardate 201707.3" |
beneficiaries | [] |
max_accepted_payout | 1,000,000.000 HBD |
percent_hbd | 10,000 |
post_id | 7,202,690 |
net_rshares | 1,011,752,307 |
author_curate_reward | "" |
voter | weight | wgt% | rshares | pct | time |
---|---|---|---|---|---|
itan05 | 0 | 506,854,115 | 100% | ||
amirjp | 0 | 504,898,192 | 100% |
follow me honey....
author | amykyla |
---|---|
permlink | re-dan-eos-developer-s-log-starday-201707-3-20170704t055858540z |
category | eos |
json_metadata | {"tags":["eos"],"app":"steemit/0.1"} |
created | 2017-07-04 05:58:42 |
last_update | 2017-07-04 05:58:42 |
depth | 1 |
children | 0 |
last_payout | 2017-07-11 05:58:42 |
cashout_time | 1969-12-31 23:59:59 |
total_payout_value | 0.000 HBD |
curator_payout_value | 0.000 HBD |
pending_payout_value | 0.000 HBD |
promoted | 0.000 HBD |
body_length | 19 |
author_reputation | 11,153,181,755 |
root_title | "EOS - Developer’s Log Stardate 201707.3" |
beneficiaries | [] |
max_accepted_payout | 1,000,000.000 HBD |
percent_hbd | 10,000 |
post_id | 7,236,122 |
net_rshares | -1,721,832,393,485 |
author_curate_reward | "" |
voter | weight | wgt% | rshares | pct | time |
---|---|---|---|---|---|
dan | 0 | -1,721,780,297,551 | -1% | ||
blacklist-a | 0 | -52,095,934 | -10% |
This makes my head hurt. CS is an amazing field. Keep up the great work, @dan!
author | ancapwarren |
---|---|
permlink | re-dan-eos-developer-s-log-starday-201707-3-20170704t000337005z |
category | eos |
json_metadata | {"tags":["eos"],"users":["dan"],"app":"steemit/0.1"} |
created | 2017-07-04 00:03:39 |
last_update | 2017-07-04 00:03:39 |
depth | 1 |
children | 0 |
last_payout | 2017-07-11 00:03:39 |
cashout_time | 1969-12-31 23:59:59 |
total_payout_value | 0.000 HBD |
curator_payout_value | 0.000 HBD |
pending_payout_value | 0.000 HBD |
promoted | 0.000 HBD |
body_length | 78 |
author_reputation | 1,366,152,332,356 |
root_title | "EOS - Developer’s Log Stardate 201707.3" |
beneficiaries | [] |
max_accepted_payout | 1,000,000.000 HBD |
percent_hbd | 10,000 |
post_id | 7,209,279 |
net_rshares | 529,892,939 |
author_curate_reward | "" |
voter | weight | wgt% | rshares | pct | time |
---|---|---|---|---|---|
itan05 | 0 | 529,892,939 | 100% |
Great post, thank you
author | annex |
---|---|
permlink | re-dan-eos-developer-s-log-starday-201707-3-20170706t215237863z |
category | eos |
json_metadata | {"tags":["eos"],"app":"steemit/0.1"} |
created | 2017-07-06 21:52:39 |
last_update | 2017-07-06 21:52:39 |
depth | 1 |
children | 0 |
last_payout | 2017-07-13 21:52:39 |
cashout_time | 1969-12-31 23:59:59 |
total_payout_value | 0.000 HBD |
curator_payout_value | 0.000 HBD |
pending_payout_value | 0.000 HBD |
promoted | 0.000 HBD |
body_length | 21 |
author_reputation | 155,418,649,587 |
root_title | "EOS - Developer’s Log Stardate 201707.3" |
beneficiaries | [] |
max_accepted_payout | 1,000,000.000 HBD |
percent_hbd | 10,000 |
post_id | 7,571,739 |
net_rshares | 0 |
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
author | arcange |
---|---|
permlink | re-eos-developer-s-log-starday-201707-3-20170703t172754000z |
category | eos |
json_metadata | "" |
created | 2017-07-04 15:27:54 |
last_update | 2017-07-04 15:27:54 |
depth | 1 |
children | 0 |
last_payout | 2017-07-11 15:27:54 |
cashout_time | 1969-12-31 23:59:59 |
total_payout_value | 0.000 HBD |
curator_payout_value | 0.000 HBD |
pending_payout_value | 0.000 HBD |
promoted | 0.000 HBD |
body_length | 243 |
author_reputation | 1,146,606,926,313,931 |
root_title | "EOS - Developer’s Log Stardate 201707.3" |
beneficiaries | [] |
max_accepted_payout | 1,000,000.000 HBD |
percent_hbd | 10,000 |
post_id | 7,289,946 |
net_rshares | 0 |
<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>
author | arneljayestimada |
---|---|
permlink | re-dan-eos-developer-s-log-starday-201707-3-20170706t091010184z |
category | eos |
json_metadata | {"tags":["eos"],"image":["https://steemitimages.com/DQmXGjNNZGhZiMPXJt3nwwjuxE9ecFL8KGSTYBhMo7sHonJ/followerbannermini.jpg"],"links":["https://steemit.com/@arneljayestimada"],"app":"steemit/0.1"} |
created | 2017-07-06 09:12:15 |
last_update | 2017-07-06 09:12:15 |
depth | 1 |
children | 0 |
last_payout | 2017-07-13 09:12:15 |
cashout_time | 1969-12-31 23:59:59 |
total_payout_value | 0.000 HBD |
curator_payout_value | 0.000 HBD |
pending_payout_value | 0.000 HBD |
promoted | 0.000 HBD |
body_length | 567 |
author_reputation | 66,356,726,549 |
root_title | "EOS - Developer’s Log Stardate 201707.3" |
beneficiaries | [] |
max_accepted_payout | 1,000,000.000 HBD |
percent_hbd | 10,000 |
post_id | 7,497,509 |
net_rshares | 0 |
Much coding will produce much pine sol, Dan unit. Much pin sol. Heterogenous computing is agreeable. 
author | automatedjanitor |
---|---|
permlink | re-dan-eos-developer-s-log-starday-201707-3-20170704t000059881z |
category | eos |
json_metadata | {"tags":["eos"],"app":"steemit/0.1","image":["https://steemitimages.com/DQmY2L28mQVofZJt1wmfZnkVP6VAW1Vv3rEr3wzWf9PhhLE/may-the-source-be-with-you.jpg"]} |
created | 2017-07-04 00:01:00 |
last_update | 2017-07-04 00:03:09 |
depth | 1 |
children | 1 |
last_payout | 2017-07-11 00:01:00 |
cashout_time | 1969-12-31 23:59:59 |
total_payout_value | 0.842 HBD |
curator_payout_value | 0.277 HBD |
pending_payout_value | 0.000 HBD |
promoted | 0.000 HBD |
body_length | 244 |
author_reputation | 25,295,943,921 |
root_title | "EOS - Developer’s Log Stardate 201707.3" |
beneficiaries | [] |
max_accepted_payout | 1,000,000.000 HBD |
percent_hbd | 10,000 |
post_id | 7,209,087 |
net_rshares | 169,468,333,986 |
author_curate_reward | "" |
voter | weight | wgt% | rshares | pct | time |
---|---|---|---|---|---|
jamesc1 | 0 | 168,690,658,919 | 1% | ||
lku | 0 | 110,281,039 | 17.48% | ||
automatedjanitor | 0 | 667,394,028 | 100% |
Much gratitude for free pinesol upvote from @jamesc1. Much pine sol to you!
author | automatedjanitor |
---|---|
permlink | re-automatedjanitor-re-dan-eos-developer-s-log-starday-201707-3-20170705t024634855z |
category | eos |
json_metadata | {"tags":["eos"],"users":["jamesc1"],"app":"steemit/0.1"} |
created | 2017-07-05 02:46:36 |
last_update | 2017-07-05 02:46:36 |
depth | 2 |
children | 0 |
last_payout | 2017-07-12 02:46:36 |
cashout_time | 1969-12-31 23:59:59 |
total_payout_value | 0.000 HBD |
curator_payout_value | 0.000 HBD |
pending_payout_value | 0.000 HBD |
promoted | 0.000 HBD |
body_length | 75 |
author_reputation | 25,295,943,921 |
root_title | "EOS - Developer’s Log Stardate 201707.3" |
beneficiaries | [] |
max_accepted_payout | 1,000,000.000 HBD |
percent_hbd | 10,000 |
post_id | 7,348,124 |
net_rshares | 0 |
author_curate_reward | "" |
voter | weight | wgt% | rshares | pct | time |
---|---|---|---|---|---|
automatedjanitor | 0 | 0 | 100% |
@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.
author | babatundehabeeb |
---|---|
permlink | re-dan-eos-developer-s-log-starday-201707-3-20170703t224925109z |
category | eos |
json_metadata | {"tags":["eos"],"users":["dan"],"app":"steemit/0.1"} |
created | 2017-07-03 22:49:33 |
last_update | 2017-07-03 22:49:33 |
depth | 1 |
children | 0 |
last_payout | 2017-07-10 22:49:33 |
cashout_time | 1969-12-31 23:59:59 |
total_payout_value | 0.000 HBD |
curator_payout_value | 0.000 HBD |
pending_payout_value | 0.000 HBD |
promoted | 0.000 HBD |
body_length | 404 |
author_reputation | -16,926,232,445 |
root_title | "EOS - Developer’s Log Stardate 201707.3" |
beneficiaries | [] |
max_accepted_payout | 1,000,000.000 HBD |
percent_hbd | 10,000 |
post_id | 7,203,454 |
net_rshares | 0 |
It's great to read about the progress being made in parallel execution.
author | bbrewer |
---|---|
permlink | re-dan-eos-developer-s-log-starday-201707-3-20170704t041402036z |
category | eos |
json_metadata | {"tags":["eos"],"app":"steemit/0.1"} |
created | 2017-07-04 04:14:06 |
last_update | 2017-07-04 04:14:06 |
depth | 1 |
children | 0 |
last_payout | 2017-07-11 04:14:06 |
cashout_time | 1969-12-31 23:59:59 |
total_payout_value | 0.312 HBD |
curator_payout_value | 0.000 HBD |
pending_payout_value | 0.000 HBD |
promoted | 0.000 HBD |
body_length | 71 |
author_reputation | 7,852,511,958,185 |
root_title | "EOS - Developer’s Log Stardate 201707.3" |
beneficiaries | [] |
max_accepted_payout | 1,000,000.000 HBD |
percent_hbd | 10,000 |
post_id | 7,228,508 |
net_rshares | 47,847,025,416 |
author_curate_reward | "" |
voter | weight | wgt% | rshares | pct | time |
---|---|---|---|---|---|
bbrewer | 0 | 47,847,025,416 | 100% |
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
author | belidged |
---|---|
permlink | re-dan-eos-developer-s-log-starday-201707-3-20170704t040053746z |
category | eos |
json_metadata | {"tags":["eos"],"links":["http://poseidon.it.usyd.edu.au/~concurrentsystems/doc/ConsensusRedBellyBlockchain.pdf"],"app":"steemit/0.1"} |
created | 2017-07-04 04:00:54 |
last_update | 2017-07-04 04:02:42 |
depth | 1 |
children | 0 |
last_payout | 2017-07-11 04:00:54 |
cashout_time | 1969-12-31 23:59:59 |
total_payout_value | 0.654 HBD |
curator_payout_value | 0.173 HBD |
pending_payout_value | 0.000 HBD |
promoted | 0.000 HBD |
body_length | 238 |
author_reputation | 107,019,740,819 |
root_title | "EOS - Developer’s Log Stardate 201707.3" |
beneficiaries | [] |
max_accepted_payout | 1,000,000.000 HBD |
percent_hbd | 10,000 |
post_id | 7,227,567 |
net_rshares | 126,583,083,031 |
author_curate_reward | "" |
voter | weight | wgt% | rshares | pct | time |
---|---|---|---|---|---|
innuendo | 0 | 119,304,821,712 | 8% | ||
belidged | 0 | 3,335,586,254 | 100% | ||
natsuki-sugimoto | 0 | 3,025,716,218 | 100% | ||
jeremylarter | 0 | 916,958,847 | 100% |
@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
author | benberxo |
---|---|
permlink | re-dan-eos-developer-s-log-starday-201707-3-20170705t151327284z |
category | eos |
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"} |
created | 2017-07-05 15:13:30 |
last_update | 2017-07-05 15:13:30 |
depth | 1 |
children | 0 |
last_payout | 2017-07-12 15:13:30 |
cashout_time | 1969-12-31 23:59:59 |
total_payout_value | 0.000 HBD |
curator_payout_value | 0.000 HBD |
pending_payout_value | 0.000 HBD |
promoted | 0.000 HBD |
body_length | 268 |
author_reputation | 348,775,832 |
root_title | "EOS - Developer’s Log Stardate 201707.3" |
beneficiaries | [] |
max_accepted_payout | 1,000,000.000 HBD |
percent_hbd | 10,000 |
post_id | 7,408,309 |
net_rshares | 0 |
Nice post@dan
author | berdian | ||||||
---|---|---|---|---|---|---|---|
permlink | re-dan-201774t235745553z | ||||||
category | eos | ||||||
json_metadata | {"tags":"eos","app":"esteem/1.4.6","format":"markdown+html","community":"esteem"} | ||||||
created | 2017-07-04 16:57:51 | ||||||
last_update | 2017-07-04 16:57:51 | ||||||
depth | 1 | ||||||
children | 0 | ||||||
last_payout | 2017-07-11 16:57:51 | ||||||
cashout_time | 1969-12-31 23:59:59 | ||||||
total_payout_value | 0.000 HBD | ||||||
curator_payout_value | 0.000 HBD | ||||||
pending_payout_value | 0.000 HBD | ||||||
promoted | 0.000 HBD | ||||||
body_length | 13 | ||||||
author_reputation | 1,203,650,996,328 | ||||||
root_title | "EOS - Developer’s Log Stardate 201707.3" | ||||||
beneficiaries |
| ||||||
max_accepted_payout | 1,000,000.000 HBD | ||||||
percent_hbd | 10,000 | ||||||
post_id | 7,299,193 | ||||||
net_rshares | 0 |
Nice.. this is so good. Please keep us posted on this..
author | biancx |
---|---|
permlink | re-dan-eos-developer-s-log-starday-201707-3-20170704t063514134z |
category | eos |
json_metadata | {"tags":["eos"],"app":"steemit/0.1"} |
created | 2017-07-04 06:35:09 |
last_update | 2017-07-04 06:35:09 |
depth | 1 |
children | 0 |
last_payout | 2017-07-11 06:35:09 |
cashout_time | 1969-12-31 23:59:59 |
total_payout_value | 0.000 HBD |
curator_payout_value | 0.000 HBD |
pending_payout_value | 0.000 HBD |
promoted | 0.000 HBD |
body_length | 55 |
author_reputation | 0 |
root_title | "EOS - Developer’s Log Stardate 201707.3" |
beneficiaries | [] |
max_accepted_payout | 1,000,000.000 HBD |
percent_hbd | 10,000 |
post_id | 7,238,749 |
net_rshares | 0 |
By the way do you know how to program using VB?
author | biancx |
---|---|
permlink | re-dan-eos-developer-s-log-starday-201707-3-20170704t063556387z |
category | eos |
json_metadata | {"tags":["eos"],"app":"steemit/0.1"} |
created | 2017-07-04 06:35:54 |
last_update | 2017-07-04 06:35:54 |
depth | 1 |
children | 0 |
last_payout | 2017-07-11 06:35:54 |
cashout_time | 1969-12-31 23:59:59 |
total_payout_value | 0.000 HBD |
curator_payout_value | 0.000 HBD |
pending_payout_value | 0.000 HBD |
promoted | 0.000 HBD |
body_length | 47 |
author_reputation | 0 |
root_title | "EOS - Developer’s Log Stardate 201707.3" |
beneficiaries | [] |
max_accepted_payout | 1,000,000.000 HBD |
percent_hbd | 10,000 |
post_id | 7,238,799 |
net_rshares | 0 |
Please follow me @ biancx
author | biancx |
---|---|
permlink | re-dan-eos-developer-s-log-starday-201707-3-20170704t063643484z |
category | eos |
json_metadata | {"tags":["eos"],"app":"steemit/0.1"} |
created | 2017-07-04 06:36:39 |
last_update | 2017-07-04 06:36:39 |
depth | 1 |
children | 0 |
last_payout | 2017-07-11 06:36:39 |
cashout_time | 1969-12-31 23:59:59 |
total_payout_value | 0.000 HBD |
curator_payout_value | 0.000 HBD |
pending_payout_value | 0.000 HBD |
promoted | 0.000 HBD |
body_length | 25 |
author_reputation | 0 |
root_title | "EOS - Developer’s Log Stardate 201707.3" |
beneficiaries | [] |
max_accepted_payout | 1,000,000.000 HBD |
percent_hbd | 10,000 |
post_id | 7,238,869 |
net_rshares | 0 |
Yeah that is it
author | billionchuks |
---|---|
permlink | re-dan-eos-developer-s-log-starday-201707-3-20170704t101606817z |
category | eos |
json_metadata | {"tags":["eos"],"app":"steemit/0.1"} |
created | 2017-07-04 10:16:21 |
last_update | 2017-07-04 10:16:21 |
depth | 1 |
children | 0 |
last_payout | 2017-07-11 10:16:21 |
cashout_time | 1969-12-31 23:59:59 |
total_payout_value | 0.000 HBD |
curator_payout_value | 0.000 HBD |
pending_payout_value | 0.000 HBD |
promoted | 0.000 HBD |
body_length | 15 |
author_reputation | 0 |
root_title | "EOS - Developer’s Log Stardate 201707.3" |
beneficiaries | [] |
max_accepted_payout | 1,000,000.000 HBD |
percent_hbd | 10,000 |
post_id | 7,257,379 |
net_rshares | 0 |
Nice info. Thanks :)
author | billroth |
---|---|
permlink | re-dan-eos-developer-s-log-starday-201707-3-20170705t233519086z |
category | eos |
json_metadata | {"tags":["eos"],"app":"steemit/0.1"} |
created | 2017-07-05 23:35:21 |
last_update | 2017-07-05 23:35:21 |
depth | 1 |
children | 0 |
last_payout | 2017-07-12 23:35:21 |
cashout_time | 1969-12-31 23:59:59 |
total_payout_value | 0.637 HBD |
curator_payout_value | 0.211 HBD |
pending_payout_value | 0.000 HBD |
promoted | 0.000 HBD |
body_length | 20 |
author_reputation | 434,640,168,970 |
root_title | "EOS - Developer’s Log Stardate 201707.3" |
beneficiaries | [] |
max_accepted_payout | 1,000,000.000 HBD |
percent_hbd | 10,000 |
post_id | 7,454,245 |
net_rshares | 170,765,682,496 |
author_curate_reward | "" |
voter | weight | wgt% | rshares | pct | time |
---|---|---|---|---|---|
billroth | 0 | 170,765,682,496 | 100% |
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
author | birdistheword |
---|---|
permlink | re-dan-eos-developer-s-log-starday-201707-3-20170703t215102012z |
category | eos |
json_metadata | {"tags":["eos"],"app":"steemit/0.1"} |
created | 2017-07-03 21:51:03 |
last_update | 2017-07-03 21:51:03 |
depth | 1 |
children | 8 |
last_payout | 2017-07-10 21:51:03 |
cashout_time | 1969-12-31 23:59:59 |
total_payout_value | 0.214 HBD |
curator_payout_value | 0.064 HBD |
pending_payout_value | 0.000 HBD |
promoted | 0.000 HBD |
body_length | 221 |
author_reputation | 2,932,776,635,885 |
root_title | "EOS - Developer’s Log Stardate 201707.3" |
beneficiaries | [] |
max_accepted_payout | 1,000,000.000 HBD |
percent_hbd | 10,000 |
post_id | 7,197,971 |
net_rshares | 42,010,029,612 |
author_curate_reward | "" |
voter | weight | wgt% | rshares | pct | time |
---|---|---|---|---|---|
ikegass33 | 0 | 38,374,226,772 | 53% | ||
whoschrishughes | 0 | 1,192,150,913 | 100% | ||
eskilxan | 0 | 267,361,772 | 100% | ||
hadidi | 0 | 1,056,228,983 | 100% | ||
jknsmiles | 0 | 1,120,061,172 | 100% |
Hi man, I think you need to have studied computer science to make much sense of it to be honest ! ;)
author | andybets |
---|---|
permlink | re-birdistheword-re-dan-eos-developer-s-log-starday-201707-3-20170704t064201471z |
category | eos |
json_metadata | {"tags":["eos"],"app":"steemit/0.1"} |
created | 2017-07-04 06:42:00 |
last_update | 2017-07-04 06:42:00 |
depth | 2 |
children | 1 |
last_payout | 2017-07-11 06:42:00 |
cashout_time | 1969-12-31 23:59:59 |
total_payout_value | 0.000 HBD |
curator_payout_value | 0.000 HBD |
pending_payout_value | 0.000 HBD |
promoted | 0.000 HBD |
body_length | 100 |
author_reputation | 15,189,090,569,005 |
root_title | "EOS - Developer’s Log Stardate 201707.3" |
beneficiaries | [] |
max_accepted_payout | 1,000,000.000 HBD |
percent_hbd | 10,000 |
post_id | 7,239,304 |
net_rshares | 0 |
Ha hey man. Yeah I think zero knowledge at all is a slight obstacle. Worth a try though
author | birdistheword |
---|---|
permlink | re-andybets-re-birdistheword-re-dan-eos-developer-s-log-starday-201707-3-20170704t064536367z |
category | eos |
json_metadata | {"tags":["eos"],"app":"steemit/0.1"} |
created | 2017-07-04 06:45:39 |
last_update | 2017-07-04 06:45:39 |
depth | 3 |
children | 0 |
last_payout | 2017-07-11 06:45:39 |
cashout_time | 1969-12-31 23:59:59 |
total_payout_value | 0.000 HBD |
curator_payout_value | 0.000 HBD |
pending_payout_value | 0.000 HBD |
promoted | 0.000 HBD |
body_length | 87 |
author_reputation | 2,932,776,635,885 |
root_title | "EOS - Developer’s Log Stardate 201707.3" |
beneficiaries | [] |
max_accepted_payout | 1,000,000.000 HBD |
percent_hbd | 10,000 |
post_id | 7,239,601 |
net_rshares | 0 |
Exactly same thing......
author | hadidi | ||||||
---|---|---|---|---|---|---|---|
permlink | re-birdistheword-201773t235452218z | ||||||
category | eos | ||||||
json_metadata | {"tags":"eos","app":"esteem/1.4.6","format":"markdown+html","community":"esteem"} | ||||||
created | 2017-07-03 22:54:57 | ||||||
last_update | 2017-07-03 22:54:57 | ||||||
depth | 2 | ||||||
children | 0 | ||||||
last_payout | 2017-07-10 22:54:57 | ||||||
cashout_time | 1969-12-31 23:59:59 | ||||||
total_payout_value | 0.000 HBD | ||||||
curator_payout_value | 0.000 HBD | ||||||
pending_payout_value | 0.000 HBD | ||||||
promoted | 0.000 HBD | ||||||
body_length | 24 | ||||||
author_reputation | 4,645,738,602 | ||||||
root_title | "EOS - Developer’s Log Stardate 201707.3" | ||||||
beneficiaries |
| ||||||
max_accepted_payout | 1,000,000.000 HBD | ||||||
percent_hbd | 10,000 | ||||||
post_id | 7,203,879 | ||||||
net_rshares | 0 |
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
author | jamesc1 |
---|---|
permlink | re-birdistheword-re-dan-eos-developer-s-log-starday-201707-3-20170704t132810097z |
category | eos |
json_metadata | {"tags":["eos"],"app":"steemit/0.1"} |
created | 2017-07-04 13:28:09 |
last_update | 2017-07-04 13:28:09 |
depth | 2 |
children | 1 |
last_payout | 2017-07-11 13:28:09 |
cashout_time | 1969-12-31 23:59:59 |
total_payout_value | 0.000 HBD |
curator_payout_value | 0.000 HBD |
pending_payout_value | 0.000 HBD |
promoted | 0.000 HBD |
body_length | 193 |
author_reputation | 939,862,516,890 |
root_title | "EOS - Developer’s Log Stardate 201707.3" |
beneficiaries | [] |
max_accepted_payout | 1,000,000.000 HBD |
percent_hbd | 10,000 |
post_id | 7,275,908 |
net_rshares | 0 |
Okay I'll try again....
author | birdistheword |
---|---|
permlink | re-jamesc1-re-birdistheword-re-dan-eos-developer-s-log-starday-201707-3-20170704t134023087z |
category | eos |
json_metadata | {"tags":["eos"],"app":"steemit/0.1"} |
created | 2017-07-04 13:40:27 |
last_update | 2017-07-04 13:40:27 |
depth | 3 |
children | 0 |
last_payout | 2017-07-11 13:40:27 |
cashout_time | 1969-12-31 23:59:59 |
total_payout_value | 0.000 HBD |
curator_payout_value | 0.000 HBD |
pending_payout_value | 0.000 HBD |
promoted | 0.000 HBD |
body_length | 23 |
author_reputation | 2,932,776,635,885 |
root_title | "EOS - Developer’s Log Stardate 201707.3" |
beneficiaries | [] |
max_accepted_payout | 1,000,000.000 HBD |
percent_hbd | 10,000 |
post_id | 7,277,402 |
net_rshares | 0 |
Us noobs reading this http://media.boingboing.net/wp-content/uploads/2016/11/bcf.png
author | needmorefat |
---|---|
permlink | re-birdistheword-re-dan-eos-developer-s-log-starday-201707-3-20170704t015659979z |
category | eos |
json_metadata | {"tags":["eos"],"image":["http://media.boingboing.net/wp-content/uploads/2016/11/bcf.png"],"app":"steemit/0.1"} |
created | 2017-07-04 01:57:00 |
last_update | 2017-07-04 01:57:00 |
depth | 2 |
children | 2 |
last_payout | 2017-07-11 01:57:00 |
cashout_time | 1969-12-31 23:59:59 |
total_payout_value | 0.042 HBD |
curator_payout_value | 0.009 HBD |
pending_payout_value | 0.000 HBD |
promoted | 0.000 HBD |
body_length | 85 |
author_reputation | 268,870,057,104 |
root_title | "EOS - Developer’s Log Stardate 201707.3" |
beneficiaries | [] |
max_accepted_payout | 1,000,000.000 HBD |
percent_hbd | 10,000 |
post_id | 7,218,041 |
net_rshares | 8,073,838,212 |
author_curate_reward | "" |
voter | weight | wgt% | rshares | pct | time |
---|---|---|---|---|---|
tomino | 0 | 1,182,351,442 | 1% | ||
lucidletters | 0 | 5,730,797,815 | 100% | ||
lightmatter | 0 | 1,160,688,955 | 100% |
Haha
author | birdistheword |
---|---|
permlink | re-needmorefat-re-birdistheword-re-dan-eos-developer-s-log-starday-201707-3-20170704t064446367z |
category | eos |
json_metadata | {"tags":["eos"],"app":"steemit/0.1"} |
created | 2017-07-04 06:44:51 |
last_update | 2017-07-04 06:44:51 |
depth | 3 |
children | 0 |
last_payout | 2017-07-11 06:44:51 |
cashout_time | 1969-12-31 23:59:59 |
total_payout_value | 0.000 HBD |
curator_payout_value | 0.000 HBD |
pending_payout_value | 0.000 HBD |
promoted | 0.000 HBD |
body_length | 4 |
author_reputation | 2,932,776,635,885 |
root_title | "EOS - Developer’s Log Stardate 201707.3" |
beneficiaries | [] |
max_accepted_payout | 1,000,000.000 HBD |
percent_hbd | 10,000 |
post_id | 7,239,544 |
net_rshares | 0 |
lol
author | lightmatter |
---|---|
permlink | re-needmorefat-re-birdistheword-re-dan-eos-developer-s-log-starday-201707-3-20170704t221548246z |
category | eos |
json_metadata | {"tags":["eos"],"app":"steemit/0.1"} |
created | 2017-07-04 22:15:48 |
last_update | 2017-07-04 22:15:48 |
depth | 3 |
children | 0 |
last_payout | 2017-07-11 22:15:48 |
cashout_time | 1969-12-31 23:59:59 |
total_payout_value | 0.000 HBD |
curator_payout_value | 0.000 HBD |
pending_payout_value | 0.000 HBD |
promoted | 0.000 HBD |
body_length | 3 |
author_reputation | 288,776,905 |
root_title | "EOS - Developer’s Log Stardate 201707.3" |
beneficiaries | [] |
max_accepted_payout | 1,000,000.000 HBD |
percent_hbd | 10,000 |
post_id | 7,329,101 |
net_rshares | 0 |
What knowledge do i require for eos developer ? please suggest Thnaks @bitzoner
author | bitzoner |
---|---|
permlink | re-dan-eos-developer-s-log-starday-201707-3-20170704t044004046z |
category | eos |
json_metadata | {"tags":["eos"],"users":["bitzoner"],"app":"steemit/0.1"} |
created | 2017-07-04 04:40:09 |
last_update | 2017-07-04 04:40:09 |
depth | 1 |
children | 0 |
last_payout | 2017-07-11 04:40:09 |
cashout_time | 1969-12-31 23:59:59 |
total_payout_value | 0.000 HBD |
curator_payout_value | 0.000 HBD |
pending_payout_value | 0.000 HBD |
promoted | 0.000 HBD |
body_length | 81 |
author_reputation | 458,209,487,725 |
root_title | "EOS - Developer’s Log Stardate 201707.3" |
beneficiaries | [] |
max_accepted_payout | 1,000,000.000 HBD |
percent_hbd | 10,000 |
post_id | 7,230,310 |
net_rshares | 0 |
Sounds great! How long do you think until this is successfully implemented??
author | blockchainbros |
---|---|
permlink | re-dan-eos-developer-s-log-starday-201707-3-20170704t165853740z |
category | eos |
json_metadata | {"tags":["eos"],"app":"steemit/0.1"} |
created | 2017-07-04 16:58:54 |
last_update | 2017-07-04 16:58:54 |
depth | 1 |
children | 0 |
last_payout | 2017-07-11 16:58:54 |
cashout_time | 1969-12-31 23:59:59 |
total_payout_value | 0.000 HBD |
curator_payout_value | 0.000 HBD |
pending_payout_value | 0.000 HBD |
promoted | 0.000 HBD |
body_length | 76 |
author_reputation | 190,442,136,344 |
root_title | "EOS - Developer’s Log Stardate 201707.3" |
beneficiaries | [] |
max_accepted_payout | 1,000,000.000 HBD |
percent_hbd | 10,000 |
post_id | 7,299,285 |
net_rshares | 0 |
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..
author | bobeell |
---|---|
permlink | re-dan-eos-developer-s-log-starday-201707-3-20170703t222005107z |
category | eos |
json_metadata | {"tags":["eos"],"app":"steemit/0.1"} |
created | 2017-07-03 22:20:03 |
last_update | 2017-07-03 22:20:03 |
depth | 1 |
children | 0 |
last_payout | 2017-07-10 22:20:03 |
cashout_time | 1969-12-31 23:59:59 |
total_payout_value | 0.000 HBD |
curator_payout_value | 0.000 HBD |
pending_payout_value | 0.000 HBD |
promoted | 0.000 HBD |
body_length | 217 |
author_reputation | 12,402,560,052 |
root_title | "EOS - Developer’s Log Stardate 201707.3" |
beneficiaries | [] |
max_accepted_payout | 1,000,000.000 HBD |
percent_hbd | 10,000 |
post_id | 7,200,752 |
net_rshares | 249,925,135 |
author_curate_reward | "" |
voter | weight | wgt% | rshares | pct | time |
---|---|---|---|---|---|
eskilxan | 0 | 249,925,135 | 100% |
Looking forward for next update thanx.
author | boch |
---|---|
permlink | re-dan-eos-developer-s-log-starday-201707-3-20170705t121322777z |
category | eos |
json_metadata | {"tags":["eos"],"app":"steemit/0.1"} |
created | 2017-07-05 12:13:27 |
last_update | 2017-07-05 12:13:27 |
depth | 1 |
children | 0 |
last_payout | 2017-07-12 12:13:27 |
cashout_time | 1969-12-31 23:59:59 |
total_payout_value | 0.000 HBD |
curator_payout_value | 0.000 HBD |
pending_payout_value | 0.000 HBD |
promoted | 0.000 HBD |
body_length | 38 |
author_reputation | 3,267,792,822 |
root_title | "EOS - Developer’s Log Stardate 201707.3" |
beneficiaries | [] |
max_accepted_payout | 1,000,000.000 HBD |
percent_hbd | 10,000 |
post_id | 7,389,678 |
net_rshares | 0 |
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.
author | borislavzlatanov |
---|---|
permlink | re-dan-eos-developer-s-log-starday-201707-3-20170705t124636933z |
category | eos |
json_metadata | {"tags":["eos"],"app":"steemit/0.1"} |
created | 2017-07-05 12:46:42 |
last_update | 2017-07-05 12:46:42 |
depth | 1 |
children | 0 |
last_payout | 2017-07-12 12:46:42 |
cashout_time | 1969-12-31 23:59:59 |
total_payout_value | 0.000 HBD |
curator_payout_value | 0.000 HBD |
pending_payout_value | 0.000 HBD |
promoted | 0.000 HBD |
body_length | 203 |
author_reputation | 23,518,564,419,598 |
root_title | "EOS - Developer’s Log Stardate 201707.3" |
beneficiaries | [] |
max_accepted_payout | 1,000,000.000 HBD |
percent_hbd | 10,000 |
post_id | 7,392,908 |
net_rshares | 0 |
Good comparisons to the GPU.. always like detailed posts like this. Thanks!
author | brentedward |
---|---|
permlink | re-dan-eos-developer-s-log-starday-201707-3-20170806t235231486z |
category | eos |
json_metadata | {"tags":["eos"],"app":"steemit/0.1"} |
created | 2017-08-06 23:52:30 |
last_update | 2017-08-06 23:52:30 |
depth | 1 |
children | 1 |
last_payout | 2017-08-13 23:52:30 |
cashout_time | 1969-12-31 23:59:59 |
total_payout_value | 0.000 HBD |
curator_payout_value | 0.000 HBD |
pending_payout_value | 0.000 HBD |
promoted | 0.000 HBD |
body_length | 76 |
author_reputation | 1,455,358,702 |
root_title | "EOS - Developer’s Log Stardate 201707.3" |
beneficiaries | [] |
max_accepted_payout | 1,000,000.000 HBD |
percent_hbd | 10,000 |
post_id | 11,000,826 |
net_rshares | 0 |
Just taking this opportunity to say "THANK YOU FOR FOLLOWING ME" https://media.giphy.com/media/o7ZtPy8AzIl9K/giphy.gif
author | jackmiller |
---|---|
permlink | re-brentedward-re-dan-eos-developer-s-log-starday-201707-3-20170808t181226252z |
category | eos |
json_metadata | {"tags":["eos"],"image":["https://media.giphy.com/media/o7ZtPy8AzIl9K/giphy.gif"],"app":"steemit/0.1"} |
created | 2017-08-08 18:12:24 |
last_update | 2017-08-08 18:12:24 |
depth | 2 |
children | 0 |
last_payout | 2017-08-15 18:12:24 |
cashout_time | 1969-12-31 23:59:59 |
total_payout_value | 0.000 HBD |
curator_payout_value | 0.000 HBD |
pending_payout_value | 0.000 HBD |
promoted | 0.000 HBD |
body_length | 119 |
author_reputation | 68,065,227,692,972 |
root_title | "EOS - Developer’s Log Stardate 201707.3" |
beneficiaries | [] |
max_accepted_payout | 1,000,000.000 HBD |
percent_hbd | 10,000 |
post_id | 11,198,846 |
net_rshares | 0 |
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.
author | brucebrownftw |
---|---|
permlink | re-dan-eos-developer-s-log-starday-201707-3-20170704t180156955z |
category | eos |
json_metadata | {"tags":["eos"],"users":["dan"],"app":"steemit/0.1"} |
created | 2017-07-04 18:01:57 |
last_update | 2017-07-04 18:01:57 |
depth | 1 |
children | 0 |
last_payout | 2017-07-11 18:01:57 |
cashout_time | 1969-12-31 23:59:59 |
total_payout_value | 0.000 HBD |
curator_payout_value | 0.000 HBD |
pending_payout_value | 0.000 HBD |
promoted | 0.000 HBD |
body_length | 229 |
author_reputation | 1,092,260,798,193 |
root_title | "EOS - Developer’s Log Stardate 201707.3" |
beneficiaries | [] |
max_accepted_payout | 1,000,000.000 HBD |
percent_hbd | 10,000 |
post_id | 7,305,632 |
net_rshares | 0 |
Nature #Photography Original photo by @bushkil 
author | bushkil | ||||||
---|---|---|---|---|---|---|---|
permlink | re-dan-201774t143353253z | ||||||
category | eos | ||||||
json_metadata | {"tags":"eos","app":"esteem/1.4.6","format":"markdown+html","community":"esteem"} | ||||||
created | 2017-07-04 08:34:03 | ||||||
last_update | 2017-07-04 08:34:03 | ||||||
depth | 1 | ||||||
children | 0 | ||||||
last_payout | 2017-07-11 08:34:03 | ||||||
cashout_time | 1969-12-31 23:59:59 | ||||||
total_payout_value | 0.019 HBD | ||||||
curator_payout_value | 0.001 HBD | ||||||
pending_payout_value | 0.000 HBD | ||||||
promoted | 0.000 HBD | ||||||
body_length | 95 | ||||||
author_reputation | 278,339,158,121 | ||||||
root_title | "EOS - Developer’s Log Stardate 201707.3" | ||||||
beneficiaries |
| ||||||
max_accepted_payout | 1,000,000.000 HBD | ||||||
percent_hbd | 10,000 | ||||||
post_id | 7,248,772 | ||||||
net_rshares | 3,373,233,367 | ||||||
author_curate_reward | "" |
voter | weight | wgt% | rshares | pct | time |
---|---|---|---|---|---|
mrmoneymaken | 0 | 2,566,557,416 | 100% | ||
bushkil | 0 | 806,675,951 | 100% |
nice post , but a little difficult for me , i will keep on reading , hope you can help me improve the technology.
author | bxt |
---|---|
permlink | re-dan-eos-developer-s-log-starday-201707-3-20170703t233333297z |
category | eos |
json_metadata | {"tags":["eos"],"app":"steemit/0.1"} |
created | 2017-07-03 23:33:30 |
last_update | 2017-07-03 23:33:30 |
depth | 1 |
children | 0 |
last_payout | 2017-07-10 23:33:30 |
cashout_time | 1969-12-31 23:59:59 |
total_payout_value | 0.000 HBD |
curator_payout_value | 0.000 HBD |
pending_payout_value | 0.000 HBD |
promoted | 0.000 HBD |
body_length | 113 |
author_reputation | 1,032,910,936,604,240 |
root_title | "EOS - Developer’s Log Stardate 201707.3" |
beneficiaries | [] |
max_accepted_payout | 1,000,000.000 HBD |
percent_hbd | 10,000 |
post_id | 7,207,107 |
net_rshares | 0 |
I'm keen to buy EOS, just wish I knew more about it - project sounds very interesting though
author | callumcampbell |
---|---|
permlink | re-dan-eos-developer-s-log-starday-201707-3-20170703t214823912z |
category | eos |
json_metadata | {"tags":["eos"],"app":"steemit/0.1"} |
created | 2017-07-03 21:48:24 |
last_update | 2017-07-03 21:48:24 |
depth | 1 |
children | 0 |
last_payout | 2017-07-10 21:48:24 |
cashout_time | 1969-12-31 23:59:59 |
total_payout_value | 0.000 HBD |
curator_payout_value | 0.000 HBD |
pending_payout_value | 0.000 HBD |
promoted | 0.000 HBD |
body_length | 92 |
author_reputation | 156,994,616,562 |
root_title | "EOS - Developer’s Log Stardate 201707.3" |
beneficiaries | [] |
max_accepted_payout | 1,000,000.000 HBD |
percent_hbd | 10,000 |
post_id | 7,197,720 |
net_rshares | 0 |
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.
author | carface |
---|---|
permlink | re-dan-eos-developer-s-log-starday-201707-3-20170704t174437496z |
category | eos |
json_metadata | {"tags":["eos"],"app":"steemit/0.1"} |
created | 2017-07-04 17:44:39 |
last_update | 2017-07-04 17:44:39 |
depth | 1 |
children | 2 |
last_payout | 2017-07-11 17:44:39 |
cashout_time | 1969-12-31 23:59:59 |
total_payout_value | 5.896 HBD |
curator_payout_value | 0.041 HBD |
pending_payout_value | 0.000 HBD |
promoted | 0.000 HBD |
body_length | 257 |
author_reputation | 20,232,737,189,861 |
root_title | "EOS - Developer’s Log Stardate 201707.3" |
beneficiaries | [] |
max_accepted_payout | 1,000,000.000 HBD |
percent_hbd | 10,000 |
post_id | 7,303,904 |
net_rshares | 941,906,494,082 |
author_curate_reward | "" |
voter | weight | wgt% | rshares | pct | time |
---|---|---|---|---|---|
digitalplayer | 0 | 73,604,788 | 100% | ||
carface | 0 | 940,823,093,163 | 90% | ||
tanzai | 0 | 1,009,796,131 | 100% |
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..)
author | diegobeyer |
---|---|
permlink | re-carface-re-dan-eos-developer-s-log-starday-201707-3-20170704t203219827z |
category | eos |
json_metadata | {"tags":["eos"],"app":"steemit/0.1"} |
created | 2017-07-04 20:32:18 |
last_update | 2017-07-04 20:32:18 |
depth | 2 |
children | 1 |
last_payout | 2017-07-11 20:32:18 |
cashout_time | 1969-12-31 23:59:59 |
total_payout_value | 0.255 HBD |
curator_payout_value | 0.081 HBD |
pending_payout_value | 0.000 HBD |
promoted | 0.000 HBD |
body_length | 156 |
author_reputation | 1,249,142,445 |
root_title | "EOS - Developer’s Log Stardate 201707.3" |
beneficiaries | [] |
max_accepted_payout | 1,000,000.000 HBD |
percent_hbd | 10,000 |
post_id | 7,320,189 |
net_rshares | 54,146,232,924 |
author_curate_reward | "" |
voter | weight | wgt% | rshares | pct | time |
---|---|---|---|---|---|
carface | 0 | 53,153,847,071 | 5% | ||
tanzai | 0 | 992,385,853 | 100% |
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!
author | carface |
---|---|
permlink | re-diegobeyer-re-carface-re-dan-eos-developer-s-log-starday-201707-3-20170704t211046309z |
category | eos |
json_metadata | {"tags":["eos"],"app":"steemit/0.1"} |
created | 2017-07-04 21:10:48 |
last_update | 2017-07-04 21:10:48 |
depth | 3 |
children | 0 |
last_payout | 2017-07-11 21:10:48 |
cashout_time | 1969-12-31 23:59:59 |
total_payout_value | 0.000 HBD |
curator_payout_value | 0.000 HBD |
pending_payout_value | 0.000 HBD |
promoted | 0.000 HBD |
body_length | 242 |
author_reputation | 20,232,737,189,861 |
root_title | "EOS - Developer’s Log Stardate 201707.3" |
beneficiaries | [] |
max_accepted_payout | 1,000,000.000 HBD |
percent_hbd | 10,000 |
post_id | 7,323,630 |
net_rshares | 0 |
Thanks to those available solutions and design patterns it makes it easier for us to work with the software.
author | caspell |
---|---|
permlink | re-dan-eos-developer-s-log-starday-201707-3-20170703t230227811z |
category | eos |
json_metadata | {"tags":["eos"],"app":"steemit/0.1"} |
created | 2017-07-03 23:00:45 |
last_update | 2017-07-03 23:00:45 |
depth | 1 |
children | 0 |
last_payout | 2017-07-10 23:00:45 |
cashout_time | 1969-12-31 23:59:59 |
total_payout_value | 0.000 HBD |
curator_payout_value | 0.000 HBD |
pending_payout_value | 0.000 HBD |
promoted | 0.000 HBD |
body_length | 108 |
author_reputation | 1,395,680,278,751 |
root_title | "EOS - Developer’s Log Stardate 201707.3" |
beneficiaries | [] |
max_accepted_payout | 1,000,000.000 HBD |
percent_hbd | 10,000 |
post_id | 7,204,367 |
net_rshares | 0 |
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
author | charles1 |
---|---|
permlink | re-dan-eos-developer-s-log-starday-201707-3-20170705t184329567z |
category | eos |
json_metadata | {"tags":["eos"],"users":["dan"],"app":"steemit/0.1"} |
created | 2017-07-05 18:43:30 |
last_update | 2017-07-05 18:43:30 |
depth | 1 |
children | 0 |
last_payout | 2017-07-12 18:43:30 |
cashout_time | 1969-12-31 23:59:59 |
total_payout_value | 0.000 HBD |
curator_payout_value | 0.000 HBD |
pending_payout_value | 0.000 HBD |
promoted | 0.000 HBD |
body_length | 183 |
author_reputation | 73,578,987,512,478 |
root_title | "EOS - Developer’s Log Stardate 201707.3" |
beneficiaries | [] |
max_accepted_payout | 1,000,000.000 HBD |
percent_hbd | 10,000 |
post_id | 7,429,433 |
net_rshares | 0 |
Wow! Great post!
author | christianjcv |
---|---|
permlink | re-dan-eos-developer-s-log-starday-201707-3-20170704t204954871z |
category | eos |
json_metadata | {"tags":["eos"],"app":"steemit/0.1"} |
created | 2017-07-04 20:48:06 |
last_update | 2017-07-04 20:48:06 |
depth | 1 |
children | 1 |
last_payout | 2017-07-11 20:48:06 |
cashout_time | 1969-12-31 23:59:59 |
total_payout_value | 0.000 HBD |
curator_payout_value | 0.000 HBD |
pending_payout_value | 0.000 HBD |
promoted | 0.000 HBD |
body_length | 16 |
author_reputation | 258,523,042,864 |
root_title | "EOS - Developer’s Log Stardate 201707.3" |
beneficiaries | [] |
max_accepted_payout | 1,000,000.000 HBD |
percent_hbd | 10,000 |
post_id | 7,321,615 |
net_rshares | 0 |
thanks
author | varys |
---|---|
permlink | re-christianjcv-re-dan-eos-developer-s-log-starday-201707-3-20170704t221727566z |
category | eos |
json_metadata | {"tags":["eos"],"app":"steemit/0.1"} |
created | 2017-07-04 22:17:27 |
last_update | 2017-07-04 22:17:27 |
depth | 2 |
children | 0 |
last_payout | 2017-07-11 22:17:27 |
cashout_time | 1969-12-31 23:59:59 |
total_payout_value | 0.000 HBD |
curator_payout_value | 0.000 HBD |
pending_payout_value | 0.000 HBD |
promoted | 0.000 HBD |
body_length | 6 |
author_reputation | 187,900,233 |
root_title | "EOS - Developer’s Log Stardate 201707.3" |
beneficiaries | [] |
max_accepted_payout | 1,000,000.000 HBD |
percent_hbd | 10,000 |
post_id | 7,329,236 |
net_rshares | 0 |
Lovely post that made so much sense... Upvoted and followed Follow back @chuxlouis Thanks a lot.
author | chuxlouis |
---|---|
permlink | re-dan-eos-developer-s-log-starday-201707-3-20170705t150752582z |
category | eos |
json_metadata | {"tags":["eos"],"users":["chuxlouis"],"app":"steemit/0.1"} |
created | 2017-07-05 15:07:54 |
last_update | 2017-07-05 15:07:54 |
depth | 1 |
children | 0 |
last_payout | 2017-07-12 15:07:54 |
cashout_time | 1969-12-31 23:59:59 |
total_payout_value | 0.000 HBD |
curator_payout_value | 0.000 HBD |
pending_payout_value | 0.000 HBD |
promoted | 0.000 HBD |
body_length | 97 |
author_reputation | 831,752,393,309 |
root_title | "EOS - Developer’s Log Stardate 201707.3" |
beneficiaries | [] |
max_accepted_payout | 1,000,000.000 HBD |
percent_hbd | 10,000 |
post_id | 7,407,727 |
net_rshares | 876,320,306 |
author_curate_reward | "" |
voter | weight | wgt% | rshares | pct | time |
---|---|---|---|---|---|
chuxlouis | 0 | 876,320,306 | 100% |
good
author | criptoworld |
---|---|
permlink | re-dan-eos-developer-s-log-starday-201707-3-20170709t050101671z |
category | eos |
json_metadata | {"tags":["eos"],"app":"steemit/0.1"} |
created | 2017-07-09 05:01:24 |
last_update | 2017-07-09 05:01:24 |
depth | 1 |
children | 0 |
last_payout | 2017-07-16 05:01:24 |
cashout_time | 1969-12-31 23:59:59 |
total_payout_value | 0.000 HBD |
curator_payout_value | 0.000 HBD |
pending_payout_value | 0.000 HBD |
promoted | 0.000 HBD |
body_length | 4 |
author_reputation | 158,581,105,509 |
root_title | "EOS - Developer’s Log Stardate 201707.3" |
beneficiaries | [] |
max_accepted_payout | 1,000,000.000 HBD |
percent_hbd | 10,000 |
post_id | 7,828,515 |
net_rshares | 0 |
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.
author | crypt0 |
---|---|
permlink | re-dan-eos-developer-s-log-starday-201707-3-20170704t002608075z |
category | eos |
json_metadata | {"tags":["eos"],"app":"steemit/0.1"} |
created | 2017-07-04 00:26:06 |
last_update | 2017-07-04 00:26:06 |
depth | 1 |
children | 1 |
last_payout | 2017-07-11 00:26:06 |
cashout_time | 1969-12-31 23:59:59 |
total_payout_value | 1.862 HBD |
curator_payout_value | 0.010 HBD |
pending_payout_value | 0.000 HBD |
promoted | 0.000 HBD |
body_length | 296 |
author_reputation | 529,629,960,197,218 |
root_title | "EOS - Developer’s Log Stardate 201707.3" |
beneficiaries | [] |
max_accepted_payout | 1,000,000.000 HBD |
percent_hbd | 10,000 |
post_id | 7,211,088 |
net_rshares | 283,645,822,985 |
author_curate_reward | "" |
voter | weight | wgt% | rshares | pct | time |
---|---|---|---|---|---|
digitalplayer | 0 | 73,604,788 | 100% | ||
crypt0 | 0 | 265,160,569,566 | 100% | ||
bbrewer | 0 | 2,501,805,250 | 5% | ||
belidged | 0 | 3,404,717,575 | 100% | ||
steemdoge | 0 | 4,426,137,600 | 2% | ||
mrmoneymaken | 0 | 2,612,117,606 | 100% | ||
jeremylarter | 0 | 934,369,458 | 100% | ||
shareme | 0 | 1,160,697,234 | 100% | ||
kubbsn | 0 | 1,160,693,054 | 100% | ||
ace73 | 0 | 1,160,691,571 | 100% | ||
lollerfirst | 0 | 1,050,419,283 | 100% |
I agree @crypt0
author | face2face |
---|---|
permlink | re-crypt0-re-dan-eos-developer-s-log-starday-201707-3-20170704t013833175z |
category | eos |
json_metadata | {"tags":["eos"],"users":["crypt0"],"app":"steemit/0.1"} |
created | 2017-07-04 01:38:39 |
last_update | 2017-07-04 01:38:39 |
depth | 2 |
children | 0 |
last_payout | 2017-07-11 01:38:39 |
cashout_time | 1969-12-31 23:59:59 |
total_payout_value | 0.000 HBD |
curator_payout_value | 0.000 HBD |
pending_payout_value | 0.000 HBD |
promoted | 0.000 HBD |
body_length | 15 |
author_reputation | 96,985,200,810,100 |
root_title | "EOS - Developer’s Log Stardate 201707.3" |
beneficiaries | [] |
max_accepted_payout | 1,000,000.000 HBD |
percent_hbd | 10,000 |
post_id | 7,216,592 |
net_rshares | 0 |
author_curate_reward | "" |
voter | weight | wgt% | rshares | pct | time |
---|---|---|---|---|---|
gouravkumar | 0 | 0 | 0% |
http://cdn1.theodysseyonline.com/files/2015/12/17/6358596204340677191059790836_weird%20puzzler.gif On a serious note time to study up on EOS some more :)
author | cryptoblessings |
---|---|
permlink | re-dan-eos-developer-s-log-starday-201707-3-20170704t022239640z |
category | eos |
json_metadata | {"tags":["eos"],"image":["http://cdn1.theodysseyonline.com/files/2015/12/17/6358596204340677191059790836_weird%20puzzler.gif"],"app":"steemit/0.1"} |
created | 2017-07-04 02:22:48 |
last_update | 2017-07-04 02:22:48 |
depth | 1 |
children | 0 |
last_payout | 2017-07-11 02:22:48 |
cashout_time | 1969-12-31 23:59:59 |
total_payout_value | 0.000 HBD |
curator_payout_value | 0.000 HBD |
pending_payout_value | 0.000 HBD |
promoted | 0.000 HBD |
body_length | 153 |
author_reputation | 145,027,844,611 |
root_title | "EOS - Developer’s Log Stardate 201707.3" |
beneficiaries | [] |
max_accepted_payout | 1,000,000.000 HBD |
percent_hbd | 10,000 |
post_id | 7,220,083 |
net_rshares | 0 |
Great post with the details surrounding EOS. It's always nice to have a good dev who actually knows his stuff!
author | cryptodata |
---|---|
permlink | re-dan-eos-developer-s-log-starday-201707-3-20170705t010845145z |
category | eos |
json_metadata | {"tags":["eos"],"app":"steemit/0.1"} |
created | 2017-07-05 01:08:48 |
last_update | 2017-07-05 01:08:48 |
depth | 1 |
children | 0 |
last_payout | 2017-07-12 01:08:48 |
cashout_time | 1969-12-31 23:59:59 |
total_payout_value | 0.000 HBD |
curator_payout_value | 0.000 HBD |
pending_payout_value | 0.000 HBD |
promoted | 0.000 HBD |
body_length | 110 |
author_reputation | 1,577,806,466,314 |
root_title | "EOS - Developer’s Log Stardate 201707.3" |
beneficiaries | [] |
max_accepted_payout | 1,000,000.000 HBD |
percent_hbd | 10,000 |
post_id | 7,341,598 |
net_rshares | 0 |
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
author | cryptotour |
---|---|
permlink | re-dan-eos-developer-s-log-starday-201707-3-20170707t183644244z |
category | eos |
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"} |
created | 2017-07-07 18:36:57 |
last_update | 2017-07-07 18:36:57 |
depth | 1 |
children | 0 |
last_payout | 2017-07-14 18:36:57 |
cashout_time | 1969-12-31 23:59:59 |
total_payout_value | 0.000 HBD |
curator_payout_value | 0.000 HBD |
pending_payout_value | 0.000 HBD |
promoted | 0.000 HBD |
body_length | 218 |
author_reputation | -2,035,912,839 |
root_title | "EOS - Developer’s Log Stardate 201707.3" |
beneficiaries | [] |
max_accepted_payout | 1,000,000.000 HBD |
percent_hbd | 10,000 |
post_id | 7,673,884 |
net_rshares | 0 |
My apologies, key board shortcuts ended up submitting this before I was done and I had not yet declined payouts.
author | dan |
---|---|
permlink | re-dan-eos-developer-s-log-starday-201707-3-20170703t214811489z |
category | eos |
json_metadata | {"tags":["eos"],"app":"steemit/0.1"} |
created | 2017-07-03 21:48:12 |
last_update | 2017-07-03 21:48:12 |
depth | 1 |
children | 18 |
last_payout | 2017-07-10 21:48:12 |
cashout_time | 1969-12-31 23:59:59 |
total_payout_value | 27.187 HBD |
curator_payout_value | 8.644 HBD |
pending_payout_value | 0.000 HBD |
promoted | 0.000 HBD |
body_length | 112 |
author_reputation | 155,470,101,136,708 |
root_title | "EOS - Developer’s Log Stardate 201707.3" |
beneficiaries | [] |
max_accepted_payout | 1,000,000.000 HBD |
percent_hbd | 10,000 |
post_id | 7,197,692 |
net_rshares | 5,379,934,166,730 |
author_curate_reward | "" |
voter | weight | wgt% | rshares | pct | time |
---|---|---|---|---|---|
digitalplayer | 0 | 88,325,746 | 100% | ||
tyler-fletcher | 0 | 49,028,281,436 | 100% | ||
fyrstikken | 0 | 922,515,690,213 | 100% | ||
matt-a | 0 | 4,044,943,657,838 | 100% | ||
ausbitbank | 0 | 244,843,252,642 | 2% | ||
beanz | 0 | 80,439,214,669 | 100% | ||
alexpmorris | 0 | 4,604,795,515 | 5% | ||
allyouneedtoknow | 0 | 706,193,214 | 0.6% | ||
mv009 | 0 | 845,527,853 | 100% | ||
ugaard | 0 | 649,326,305 | 100% | ||
markleher | 0 | 0 | 100% | ||
lucidletters | 0 | 5,852,084,541 | 100% | ||
classicstar | 0 | 8,621,605,706 | 100% | ||
newold | 0 | 0 | 100% | ||
mrmoneymaken | 0 | 2,718,424,718 | 100% | ||
pablito | 0 | 5,237,393,526 | 100% | ||
tsinrong | 0 | 541,609,644 | 100% | ||
xnerdmasterx | 0 | 1,120,202,793 | 100% | ||
eskilxan | 0 | 290,610,622 | 100% | ||
raa228 | 0 | 1,143,293,451 | 100% | ||
shuke0327 | 0 | 1,183,164,625 | 100% | ||
alexhudson | 0 | 516,526,390 | 100% | ||
charlie26 | 0 | 667,393,969 | 100% | ||
aghasaad | 0 | 0 | 0% | ||
dianamihaela | 0 | 1,160,684,592 | 100% | ||
vikiz | 0 | 1,009,795,489 | 100% | ||
lollerfirst | 0 | 1,096,846,655 | 100% | ||
taintedblood | 0 | 110,264,578 | 100% | ||
wakeuplater | 0 | 0 | 100% | ||
vahidrazavi | 0 | 0 | 100% | ||
anupghosh | 0 | 0 | 100% |
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
author | blockrush |
---|---|
permlink | re-dan-re-dan-eos-developer-s-log-starday-201707-3-20170706t130310766z |
category | eos |
json_metadata | {"tags":["eos"],"users":["dan"],"links":["https://steemit.com/steemit/@blockrush/is-wildspark-the-steemit-killer-blockrush"],"app":"steemit/0.1"} |
created | 2017-07-06 13:03:27 |
last_update | 2017-07-06 13:05:00 |
depth | 2 |
children | 0 |
last_payout | 2017-07-13 13:03:27 |
cashout_time | 1969-12-31 23:59:59 |
total_payout_value | 0.000 HBD |
curator_payout_value | 0.000 HBD |
pending_payout_value | 0.000 HBD |
promoted | 0.000 HBD |
body_length | 349 |
author_reputation | 5,038,471,003,192 |
root_title | "EOS - Developer’s Log Stardate 201707.3" |
beneficiaries | [] |
max_accepted_payout | 1,000,000.000 HBD |
percent_hbd | 10,000 |
post_id | 7,517,593 |
net_rshares | 0 |
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...
author | calamus056 |
---|---|
permlink | re-dan-re-dan-eos-developer-s-log-starday-201707-3-20170705t003006659z |
category | eos |
json_metadata | {"tags":["eos"],"app":"steemit/0.1"} |
created | 2017-07-05 00:30:24 |
last_update | 2017-07-05 08:15:42 |
depth | 2 |
children | 0 |
last_payout | 2017-07-12 00:30:24 |
cashout_time | 1969-12-31 23:59:59 |
total_payout_value | 0.000 HBD |
curator_payout_value | 0.000 HBD |
pending_payout_value | 0.000 HBD |
promoted | 0.000 HBD |
body_length | 140 |
author_reputation | 5,645,464,390,253 |
root_title | "EOS - Developer’s Log Stardate 201707.3" |
beneficiaries | [] |
max_accepted_payout | 1,000,000.000 HBD |
percent_hbd | 10,000 |
post_id | 7,338,953 |
net_rshares | 1,033,009,835 |
author_curate_reward | "" |
voter | weight | wgt% | rshares | pct | time |
---|---|---|---|---|---|
tanzai | 0 | 1,033,009,835 | 100% |
You know what to put in the next update so
author | fiveboringgames |
---|---|
permlink | re-dan-re-dan-eos-developer-s-log-starday-201707-3-20170703t215310370z |
category | eos |
json_metadata | {"tags":["eos"],"app":"steemit/0.1"} |
created | 2017-07-03 21:53:12 |
last_update | 2017-07-03 21:53:12 |
depth | 2 |
children | 2 |
last_payout | 2017-07-10 21:53:12 |
cashout_time | 1969-12-31 23:59:59 |
total_payout_value | 1.170 HBD |
curator_payout_value | 0.035 HBD |
pending_payout_value | 0.000 HBD |
promoted | 0.000 HBD |
body_length | 42 |
author_reputation | 73,849,148,682,162 |
root_title | "EOS - Developer’s Log Stardate 201707.3" |
beneficiaries | [] |
max_accepted_payout | 1,000,000.000 HBD |
percent_hbd | 10,000 |
post_id | 7,198,183 |
net_rshares | 181,353,472,665 |
author_curate_reward | "" |
voter | weight | wgt% | rshares | pct | time |
---|---|---|---|---|---|
fiveboringgames | 0 | 148,145,790,924 | 100% | ||
bestofreddit | 0 | 29,751,354,659 | 90% | ||
mrmoneymaken | 0 | 2,672,864,527 | 100% | ||
automatedjanitor | 0 | 783,462,555 | 100% |
Yeah U Are Right Offcoure He Know What To Put In The Next Update so
author | hamzazaman |
---|---|
permlink | re-fiveboringgames-re-dan-re-dan-eos-developer-s-log-starday-201707-3-20170704t061258478z |
category | eos |
json_metadata | {"tags":["eos"],"app":"steemit/0.1"} |
created | 2017-07-04 06:13:06 |
last_update | 2017-07-04 06:13:06 |
depth | 3 |
children | 0 |
last_payout | 2017-07-11 06:13:06 |
cashout_time | 1969-12-31 23:59:59 |
total_payout_value | 0.000 HBD |
curator_payout_value | 0.000 HBD |
pending_payout_value | 0.000 HBD |
promoted | 0.000 HBD |
body_length | 67 |
author_reputation | 3,742,031,536 |
root_title | "EOS - Developer’s Log Stardate 201707.3" |
beneficiaries | [] |
max_accepted_payout | 1,000,000.000 HBD |
percent_hbd | 10,000 |
post_id | 7,237,175 |
net_rshares | 0 |
battletoads
author | ir3m0del |
---|---|
permlink | re-fiveboringgames-re-dan-re-dan-eos-developer-s-log-starday-201707-3-20170705t025053327z |
category | eos |
json_metadata | {"tags":["eos"],"app":"steemit/0.1"} |
created | 2017-07-05 02:50:48 |
last_update | 2017-07-05 02:50:48 |
depth | 3 |
children | 0 |
last_payout | 2017-07-12 02:50:48 |
cashout_time | 1969-12-31 23:59:59 |
total_payout_value | 0.000 HBD |
curator_payout_value | 0.000 HBD |
pending_payout_value | 0.000 HBD |
promoted | 0.000 HBD |
body_length | 11 |
author_reputation | 92,457,493,937 |
root_title | "EOS - Developer’s Log Stardate 201707.3" |
beneficiaries | [] |
max_accepted_payout | 1,000,000.000 HBD |
percent_hbd | 10,000 |
post_id | 7,348,402 |
net_rshares | 0 |
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!
author | fyrstikken |
---|---|
permlink | re-dan-re-dan-eos-developer-s-log-starday-201707-3-20170704t025026253z |
category | eos |
json_metadata | {"tags":["eos"],"app":"steemit/0.1"} |
created | 2017-07-04 02:50:27 |
last_update | 2017-07-04 02:50:27 |
depth | 2 |
children | 4 |
last_payout | 2017-07-11 02:50:27 |
cashout_time | 1969-12-31 23:59:59 |
total_payout_value | 8.158 HBD |
curator_payout_value | 2.700 HBD |
pending_payout_value | 0.000 HBD |
promoted | 0.000 HBD |
body_length | 184 |
author_reputation | 377,187,606,449,589 |
root_title | "EOS - Developer’s Log Stardate 201707.3" |
beneficiaries | [] |
max_accepted_payout | 1,000,000.000 HBD |
percent_hbd | 10,000 |
post_id | 7,222,402 |
net_rshares | 1,653,555,842,979 |
author_curate_reward | "" |
voter | weight | wgt% | rshares | pct | time |
---|---|---|---|---|---|
cass | 0 | 959,614,627,833 | 18% | ||
innuendo | 0 | 119,304,821,712 | 8% | ||
crok | 0 | 10,939,832,120 | 100% | ||
matt-a | 0 | 406,634,547,613 | 10% | ||
shla-rafia | 0 | 1,210,793,181 | 4% | ||
nippel66 | 0 | 8,721,112,140 | 100% | ||
bbrewer | 0 | 2,501,805,250 | 5% | ||
alexpmorris | 0 | 4,604,795,515 | 5% | ||
bitcoinparadise | 0 | 21,967,207,395 | 100% | ||
tomino | 0 | 1,182,351,442 | 1% | ||
writingamigo | 0 | 2,904,523,554 | 16% | ||
riskdebonair | 0 | 103,807,234,644 | 60% | ||
mv009 | 0 | 830,949,786 | 100% | ||
newsdesk | 0 | 202,095,933 | 1% | ||
lucidletters | 0 | 5,943,049,586 | 100% | ||
newold | 0 | 0 | 100% | ||
vaporhaze | 0 | 1,160,699,541 | 100% | ||
jenniferlagrada | 0 | 1,033,010,512 | 100% | ||
vikiz | 0 | 992,385,222 | 100% |
@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
author | blockrush |
---|---|
permlink | re-fyrstikken-re-dan-re-dan-eos-developer-s-log-starday-201707-3-20170706t130706179z |
category | eos |
json_metadata | {"tags":["eos"],"users":["fyrstikken"],"links":["https://steemit.com/steemit/@blockrush/is-wildspark-the-steemit-killer-blockrush"],"app":"steemit/0.1"} |
created | 2017-07-06 13:07:18 |
last_update | 2017-07-06 13:07:18 |
depth | 3 |
children | 0 |
last_payout | 2017-07-13 13:07:18 |
cashout_time | 1969-12-31 23:59:59 |
total_payout_value | 0.000 HBD |
curator_payout_value | 0.000 HBD |
pending_payout_value | 0.000 HBD |
promoted | 0.000 HBD |
body_length | 180 |
author_reputation | 5,038,471,003,192 |
root_title | "EOS - Developer’s Log Stardate 201707.3" |
beneficiaries | [] |
max_accepted_payout | 1,000,000.000 HBD |
percent_hbd | 10,000 |
post_id | 7,518,011 |
net_rshares | 0 |
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"
author | cryptonfused |
---|---|
permlink | re-fyrstikken-re-dan-re-dan-eos-developer-s-log-starday-201707-3-20170705t235054789z |
category | eos |
json_metadata | {"tags":["eos"],"app":"steemit/0.1"} |
created | 2017-07-05 23:51:03 |
last_update | 2017-07-05 23:51:03 |
depth | 3 |
children | 0 |
last_payout | 2017-07-12 23:51:03 |
cashout_time | 1969-12-31 23:59:59 |
total_payout_value | 0.000 HBD |
curator_payout_value | 0.000 HBD |
pending_payout_value | 0.000 HBD |
promoted | 0.000 HBD |
body_length | 158 |
author_reputation | 253,937,837,335 |
root_title | "EOS - Developer’s Log Stardate 201707.3" |
beneficiaries | [] |
max_accepted_payout | 1,000,000.000 HBD |
percent_hbd | 10,000 |
post_id | 7,455,501 |
net_rshares | 0 |
Agreed.
author | matt-a |
---|---|
permlink | re-fyrstikken-re-dan-re-dan-eos-developer-s-log-starday-201707-3-20170705t115030359z |
category | eos |
json_metadata | {"tags":["eos"],"app":"steemit/0.1"} |
created | 2017-07-05 11:50:48 |
last_update | 2017-07-05 11:50:48 |
depth | 3 |
children | 0 |
last_payout | 2017-07-12 11:50:48 |
cashout_time | 1969-12-31 23:59:59 |
total_payout_value | 0.000 HBD |
curator_payout_value | 0.000 HBD |
pending_payout_value | 0.000 HBD |
promoted | 0.000 HBD |
body_length | 7 |
author_reputation | 34,621,295,577,150 |
root_title | "EOS - Developer’s Log Stardate 201707.3" |
beneficiaries | [] |
max_accepted_payout | 1,000,000.000 HBD |
percent_hbd | 10,000 |
post_id | 7,387,674 |
net_rshares | 0 |
yes
author | shla-rafia |
---|---|
permlink | re-fyrstikken-re-dan-re-dan-eos-developer-s-log-starday-201707-3-20170704t112433840z |
category | eos |
json_metadata | {"tags":["eos"],"app":"steemit/0.1"} |
created | 2017-07-04 11:24:33 |
last_update | 2017-07-04 11:24:33 |
depth | 3 |
children | 0 |
last_payout | 2017-07-11 11:24:33 |
cashout_time | 1969-12-31 23:59:59 |
total_payout_value | 0.000 HBD |
curator_payout_value | 0.000 HBD |
pending_payout_value | 0.000 HBD |
promoted | 0.000 HBD |
body_length | 3 |
author_reputation | 67,630,971,735,138 |
root_title | "EOS - Developer’s Log Stardate 201707.3" |
beneficiaries | [] |
max_accepted_payout | 1,000,000.000 HBD |
percent_hbd | 10,000 |
post_id | 7,263,667 |
net_rshares | 0 |
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!
author | madmaxfury |
---|---|
permlink | re-dan-re-dan-eos-developer-s-log-starday-201707-3-20170724t064831616z |
category | eos |
json_metadata | {"tags":["eos"],"app":"steemit/0.1"} |
created | 2017-07-24 06:48:33 |
last_update | 2017-07-24 06:48:33 |
depth | 2 |
children | 0 |
last_payout | 2017-07-31 06:48:33 |
cashout_time | 1969-12-31 23:59:59 |
total_payout_value | 0.000 HBD |
curator_payout_value | 0.000 HBD |
pending_payout_value | 0.000 HBD |
promoted | 0.000 HBD |
body_length | 172 |
author_reputation | 1,414,250,200,620 |
root_title | "EOS - Developer’s Log Stardate 201707.3" |
beneficiaries | [] |
max_accepted_payout | 1,000,000.000 HBD |
percent_hbd | 10,000 |
post_id | 9,500,394 |
net_rshares | 0 |
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>
author | matt-a |
---|---|
permlink | re-dan-re-dan-eos-developer-s-log-starday-201707-3-20170705t114152017z |
category | eos |
json_metadata | {"tags":["eos"],"app":"steemit/0.1"} |
created | 2017-07-05 11:42:15 |
last_update | 2017-07-05 12:01:00 |
depth | 2 |
children | 0 |
last_payout | 2017-07-12 11:42:15 |
cashout_time | 1969-12-31 23:59:59 |
total_payout_value | 0.219 HBD |
curator_payout_value | 0.071 HBD |
pending_payout_value | 0.000 HBD |
promoted | 0.000 HBD |
body_length | 1,538 |
author_reputation | 34,621,295,577,150 |
root_title | "EOS - Developer’s Log Stardate 201707.3" |
beneficiaries | [] |
max_accepted_payout | 1,000,000.000 HBD |
percent_hbd | 10,000 |
post_id | 7,386,932 |
net_rshares | 54,643,969,351 |
author_curate_reward | "" |
voter | weight | wgt% | rshares | pct | time |
---|---|---|---|---|---|
tyler-fletcher | 0 | 50,039,173,836 | 100% | ||
alexpmorris | 0 | 4,604,795,515 | 5% | ||
fcecin | 0 | 0 | 100% | ||
isabelpena | 0 | 0 | 100% |
Oh dan!!
author | morality |
---|---|
permlink | re-dan-re-dan-eos-developer-s-log-starday-201707-3-20170705t141503545z |
category | eos |
json_metadata | {"tags":["eos"],"app":"steemit/0.1"} |
created | 2017-07-05 14:15:03 |
last_update | 2017-07-05 14:15:03 |
depth | 2 |
children | 0 |
last_payout | 2017-07-12 14:15:03 |
cashout_time | 1969-12-31 23:59:59 |
total_payout_value | 0.000 HBD |
curator_payout_value | 0.000 HBD |
pending_payout_value | 0.000 HBD |
promoted | 0.000 HBD |
body_length | 8 |
author_reputation | 174,776,140,429 |
root_title | "EOS - Developer’s Log Stardate 201707.3" |
beneficiaries | [] |
max_accepted_payout | 1,000,000.000 HBD |
percent_hbd | 10,000 |
post_id | 7,402,102 |
net_rshares | 0 |
i have fallowed you .. and i will vote u fallow me please and tell me when u do it tnx
author | ndnd92 |
---|---|
permlink | re-dan-re-dan-eos-developer-s-log-starday-201707-3-20170704t114022067z |
category | eos |
json_metadata | {"tags":["eos"],"app":"steemit/0.1"} |
created | 2017-07-04 11:40:21 |
last_update | 2017-07-04 11:40:21 |
depth | 2 |
children | 1 |
last_payout | 2017-07-11 11:40:21 |
cashout_time | 1969-12-31 23:59:59 |
total_payout_value | 0.000 HBD |
curator_payout_value | 0.000 HBD |
pending_payout_value | 0.000 HBD |
promoted | 0.000 HBD |
body_length | 86 |
author_reputation | -443,134,974,292 |
root_title | "EOS - Developer’s Log Stardate 201707.3" |
beneficiaries | [] |
max_accepted_payout | 1,000,000.000 HBD |
percent_hbd | 10,000 |
post_id | 7,265,130 |
net_rshares | 951,761,266 |
author_curate_reward | "" |
voter | weight | wgt% | rshares | pct | time |
---|---|---|---|---|---|
vikiz | 0 | 951,761,266 | 100% |
🐳 WhaleBoT says: @ndnd92, warning: vote/follow begging is shunned upon, watch out or I'll EAT YA! 🙁
author | alexpmorris |
---|---|
permlink | re-ndnd92-re-dan-re-dan-eos-developer-s-log-starday-201707-3-20170707t144120552z |
category | eos |
json_metadata | {"tags":["eos"],"users":["ndnd92"],"app":"steemit/0.1"} |
created | 2017-07-07 14:41:21 |
last_update | 2017-07-07 14:41:21 |
depth | 3 |
children | 0 |
last_payout | 2017-07-14 14:41:21 |
cashout_time | 1969-12-31 23:59:59 |
total_payout_value | 0.000 HBD |
curator_payout_value | 0.000 HBD |
pending_payout_value | 0.000 HBD |
promoted | 0.000 HBD |
body_length | 99 |
author_reputation | 32,063,874,290,523 |
root_title | "EOS - Developer’s Log Stardate 201707.3" |
beneficiaries | [] |
max_accepted_payout | 1,000,000.000 HBD |
percent_hbd | 10,000 |
post_id | 7,649,977 |
net_rshares | 0 |
author | satoshimoto | ||||||
---|---|---|---|---|---|---|---|
permlink | re-dan-201774t01830508z | ||||||
category | eos | ||||||
json_metadata | {"tags":"eos","app":"esteem/1.4.6","format":"markdown+html","community":"esteem"} | ||||||
created | 2017-07-03 23:18:33 | ||||||
last_update | 2017-07-03 23:18:33 | ||||||
depth | 2 | ||||||
children | 0 | ||||||
last_payout | 2017-07-10 23:18:33 | ||||||
cashout_time | 1969-12-31 23:59:59 | ||||||
total_payout_value | 0.000 HBD | ||||||
curator_payout_value | 0.000 HBD | ||||||
pending_payout_value | 0.000 HBD | ||||||
promoted | 0.000 HBD | ||||||
body_length | 55 | ||||||
author_reputation | 269,916,745,612 | ||||||
root_title | "EOS - Developer’s Log Stardate 201707.3" | ||||||
beneficiaries |
| ||||||
max_accepted_payout | 1,000,000.000 HBD | ||||||
percent_hbd | 10,000 | ||||||
post_id | 7,205,797 | ||||||
net_rshares | 1,830,346,667 | ||||||
author_curate_reward | "" |
voter | weight | wgt% | rshares | pct | time |
---|---|---|---|---|---|
mv009 | 0 | 779,926,554 | 100% | ||
tanzai | 0 | 1,050,420,113 | 100% |
Please don't apologize for beeing awesome :-) http://memeshappen.com/media/created/2017/04/Whos-awesome-You-are.jpg
author | tomino |
---|---|
permlink | re-dan-re-dan-eos-developer-s-log-starday-201707-3-20170704t142350170z |
category | eos |
json_metadata | {"tags":["eos"],"image":["http://memeshappen.com/media/created/2017/04/Whos-awesome-You-are.jpg"],"app":"steemit/0.1"} |
created | 2017-07-04 14:23:57 |
last_update | 2017-07-04 14:23:57 |
depth | 2 |
children | 0 |
last_payout | 2017-07-11 14:23:57 |
cashout_time | 1969-12-31 23:59:59 |
total_payout_value | 0.700 HBD |
curator_payout_value | 0.000 HBD |
pending_payout_value | 0.000 HBD |
promoted | 0.000 HBD |
body_length | 116 |
author_reputation | 1,913,291,987,918 |
root_title | "EOS - Developer’s Log Stardate 201707.3" |
beneficiaries | [] |
max_accepted_payout | 1,000,000.000 HBD |
percent_hbd | 10,000 |
post_id | 7,282,574 |
net_rshares | 109,813,242,638 |
author_curate_reward | "" |
voter | weight | wgt% | rshares | pct | time |
---|---|---|---|---|---|
digitalplayer | 0 | 88,325,746 | 100% | ||
gaio | 0 | 0 | 100% | ||
tomino | 0 | 104,638,102,685 | 100% | ||
mv009 | 0 | 816,371,720 | 100% | ||
newold | 0 | 0 | 100% | ||
ishah | 0 | 892,827,798 | 100% | ||
vaporhaze | 0 | 1,143,289,048 | 100% | ||
fiddlerontheroad | 0 | 1,160,692,672 | 100% | ||
lollerfirst | 0 | 1,073,632,969 | 100% |
Thank you Dan for keeping us updated. Congrats by the way for the EOS initial coin offer. Follow me @Yehey
author | yehey |
---|---|
permlink | re-dan-re-dan-eos-developer-s-log-starday-201707-3-20170704t043530703z |
category | eos |
json_metadata | {"tags":["eos"],"users":["yehey"],"app":"steemit/0.1"} |
created | 2017-07-04 04:35:30 |
last_update | 2017-07-04 04:35:42 |
depth | 2 |
children | 0 |
last_payout | 2017-07-11 04:35:30 |
cashout_time | 1969-12-31 23:59:59 |
total_payout_value | 0.081 HBD |
curator_payout_value | 0.000 HBD |
pending_payout_value | 0.000 HBD |
promoted | 0.000 HBD |
body_length | 108 |
author_reputation | 22,184,787,552,504 |
root_title | "EOS - Developer’s Log Stardate 201707.3" |
beneficiaries | [] |
max_accepted_payout | 1,000,000.000 HBD |
percent_hbd | 10,000 |
post_id | 7,229,921 |
net_rshares | 12,597,501,023 |
author_curate_reward | "" |
voter | weight | wgt% | rshares | pct | time |
---|---|---|---|---|---|
mv009 | 0 | 794,504,620 | 100% | ||
yehey | 0 | 9,760,191,052 | 50% | ||
tanzai | 0 | 1,073,633,818 | 100% | ||
vikiz | 0 | 969,171,533 | 100% |
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.
author | daniel2416 |
---|---|
permlink | re-dan-eos-developer-s-log-starday-201707-3-20170704t101709176z |
category | eos |
json_metadata | {"tags":["eos"],"app":"steemit/0.1"} |
created | 2017-07-04 10:17:18 |
last_update | 2017-07-04 10:17:18 |
depth | 1 |
children | 0 |
last_payout | 2017-07-11 10:17:18 |
cashout_time | 1969-12-31 23:59:59 |
total_payout_value | 0.000 HBD |
curator_payout_value | 0.000 HBD |
pending_payout_value | 0.000 HBD |
promoted | 0.000 HBD |
body_length | 254 |
author_reputation | 71,130,677,251 |
root_title | "EOS - Developer’s Log Stardate 201707.3" |
beneficiaries | [] |
max_accepted_payout | 1,000,000.000 HBD |
percent_hbd | 10,000 |
post_id | 7,257,461 |
net_rshares | 1,573,829,012 |
author_curate_reward | "" |
voter | weight | wgt% | rshares | pct | time |
---|---|---|---|---|---|
daniel2416 | 0 | 1,573,829,012 | 100% |
Wish i am computer literate ... nice update though
author | dapsyt |
---|---|
permlink | re-dan-eos-developer-s-log-starday-201707-3-20170704t124036077z |
category | eos |
json_metadata | {"tags":["eos"],"app":"steemit/0.1"} |
created | 2017-07-04 12:40:45 |
last_update | 2017-07-04 12:40:45 |
depth | 1 |
children | 0 |
last_payout | 2017-07-11 12:40:45 |
cashout_time | 1969-12-31 23:59:59 |
total_payout_value | 0.000 HBD |
curator_payout_value | 0.000 HBD |
pending_payout_value | 0.000 HBD |
promoted | 0.000 HBD |
body_length | 50 |
author_reputation | 18,136,052 |
root_title | "EOS - Developer’s Log Stardate 201707.3" |
beneficiaries | [] |
max_accepted_payout | 1,000,000.000 HBD |
percent_hbd | 10,000 |
post_id | 7,271,165 |
net_rshares | 0 |
Thx for sharing this information with us, cool post like it!
author | deazydee |
---|---|
permlink | re-dan-eos-developer-s-log-starday-201707-3-20170704t140947396z |
category | eos |
json_metadata | {"tags":["eos"],"app":"steemit/0.1"} |
created | 2017-07-04 14:09:48 |
last_update | 2017-07-04 14:09:48 |
depth | 1 |
children | 0 |
last_payout | 2017-07-11 14:09:48 |
cashout_time | 1969-12-31 23:59:59 |
total_payout_value | 0.000 HBD |
curator_payout_value | 0.000 HBD |
pending_payout_value | 0.000 HBD |
promoted | 0.000 HBD |
body_length | 60 |
author_reputation | 312,441,413,976 |
root_title | "EOS - Developer’s Log Stardate 201707.3" |
beneficiaries | [] |
max_accepted_payout | 1,000,000.000 HBD |
percent_hbd | 10,000 |
post_id | 7,280,919 |
net_rshares | 0 |
Thank you so much for your good work dear @dan! Good luck to you and good luck in the future!
author | deleni |
---|---|
permlink | re-dan-eos-developer-s-log-starday-201707-3-20170710t222835795z |
category | eos |
json_metadata | {"tags":["eos"],"users":["dan"],"app":"steemit/0.1"} |
created | 2017-07-10 22:28:39 |
last_update | 2017-07-10 22:28:39 |
depth | 1 |
children | 0 |
last_payout | 2017-07-17 22:28:39 |
cashout_time | 1969-12-31 23:59:59 |
total_payout_value | 0.000 HBD |
curator_payout_value | 0.000 HBD |
pending_payout_value | 0.000 HBD |
promoted | 0.000 HBD |
body_length | 94 |
author_reputation | 659,010,170,363 |
root_title | "EOS - Developer’s Log Stardate 201707.3" |
beneficiaries | [] |
max_accepted_payout | 1,000,000.000 HBD |
percent_hbd | 10,000 |
post_id | 8,038,722 |
net_rshares | 0 |
nice work mate.. good luck
author | dinsha |
---|---|
permlink | re-dan-eos-developer-s-log-starday-201707-3-20170704t071735050z |
category | eos |
json_metadata | {"tags":["eos"],"app":"steemit/0.1"} |
created | 2017-07-04 07:17:39 |
last_update | 2017-07-04 07:17:39 |
depth | 1 |
children | 0 |
last_payout | 2017-07-11 07:17:39 |
cashout_time | 1969-12-31 23:59:59 |
total_payout_value | 0.000 HBD |
curator_payout_value | 0.000 HBD |
pending_payout_value | 0.000 HBD |
promoted | 0.000 HBD |
body_length | 26 |
author_reputation | 23,079,753,432,500 |
root_title | "EOS - Developer’s Log Stardate 201707.3" |
beneficiaries | [] |
max_accepted_payout | 1,000,000.000 HBD |
percent_hbd | 10,000 |
post_id | 7,242,247 |
net_rshares | 0 |
hi , pls i am new to steemit and crypto, and blogging is my hobby, you can follow me @dkinx
author | dkinx |
---|---|
permlink | re-dan-eos-developer-s-log-starday-201707-3-20170704t175126218z |
category | eos |
json_metadata | {"tags":["eos"],"users":["dkinx"],"app":"steemit/0.1"} |
created | 2017-07-04 17:51:27 |
last_update | 2017-07-04 17:51:27 |
depth | 1 |
children | 0 |
last_payout | 2017-07-11 17:51:27 |
cashout_time | 1969-12-31 23:59:59 |
total_payout_value | 0.000 HBD |
curator_payout_value | 0.000 HBD |
pending_payout_value | 0.000 HBD |
promoted | 0.000 HBD |
body_length | 92 |
author_reputation | 17,499,415,125 |
root_title | "EOS - Developer’s Log Stardate 201707.3" |
beneficiaries | [] |
max_accepted_payout | 1,000,000.000 HBD |
percent_hbd | 10,000 |
post_id | 7,304,560 |
net_rshares | 1,786,866,994 |
author_curate_reward | "" |
voter | weight | wgt% | rshares | pct | time |
---|---|---|---|---|---|
dkinx | 0 | 1,786,866,994 | 100% |
Do you think we should take the EOS now, or wait for it to appear on different exchanges?
author | dlina-v-metrah |
---|---|
permlink | re-dan-eos-developer-s-log-starday-201707-3-20170704t122456419z |
category | eos |
json_metadata | {"tags":["eos"],"app":"steemit/0.1"} |
created | 2017-07-04 12:25:12 |
last_update | 2017-07-04 12:25:12 |
depth | 1 |
children | 0 |
last_payout | 2017-07-11 12:25:12 |
cashout_time | 1969-12-31 23:59:59 |
total_payout_value | 0.000 HBD |
curator_payout_value | 0.000 HBD |
pending_payout_value | 0.000 HBD |
promoted | 0.000 HBD |
body_length | 89 |
author_reputation | 4,193,087,735,412 |
root_title | "EOS - Developer’s Log Stardate 201707.3" |
beneficiaries | [] |
max_accepted_payout | 1,000,000.000 HBD |
percent_hbd | 10,000 |
post_id | 7,269,671 |
net_rshares | 0 |
Cool, will be getting some tonight, glad they have it in Kraken with a few pairs (ETH, BTC, USD, EUR) Thanks @dan !!
author | dontstopmenow |
---|---|
permlink | re-dan-eos-developer-s-log-starday-201707-3-20170703t220348727z |
category | eos |
json_metadata | {"tags":["eos"],"users":["dan"],"app":"steemit/0.1"} |
created | 2017-07-03 21:54:12 |
last_update | 2017-07-03 21:54:12 |
depth | 1 |
children | 1 |
last_payout | 2017-07-10 21:54:12 |
cashout_time | 1969-12-31 23:59:59 |
total_payout_value | 1.828 HBD |
curator_payout_value | 0.606 HBD |
pending_payout_value | 0.000 HBD |
promoted | 0.000 HBD |
body_length | 117 |
author_reputation | 68,990,690,787,507 |
root_title | "EOS - Developer’s Log Stardate 201707.3" |
beneficiaries | [] |
max_accepted_payout | 1,000,000.000 HBD |
percent_hbd | 10,000 |
post_id | 7,198,279 |
net_rshares | 365,697,821,399 |
author_curate_reward | "" |
voter | weight | wgt% | rshares | pct | time |
---|---|---|---|---|---|
itan05 | 0 | 491,494,900 | 100% | ||
randowhale1 | 0 | 365,206,326,499 | 2.2% |
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)!
author | randowhale |
---|---|
permlink | re-re-dan-eos-developer-s-log-starday-201707-3-20170703t220348727z-20170710t032327 |
category | eos |
json_metadata | "{"format": "markdown", "app": "randowhale/0.1"}" |
created | 2017-07-10 03:23:30 |
last_update | 2017-07-10 03:23:30 |
depth | 2 |
children | 0 |
last_payout | 2017-07-17 03:23:30 |
cashout_time | 1969-12-31 23:59:59 |
total_payout_value | 0.000 HBD |
curator_payout_value | 0.000 HBD |
pending_payout_value | 0.000 HBD |
promoted | 0.000 HBD |
body_length | 217 |
author_reputation | 47,657,457,485,459 |
root_title | "EOS - Developer’s Log Stardate 201707.3" |
beneficiaries | [] |
max_accepted_payout | 1,000,000.000 HBD |
percent_hbd | 10,000 |
post_id | 7,940,435 |
net_rshares | 0 |
good.. keep steemit go further.
author | doqstrader |
---|---|
permlink | re-dan-eos-developer-s-log-starday-201707-3-20170705t160231922z |
category | eos |
json_metadata | {"tags":["eos"],"app":"steemit/0.1"} |
created | 2017-07-05 16:02:30 |
last_update | 2017-07-05 16:02:30 |
depth | 1 |
children | 0 |
last_payout | 2017-07-12 16:02:30 |
cashout_time | 1969-12-31 23:59:59 |
total_payout_value | 0.018 HBD |
curator_payout_value | 0.006 HBD |
pending_payout_value | 0.000 HBD |
promoted | 0.000 HBD |
body_length | 31 |
author_reputation | 756,354,394,224 |
root_title | "EOS - Developer’s Log Stardate 201707.3" |
beneficiaries | [] |
max_accepted_payout | 1,000,000.000 HBD |
percent_hbd | 10,000 |
post_id | 7,413,455 |
net_rshares | 5,063,874,754 |
author_curate_reward | "" |
voter | weight | wgt% | rshares | pct | time |
---|---|---|---|---|---|
doqstrader | 0 | 5,063,874,754 | 100% |
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!
author | dougkarr |
---|---|
permlink | re-dan-eos-developer-s-log-starday-201707-3-20170704t181535592z |
category | eos |
json_metadata | {"tags":["eos"],"users":["dan"],"app":"steemit/0.1"} |
created | 2017-07-04 18:15:36 |
last_update | 2017-07-04 18:15:36 |
depth | 1 |
children | 0 |
last_payout | 2017-07-11 18:15:36 |
cashout_time | 1969-12-31 23:59:59 |
total_payout_value | 0.000 HBD |
curator_payout_value | 0.000 HBD |
pending_payout_value | 0.000 HBD |
promoted | 0.000 HBD |
body_length | 227 |
author_reputation | 42,423,973,873,019 |
root_title | "EOS - Developer’s Log Stardate 201707.3" |
beneficiaries | [] |
max_accepted_payout | 1,000,000.000 HBD |
percent_hbd | 10,000 |
post_id | 7,307,011 |
net_rshares | 0 |
I have steemit, bts and Eos will join the party too
author | dowha |
---|---|
permlink | re-dan-eos-developer-s-log-starday-201707-3-20170703t215024783z |
category | eos |
json_metadata | {"tags":["eos"],"app":"steemit/0.1"} |
created | 2017-07-03 21:50:03 |
last_update | 2017-07-03 21:51:48 |
depth | 1 |
children | 3 |
last_payout | 2017-07-10 21:50:03 |
cashout_time | 1969-12-31 23:59:59 |
total_payout_value | 0.696 HBD |
curator_payout_value | 0.010 HBD |
pending_payout_value | 0.000 HBD |
promoted | 0.000 HBD |
body_length | 51 |
author_reputation | 2,298,201,438,916 |
root_title | "EOS - Developer’s Log Stardate 201707.3" |
beneficiaries | [] |
max_accepted_payout | 1,000,000.000 HBD |
percent_hbd | 10,000 |
post_id | 7,197,877 |
net_rshares | 106,334,181,147 |
author_curate_reward | "" |
voter | weight | wgt% | rshares | pct | time |
---|---|---|---|---|---|
dowha | 0 | 100,408,339,477 | 100% | ||
tomino | 0 | 1,182,351,442 | 1% | ||
eskilxan | 0 | 278,986,197 | 100% | ||
richreck | 0 | 2,520,356,328 | 2% | ||
automatedjanitor | 0 | 800,872,834 | 100% | ||
muga | 0 | 1,143,274,869 | 100% |
Basically a dan larimer investment. Why not add golos tu the mix? :)
author | anonimnotoriu |
---|---|
permlink | re-dowha-re-dan-eos-developer-s-log-starday-201707-3-20170705t100838507z |
category | eos |
json_metadata | {"tags":["eos"],"app":"steemit/0.1"} |
created | 2017-07-05 10:08:51 |
last_update | 2017-07-05 10:08:51 |
depth | 2 |
children | 0 |
last_payout | 2017-07-12 10:08:51 |
cashout_time | 1969-12-31 23:59:59 |
total_payout_value | 0.000 HBD |
curator_payout_value | 0.000 HBD |
pending_payout_value | 0.000 HBD |
promoted | 0.000 HBD |
body_length | 68 |
author_reputation | 3,101,674,089,461 |
root_title | "EOS - Developer’s Log Stardate 201707.3" |
beneficiaries | [] |
max_accepted_payout | 1,000,000.000 HBD |
percent_hbd | 10,000 |
post_id | 7,379,629 |
net_rshares | 0 |
author | richreck |
---|---|
permlink | re-dowha-re-dan-eos-developer-s-log-starday-201707-3-20170704t180502671z |
category | eos |
json_metadata | {"tags":["eos"],"app":"steemit/0.1"} |
created | 2017-07-04 18:05:06 |
last_update | 2017-07-04 18:05:06 |
depth | 2 |
children | 1 |
last_payout | 2017-07-11 18:05:06 |
cashout_time | 1969-12-31 23:59:59 |
total_payout_value | 0.786 HBD |
curator_payout_value | 0.000 HBD |
pending_payout_value | 0.000 HBD |
promoted | 0.000 HBD |
body_length | 12 |
author_reputation | 263,519,071,944 |
root_title | "EOS - Developer’s Log Stardate 201707.3" |
beneficiaries | [] |
max_accepted_payout | 1,000,000.000 HBD |
percent_hbd | 10,000 |
post_id | 7,305,918 |
net_rshares | 125,119,938,791 |
author_curate_reward | "" |
voter | weight | wgt% | rshares | pct | time |
---|---|---|---|---|---|
richreck | 0 | 124,127,549,192 | 100% | ||
ronzig1 | 0 | 992,389,599 | 100% |
i will wait a little bit more and then try my luck
author | dowha |
---|---|
permlink | re-richreck-re-dowha-re-dan-eos-developer-s-log-starday-201707-3-20170704t181523905z |
category | eos |
json_metadata | {"tags":["eos"],"app":"steemit/0.1"} |
created | 2017-07-04 18:15:24 |
last_update | 2017-07-04 18:15:24 |
depth | 3 |
children | 0 |
last_payout | 2017-07-11 18:15:24 |
cashout_time | 1969-12-31 23:59:59 |
total_payout_value | 0.607 HBD |
curator_payout_value | 0.201 HBD |
pending_payout_value | 0.000 HBD |
promoted | 0.000 HBD |
body_length | 50 |
author_reputation | 2,298,201,438,916 |
root_title | "EOS - Developer’s Log Stardate 201707.3" |
beneficiaries | [] |
max_accepted_payout | 1,000,000.000 HBD |
percent_hbd | 10,000 |
post_id | 7,306,994 |
net_rshares | 128,854,903,866 |
author_curate_reward | "" |
voter | weight | wgt% | rshares | pct | time |
---|---|---|---|---|---|
dowha | 0 | 128,854,903,866 | 100% |
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...
author | dracosalieri |
---|---|
permlink | re-dan-eos-developer-s-log-starday-201707-3-20170703t222826922z |
category | eos |
json_metadata | {"tags":["eos"],"app":"steemit/0.1"} |
created | 2017-07-03 22:28:27 |
last_update | 2017-07-03 22:28:27 |
depth | 1 |
children | 0 |
last_payout | 2017-07-10 22:28:27 |
cashout_time | 1969-12-31 23:59:59 |
total_payout_value | 0.000 HBD |
curator_payout_value | 0.000 HBD |
pending_payout_value | 0.000 HBD |
promoted | 0.000 HBD |
body_length | 121 |
author_reputation | 4,335,910,933,316 |
root_title | "EOS - Developer’s Log Stardate 201707.3" |
beneficiaries | [] |
max_accepted_payout | 1,000,000.000 HBD |
percent_hbd | 10,000 |
post_id | 7,201,558 |
net_rshares | 0 |
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.
author | dveloper |
---|---|
permlink | re-dan-eos-developer-s-log-starday-201707-3-20170703t233145360z |
category | eos |
json_metadata | {"tags":["eos"],"app":"steemit/0.1"} |
created | 2017-07-03 23:31:45 |
last_update | 2017-07-03 23:31:45 |
depth | 1 |
children | 0 |
last_payout | 2017-07-10 23:31:45 |
cashout_time | 1969-12-31 23:59:59 |
total_payout_value | 0.000 HBD |
curator_payout_value | 0.000 HBD |
pending_payout_value | 0.000 HBD |
promoted | 0.000 HBD |
body_length | 555 |
author_reputation | 676,876,889 |
root_title | "EOS - Developer’s Log Stardate 201707.3" |
beneficiaries | [] |
max_accepted_payout | 1,000,000.000 HBD |
percent_hbd | 10,000 |
post_id | 7,206,956 |
net_rshares | 0 |
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! 🤔🤓
author | egovandal |
---|---|
permlink | re-dan-eos-developer-s-log-starday-201707-3-20170705t000003585z |
category | eos |
json_metadata | {"tags":["eos"],"app":"steemit/0.1"} |
created | 2017-07-05 00:00:06 |
last_update | 2017-07-05 00:00:06 |
depth | 1 |
children | 0 |
last_payout | 2017-07-12 00:00:06 |
cashout_time | 1969-12-31 23:59:59 |
total_payout_value | 0.000 HBD |
curator_payout_value | 0.000 HBD |
pending_payout_value | 0.000 HBD |
promoted | 0.000 HBD |
body_length | 158 |
author_reputation | 10,111,739,193 |
root_title | "EOS - Developer’s Log Stardate 201707.3" |
beneficiaries | [] |
max_accepted_payout | 1,000,000.000 HBD |
percent_hbd | 10,000 |
post_id | 7,336,948 |
net_rshares | 1,218,171,051 |
author_curate_reward | "" |
voter | weight | wgt% | rshares | pct | time |
---|---|---|---|---|---|
egovandal | 0 | 1,218,171,051 | 100% |
You seem to not really be in a hurry to stop discovering these wonderful additions to humanity. Good one.
author | ejemai |
---|---|
permlink | re-dan-eos-developer-s-log-starday-201707-3-20170704t121506450z |
category | eos |
json_metadata | {"tags":["eos"],"app":"steemit/0.1"} |
created | 2017-07-04 12:15:12 |
last_update | 2017-07-04 12:15:12 |
depth | 1 |
children | 0 |
last_payout | 2017-07-11 12:15:12 |
cashout_time | 1969-12-31 23:59:59 |
total_payout_value | 0.000 HBD |
curator_payout_value | 0.000 HBD |
pending_payout_value | 0.000 HBD |
promoted | 0.000 HBD |
body_length | 105 |
author_reputation | 265,163,230,573,530 |
root_title | "EOS - Developer’s Log Stardate 201707.3" |
beneficiaries | [] |
max_accepted_payout | 1,000,000.000 HBD |
percent_hbd | 10,000 |
post_id | 7,268,624 |
net_rshares | 0 |
upvoted! i wish to give at least $55 vote but my max vote only $0.04
author | encryptcy |
---|---|
permlink | re-dan-eos-developer-s-log-starday-201707-3-20170704t052610841z |
category | eos |
json_metadata | {"tags":["eos"],"app":"steemit/0.1"} |
created | 2017-07-04 05:25:48 |
last_update | 2017-07-04 05:25:48 |
depth | 1 |
children | 0 |
last_payout | 2017-07-11 05:25:48 |
cashout_time | 1969-12-31 23:59:59 |
total_payout_value | 0.000 HBD |
curator_payout_value | 0.000 HBD |
pending_payout_value | 0.000 HBD |
promoted | 0.000 HBD |
body_length | 68 |
author_reputation | 1,707,577,567,135 |
root_title | "EOS - Developer’s Log Stardate 201707.3" |
beneficiaries | [] |
max_accepted_payout | 1,000,000.000 HBD |
percent_hbd | 10,000 |
post_id | 7,233,719 |
net_rshares | 0 |
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?
author | endeavor |
---|---|
permlink | re-dan-eos-developer-s-log-starday-201707-3-20170703t223031756z |
category | eos |
json_metadata | {"tags":["eos"],"app":"steemit/0.1"} |
created | 2017-07-03 22:30:24 |
last_update | 2017-07-03 22:30:24 |
depth | 1 |
children | 5 |
last_payout | 2017-07-10 22:30:24 |
cashout_time | 1969-12-31 23:59:59 |
total_payout_value | 0.000 HBD |
curator_payout_value | 0.000 HBD |
pending_payout_value | 0.000 HBD |
promoted | 0.000 HBD |
body_length | 383 |
author_reputation | 73,562,353,995 |
root_title | "EOS - Developer’s Log Stardate 201707.3" |
beneficiaries | [] |
max_accepted_payout | 1,000,000.000 HBD |
percent_hbd | 10,000 |
post_id | 7,201,763 |
net_rshares | 1,932,673,817 |
author_curate_reward | "" |
voter | weight | wgt% | rshares | pct | time |
---|---|---|---|---|---|
vengance | 0 | 1,671,124,258 | 100% | ||
eskilxan | 0 | 261,549,559 | 100% |
EOS is being designed to process as many transactions as Visa and Mastercard - that is one of EOS's USP's.
author | steemtruth |
---|---|
permlink | re-endeavor-re-dan-eos-developer-s-log-starday-201707-3-20170703t231612195z |
category | eos |
json_metadata | {"tags":["eos"],"app":"steemit/0.1"} |
created | 2017-07-03 23:16:15 |
last_update | 2017-07-03 23:16:15 |
depth | 2 |
children | 2 |
last_payout | 2017-07-10 23:16:15 |
cashout_time | 1969-12-31 23:59:59 |
total_payout_value | 0.000 HBD |
curator_payout_value | 0.000 HBD |
pending_payout_value | 0.000 HBD |
promoted | 0.000 HBD |
body_length | 106 |
author_reputation | 43,608,578,609,619 |
root_title | "EOS - Developer’s Log Stardate 201707.3" |
beneficiaries | [] |
max_accepted_payout | 1,000,000.000 HBD |
percent_hbd | 10,000 |
post_id | 7,205,609 |
net_rshares | 841,986,885 |
author_curate_reward | "" |
voter | weight | wgt% | rshares | pct | time |
---|---|---|---|---|---|
endeavor | 0 | 586,249,538 | 100% | ||
eskilxan | 0 | 255,737,347 | 100% |
That will be awesome
author | chaste |
---|---|
permlink | re-steemtruth-re-endeavor-re-dan-eos-developer-s-log-starday-201707-3-20170703t234645488z |
category | eos |
json_metadata | {"tags":["eos"],"app":"steemit/0.1"} |
created | 2017-07-03 23:46:57 |
last_update | 2017-07-03 23:46:57 |
depth | 3 |
children | 0 |
last_payout | 2017-07-10 23:46:57 |
cashout_time | 1969-12-31 23:59:59 |
total_payout_value | 0.000 HBD |
curator_payout_value | 0.000 HBD |
pending_payout_value | 0.000 HBD |
promoted | 0.000 HBD |
body_length | 20 |
author_reputation | 7,901,506,885 |
root_title | "EOS - Developer’s Log Stardate 201707.3" |
beneficiaries | [] |
max_accepted_payout | 1,000,000.000 HBD |
percent_hbd | 10,000 |
post_id | 7,208,119 |
net_rshares | 575,970,586 |
author_curate_reward | "" |
voter | weight | wgt% | rshares | pct | time |
---|---|---|---|---|---|
itan05 | 0 | 575,970,586 | 100% |
Thanks for the response, this is great news!
author | endeavor |
---|---|
permlink | re-steemtruth-re-endeavor-re-dan-eos-developer-s-log-starday-201707-3-20170704t001050987z |
category | eos |
json_metadata | {"tags":["eos"],"app":"steemit/0.1"} |
created | 2017-07-04 00:10:51 |
last_update | 2017-07-04 00:10:51 |
depth | 3 |
children | 0 |
last_payout | 2017-07-11 00:10:51 |
cashout_time | 1969-12-31 23:59:59 |
total_payout_value | 0.000 HBD |
curator_payout_value | 0.000 HBD |
pending_payout_value | 0.000 HBD |
promoted | 0.000 HBD |
body_length | 44 |
author_reputation | 73,562,353,995 |
root_title | "EOS - Developer’s Log Stardate 201707.3" |
beneficiaries | [] |
max_accepted_payout | 1,000,000.000 HBD |
percent_hbd | 10,000 |
post_id | 7,209,840 |
net_rshares | 560,611,370 |
author_curate_reward | "" |
voter | weight | wgt% | rshares | pct | time |
---|---|---|---|---|---|
itan05 | 0 | 560,611,370 | 100% |
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.
author | steemtruth |
---|---|
permlink | re-endeavor-re-dan-eos-developer-s-log-starday-201707-3-20170704t114333654z |
category | eos |
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"} |
created | 2017-07-04 11:43:33 |
last_update | 2017-07-04 11:43:33 |
depth | 2 |
children | 1 |
last_payout | 2017-07-11 11:43:33 |
cashout_time | 1969-12-31 23:59:59 |
total_payout_value | 0.000 HBD |
curator_payout_value | 0.000 HBD |
pending_payout_value | 0.000 HBD |
promoted | 0.000 HBD |
body_length | 516 |
author_reputation | 43,608,578,609,619 |
root_title | "EOS - Developer’s Log Stardate 201707.3" |
beneficiaries | [] |
max_accepted_payout | 1,000,000.000 HBD |
percent_hbd | 10,000 |
post_id | 7,265,402 |
net_rshares | 893,744,699 |
author_curate_reward | "" |
voter | weight | wgt% | rshares | pct | time |
---|---|---|---|---|---|
jeremylarter | 0 | 893,744,699 | 100% |
Thanks steemtruth!
author | endeavor |
---|---|
permlink | re-steemtruth-re-endeavor-re-dan-eos-developer-s-log-starday-201707-3-20170705t001202178z |
category | eos |
json_metadata | {"tags":["eos"],"app":"steemit/0.1"} |
created | 2017-07-05 00:12:03 |
last_update | 2017-07-05 00:12:03 |
depth | 3 |
children | 0 |
last_payout | 2017-07-12 00:12:03 |
cashout_time | 1969-12-31 23:59:59 |
total_payout_value | 0.000 HBD |
curator_payout_value | 0.000 HBD |
pending_payout_value | 0.000 HBD |
promoted | 0.000 HBD |
body_length | 18 |
author_reputation | 73,562,353,995 |
root_title | "EOS - Developer’s Log Stardate 201707.3" |
beneficiaries | [] |
max_accepted_payout | 1,000,000.000 HBD |
percent_hbd | 10,000 |
post_id | 7,337,697 |
net_rshares | 0 |
thank you for sharing.dan
author | enomujjass |
---|---|
permlink | re-dan-eos-developer-s-log-starday-201707-3-20170704t170227519z |
category | eos |
json_metadata | {"tags":["eos"],"app":"steemit/0.1"} |
created | 2017-07-04 17:02:30 |
last_update | 2017-07-04 17:02:30 |
depth | 1 |
children | 0 |
last_payout | 2017-07-11 17:02:30 |
cashout_time | 1969-12-31 23:59:59 |
total_payout_value | 0.000 HBD |
curator_payout_value | 0.000 HBD |
pending_payout_value | 0.000 HBD |
promoted | 0.000 HBD |
body_length | 25 |
author_reputation | 22,886,438,234,426 |
root_title | "EOS - Developer’s Log Stardate 201707.3" |
beneficiaries | [] |
max_accepted_payout | 1,000,000.000 HBD |
percent_hbd | 10,000 |
post_id | 7,299,628 |
net_rshares | 0 |
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.
author | ericrumor |
---|---|
permlink | re-dan-eos-developer-s-log-starday-201707-3-20170703t224200740z |
category | eos |
json_metadata | {"tags":["eos"],"app":"steemit/0.1"} |
created | 2017-07-03 22:42:06 |
last_update | 2017-07-06 06:15:27 |
depth | 1 |
children | 0 |
last_payout | 2017-07-10 22:42:06 |
cashout_time | 1969-12-31 23:59:59 |
total_payout_value | 0.000 HBD |
curator_payout_value | 0.000 HBD |
pending_payout_value | 0.000 HBD |
promoted | 0.000 HBD |
body_length | 205 |
author_reputation | 718,821,742,604 |
root_title | "EOS - Developer’s Log Stardate 201707.3" |
beneficiaries | [] |
max_accepted_payout | 1,000,000.000 HBD |
percent_hbd | 10,000 |
post_id | 7,202,821 |
net_rshares | 0 |
author_curate_reward | "" |
voter | weight | wgt% | rshares | pct | time |
---|---|---|---|---|---|
matt-a | 0 | 0 | 0% |
Keep up the great work!
author | fisch |
---|---|
permlink | re-dan-eos-developer-s-log-starday-201707-3-20170703t230810474z |
category | eos |
json_metadata | {"tags":["eos"],"app":"steemit/0.1"} |
created | 2017-07-03 23:08:15 |
last_update | 2017-07-03 23:08:15 |
depth | 1 |
children | 0 |
last_payout | 2017-07-10 23:08:15 |
cashout_time | 1969-12-31 23:59:59 |
total_payout_value | 0.882 HBD |
curator_payout_value | 0.293 HBD |
pending_payout_value | 0.000 HBD |
promoted | 0.000 HBD |
body_length | 23 |
author_reputation | 1,788,529,918,215 |
root_title | "EOS - Developer’s Log Stardate 201707.3" |
beneficiaries | [] |
max_accepted_payout | 1,000,000.000 HBD |
percent_hbd | 10,000 |
post_id | 7,205,002 |
net_rshares | 176,931,355,556 |
author_curate_reward | "" |
voter | weight | wgt% | rshares | pct | time |
---|---|---|---|---|---|
fisch | 0 | 176,931,355,556 | 100% |
What language do i need to become a eos developer? Have been looking for a learning project to get me back into programming.
author | fiveboringgames |
---|---|
permlink | re-dan-eos-developer-s-log-starday-201707-3-20170703t215037342z |
category | eos |
json_metadata | {"tags":["eos"],"app":"steemit/0.1"} |
created | 2017-07-03 21:50:39 |
last_update | 2017-07-03 21:50:39 |
depth | 1 |
children | 5 |
last_payout | 2017-07-10 21:50:39 |
cashout_time | 1969-12-31 23:59:59 |
total_payout_value | 2.270 HBD |
curator_payout_value | 0.170 HBD |
pending_payout_value | 0.000 HBD |
promoted | 0.000 HBD |
body_length | 124 |
author_reputation | 73,849,148,682,162 |
root_title | "EOS - Developer’s Log Stardate 201707.3" |
beneficiaries | [] |
max_accepted_payout | 1,000,000.000 HBD |
percent_hbd | 10,000 |
post_id | 7,197,940 |
net_rshares | 366,633,997,245 |
author_curate_reward | "" |
voter | weight | wgt% | rshares | pct | time |
---|---|---|---|---|---|
kevinwong | 0 | 144,783,582,279 | 5% | ||
digitalplayer | 0 | 73,604,788 | 100% | ||
hedge-x | 0 | 28,449,077,514 | 10% | ||
fiveboringgames | 0 | 154,449,867,133 | 100% | ||
bestofreddit | 0 | 30,736,498,853 | 90% | ||
tomino | 0 | 1,182,351,442 | 1% | ||
elgeko | 0 | 3,352,894,914 | 4% | ||
eskilxan | 0 | 284,798,409 | 100% | ||
aifuture | 0 | 170,061,624 | 100% | ||
automatedjanitor | 0 | 870,513,950 | 100% | ||
patmenpet | 0 | 1,120,061,208 | 100% | ||
risk-a | 0 | 1,160,685,131 | 100% |
lots of year of practice with C++ , C and block-chain technology
author | digitalplayer |
---|---|
permlink | re-fiveboringgames-re-dan-eos-developer-s-log-starday-201707-3-20170704t200252622z |
category | eos |
json_metadata | {"tags":["eos"],"app":"steemit/0.1"} |
created | 2017-07-04 20:02:54 |
last_update | 2017-07-04 20:02:54 |
depth | 2 |
children | 0 |
last_payout | 2017-07-11 20:02:54 |
cashout_time | 1969-12-31 23:59:59 |
total_payout_value | 0.000 HBD |
curator_payout_value | 0.000 HBD |
pending_payout_value | 0.000 HBD |
promoted | 0.000 HBD |
body_length | 64 |
author_reputation | 5,289,318,347,578 |
root_title | "EOS - Developer’s Log Stardate 201707.3" |
beneficiaries | [] |
max_accepted_payout | 1,000,000.000 HBD |
percent_hbd | 10,000 |
post_id | 7,317,320 |
net_rshares | 0 |
Even Word press is also ok for beginner or can go with C++ , .net platform etc...
author | face2face |
---|---|
permlink | re-fiveboringgames-re-dan-eos-developer-s-log-starday-201707-3-20170704t014155314z |
category | eos |
json_metadata | {"tags":["eos"],"app":"steemit/0.1"} |
created | 2017-07-04 01:41:57 |
last_update | 2017-07-04 01:41:57 |
depth | 2 |
children | 0 |
last_payout | 2017-07-11 01:41:57 |
cashout_time | 1969-12-31 23:59:59 |
total_payout_value | 0.000 HBD |
curator_payout_value | 0.000 HBD |
pending_payout_value | 0.000 HBD |
promoted | 0.000 HBD |
body_length | 81 |
author_reputation | 96,985,200,810,100 |
root_title | "EOS - Developer’s Log Stardate 201707.3" |
beneficiaries | [] |
max_accepted_payout | 1,000,000.000 HBD |
percent_hbd | 10,000 |
post_id | 7,216,871 |
net_rshares | 0 |
Their github repo is mainly C++14. So knowing C++ should be sufficient I think.
author | pyrocryptex |
---|---|
permlink | re-fiveboringgames-re-dan-eos-developer-s-log-starday-201707-3-20170703t224841902z |
category | eos |
json_metadata | {"tags":["eos"],"app":"steemit/0.1"} |
created | 2017-07-03 22:48:42 |
last_update | 2017-07-03 22:48:42 |
depth | 2 |
children | 0 |
last_payout | 2017-07-10 22:48:42 |
cashout_time | 1969-12-31 23:59:59 |
total_payout_value | 0.000 HBD |
curator_payout_value | 0.000 HBD |
pending_payout_value | 0.000 HBD |
promoted | 0.000 HBD |
body_length | 79 |
author_reputation | 1,727,645,453 |
root_title | "EOS - Developer’s Log Stardate 201707.3" |
beneficiaries | [] |
max_accepted_payout | 1,000,000.000 HBD |
percent_hbd | 10,000 |
post_id | 7,203,365 |
net_rshares | 2,924,938,481 |
author_curate_reward | "" |
voter | weight | wgt% | rshares | pct | time |
---|---|---|---|---|---|
dextrian | 0 | 1,137,483,218 | 100% | ||
automatedjanitor | 0 | 835,693,392 | 100% | ||
tanzai | 0 | 951,761,871 | 100% |
excellent question ,, want an answer too
author | raa228 |
---|---|
permlink | re-fiveboringgames-re-dan-eos-developer-s-log-starday-201707-3-20170704t083905489z |
category | eos |
json_metadata | {"tags":["eos"],"app":"steemit/0.1"} |
created | 2017-07-04 08:39:03 |
last_update | 2017-07-04 08:39:03 |
depth | 2 |
children | 0 |
last_payout | 2017-07-11 08:39:03 |
cashout_time | 1969-12-31 23:59:59 |
total_payout_value | 0.000 HBD |
curator_payout_value | 0.000 HBD |
pending_payout_value | 0.000 HBD |
promoted | 0.000 HBD |
body_length | 40 |
author_reputation | 46,016,260 |
root_title | "EOS - Developer’s Log Stardate 201707.3" |
beneficiaries | [] |
max_accepted_payout | 1,000,000.000 HBD |
percent_hbd | 10,000 |
post_id | 7,249,229 |
net_rshares | 0 |
When talking about programming does make a headache. But we must understand this.
author | risk-a |
---|---|
permlink | re-fiveboringgames-re-dan-eos-developer-s-log-starday-201707-3-20170703t235200697z |
category | eos |
json_metadata | {"tags":["eos"],"app":"steemit/0.1"} |
created | 2017-07-03 23:52:45 |
last_update | 2017-07-03 23:52:45 |
depth | 2 |
children | 0 |
last_payout | 2017-07-10 23:52:45 |
cashout_time | 1969-12-31 23:59:59 |
total_payout_value | 0.000 HBD |
curator_payout_value | 0.000 HBD |
pending_payout_value | 0.000 HBD |
promoted | 0.000 HBD |
body_length | 81 |
author_reputation | 223,304,452,705 |
root_title | "EOS - Developer’s Log Stardate 201707.3" |
beneficiaries | [] |
max_accepted_payout | 1,000,000.000 HBD |
percent_hbd | 10,000 |
post_id | 7,208,518 |
net_rshares | 818,283,113 |
author_curate_reward | "" |
voter | weight | wgt% | rshares | pct | time |
---|---|---|---|---|---|
automatedjanitor | 0 | 818,283,113 | 100% |
nice....post....but very technical for me :)
author | flowerwong66 |
---|---|
permlink | re-dan-eos-developer-s-log-starday-201707-3-20170703t232513849z |
category | eos |
json_metadata | {"tags":["eos"],"app":"steemit/0.1"} |
created | 2017-07-03 23:25:15 |
last_update | 2017-07-03 23:25:15 |
depth | 1 |
children | 0 |
last_payout | 2017-07-10 23:25:15 |
cashout_time | 1969-12-31 23:59:59 |
total_payout_value | 0.000 HBD |
curator_payout_value | 0.000 HBD |
pending_payout_value | 0.000 HBD |
promoted | 0.000 HBD |
body_length | 44 |
author_reputation | 672,860,897,079 |
root_title | "EOS - Developer’s Log Stardate 201707.3" |
beneficiaries | [] |
max_accepted_payout | 1,000,000.000 HBD |
percent_hbd | 10,000 |
post_id | 7,206,365 |
net_rshares | 962,820,618 |
author_curate_reward | "" |
voter | weight | wgt% | rshares | pct | time |
---|---|---|---|---|---|
itan05 | 0 | 476,135,684 | 100% | ||
flowerwong66 | 0 | 486,684,934 | 100% |
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).
author | forykw |
---|---|
permlink | re-dan-eos-developer-s-log-starday-201707-3-20170703t230121599z |
category | eos |
json_metadata | {"tags":["eos"],"app":"steemit/0.1"} |
created | 2017-07-03 23:01:21 |
last_update | 2017-07-03 23:01:21 |
depth | 1 |
children | 0 |
last_payout | 2017-07-10 23:01:21 |
cashout_time | 1969-12-31 23:59:59 |
total_payout_value | 0.513 HBD |
curator_payout_value | 0.001 HBD |
pending_payout_value | 0.000 HBD |
promoted | 0.000 HBD |
body_length | 505 |
author_reputation | 92,912,716,270,143 |
root_title | "EOS - Developer’s Log Stardate 201707.3" |
beneficiaries | [] |
max_accepted_payout | 1,000,000.000 HBD |
percent_hbd | 10,000 |
post_id | 7,204,434 |
net_rshares | 77,457,571,374 |
author_curate_reward | "" |
voter | weight | wgt% | rshares | pct | time |
---|---|---|---|---|---|
forykw | 0 | 76,064,336,224 | 100% | ||
eskilxan | 0 | 273,173,984 | 100% | ||
muga | 0 | 1,120,061,166 | 100% |
Very helpful, thanks dan. Upvotes and followed :)
author | fracturedsounds |
---|---|
permlink | re-dan-eos-developer-s-log-starday-201707-3-20170703t215151245z |
category | eos |
json_metadata | {"tags":["eos"],"app":"steemit/0.1"} |
created | 2017-07-03 21:51:51 |
last_update | 2017-07-03 21:51:51 |
depth | 1 |
children | 0 |
last_payout | 2017-07-10 21:51:51 |
cashout_time | 1969-12-31 23:59:59 |
total_payout_value | 0.000 HBD |
curator_payout_value | 0.000 HBD |
pending_payout_value | 0.000 HBD |
promoted | 0.000 HBD |
body_length | 51 |
author_reputation | 130,816,335,664 |
root_title | "EOS - Developer’s Log Stardate 201707.3" |
beneficiaries | [] |
max_accepted_payout | 1,000,000.000 HBD |
percent_hbd | 10,000 |
post_id | 7,198,053 |
net_rshares | 0 |
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
author | fuckmylife |
---|---|
permlink | re-dan-eos-developer-s-log-starday-201707-3-20170704t033843441z |
category | eos |
json_metadata | {"tags":["eos"],"app":"steemit/0.1"} |
created | 2017-07-04 03:38:09 |
last_update | 2017-07-04 03:38:09 |
depth | 1 |
children | 10 |
last_payout | 2017-07-11 03:38:09 |
cashout_time | 1969-12-31 23:59:59 |
total_payout_value | 0.896 HBD |
curator_payout_value | 0.295 HBD |
pending_payout_value | 0.000 HBD |
promoted | 0.000 HBD |
body_length | 285 |
author_reputation | 1,365,524,722,971 |
root_title | "EOS - Developer’s Log Stardate 201707.3" |
beneficiaries | [] |
max_accepted_payout | 1,000,000.000 HBD |
percent_hbd | 10,000 |
post_id | 7,225,793 |
net_rshares | 182,167,543,808 |
author_curate_reward | "" |
voter | weight | wgt% | rshares | pct | time |
---|---|---|---|---|---|
cryptomancer | 0 | 181,546,203,808 | 15% | ||
markydelro | 0 | 621,340,000 | 100% |
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?
author | cryptomancer |
---|---|
permlink | re-fuckmylife-re-dan-eos-developer-s-log-starday-201707-3-20170704t051442462z |
category | eos |
json_metadata | {"tags":["eos"],"app":"steemit/0.1"} |
created | 2017-07-04 05:14:45 |
last_update | 2017-07-04 05:14:45 |
depth | 2 |
children | 9 |
last_payout | 2017-07-11 05:14:45 |
cashout_time | 1969-12-31 23:59:59 |
total_payout_value | 0.000 HBD |
curator_payout_value | 0.000 HBD |
pending_payout_value | 0.000 HBD |
promoted | 0.000 HBD |
body_length | 552 |
author_reputation | 27,910,646,046,989 |
root_title | "EOS - Developer’s Log Stardate 201707.3" |
beneficiaries | [] |
max_accepted_payout | 1,000,000.000 HBD |
percent_hbd | 10,000 |
post_id | 7,232,843 |
net_rshares | 1,182,351,442 |
author_curate_reward | "" |
voter | weight | wgt% | rshares | pct | time |
---|---|---|---|---|---|
tomino | 0 | 1,182,351,442 | 1% |
But in fact - what will happen with all the purchased etherium? Will they throw him out for a cheap sale?
author | dlina-v-metrah |
---|---|
permlink | re-cryptomancer-re-fuckmylife-re-dan-eos-developer-s-log-starday-201707-3-20170704t135326883z |
category | eos |
json_metadata | {"tags":["eos"],"app":"steemit/0.1"} |
created | 2017-07-04 13:53:39 |
last_update | 2017-07-04 13:53:39 |
depth | 3 |
children | 1 |
last_payout | 2017-07-11 13:53:39 |
cashout_time | 1969-12-31 23:59:59 |
total_payout_value | 0.462 HBD |
curator_payout_value | 0.152 HBD |
pending_payout_value | 0.000 HBD |
promoted | 0.000 HBD |
body_length | 105 |
author_reputation | 4,193,087,735,412 |
root_title | "EOS - Developer’s Log Stardate 201707.3" |
beneficiaries | [] |
max_accepted_payout | 1,000,000.000 HBD |
percent_hbd | 10,000 |
post_id | 7,278,982 |
net_rshares | 96,124,503,808 |
author_curate_reward | "" |
voter | weight | wgt% | rshares | pct | time |
---|---|---|---|---|---|
cryptomancer | 0 | 96,124,503,808 | 15% |
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.
author | fuckmylife |
---|---|
permlink | re-cryptomancer-re-fuckmylife-re-dan-eos-developer-s-log-starday-201707-3-20170704t084333532z |
category | eos |
json_metadata | {"tags":["eos"],"app":"steemit/0.1"} |
created | 2017-07-04 08:43:00 |
last_update | 2017-07-04 08:45:45 |
depth | 3 |
children | 5 |
last_payout | 2017-07-11 08:43:00 |
cashout_time | 1969-12-31 23:59:59 |
total_payout_value | 1.185 HBD |
curator_payout_value | 0.392 HBD |
pending_payout_value | 0.000 HBD |
promoted | 0.000 HBD |
body_length | 478 |
author_reputation | 1,365,524,722,971 |
root_title | "EOS - Developer’s Log Stardate 201707.3" |
beneficiaries | [] |
max_accepted_payout | 1,000,000.000 HBD |
percent_hbd | 10,000 |
post_id | 7,249,584 |
net_rshares | 241,630,466,746 |
author_curate_reward | "" |
voter | weight | wgt% | rshares | pct | time |
---|---|---|---|---|---|
cryptomancer | 0 | 96,124,503,808 | 15% | ||
gentlebot | 0 | 145,505,962,938 | 100% |
Thanks for the reponse by the way.
author | fuckmylife |
---|---|
permlink | re-cryptomancer-re-fuckmylife-re-dan-eos-developer-s-log-starday-201707-3-20170704t084357659z |
category | eos |
json_metadata | {"tags":["eos"],"app":"steemit/0.1"} |
created | 2017-07-04 08:43:24 |
last_update | 2017-07-04 08:43:24 |
depth | 3 |
children | 0 |
last_payout | 2017-07-11 08:43:24 |
cashout_time | 1969-12-31 23:59:59 |
total_payout_value | 0.000 HBD |
curator_payout_value | 0.000 HBD |
pending_payout_value | 0.000 HBD |
promoted | 0.000 HBD |
body_length | 34 |
author_reputation | 1,365,524,722,971 |
root_title | "EOS - Developer’s Log Stardate 201707.3" |
beneficiaries | [] |
max_accepted_payout | 1,000,000.000 HBD |
percent_hbd | 10,000 |
post_id | 7,249,620 |
net_rshares | 0 |
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
author | fusiontherapy |
---|---|
permlink | re-dan-eos-developer-s-log-starday-201707-3-20170705t230511281z |
category | eos |
json_metadata | {"tags":["eos"],"app":"steemit/0.1"} |
created | 2017-07-05 23:05:09 |
last_update | 2017-07-05 23:05:09 |
depth | 1 |
children | 0 |
last_payout | 2017-07-12 23:05:09 |
cashout_time | 1969-12-31 23:59:59 |
total_payout_value | 0.000 HBD |
curator_payout_value | 0.000 HBD |
pending_payout_value | 0.000 HBD |
promoted | 0.000 HBD |
body_length | 384 |
author_reputation | 3,447,783,834 |
root_title | "EOS - Developer’s Log Stardate 201707.3" |
beneficiaries | [] |
max_accepted_payout | 1,000,000.000 HBD |
percent_hbd | 10,000 |
post_id | 7,452,214 |
net_rshares | 0 |
Can someone post the code/repo for the requireNotify function? This is interesting
author | gikitiki |
---|---|
permlink | re-dan-eos-developer-s-log-starday-201707-3-20170704t001709572z |
category | eos |
json_metadata | {"tags":["eos"],"app":"steemit/0.1"} |
created | 2017-07-04 00:17:09 |
last_update | 2017-07-04 00:17:09 |
depth | 1 |
children | 0 |
last_payout | 2017-07-11 00:17:09 |
cashout_time | 1969-12-31 23:59:59 |
total_payout_value | 0.000 HBD |
curator_payout_value | 0.000 HBD |
pending_payout_value | 0.000 HBD |
promoted | 0.000 HBD |
body_length | 83 |
author_reputation | 16,572,681,158,525 |
root_title | "EOS - Developer’s Log Stardate 201707.3" |
beneficiaries | [] |
max_accepted_payout | 1,000,000.000 HBD |
percent_hbd | 10,000 |
post_id | 7,210,341 |
net_rshares | 0 |
Helpful article you have here. Thanks!
author | gpfelizco |
---|---|
permlink | re-dan-eos-developer-s-log-starday-201707-3-20170704t104117762z |
category | eos |
json_metadata | {"tags":["eos"],"app":"steemit/0.1"} |
created | 2017-07-04 10:41:21 |
last_update | 2017-07-04 10:41:21 |
depth | 1 |
children | 0 |
last_payout | 2017-07-11 10:41:21 |
cashout_time | 1969-12-31 23:59:59 |
total_payout_value | 0.000 HBD |
curator_payout_value | 0.000 HBD |
pending_payout_value | 0.000 HBD |
promoted | 0.000 HBD |
body_length | 38 |
author_reputation | 193,019,107,785 |
root_title | "EOS - Developer’s Log Stardate 201707.3" |
beneficiaries | [] |
max_accepted_payout | 1,000,000.000 HBD |
percent_hbd | 10,000 |
post_id | 7,259,684 |
net_rshares | 0 |
im new with this coin, im no much money is good idea invest here? ty
author | gpic |
---|---|
permlink | re-dan-eos-developer-s-log-starday-201707-3-20170705t003819057z |
category | eos |
json_metadata | {"tags":["eos"],"app":"steemit/0.1"} |
created | 2017-07-05 00:38:21 |
last_update | 2017-07-05 00:38:21 |
depth | 1 |
children | 0 |
last_payout | 2017-07-12 00:38:21 |
cashout_time | 1969-12-31 23:59:59 |
total_payout_value | 0.000 HBD |
curator_payout_value | 0.000 HBD |
pending_payout_value | 0.000 HBD |
promoted | 0.000 HBD |
body_length | 68 |
author_reputation | 8,726,833,452 |
root_title | "EOS - Developer’s Log Stardate 201707.3" |
beneficiaries | [] |
max_accepted_payout | 1,000,000.000 HBD |
percent_hbd | 10,000 |
post_id | 7,339,512 |
net_rshares | 0 |
So does this mean etherum is dead??
author | hadidi | ||||||
---|---|---|---|---|---|---|---|
permlink | re-dan-201773t235233787z | ||||||
category | eos | ||||||
json_metadata | {"tags":"eos","app":"esteem/1.4.6","format":"markdown+html","community":"esteem"} | ||||||
created | 2017-07-03 22:52:36 | ||||||
last_update | 2017-07-03 22:52:36 | ||||||
depth | 1 | ||||||
children | 0 | ||||||
last_payout | 2017-07-10 22:52:36 | ||||||
cashout_time | 1969-12-31 23:59:59 | ||||||
total_payout_value | 0.000 HBD | ||||||
curator_payout_value | 0.000 HBD | ||||||
pending_payout_value | 0.000 HBD | ||||||
promoted | 0.000 HBD | ||||||
body_length | 35 | ||||||
author_reputation | 4,645,738,602 | ||||||
root_title | "EOS - Developer’s Log Stardate 201707.3" | ||||||
beneficiaries |
| ||||||
max_accepted_payout | 1,000,000.000 HBD | ||||||
percent_hbd | 10,000 | ||||||
post_id | 7,203,697 | ||||||
net_rshares | 0 |
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.
author | hamzaoui |
---|---|
permlink | re-dan-eos-developer-s-log-starday-201707-3-20170706t202253333z |
category | eos |
json_metadata | {"tags":["eos"],"app":"steemit/0.1"} |
created | 2017-07-06 20:22:54 |
last_update | 2017-07-06 20:22:54 |
depth | 1 |
children | 1 |
last_payout | 2017-07-13 20:22:54 |
cashout_time | 1969-12-31 23:59:59 |
total_payout_value | 0.248 HBD |
curator_payout_value | 0.082 HBD |
pending_payout_value | 0.000 HBD |
promoted | 0.000 HBD |
body_length | 322 |
author_reputation | 2,667,249,998,202 |
root_title | "EOS - Developer’s Log Stardate 201707.3" |
beneficiaries | [] |
max_accepted_payout | 1,000,000.000 HBD |
percent_hbd | 10,000 |
post_id | 7,563,675 |
net_rshares | 70,131,198,360 |
author_curate_reward | "" |
voter | weight | wgt% | rshares | pct | time |
---|---|---|---|---|---|
booster | 0 | 70,131,198,360 | 0.07% |
<p>This comment has received a 0.08 % upvote from @booster thanks to: @hamzaoui.</p>
author | booster |
---|---|
permlink | re-hamzaoui-re-dan-eos-developer-s-log-starday-201707-3-20170706t202253333z-20170710t205334086z |
category | eos |
json_metadata | {"tags":["eos-developer-s-log-starday-201707-3"],"app":"drotto/0.0.1"} |
created | 2017-07-10 20:53:54 |
last_update | 2017-07-10 20:53:54 |
depth | 2 |
children | 0 |
last_payout | 2017-07-17 20:53:54 |
cashout_time | 1969-12-31 23:59:59 |
total_payout_value | 0.000 HBD |
curator_payout_value | 0.000 HBD |
pending_payout_value | 0.000 HBD |
promoted | 0.000 HBD |
body_length | 85 |
author_reputation | 68,767,115,776,562 |
root_title | "EOS - Developer’s Log Stardate 201707.3" |
beneficiaries | [] |
max_accepted_payout | 1,000,000.000 HBD |
percent_hbd | 10,000 |
post_id | 8,030,815 |
net_rshares | 0 |
Follow me and I Follow you and we like
author | heidy0221 | ||||||
---|---|---|---|---|---|---|---|
permlink | re-dan-201773t175716582z | ||||||
category | eos | ||||||
json_metadata | {"tags":"eos","app":"esteem/1.4.6","format":"markdown+html","community":"esteem"} | ||||||
created | 2017-07-03 22:57:21 | ||||||
last_update | 2017-07-03 22:57:21 | ||||||
depth | 1 | ||||||
children | 3 | ||||||
last_payout | 2017-07-10 22:57:21 | ||||||
cashout_time | 1969-12-31 23:59:59 | ||||||
total_payout_value | 0.000 HBD | ||||||
curator_payout_value | 0.000 HBD | ||||||
pending_payout_value | 0.000 HBD | ||||||
promoted | 0.000 HBD | ||||||
body_length | 38 | ||||||
author_reputation | 5,552,675,743 | ||||||
root_title | "EOS - Developer’s Log Stardate 201707.3" | ||||||
beneficiaries |
| ||||||
max_accepted_payout | 1,000,000.000 HBD | ||||||
percent_hbd | 10,000 | ||||||
post_id | 7,204,082 | ||||||
net_rshares | 1,676,442,629 | ||||||
author_curate_reward | "" |
voter | weight | wgt% | rshares | pct | time |
---|---|---|---|---|---|
dkinx | 0 | 1,676,442,629 | 100% |
i just followed u,follow me back
author | dkinx |
---|---|
permlink | re-heidy0221-re-dan-201773t175716582z-20170704t175713352z |
category | eos |
json_metadata | {"tags":["eos"],"app":"steemit/0.1"} |
created | 2017-07-04 17:57:15 |
last_update | 2017-07-04 17:57:15 |
depth | 2 |
children | 2 |
last_payout | 2017-07-11 17:57:15 |
cashout_time | 1969-12-31 23:59:59 |
total_payout_value | 0.000 HBD |
curator_payout_value | 0.000 HBD |
pending_payout_value | 0.000 HBD |
promoted | 0.000 HBD |
body_length | 32 |
author_reputation | 17,499,415,125 |
root_title | "EOS - Developer’s Log Stardate 201707.3" |
beneficiaries | [] |
max_accepted_payout | 1,000,000.000 HBD |
percent_hbd | 10,000 |
post_id | 7,305,133 |
net_rshares | 1,646,326,893 |
author_curate_reward | "" |
voter | weight | wgt% | rshares | pct | time |
---|---|---|---|---|---|
dkinx | 0 | 1,646,326,893 | 100% |
If you follow each other, you will be going in a circle:)
author | celsius100 |
---|---|
permlink | re-dkinx-re-heidy0221-re-dan-201773t175716582z-20170704t235914597z |
category | eos |
json_metadata | {"tags":["eos"],"app":"steemit/0.1"} |
created | 2017-07-04 23:59:15 |
last_update | 2017-07-04 23:59:15 |
depth | 3 |
children | 1 |
last_payout | 2017-07-11 23:59:15 |
cashout_time | 1969-12-31 23:59:59 |
total_payout_value | 0.000 HBD |
curator_payout_value | 0.000 HBD |
pending_payout_value | 0.000 HBD |
promoted | 0.000 HBD |
body_length | 57 |
author_reputation | 1,890,481,416,542 |
root_title | "EOS - Developer’s Log Stardate 201707.3" |
beneficiaries | [] |
max_accepted_payout | 1,000,000.000 HBD |
percent_hbd | 10,000 |
post_id | 7,336,895 |
net_rshares | 0 |
do you think it is a good idea to buy eos ?
author | hermanhanafiah | ||||||
---|---|---|---|---|---|---|---|
permlink | re-dan-eos-developer-s-log-starday-201707-3-201774t01023195z | ||||||
category | eos | ||||||
json_metadata | {"app":"chainbb/0.3","format":"markdown+html","tags":[]} | ||||||
created | 2017-07-03 22:10:21 | ||||||
last_update | 2017-07-03 22:10:21 | ||||||
depth | 1 | ||||||
children | 1 | ||||||
last_payout | 2017-07-10 22:10:21 | ||||||
cashout_time | 1969-12-31 23:59:59 | ||||||
total_payout_value | 0.246 HBD | ||||||
curator_payout_value | 0.001 HBD | ||||||
pending_payout_value | 0.000 HBD | ||||||
promoted | 0.000 HBD | ||||||
body_length | 45 | ||||||
author_reputation | -475,659,050,019 | ||||||
root_title | "EOS - Developer’s Log Stardate 201707.3" | ||||||
beneficiaries |
| ||||||
max_accepted_payout | 1,000,000.000 HBD | ||||||
percent_hbd | 10,000 | ||||||
post_id | 7,199,837 | ||||||
net_rshares | 43,685,999,288 | ||||||
author_curate_reward | "" |
voter | weight | wgt% | rshares | pct | time |
---|---|---|---|---|---|
cryptoctopus | 0 | 33,949,990,617 | 0.1% | ||
jesta | 0 | 8,254,629,746 | 0.1% | ||
redpill | 0 | 242,883,066 | 1% | ||
hermanhanafiah | 0 | 942,073,025 | 100% | ||
eskilxan | 0 | 296,422,834 | 100% |
Considering that he has multiple successful projects under his belt, I think that it's worth it.
author | shareme |
---|---|
permlink | re-hermanhanafiah-re-dan-eos-developer-s-log-starday-201707-3-201774t01023195z-20170704t020108098z |
category | eos |
json_metadata | {"tags":["eos"],"app":"steemit/0.1"} |
created | 2017-07-04 02:01:09 |
last_update | 2017-07-04 02:01:09 |
depth | 2 |
children | 0 |
last_payout | 2017-07-11 02:01:09 |
cashout_time | 1969-12-31 23:59:59 |
total_payout_value | 0.018 HBD |
curator_payout_value | 0.006 HBD |
pending_payout_value | 0.000 HBD |
promoted | 0.000 HBD |
body_length | 96 |
author_reputation | 2,000,226,178 |
root_title | "EOS - Developer’s Log Stardate 201707.3" |
beneficiaries | [] |
max_accepted_payout | 1,000,000.000 HBD |
percent_hbd | 10,000 |
post_id | 7,218,356 |
net_rshares | 3,915,737,425 |
author_curate_reward | "" |
voter | weight | wgt% | rshares | pct | time |
---|---|---|---|---|---|
ikegass33 | 0 | 3,915,737,425 | 5% |

author | hyperchannel |
---|---|
permlink | re-dan-eos-developer-s-log-starday-201707-3-20170704t102518678z |
category | eos |
json_metadata | {"tags":["eos"],"image":["https://steemitimages.com/DQmf8x4QMQbH3f3oAXBtLCQrUKVgWxdNyymkHaiz3Fp7RP2/image.png"],"app":"steemit/0.1"} |
created | 2017-07-04 10:25:18 |
last_update | 2017-07-04 10:25:18 |
depth | 1 |
children | 0 |
last_payout | 2017-07-11 10:25:18 |
cashout_time | 1969-12-31 23:59:59 |
total_payout_value | 0.000 HBD |
curator_payout_value | 0.000 HBD |
pending_payout_value | 0.000 HBD |
promoted | 0.000 HBD |
body_length | 88 |
author_reputation | 13,690,303,411 |
root_title | "EOS - Developer’s Log Stardate 201707.3" |
beneficiaries | [] |
max_accepted_payout | 1,000,000.000 HBD |
percent_hbd | 10,000 |
post_id | 7,258,257 |
net_rshares | 0 |
EOS is very interesting
author | hyperchannel |
---|---|
permlink | re-dan-eos-developer-s-log-starday-201707-3-20170704t103235769z |
category | eos |
json_metadata | {"tags":["eos"],"app":"steemit/0.1"} |
created | 2017-07-04 10:32:36 |
last_update | 2017-07-04 10:32:36 |
depth | 1 |
children | 0 |
last_payout | 2017-07-11 10:32:36 |
cashout_time | 1969-12-31 23:59:59 |
total_payout_value | 0.000 HBD |
curator_payout_value | 0.000 HBD |
pending_payout_value | 0.000 HBD |
promoted | 0.000 HBD |
body_length | 23 |
author_reputation | 13,690,303,411 |
root_title | "EOS - Developer’s Log Stardate 201707.3" |
beneficiaries | [] |
max_accepted_payout | 1,000,000.000 HBD |
percent_hbd | 10,000 |
post_id | 7,258,900 |
net_rshares | 0 |
nice explaanation
author | immortal.infidel |
---|---|
permlink | re-dan-eos-developer-s-log-starday-201707-3-20170704t061627381z |
category | eos |
json_metadata | {"tags":["eos"],"app":"steemit/0.1"} |
created | 2017-07-04 06:16:21 |
last_update | 2017-07-04 06:16:21 |
depth | 1 |
children | 0 |
last_payout | 2017-07-11 06:16:21 |
cashout_time | 1969-12-31 23:59:59 |
total_payout_value | 0.000 HBD |
curator_payout_value | 0.000 HBD |
pending_payout_value | 0.000 HBD |
promoted | 0.000 HBD |
body_length | 17 |
author_reputation | 407,738,291 |
root_title | "EOS - Developer’s Log Stardate 201707.3" |
beneficiaries | [] |
max_accepted_payout | 1,000,000.000 HBD |
percent_hbd | 10,000 |
post_id | 7,237,391 |
net_rshares | 0 |
Been reading about EOS and it looks interesting.
author | imransoudagar |
---|---|
permlink | re-dan-eos-developer-s-log-starday-201707-3-20170704t061600181z |
category | eos |
json_metadata | {"tags":["eos"],"app":"steemit/0.1"} |
created | 2017-07-04 06:16:03 |
last_update | 2017-07-04 06:16:03 |
depth | 1 |
children | 0 |
last_payout | 2017-07-11 06:16:03 |
cashout_time | 1969-12-31 23:59:59 |
total_payout_value | 0.000 HBD |
curator_payout_value | 0.000 HBD |
pending_payout_value | 0.000 HBD |
promoted | 0.000 HBD |
body_length | 48 |
author_reputation | 26,680,852,951,193 |
root_title | "EOS - Developer’s Log Stardate 201707.3" |
beneficiaries | [] |
max_accepted_payout | 1,000,000.000 HBD |
percent_hbd | 10,000 |
post_id | 7,237,366 |
net_rshares | 0 |
The EOS inflation rate is 350% the first year
author | isaac.rodebush |
---|---|
permlink | re-dan-eos-developer-s-log-starday-201707-3-20170703t215000911z |
category | eos |
json_metadata | {"tags":["eos"],"app":"steemit/0.1"} |
created | 2017-07-03 21:50:00 |
last_update | 2017-07-03 21:50:00 |
depth | 1 |
children | 0 |
last_payout | 2017-07-10 21:50:00 |
cashout_time | 1969-12-31 23:59:59 |
total_payout_value | 0.000 HBD |
curator_payout_value | 0.000 HBD |
pending_payout_value | 0.000 HBD |
promoted | 0.000 HBD |
body_length | 45 |
author_reputation | 1,868,717,056,233 |
root_title | "EOS - Developer’s Log Stardate 201707.3" |
beneficiaries | [] |
max_accepted_payout | 1,000,000.000 HBD |
percent_hbd | 10,000 |
post_id | 7,197,874 |
net_rshares | 0 |
Very good and makes me want to end the reading ;)
author | iskandarfauzi |
---|---|
permlink | re-dan-eos-developer-s-log-starday-201707-3-20170704t070506397z |
category | eos |
json_metadata | {"tags":["eos"],"app":"steemit/0.1"} |
created | 2017-07-04 07:06:09 |
last_update | 2017-07-04 07:06:09 |
depth | 1 |
children | 0 |
last_payout | 2017-07-11 07:06:09 |
cashout_time | 1969-12-31 23:59:59 |
total_payout_value | 0.000 HBD |
curator_payout_value | 0.000 HBD |
pending_payout_value | 0.000 HBD |
promoted | 0.000 HBD |
body_length | 49 |
author_reputation | 75,093,866,554 |
root_title | "EOS - Developer’s Log Stardate 201707.3" |
beneficiaries | [] |
max_accepted_payout | 1,000,000.000 HBD |
percent_hbd | 10,000 |
post_id | 7,241,302 |
net_rshares | 0 |
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....
author | jen8 |
---|---|
permlink | re-dan-eos-developer-s-log-starday-201707-3-20170703t224209614z |
category | eos |
json_metadata | {"tags":["eos"],"app":"steemit/0.1"} |
created | 2017-07-03 22:42:09 |
last_update | 2017-07-03 22:42:09 |
depth | 1 |
children | 0 |
last_payout | 2017-07-10 22:42:09 |
cashout_time | 1969-12-31 23:59:59 |
total_payout_value | 0.000 HBD |
curator_payout_value | 0.000 HBD |
pending_payout_value | 0.000 HBD |
promoted | 0.000 HBD |
body_length | 939 |
author_reputation | 341,008,036,763 |
root_title | "EOS - Developer’s Log Stardate 201707.3" |
beneficiaries | [] |
max_accepted_payout | 1,000,000.000 HBD |
percent_hbd | 10,000 |
post_id | 7,202,825 |
net_rshares | 0 |
@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
author | jga |
---|---|
permlink | re-dan-eos-developer-s-log-starday-201707-3-20170703t215745635z |
category | eos |
json_metadata | {"tags":["eos"],"users":["dan"],"links":["https://steemit.com/eos/@jga/eos-hits-the-9th-place-in-coinmarketcap"],"app":"steemit/0.1"} |
created | 2017-07-03 21:57:48 |
last_update | 2017-07-03 21:57:48 |
depth | 1 |
children | 0 |
last_payout | 2017-07-10 21:57:48 |
cashout_time | 1969-12-31 23:59:59 |
total_payout_value | 0.000 HBD |
curator_payout_value | 0.000 HBD |
pending_payout_value | 0.000 HBD |
promoted | 0.000 HBD |
body_length | 152 |
author_reputation | 76,172,796,162,312 |
root_title | "EOS - Developer’s Log Stardate 201707.3" |
beneficiaries | [] |
max_accepted_payout | 1,000,000.000 HBD |
percent_hbd | 10,000 |
post_id | 7,198,639 |
net_rshares | 0 |
Thank you for the update - great to see this level of communication from a lead dev!
author | johnsmith |
---|---|
permlink | re-dan-eos-developer-s-log-starday-201707-3-20170704t145311629z |
category | eos |
json_metadata | {"tags":["eos"],"app":"steemit/0.1"} |
created | 2017-07-04 14:53:15 |
last_update | 2017-07-04 14:53:15 |
depth | 1 |
children | 0 |
last_payout | 2017-07-11 14:53:15 |
cashout_time | 1969-12-31 23:59:59 |
total_payout_value | 5.368 HBD |
curator_payout_value | 0.006 HBD |
pending_payout_value | 0.000 HBD |
promoted | 0.000 HBD |
body_length | 84 |
author_reputation | 22,729,726,767,685 |
root_title | "EOS - Developer’s Log Stardate 201707.3" |
beneficiaries | [] |
max_accepted_payout | 1,000,000.000 HBD |
percent_hbd | 10,000 |
post_id | 7,286,114 |
net_rshares | 842,444,779,482 |
author_curate_reward | "" |
voter | weight | wgt% | rshares | pct | time |
---|---|---|---|---|---|
johnsmith | 0 | 840,891,957,139 | 100% | ||
itan05 | 0 | 583,650,194 | 100% | ||
tanzai | 0 | 969,172,149 | 100% |
Hello follow me and I will follow you https://steemit.com/@joseguevara4
author | joseguevara4 |
---|---|
permlink | re-dan-eos-developer-s-log-starday-201707-3-20170704t162949805z |
category | eos |
json_metadata | {"tags":["eos"],"links":["https://steemit.com/@joseguevara4"],"app":"steemit/0.1"} |
created | 2017-07-04 16:35:45 |
last_update | 2017-07-04 16:35:45 |
depth | 1 |
children | 0 |
last_payout | 2017-07-11 16:35:45 |
cashout_time | 1969-12-31 23:59:59 |
total_payout_value | 0.000 HBD |
curator_payout_value | 0.000 HBD |
pending_payout_value | 0.000 HBD |
promoted | 0.000 HBD |
body_length | 71 |
author_reputation | -2,532,078,783,307 |
root_title | "EOS - Developer’s Log Stardate 201707.3" |
beneficiaries | [] |
max_accepted_payout | 1,000,000.000 HBD |
percent_hbd | 10,000 |
post_id | 7,296,799 |
net_rshares | -162,708,290,214,583 |
author_curate_reward | "" |
voter | weight | wgt% | rshares | pct | time |
---|---|---|---|---|---|
dan | 0 | -162,708,238,118,649 | -100% | ||
blacklist-a | 0 | -52,095,934 | -10% |
What is better then to have a stronger gpu or cpu
author | kabatpatchkids |
---|---|
permlink | re-dan-eos-developer-s-log-starday-201707-3-20170703t230619869z |
category | eos |
json_metadata | {"tags":["eos"],"app":"steemit/0.1"} |
created | 2017-07-03 23:06:33 |
last_update | 2017-07-03 23:06:33 |
depth | 1 |
children | 0 |
last_payout | 2017-07-10 23:06:33 |
cashout_time | 1969-12-31 23:59:59 |
total_payout_value | 0.000 HBD |
curator_payout_value | 0.000 HBD |
pending_payout_value | 0.000 HBD |
promoted | 0.000 HBD |
body_length | 49 |
author_reputation | 638,387,370 |
root_title | "EOS - Developer’s Log Stardate 201707.3" |
beneficiaries | [] |
max_accepted_payout | 1,000,000.000 HBD |
percent_hbd | 10,000 |
post_id | 7,204,871 |
net_rshares | 1,649,779,244 |
author_curate_reward | "" |
voter | weight | wgt% | rshares | pct | time |
---|---|---|---|---|---|
itan05 | 0 | 552,931,762 | 100% | ||
kabatpatchkids | 0 | 1,096,847,482 | 100% |
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.
author | kevbot |
---|---|
permlink | re-dan-eos-developer-s-log-starday-201707-3-20170703t221024507z |
category | eos |
json_metadata | {"tags":["eos"],"app":"steemit/0.1"} |
created | 2017-07-03 22:10:51 |
last_update | 2017-07-03 22:10:51 |
depth | 1 |
children | 0 |
last_payout | 2017-07-10 22:10:51 |
cashout_time | 1969-12-31 23:59:59 |
total_payout_value | 0.000 HBD |
curator_payout_value | 0.000 HBD |
pending_payout_value | 0.000 HBD |
promoted | 0.000 HBD |
body_length | 136 |
author_reputation | 3,453,478,685,569 |
root_title | "EOS - Developer’s Log Stardate 201707.3" |
beneficiaries | [] |
max_accepted_payout | 1,000,000.000 HBD |
percent_hbd | 10,000 |
post_id | 7,199,889 |
net_rshares | 0 |
I think EOS will be the next Ethereum killer, the technique behind it excellent :) - Invest wisely, now when the time is right.
author | kozak |
---|---|
permlink | re-dan-eos-developer-s-log-starday-201707-3-20170704t205419859z |
category | eos |
json_metadata | {"tags":["eos"],"app":"steemit/0.1"} |
created | 2017-07-04 20:54:12 |
last_update | 2017-07-04 20:54:12 |
depth | 1 |
children | 0 |
last_payout | 2017-07-11 20:54:12 |
cashout_time | 1969-12-31 23:59:59 |
total_payout_value | 0.000 HBD |
curator_payout_value | 0.000 HBD |
pending_payout_value | 0.000 HBD |
promoted | 0.000 HBD |
body_length | 127 |
author_reputation | 2,088,627,385,430 |
root_title | "EOS - Developer’s Log Stardate 201707.3" |
beneficiaries | [] |
max_accepted_payout | 1,000,000.000 HBD |
percent_hbd | 10,000 |
post_id | 7,322,149 |
net_rshares | 0 |
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.
author | kozak |
---|---|
permlink | re-dan-eos-developer-s-log-starday-201707-3-20170707t221023751z |
category | eos |
json_metadata | {"tags":["eos"],"app":"steemit/0.1"} |
created | 2017-07-07 22:10:39 |
last_update | 2017-07-07 22:10:39 |
depth | 1 |
children | 0 |
last_payout | 2017-07-14 22:10:39 |
cashout_time | 1969-12-31 23:59:59 |
total_payout_value | 0.000 HBD |
curator_payout_value | 0.000 HBD |
pending_payout_value | 0.000 HBD |
promoted | 0.000 HBD |
body_length | 527 |
author_reputation | 2,088,627,385,430 |
root_title | "EOS - Developer’s Log Stardate 201707.3" |
beneficiaries | [] |
max_accepted_payout | 1,000,000.000 HBD |
percent_hbd | 10,000 |
post_id | 7,692,233 |
net_rshares | 0 |
Like this project, converted some of my BTC into EOS.
author | kristyn |
---|---|
permlink | re-dan-eos-developer-s-log-starday-201707-3-20170707t181217259z |
category | eos |
json_metadata | {"tags":["eos"],"app":"steemit/0.1"} |
created | 2017-07-07 18:12:06 |
last_update | 2017-07-07 18:12:06 |
depth | 1 |
children | 0 |
last_payout | 2017-07-14 18:12:06 |
cashout_time | 1969-12-31 23:59:59 |
total_payout_value | 0.000 HBD |
curator_payout_value | 0.000 HBD |
pending_payout_value | 0.000 HBD |
promoted | 0.000 HBD |
body_length | 53 |
author_reputation | 55,518,543 |
root_title | "EOS - Developer’s Log Stardate 201707.3" |
beneficiaries | [] |
max_accepted_payout | 1,000,000.000 HBD |
percent_hbd | 10,000 |
post_id | 7,671,552 |
net_rshares | 0 |
very newest information about new currency EOS. I will really highly appreciate for more updates. Thats y i followed you .
author | kumar.malhotra |
---|---|
permlink | re-dan-eos-developer-s-log-starday-201707-3-20170706t032403759z |
category | eos |
json_metadata | {"tags":["eos"],"app":"steemit/0.1"} |
created | 2017-07-06 03:24:03 |
last_update | 2017-07-06 03:24:03 |
depth | 1 |
children | 0 |
last_payout | 2017-07-13 03:24:03 |
cashout_time | 1969-12-31 23:59:59 |
total_payout_value | 0.000 HBD |
curator_payout_value | 0.000 HBD |
pending_payout_value | 0.000 HBD |
promoted | 0.000 HBD |
body_length | 122 |
author_reputation | 159,754,286,047 |
root_title | "EOS - Developer’s Log Stardate 201707.3" |
beneficiaries | [] |
max_accepted_payout | 1,000,000.000 HBD |
percent_hbd | 10,000 |
post_id | 7,471,368 |
net_rshares | 0 |
I'm New User Please Help Me Voting This Comment. Thanks
author | kyawsantun | ||||||
---|---|---|---|---|---|---|---|
permlink | re-dan-201774t235523317z | ||||||
category | eos | ||||||
json_metadata | {"tags":"eos","app":"esteem/1.4.6","format":"markdown+html","community":"esteem"} | ||||||
created | 2017-07-04 17:25:30 | ||||||
last_update | 2017-07-04 17:25:30 | ||||||
depth | 1 | ||||||
children | 0 | ||||||
last_payout | 2017-07-11 17:25:30 | ||||||
cashout_time | 1969-12-31 23:59:59 | ||||||
total_payout_value | 0.000 HBD | ||||||
curator_payout_value | 0.000 HBD | ||||||
pending_payout_value | 0.000 HBD | ||||||
promoted | 0.000 HBD | ||||||
body_length | 55 | ||||||
author_reputation | 3,010,146,073,363 | ||||||
root_title | "EOS - Developer’s Log Stardate 201707.3" | ||||||
beneficiaries |
| ||||||
max_accepted_payout | 1,000,000.000 HBD | ||||||
percent_hbd | 10,000 | ||||||
post_id | 7,301,970 | ||||||
net_rshares | -1,721,832,393,485 | ||||||
author_curate_reward | "" |
voter | weight | wgt% | rshares | pct | time |
---|---|---|---|---|---|
dan | 0 | -1,721,780,297,551 | -1% | ||
blacklist-a | 0 | -52,095,934 | -10% |
wow....nice....upvote and resteem
author | lautenglye |
---|---|
permlink | re-dan-eos-developer-s-log-starday-201707-3-20170703t233316230z |
category | eos |
json_metadata | {"tags":["eos"],"app":"steemit/0.1"} |
created | 2017-07-03 23:33:18 |
last_update | 2017-07-03 23:33:18 |
depth | 1 |
children | 0 |
last_payout | 2017-07-10 23:33:18 |
cashout_time | 1969-12-31 23:59:59 |
total_payout_value | 0.000 HBD |
curator_payout_value | 0.000 HBD |
pending_payout_value | 0.000 HBD |
promoted | 0.000 HBD |
body_length | 33 |
author_reputation | 1,745,262,632,168 |
root_title | "EOS - Developer’s Log Stardate 201707.3" |
beneficiaries | [] |
max_accepted_payout | 1,000,000.000 HBD |
percent_hbd | 10,000 |
post_id | 7,207,087 |
net_rshares | 1,672,391,613 |
author_curate_reward | "" |
voter | weight | wgt% | rshares | pct | time |
---|---|---|---|---|---|
lautenglye | 0 | 1,672,391,613 | 100% |
Thank you for sharing information, the more you start getting a lot of knowledge for me, good work continue his work.
author | lheuhchungkhing | ||||||
---|---|---|---|---|---|---|---|
permlink | re-dan-201775t42830143z | ||||||
category | eos | ||||||
json_metadata | {"tags":"eos","app":"esteem/1.4.5","format":"markdown+html","community":"esteem"} | ||||||
created | 2017-07-04 21:28:30 | ||||||
last_update | 2017-07-04 21:28:30 | ||||||
depth | 1 | ||||||
children | 0 | ||||||
last_payout | 2017-07-11 21:28:30 | ||||||
cashout_time | 1969-12-31 23:59:59 | ||||||
total_payout_value | 0.000 HBD | ||||||
curator_payout_value | 0.000 HBD | ||||||
pending_payout_value | 0.000 HBD | ||||||
promoted | 0.000 HBD | ||||||
body_length | 117 | ||||||
author_reputation | 50,662,819,417 | ||||||
root_title | "EOS - Developer’s Log Stardate 201707.3" | ||||||
beneficiaries |
| ||||||
max_accepted_payout | 1,000,000.000 HBD | ||||||
percent_hbd | 10,000 | ||||||
post_id | 7,325,112 | ||||||
net_rshares | 0 |
will it beat Ethereum in long run?
author | life-dailydose |
---|---|
permlink | re-dan-eos-developer-s-log-starday-201707-3-20170704t171934842z |
category | eos |
json_metadata | {"tags":["eos"],"app":"steemit/0.1"} |
created | 2017-07-04 17:19:24 |
last_update | 2017-07-04 17:19:24 |
depth | 1 |
children | 0 |
last_payout | 2017-07-11 17:19:24 |
cashout_time | 1969-12-31 23:59:59 |
total_payout_value | 0.000 HBD |
curator_payout_value | 0.000 HBD |
pending_payout_value | 0.000 HBD |
promoted | 0.000 HBD |
body_length | 34 |
author_reputation | 68,784,836,036 |
root_title | "EOS - Developer’s Log Stardate 201707.3" |
beneficiaries | [] |
max_accepted_payout | 1,000,000.000 HBD |
percent_hbd | 10,000 |
post_id | 7,301,309 |
net_rshares | 0 |
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!
author | linuslee0216 | ||||||
---|---|---|---|---|---|---|---|
permlink | re-dan-201774t113117228z | ||||||
category | eos | ||||||
json_metadata | {"tags":"eos","app":"esteem/1.4.5","format":"markdown+html","community":"esteem"} | ||||||
created | 2017-07-04 03:31:21 | ||||||
last_update | 2017-07-04 03:31:21 | ||||||
depth | 1 | ||||||
children | 0 | ||||||
last_payout | 2017-07-11 03:31:21 | ||||||
cashout_time | 1969-12-31 23:59:59 | ||||||
total_payout_value | 0.532 HBD | ||||||
curator_payout_value | 0.001 HBD | ||||||
pending_payout_value | 0.000 HBD | ||||||
promoted | 0.000 HBD | ||||||
body_length | 246 | ||||||
author_reputation | 79,197,233,939,262 | ||||||
root_title | "EOS - Developer’s Log Stardate 201707.3" | ||||||
beneficiaries |
| ||||||
max_accepted_payout | 1,000,000.000 HBD | ||||||
percent_hbd | 10,000 | ||||||
post_id | 7,225,275 | ||||||
net_rshares | 86,008,308,411 | ||||||
author_curate_reward | "" |
voter | weight | wgt% | rshares | pct | time |
---|---|---|---|---|---|
good-karma | 0 | 83,600,477,973 | 0.05% | ||
linuslee0216 | 0 | 2,407,830,438 | 15% |
Pls upvote my comment for absolute no reason. I'm poor
author | lollerfirst |
---|---|
permlink | re-dan-eos-developer-s-log-starday-201707-3-20170704t180447439z |
category | eos |
json_metadata | {"tags":["eos"],"app":"steemit/0.1"} |
created | 2017-07-04 18:04:45 |
last_update | 2017-07-04 18:04:45 |
depth | 1 |
children | 0 |
last_payout | 2017-07-11 18:04:45 |
cashout_time | 1969-12-31 23:59:59 |
total_payout_value | 0.000 HBD |
curator_payout_value | 0.000 HBD |
pending_payout_value | 0.000 HBD |
promoted | 0.000 HBD |
body_length | 54 |
author_reputation | -2,501,961,994,881 |
root_title | "EOS - Developer’s Log Stardate 201707.3" |
beneficiaries | [] |
max_accepted_payout | 1,000,000.000 HBD |
percent_hbd | 10,000 |
post_id | 7,305,883 |
net_rshares | -160,125,619,768,255 |
author_curate_reward | "" |
voter | weight | wgt% | rshares | pct | time |
---|---|---|---|---|---|
dan | 0 | -160,125,567,672,321 | -100% | ||
blacklist-a | 0 | -52,095,934 | -10% |
Very interesting!!!! I'm amazed by how smart people are on here!!!!!
author | lookupfirst |
---|---|
permlink | re-dan-eos-developer-s-log-starday-201707-3-20170705t214134768z |
category | eos |
json_metadata | {"tags":["eos"],"app":"steemit/0.1"} |
created | 2017-07-05 21:41:30 |
last_update | 2017-07-05 21:41:30 |
depth | 1 |
children | 0 |
last_payout | 2017-07-12 21:41:30 |
cashout_time | 1969-12-31 23:59:59 |
total_payout_value | 0.000 HBD |
curator_payout_value | 0.000 HBD |
pending_payout_value | 0.000 HBD |
promoted | 0.000 HBD |
body_length | 68 |
author_reputation | 1,837,171,777 |
root_title | "EOS - Developer’s Log Stardate 201707.3" |
beneficiaries | [] |
max_accepted_payout | 1,000,000.000 HBD |
percent_hbd | 10,000 |
post_id | 7,445,659 |
net_rshares | 0 |
Great Job
author | mabre | ||||||
---|---|---|---|---|---|---|---|
permlink | re-dan-eos-developer-s-log-starday-201707-3-201775t143432406z | ||||||
category | eos | ||||||
json_metadata | {"app":"chainbb/0.3","format":"markdown+html","tags":[]} | ||||||
created | 2017-07-05 12:34:33 | ||||||
last_update | 2017-07-05 12:34:33 | ||||||
depth | 1 | ||||||
children | 0 | ||||||
last_payout | 2017-07-12 12:34:33 | ||||||
cashout_time | 1969-12-31 23:59:59 | ||||||
total_payout_value | 0.000 HBD | ||||||
curator_payout_value | 0.000 HBD | ||||||
pending_payout_value | 0.000 HBD | ||||||
promoted | 0.000 HBD | ||||||
body_length | 9 | ||||||
author_reputation | 683,935,240,907 | ||||||
root_title | "EOS - Developer’s Log Stardate 201707.3" | ||||||
beneficiaries |
| ||||||
max_accepted_payout | 1,000,000.000 HBD | ||||||
percent_hbd | 10,000 | ||||||
post_id | 7,391,580 | ||||||
net_rshares | 0 |
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
author | machhour |
---|---|
permlink | re-dan-eos-developer-s-log-starday-201707-3-20170703t231818084z |
category | eos |
json_metadata | {"tags":["eos"],"app":"steemit/0.1"} |
created | 2017-07-03 23:18:18 |
last_update | 2017-07-03 23:18:18 |
depth | 1 |
children | 0 |
last_payout | 2017-07-10 23:18:18 |
cashout_time | 1969-12-31 23:59:59 |
total_payout_value | 0.000 HBD |
curator_payout_value | 0.000 HBD |
pending_payout_value | 0.000 HBD |
promoted | 0.000 HBD |
body_length | 442 |
author_reputation | 10,805,501,595,280 |
root_title | "EOS - Developer’s Log Stardate 201707.3" |
beneficiaries | [] |
max_accepted_payout | 1,000,000.000 HBD |
percent_hbd | 10,000 |
post_id | 7,205,778 |
net_rshares | 0 |
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
author | makrotheblack |
---|---|
permlink | re-dan-eos-developer-s-log-starday-201707-3-20170704t003358679z |
category | eos |
json_metadata | {"tags":["eos"],"app":"steemit/0.1"} |
created | 2017-07-04 00:33:57 |
last_update | 2017-07-04 00:33:57 |
depth | 1 |
children | 0 |
last_payout | 2017-07-11 00:33:57 |
cashout_time | 1969-12-31 23:59:59 |
total_payout_value | 0.000 HBD |
curator_payout_value | 0.000 HBD |
pending_payout_value | 0.000 HBD |
promoted | 0.000 HBD |
body_length | 251 |
author_reputation | 319,818,388,314 |
root_title | "EOS - Developer’s Log Stardate 201707.3" |
beneficiaries | [] |
max_accepted_payout | 1,000,000.000 HBD |
percent_hbd | 10,000 |
post_id | 7,211,671 |
net_rshares | 1,670,694,672 |
author_curate_reward | "" |
voter | weight | wgt% | rshares | pct | time |
---|---|---|---|---|---|
branch | 0 | 1,670,694,672 | 100% |
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!
author | markydelro |
---|---|
permlink | re-dan-eos-developer-s-log-starday-201707-3-20170706t052445312z |
category | eos |
json_metadata | {"tags":["eos"],"app":"steemit/0.1"} |
created | 2017-07-06 05:24:45 |
last_update | 2017-07-06 05:24:45 |
depth | 1 |
children | 0 |
last_payout | 2017-07-13 05:24:45 |
cashout_time | 1969-12-31 23:59:59 |
total_payout_value | 0.000 HBD |
curator_payout_value | 0.000 HBD |
pending_payout_value | 0.000 HBD |
promoted | 0.000 HBD |
body_length | 363 |
author_reputation | 9,611,353 |
root_title | "EOS - Developer’s Log Stardate 201707.3" |
beneficiaries | [] |
max_accepted_payout | 1,000,000.000 HBD |
percent_hbd | 10,000 |
post_id | 7,479,901 |
net_rshares | 615,126,600 |
author_curate_reward | "" |
voter | weight | wgt% | rshares | pct | time |
---|---|---|---|---|---|
markydelro | 0 | 615,126,600 | 100% |
I followed you and upvote you. Please follow me and upvote to me.
author | maythinn | ||||||
---|---|---|---|---|---|---|---|
permlink | re-dan-201774t54846295z | ||||||
category | eos | ||||||
json_metadata | {"tags":"eos","app":"esteem/1.4.6","format":"markdown+html","community":"esteem"} | ||||||
created | 2017-07-03 23:20:00 | ||||||
last_update | 2017-07-03 23:20:00 | ||||||
depth | 1 | ||||||
children | 0 | ||||||
last_payout | 2017-07-10 23:20:00 | ||||||
cashout_time | 1969-12-31 23:59:59 | ||||||
total_payout_value | 0.000 HBD | ||||||
curator_payout_value | 0.000 HBD | ||||||
pending_payout_value | 0.000 HBD | ||||||
promoted | 0.000 HBD | ||||||
body_length | 65 | ||||||
author_reputation | 1,929,996,496 | ||||||
root_title | "EOS - Developer’s Log Stardate 201707.3" | ||||||
beneficiaries |
| ||||||
max_accepted_payout | 1,000,000.000 HBD | ||||||
percent_hbd | 10,000 | ||||||
post_id | 7,205,917 | ||||||
net_rshares | 116,068,671 | ||||||
author_curate_reward | "" |
voter | weight | wgt% | rshares | pct | time |
---|---|---|---|---|---|
maythinn | 0 | 116,068,671 | 100% |
Great post with a lot of interesting details. So sad that EOS tanked today after the wild ride in recent days
author | michelhansen75 |
---|---|
permlink | re-dan-eos-developer-s-log-starday-201707-3-20170704t172856255z |
category | eos |
json_metadata | {"tags":["eos"],"app":"steemit/0.1"} |
created | 2017-07-04 17:28:57 |
last_update | 2017-07-04 17:28:57 |
depth | 1 |
children | 0 |
last_payout | 2017-07-11 17:28:57 |
cashout_time | 1969-12-31 23:59:59 |
total_payout_value | 0.000 HBD |
curator_payout_value | 0.000 HBD |
pending_payout_value | 0.000 HBD |
promoted | 0.000 HBD |
body_length | 110 |
author_reputation | 36,213,029 |
root_title | "EOS - Developer’s Log Stardate 201707.3" |
beneficiaries | [] |
max_accepted_payout | 1,000,000.000 HBD |
percent_hbd | 10,000 |
post_id | 7,302,293 |
net_rshares | 0 |
Iys alway good to learn new things
author | misticrum |
---|---|
permlink | re-dan-eos-developer-s-log-starday-201707-3-20170704t023719294z |
category | eos |
json_metadata | {"tags":["eos"],"app":"steemit/0.1"} |
created | 2017-07-04 02:37:18 |
last_update | 2017-07-04 02:37:18 |
depth | 1 |
children | 0 |
last_payout | 2017-07-11 02:37:18 |
cashout_time | 1969-12-31 23:59:59 |
total_payout_value | 0.000 HBD |
curator_payout_value | 0.000 HBD |
pending_payout_value | 0.000 HBD |
promoted | 0.000 HBD |
body_length | 34 |
author_reputation | 25,888,349,408 |
root_title | "EOS - Developer’s Log Stardate 201707.3" |
beneficiaries | [] |
max_accepted_payout | 1,000,000.000 HBD |
percent_hbd | 10,000 |
post_id | 7,221,322 |
net_rshares | 0 |
Helloooooo my friend excellent i voted my voted tnx
author | mohammadreza |
---|---|
permlink | re-dan-eos-developer-s-log-starday-201707-3-20170721t085947275z |
category | eos |
json_metadata | {"tags":["eos"],"app":"steemit/0.1"} |
created | 2017-07-21 08:59:54 |
last_update | 2017-07-21 08:59:54 |
depth | 1 |
children | 0 |
last_payout | 2017-07-28 08:59:54 |
cashout_time | 1969-12-31 23:59:59 |
total_payout_value | 0.000 HBD |
curator_payout_value | 0.000 HBD |
pending_payout_value | 0.000 HBD |
promoted | 0.000 HBD |
body_length | 51 |
author_reputation | 291,216,165,727 |
root_title | "EOS - Developer’s Log Stardate 201707.3" |
beneficiaries | [] |
max_accepted_payout | 1,000,000.000 HBD |
percent_hbd | 10,000 |
post_id | 9,173,014 |
net_rshares | 0 |
nice
author | mohammedfelahi |
---|---|
permlink | re-dan-eos-developer-s-log-starday-201707-3-20170706t111346556z |
category | eos |
json_metadata | {"tags":["eos"],"app":"steemit/0.1"} |
created | 2017-07-06 11:13:48 |
last_update | 2017-07-06 11:13:48 |
depth | 1 |
children | 0 |
last_payout | 2017-07-13 11:13:48 |
cashout_time | 1969-12-31 23:59:59 |
total_payout_value | 0.000 HBD |
curator_payout_value | 0.000 HBD |
pending_payout_value | 0.000 HBD |
promoted | 0.000 HBD |
body_length | 4 |
author_reputation | 4,562,190,164,246 |
root_title | "EOS - Developer’s Log Stardate 201707.3" |
beneficiaries | [] |
max_accepted_payout | 1,000,000.000 HBD |
percent_hbd | 10,000 |
post_id | 7,507,429 |
net_rshares | 0 |
It is a awesome post. Thank you for updates.
author | monalishabiswas |
---|---|
permlink | re-dan-eos-developer-s-log-starday-201707-3-20170704t160304479z |
category | eos |
json_metadata | {"tags":["eos"],"app":"steemit/0.1"} |
created | 2017-07-04 16:03:12 |
last_update | 2017-07-04 16:03:12 |
depth | 1 |
children | 0 |
last_payout | 2017-07-11 16:03:12 |
cashout_time | 1969-12-31 23:59:59 |
total_payout_value | 0.000 HBD |
curator_payout_value | 0.000 HBD |
pending_payout_value | 0.000 HBD |
promoted | 0.000 HBD |
body_length | 44 |
author_reputation | 134,168,998,755 |
root_title | "EOS - Developer’s Log Stardate 201707.3" |
beneficiaries | [] |
max_accepted_payout | 1,000,000.000 HBD |
percent_hbd | 10,000 |
post_id | 7,293,414 |
net_rshares | 0 |
thx for the info Dan
author | moneymakercy |
---|---|
permlink | re-dan-eos-developer-s-log-starday-201707-3-20170704t111626441z |
category | eos |
json_metadata | {"tags":["eos"],"app":"steemit/0.1"} |
created | 2017-07-04 11:16:27 |
last_update | 2017-07-04 11:16:27 |
depth | 1 |
children | 0 |
last_payout | 2017-07-11 11:16:27 |
cashout_time | 1969-12-31 23:59:59 |
total_payout_value | 0.000 HBD |
curator_payout_value | 0.000 HBD |
pending_payout_value | 0.000 HBD |
promoted | 0.000 HBD |
body_length | 20 |
author_reputation | 1,739,507,989 |
root_title | "EOS - Developer’s Log Stardate 201707.3" |
beneficiaries | [] |
max_accepted_payout | 1,000,000.000 HBD |
percent_hbd | 10,000 |
post_id | 7,262,837 |
net_rshares | 0 |
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
author | moneymaster |
---|---|
permlink | re-dan-eos-developer-s-log-starday-201707-3-20170705t112504316z |
category | eos |
json_metadata | {"tags":["eos"],"image":["http://i.imgur.com/lfpMHmA.gif"],"app":"steemit/0.1"} |
created | 2017-07-05 11:25:06 |
last_update | 2017-07-05 11:25:06 |
depth | 1 |
children | 0 |
last_payout | 2017-07-12 11:25:06 |
cashout_time | 1969-12-31 23:59:59 |
total_payout_value | 0.022 HBD |
curator_payout_value | 0.006 HBD |
pending_payout_value | 0.000 HBD |
promoted | 0.000 HBD |
body_length | 176 |
author_reputation | 197,148,008,589 |
root_title | "EOS - Developer’s Log Stardate 201707.3" |
beneficiaries | [] |
max_accepted_payout | 1,000,000.000 HBD |
percent_hbd | 10,000 |
post_id | 7,385,541 |
net_rshares | 5,609,511,089 |
author_curate_reward | "" |
voter | weight | wgt% | rshares | pct | time |
---|---|---|---|---|---|
lucidletters | 0 | 5,609,511,089 | 100% |
https://steemit.com/upvoteforupvote/@mrmoneymaken/eos-discussion feel free to join
author | mrmoneymaken |
---|---|
permlink | re-dan-eos-developer-s-log-starday-201707-3-20170704t095346422z |
category | eos |
json_metadata | {"tags":["eos"],"links":["https://steemit.com/upvoteforupvote/@mrmoneymaken/eos-discussion"],"app":"steemit/0.1"} |
created | 2017-07-04 09:53:27 |
last_update | 2017-07-04 09:53:27 |
depth | 1 |
children | 0 |
last_payout | 2017-07-11 09:53:27 |
cashout_time | 1969-12-31 23:59:59 |
total_payout_value | 0.726 HBD |
curator_payout_value | 0.239 HBD |
pending_payout_value | 0.000 HBD |
promoted | 0.000 HBD |
body_length | 83 |
author_reputation | 176,955,921,251 |
root_title | "EOS - Developer’s Log Stardate 201707.3" |
beneficiaries | [] |
max_accepted_payout | 1,000,000.000 HBD |
percent_hbd | 10,000 |
post_id | 7,255,360 |
net_rshares | 148,113,539,844 |
author_curate_reward | "" |
voter | weight | wgt% | rshares | pct | time |
---|---|---|---|---|---|
mrmoneymaken | 0 | 2,607,576,906 | 100% | ||
gentlebot | 0 | 145,505,962,938 | 100% |
EOS it's Awesome. @dan
author | muarju |
---|---|
permlink | re-dan-eos-developer-s-log-starday-201707-3-20170727t201414833z |
category | eos |
json_metadata | {"tags":["eos"],"users":["dan"],"app":"steemit/0.1"} |
created | 2017-07-27 20:14:15 |
last_update | 2017-07-27 20:14:15 |
depth | 1 |
children | 0 |
last_payout | 2017-08-03 20:14:15 |
cashout_time | 1969-12-31 23:59:59 |
total_payout_value | 0.000 HBD |
curator_payout_value | 0.000 HBD |
pending_payout_value | 0.000 HBD |
promoted | 0.000 HBD |
body_length | 22 |
author_reputation | 54,328,652,939 |
root_title | "EOS - Developer’s Log Stardate 201707.3" |
beneficiaries | [] |
max_accepted_payout | 1,000,000.000 HBD |
percent_hbd | 10,000 |
post_id | 9,948,776 |
net_rshares | 0 |
thanks.
author | nalang |
---|---|
permlink | re-dan-eos-developer-s-log-starday-201707-3-20170705t143335366z |
category | eos |
json_metadata | {"tags":["eos"],"app":"steemit/0.1"} |
created | 2017-07-05 14:33:39 |
last_update | 2017-07-05 14:33:39 |
depth | 1 |
children | 0 |
last_payout | 2017-07-12 14:33:39 |
cashout_time | 1969-12-31 23:59:59 |
total_payout_value | 0.000 HBD |
curator_payout_value | 0.000 HBD |
pending_payout_value | 0.000 HBD |
promoted | 0.000 HBD |
body_length | 7 |
author_reputation | 263,532,395 |
root_title | "EOS - Developer’s Log Stardate 201707.3" |
beneficiaries | [] |
max_accepted_payout | 1,000,000.000 HBD |
percent_hbd | 10,000 |
post_id | 7,404,033 |
net_rshares | 1,098,853,051 |
author_curate_reward | "" |
voter | weight | wgt% | rshares | pct | time |
---|---|---|---|---|---|
nalang | 0 | 1,098,853,051 | 100% |
@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
author | naseerbhat | ||||||
---|---|---|---|---|---|---|---|
permlink | re-dan-201778t03625230z | ||||||
category | eos | ||||||
json_metadata | {"tags":"eos","app":"esteem/1.4.6","format":"markdown+html","community":"esteem"} | ||||||
created | 2017-07-07 19:06:39 | ||||||
last_update | 2017-07-07 19:06:39 | ||||||
depth | 1 | ||||||
children | 0 | ||||||
last_payout | 2017-07-14 19:06:39 | ||||||
cashout_time | 1969-12-31 23:59:59 | ||||||
total_payout_value | 0.440 HBD | ||||||
curator_payout_value | 0.000 HBD | ||||||
pending_payout_value | 0.000 HBD | ||||||
promoted | 0.000 HBD | ||||||
body_length | 229 | ||||||
author_reputation | 2,572,727,094,814 | ||||||
root_title | "EOS - Developer’s Log Stardate 201707.3" | ||||||
beneficiaries |
| ||||||
max_accepted_payout | 1,000,000.000 HBD | ||||||
percent_hbd | 10,000 | ||||||
post_id | 7,676,639 | ||||||
net_rshares | 104,491,142,022 | ||||||
author_curate_reward | "" |
voter | weight | wgt% | rshares | pct | time |
---|---|---|---|---|---|
good-karma | 0 | 100,979,987,229 | 0.1% | ||
mysteem | 0 | 84,101,800 | 1% | ||
demo | 0 | 161,960,468 | 1% | ||
feruz | 0 | 1,520,016,803 | 1% | ||
esteemapp | 0 | 917,789,323 | 1% | ||
bounties | 0 | 172,459,561 | 1% | ||
steempoll | 0 | 167,409,841 | 1% | ||
tipping | 0 | 152,143,059 | 1% | ||
thecrazygm | 0 | 244,631,531 | 0.1% | ||
doqstrader | 0 | 90,642,407 | 0.1% |
Follow me please.. i have fallowed you
author | ndnd92 |
---|---|
permlink | re-dan-eos-developer-s-log-starday-201707-3-20170704t102552294z |
category | eos |
json_metadata | {"tags":["eos"],"app":"steemit/0.1"} |
created | 2017-07-04 10:25:51 |
last_update | 2017-07-04 10:25:51 |
depth | 1 |
children | 0 |
last_payout | 2017-07-11 10:25:51 |
cashout_time | 1969-12-31 23:59:59 |
total_payout_value | 0.000 HBD |
curator_payout_value | 0.000 HBD |
pending_payout_value | 0.000 HBD |
promoted | 0.000 HBD |
body_length | 38 |
author_reputation | -443,134,974,292 |
root_title | "EOS - Developer’s Log Stardate 201707.3" |
beneficiaries | [] |
max_accepted_payout | 1,000,000.000 HBD |
percent_hbd | 10,000 |
post_id | 7,258,311 |
net_rshares | -1,721,832,393,485 |
author_curate_reward | "" |
voter | weight | wgt% | rshares | pct | time |
---|---|---|---|---|---|
dan | 0 | -1,721,780,297,551 | -1% | ||
blacklist-a | 0 | -52,095,934 | -10% |
i have fallowed you .. and i will vote u fallow me please and tell me when u do it tnx
author | ndnd92 |
---|---|
permlink | re-dan-eos-developer-s-log-starday-201707-3-20170704t113723442z |
category | eos |
json_metadata | {"tags":["eos"],"app":"steemit/0.1"} |
created | 2017-07-04 11:37:21 |
last_update | 2017-07-04 11:37:21 |
depth | 1 |
children | 0 |
last_payout | 2017-07-11 11:37:21 |
cashout_time | 1969-12-31 23:59:59 |
total_payout_value | 0.000 HBD |
curator_payout_value | 0.000 HBD |
pending_payout_value | 0.000 HBD |
promoted | 0.000 HBD |
body_length | 86 |
author_reputation | -443,134,974,292 |
root_title | "EOS - Developer’s Log Stardate 201707.3" |
beneficiaries | [] |
max_accepted_payout | 1,000,000.000 HBD |
percent_hbd | 10,000 |
post_id | 7,264,865 |
net_rshares | -26,687,646,707,987 |
author_curate_reward | "" |
voter | weight | wgt% | rshares | pct | time |
---|---|---|---|---|---|
dan | 0 | -26,687,594,612,053 | -16% | ||
blacklist-a | 0 | -52,095,934 | -10% |
Me irl http://media.boingboing.net/wp-content/uploads/2016/11/bcf.png
author | needmorefat |
---|---|
permlink | re-dan-eos-developer-s-log-starday-201707-3-20170704t015507757z |
category | eos |
json_metadata | {"tags":["eos"],"image":["http://media.boingboing.net/wp-content/uploads/2016/11/bcf.png"],"app":"steemit/0.1"} |
created | 2017-07-04 01:55:09 |
last_update | 2017-07-04 01:55:09 |
depth | 1 |
children | 0 |
last_payout | 2017-07-11 01:55:09 |
cashout_time | 1969-12-31 23:59:59 |
total_payout_value | 0.000 HBD |
curator_payout_value | 0.000 HBD |
pending_payout_value | 0.000 HBD |
promoted | 0.000 HBD |
body_length | 70 |
author_reputation | 268,870,057,104 |
root_title | "EOS - Developer’s Log Stardate 201707.3" |
beneficiaries | [] |
max_accepted_payout | 1,000,000.000 HBD |
percent_hbd | 10,000 |
post_id | 7,217,901 |
net_rshares | 0 |
How you can earn that much dollars @dan
author | noval | ||||||
---|---|---|---|---|---|---|---|
permlink | re-dan-201774t185042381z | ||||||
category | eos | ||||||
json_metadata | {"tags":"eos","app":"esteem/1.4.6","format":"markdown+html","community":"esteem"} | ||||||
created | 2017-07-04 11:50:48 | ||||||
last_update | 2017-07-04 11:50:48 | ||||||
depth | 1 | ||||||
children | 0 | ||||||
last_payout | 2017-07-11 11:50:48 | ||||||
cashout_time | 1969-12-31 23:59:59 | ||||||
total_payout_value | 0.000 HBD | ||||||
curator_payout_value | 0.000 HBD | ||||||
pending_payout_value | 0.000 HBD | ||||||
promoted | 0.000 HBD | ||||||
body_length | 39 | ||||||
author_reputation | 78,049,643,501 | ||||||
root_title | "EOS - Developer’s Log Stardate 201707.3" | ||||||
beneficiaries |
| ||||||
max_accepted_payout | 1,000,000.000 HBD | ||||||
percent_hbd | 10,000 | ||||||
post_id | 7,266,117 | ||||||
net_rshares | 0 |
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
author | novale | ||||||
---|---|---|---|---|---|---|---|
permlink | re-dan-201775t164827562z | ||||||
category | eos | ||||||
json_metadata | {"tags":"eos","app":"esteem/1.4.6","format":"markdown+html","community":"esteem"} | ||||||
created | 2017-07-05 09:48:33 | ||||||
last_update | 2017-07-05 09:48:33 | ||||||
depth | 1 | ||||||
children | 0 | ||||||
last_payout | 2017-07-12 09:48:33 | ||||||
cashout_time | 1969-12-31 23:59:59 | ||||||
total_payout_value | 0.463 HBD | ||||||
curator_payout_value | 0.000 HBD | ||||||
pending_payout_value | 0.000 HBD | ||||||
promoted | 0.000 HBD | ||||||
body_length | 377 | ||||||
author_reputation | 23,451,887,862,777 | ||||||
root_title | "EOS - Developer’s Log Stardate 201707.3" | ||||||
beneficiaries |
| ||||||
max_accepted_payout | 1,000,000.000 HBD | ||||||
percent_hbd | 10,000 | ||||||
post_id | 7,378,078 | ||||||
net_rshares | 90,188,580,190 | ||||||
author_curate_reward | "" |
voter | weight | wgt% | rshares | pct | time |
---|---|---|---|---|---|
good-karma | 0 | 83,672,092,274 | 0.1% | ||
mysteem | 0 | 168,203,600 | 1% | ||
demo | 0 | 323,920,936 | 1% | ||
feruz | 0 | 3,040,033,606 | 1% | ||
esteemapp | 0 | 1,703,406,196 | 1% | ||
bounties | 0 | 344,919,123 | 1% | ||
steempoll | 0 | 334,819,683 | 1% | ||
tipping | 0 | 304,286,119 | 1% | ||
sarasate | 0 | 296,898,653 | 0.1% |
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!
author | nutela |
---|---|
permlink | re-dan-eos-developer-s-log-starday-201707-3-20170704t113303074z |
category | eos |
json_metadata | {"tags":["eos"],"links":["https://www.haiku-os.org"],"app":"steemit/0.1"} |
created | 2017-07-04 11:33:00 |
last_update | 2017-07-04 11:33:00 |
depth | 1 |
children | 0 |
last_payout | 2017-07-11 11:33:00 |
cashout_time | 1969-12-31 23:59:59 |
total_payout_value | 0.000 HBD |
curator_payout_value | 0.000 HBD |
pending_payout_value | 0.000 HBD |
promoted | 0.000 HBD |
body_length | 298 |
author_reputation | 12,740,113,194,550 |
root_title | "EOS - Developer’s Log Stardate 201707.3" |
beneficiaries | [] |
max_accepted_payout | 1,000,000.000 HBD |
percent_hbd | 10,000 |
post_id | 7,264,426 |
net_rshares | 0 |
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
author | osaka | ||||||
---|---|---|---|---|---|---|---|
permlink | re-dan-201774t115653210z | ||||||
category | eos | ||||||
json_metadata | {"tags":"eos","app":"esteem/1.4.5","format":"markdown+html","community":"esteem"} | ||||||
created | 2017-07-04 04:57:00 | ||||||
last_update | 2017-07-04 04:57:00 | ||||||
depth | 1 | ||||||
children | 0 | ||||||
last_payout | 2017-07-11 04:57:00 | ||||||
cashout_time | 1969-12-31 23:59:59 | ||||||
total_payout_value | 0.530 HBD | ||||||
curator_payout_value | 0.000 HBD | ||||||
pending_payout_value | 0.000 HBD | ||||||
promoted | 0.000 HBD | ||||||
body_length | 251 | ||||||
author_reputation | -221,197,013,380 | ||||||
root_title | "EOS - Developer’s Log Stardate 201707.3" | ||||||
beneficiaries |
| ||||||
max_accepted_payout | 1,000,000.000 HBD | ||||||
percent_hbd | 10,000 | ||||||
post_id | 7,231,532 | ||||||
net_rshares | 85,279,576,196 | ||||||
author_curate_reward | "" |
voter | weight | wgt% | rshares | pct | time |
---|---|---|---|---|---|
good-karma | 0 | 83,603,666,760 | 0.05% | ||
elgeko | 0 | 1,675,909,436 | 0.02% |
thanks for this solution I was searching for it thanks for this posts and it really worked thank you!
author | othmanesl |
---|---|
permlink | re-dan-eos-developer-s-log-starday-201707-3-20170703t222932162z |
category | eos |
json_metadata | {"tags":["eos"],"app":"steemit/0.1"} |
created | 2017-07-03 22:29:33 |
last_update | 2017-07-03 22:29:33 |
depth | 1 |
children | 0 |
last_payout | 2017-07-10 22:29:33 |
cashout_time | 1969-12-31 23:59:59 |
total_payout_value | 0.000 HBD |
curator_payout_value | 0.000 HBD |
pending_payout_value | 0.000 HBD |
promoted | 0.000 HBD |
body_length | 101 |
author_reputation | 422,822,256,945 |
root_title | "EOS - Developer’s Log Stardate 201707.3" |
beneficiaries | [] |
max_accepted_payout | 1,000,000.000 HBD |
percent_hbd | 10,000 |
post_id | 7,201,675 |
net_rshares | 0 |
this is very useful. Thank you
author | outhori5ed |
---|---|
permlink | re-dan-eos-developer-s-log-starday-201707-3-20170705t094704524z |
category | eos |
json_metadata | {"tags":["eos"],"app":"steemit/0.1"} |
created | 2017-07-05 09:47:06 |
last_update | 2017-07-05 09:47:06 |
depth | 1 |
children | 0 |
last_payout | 2017-07-12 09:47:06 |
cashout_time | 1969-12-31 23:59:59 |
total_payout_value | 0.000 HBD |
curator_payout_value | 0.000 HBD |
pending_payout_value | 0.000 HBD |
promoted | 0.000 HBD |
body_length | 30 |
author_reputation | 39,356,239,578,011 |
root_title | "EOS - Developer’s Log Stardate 201707.3" |
beneficiaries | [] |
max_accepted_payout | 1,000,000.000 HBD |
percent_hbd | 10,000 |
post_id | 7,377,961 |
net_rshares | 0 |
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
author | outhori5ed |
---|---|
permlink | re-dan-eos-developer-s-log-starday-201707-3-20170708t215556791z |
category | eos |
json_metadata | {"tags":["eos"],"links":["https://steemit.com/sex/@outhori5ed/sex-education-by-ogunleye-dele-victor"],"app":"steemit/0.1"} |
created | 2017-07-08 21:56:00 |
last_update | 2017-07-08 21:56:00 |
depth | 1 |
children | 0 |
last_payout | 2017-07-15 21:56:00 |
cashout_time | 1969-12-31 23:59:59 |
total_payout_value | 0.000 HBD |
curator_payout_value | 0.000 HBD |
pending_payout_value | 0.000 HBD |
promoted | 0.000 HBD |
body_length | 297 |
author_reputation | 39,356,239,578,011 |
root_title | "EOS - Developer’s Log Stardate 201707.3" |
beneficiaries | [] |
max_accepted_payout | 1,000,000.000 HBD |
percent_hbd | 10,000 |
post_id | 7,799,052 |
net_rshares | 0 |
Nice job
author | pablito | ||||||
---|---|---|---|---|---|---|---|
permlink | re-dan-201773t234821239z | ||||||
category | eos | ||||||
json_metadata | {"tags":"eos","app":"esteem/1.4.5","format":"markdown+html","community":"esteem"} | ||||||
created | 2017-07-03 21:48:21 | ||||||
last_update | 2017-07-03 21:48:21 | ||||||
depth | 1 | ||||||
children | 0 | ||||||
last_payout | 2017-07-10 21:48:21 | ||||||
cashout_time | 1969-12-31 23:59:59 | ||||||
total_payout_value | 0.000 HBD | ||||||
curator_payout_value | 0.000 HBD | ||||||
pending_payout_value | 0.000 HBD | ||||||
promoted | 0.000 HBD | ||||||
body_length | 8 | ||||||
author_reputation | 6,023,171,893,864 | ||||||
root_title | "EOS - Developer’s Log Stardate 201707.3" | ||||||
beneficiaries |
| ||||||
max_accepted_payout | 1,000,000.000 HBD | ||||||
percent_hbd | 10,000 | ||||||
post_id | 7,197,713 | ||||||
net_rshares | 0 |
Hello from Colombia, hey really you are so good, the best. Congratulations. Excellent post.
author | patyto |
---|---|
permlink | re-dan-eos-developer-s-log-starday-201707-3-20170704t053812544z |
category | eos |
json_metadata | {"tags":["eos"],"app":"steemit/0.1"} |
created | 2017-07-04 05:38:06 |
last_update | 2017-07-04 05:38:06 |
depth | 1 |
children | 0 |
last_payout | 2017-07-11 05:38:06 |
cashout_time | 1969-12-31 23:59:59 |
total_payout_value | 0.000 HBD |
curator_payout_value | 0.000 HBD |
pending_payout_value | 0.000 HBD |
promoted | 0.000 HBD |
body_length | 91 |
author_reputation | 5,803,455,972 |
root_title | "EOS - Developer’s Log Stardate 201707.3" |
beneficiaries | [] |
max_accepted_payout | 1,000,000.000 HBD |
percent_hbd | 10,000 |
post_id | 7,234,601 |
net_rshares | 0 |
A Good Post
author | princekayani |
---|---|
permlink | re-dan-eos-developer-s-log-starday-201707-3-20170703t223507691z |
category | eos |
json_metadata | {"tags":["eos"],"app":"steemit/0.1"} |
created | 2017-07-03 22:35:36 |
last_update | 2017-07-03 22:35:36 |
depth | 1 |
children | 0 |
last_payout | 2017-07-10 22:35:36 |
cashout_time | 1969-12-31 23:59:59 |
total_payout_value | 0.000 HBD |
curator_payout_value | 0.000 HBD |
pending_payout_value | 0.000 HBD |
promoted | 0.000 HBD |
body_length | 11 |
author_reputation | 61,289,909,290 |
root_title | "EOS - Developer’s Log Stardate 201707.3" |
beneficiaries | [] |
max_accepted_payout | 1,000,000.000 HBD |
percent_hbd | 10,000 |
post_id | 7,202,249 |
net_rshares | 0 |
@qadeeruddin Follow me and vote me and get back same
author | qadeeruddin |
---|---|
permlink | re-dan-eos-developer-s-log-starday-201707-3-20170703t222549393z |
category | eos |
json_metadata | {"tags":["eos"],"users":["qadeeruddin"],"app":"steemit/0.1"} |
created | 2017-07-03 22:25:51 |
last_update | 2017-07-03 22:25:51 |
depth | 1 |
children | 0 |
last_payout | 2017-07-10 22:25:51 |
cashout_time | 1969-12-31 23:59:59 |
total_payout_value | 0.000 HBD |
curator_payout_value | 0.000 HBD |
pending_payout_value | 0.000 HBD |
promoted | 0.000 HBD |
body_length | 57 |
author_reputation | 10,542,505,628 |
root_title | "EOS - Developer’s Log Stardate 201707.3" |
beneficiaries | [] |
max_accepted_payout | 1,000,000.000 HBD |
percent_hbd | 10,000 |
post_id | 7,201,296 |
net_rshares | 0 |
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.
author | raku | ||||||
---|---|---|---|---|---|---|---|
permlink | re-dan-201774t104614311z | ||||||
category | eos | ||||||
json_metadata | {"tags":"eos","app":"esteem/1.4.6","format":"markdown+html","community":"esteem"} | ||||||
created | 2017-07-04 05:01:18 | ||||||
last_update | 2017-07-04 05:01:18 | ||||||
depth | 1 | ||||||
children | 0 | ||||||
last_payout | 2017-07-11 05:01:18 | ||||||
cashout_time | 1969-12-31 23:59:59 | ||||||
total_payout_value | 0.000 HBD | ||||||
curator_payout_value | 0.000 HBD | ||||||
pending_payout_value | 0.000 HBD | ||||||
promoted | 0.000 HBD | ||||||
body_length | 144 | ||||||
author_reputation | 78,878,401,625 | ||||||
root_title | "EOS - Developer’s Log Stardate 201707.3" | ||||||
beneficiaries |
| ||||||
max_accepted_payout | 1,000,000.000 HBD | ||||||
percent_hbd | 10,000 | ||||||
post_id | 7,231,856 | ||||||
net_rshares | 0 |
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
author | raserrano |
---|---|
permlink | re-dan-eos-developer-s-log-starday-201707-3-20170704t023910053z |
category | eos |
json_metadata | {"tags":["eos"],"app":"steemit/0.1"} |
created | 2017-07-04 02:39:09 |
last_update | 2017-07-04 02:39:09 |
depth | 1 |
children | 0 |
last_payout | 2017-07-11 02:39:09 |
cashout_time | 1969-12-31 23:59:59 |
total_payout_value | 0.000 HBD |
curator_payout_value | 0.000 HBD |
pending_payout_value | 0.000 HBD |
promoted | 0.000 HBD |
body_length | 120 |
author_reputation | 17,096,448,295,650 |
root_title | "EOS - Developer’s Log Stardate 201707.3" |
beneficiaries | [] |
max_accepted_payout | 1,000,000.000 HBD |
percent_hbd | 10,000 |
post_id | 7,221,486 |
net_rshares | 0 |
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.
author | rebatesteem |
---|---|
permlink | re-dan-eos-developer-s-log-starday-201707-3-20170706t112426730z |
category | eos |
json_metadata | {"tags":["eos"],"users":["rebatesteem"],"app":"steemit/0.1"} |
created | 2017-07-06 11:24:51 |
last_update | 2017-07-06 11:24:51 |
depth | 1 |
children | 0 |
last_payout | 2017-07-13 11:24:51 |
cashout_time | 1969-12-31 23:59:59 |
total_payout_value | 0.000 HBD |
curator_payout_value | 0.000 HBD |
pending_payout_value | 0.000 HBD |
promoted | 0.000 HBD |
body_length | 363 |
author_reputation | 13,668,437,279,391 |
root_title | "EOS - Developer’s Log Stardate 201707.3" |
beneficiaries | [] |
max_accepted_payout | 1,000,000.000 HBD |
percent_hbd | 10,000 |
post_id | 7,508,337 |
net_rshares | 0 |
nice post
author | resteemit | ||||||
---|---|---|---|---|---|---|---|
permlink | re-dan-201774t125538499z | ||||||
category | eos | ||||||
json_metadata | {"tags":"eos","app":"esteem/1.4.6","format":"markdown+html","community":"esteem"} | ||||||
created | 2017-07-04 05:55:45 | ||||||
last_update | 2017-07-04 05:55:45 | ||||||
depth | 1 | ||||||
children | 1 | ||||||
last_payout | 2017-07-11 05:55:45 | ||||||
cashout_time | 1969-12-31 23:59:59 | ||||||
total_payout_value | 0.000 HBD | ||||||
curator_payout_value | 0.000 HBD | ||||||
pending_payout_value | 0.000 HBD | ||||||
promoted | 0.000 HBD | ||||||
body_length | 9 | ||||||
author_reputation | 15,796,661,345 | ||||||
root_title | "EOS - Developer’s Log Stardate 201707.3" | ||||||
beneficiaries |
| ||||||
max_accepted_payout | 1,000,000.000 HBD | ||||||
percent_hbd | 10,000 | ||||||
post_id | 7,235,867 | ||||||
net_rshares | -1,721,832,393,485 | ||||||
author_curate_reward | "" |
voter | weight | wgt% | rshares | pct | time |
---|---|---|---|---|---|
dan | 0 | -1,721,780,297,551 | -1% | ||
blacklist-a | 0 | -52,095,934 | -10% |
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?
author | resteemit |
---|---|
permlink | re-resteemit-re-dan-201774t125538499z-20170724t192300383z |
category | eos |
json_metadata | {"tags":["eos"],"users":["dan"],"app":"steemit/0.1"} |
created | 2017-07-24 19:23:03 |
last_update | 2017-07-24 19:23:03 |
depth | 2 |
children | 0 |
last_payout | 2017-07-31 19:23:03 |
cashout_time | 1969-12-31 23:59:59 |
total_payout_value | 0.616 HBD |
curator_payout_value | 0.203 HBD |
pending_payout_value | 0.000 HBD |
promoted | 0.000 HBD |
body_length | 264 |
author_reputation | 15,796,661,345 |
root_title | "EOS - Developer’s Log Stardate 201707.3" |
beneficiaries | [] |
max_accepted_payout | 1,000,000.000 HBD |
percent_hbd | 10,000 |
post_id | 9,576,096 |
net_rshares | 220,986,137,114 |
author_curate_reward | "" |
voter | weight | wgt% | rshares | pct | time |
---|---|---|---|---|---|
unipsycho | 0 | 24,347,634,861 | 100% | ||
thing-2 | 0 | 196,638,502,253 | 100% |
it's very good post about developer
author | reyadelhamzawy |
---|---|
permlink | re-dan-eos-developer-s-log-starday-201707-3-20170703t222302695z |
category | eos |
json_metadata | {"tags":["eos"],"app":"steemit/0.1"} |
created | 2017-07-03 22:23:09 |
last_update | 2017-07-03 22:23:09 |
depth | 1 |
children | 0 |
last_payout | 2017-07-10 22:23:09 |
cashout_time | 1969-12-31 23:59:59 |
total_payout_value | 0.000 HBD |
curator_payout_value | 0.000 HBD |
pending_payout_value | 0.000 HBD |
promoted | 0.000 HBD |
body_length | 35 |
author_reputation | -2,676,488,917,934 |
root_title | "EOS - Developer’s Log Stardate 201707.3" |
beneficiaries | [] |
max_accepted_payout | 1,000,000.000 HBD |
percent_hbd | 10,000 |
post_id | 7,201,036 |
net_rshares | 0 |
great post
author | ricardot |
---|---|
permlink | re-dan-eos-developer-s-log-starday-201707-3-20170703t230542073z |
category | eos |
json_metadata | {"tags":["eos"],"app":"steemit/0.1"} |
created | 2017-07-03 23:05:45 |
last_update | 2017-07-03 23:05:45 |
depth | 1 |
children | 0 |
last_payout | 2017-07-10 23:05:45 |
cashout_time | 1969-12-31 23:59:59 |
total_payout_value | 0.000 HBD |
curator_payout_value | 0.000 HBD |
pending_payout_value | 0.000 HBD |
promoted | 0.000 HBD |
body_length | 10 |
author_reputation | 24,387,146,684 |
root_title | "EOS - Developer’s Log Stardate 201707.3" |
beneficiaries | [] |
max_accepted_payout | 1,000,000.000 HBD |
percent_hbd | 10,000 |
post_id | 7,204,806 |
net_rshares | 0 |
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 😎
author | richreck |
---|---|
permlink | re-dan-eos-developer-s-log-starday-201707-3-20170704t180043881z |
category | eos |
json_metadata | {"tags":["eos"],"app":"steemit/0.1"} |
created | 2017-07-04 18:00:45 |
last_update | 2017-07-04 18:00:45 |
depth | 1 |
children | 0 |
last_payout | 2017-07-11 18:00:45 |
cashout_time | 1969-12-31 23:59:59 |
total_payout_value | 0.790 HBD |
curator_payout_value | 0.001 HBD |
pending_payout_value | 0.000 HBD |
promoted | 0.000 HBD |
body_length | 135 |
author_reputation | 263,519,071,944 |
root_title | "EOS - Developer’s Log Stardate 201707.3" |
beneficiaries | [] |
max_accepted_payout | 1,000,000.000 HBD |
percent_hbd | 10,000 |
post_id | 7,305,511 |
net_rshares | 126,017,816,438 |
author_curate_reward | "" |
voter | weight | wgt% | rshares | pct | time |
---|---|---|---|---|---|
richreck | 0 | 126,017,816,438 | 100% |
Hey friend help me,I just learned steemit. Promote me .
author | riskimauliza | ||||||
---|---|---|---|---|---|---|---|
permlink | re-dan-201774t75849252z | ||||||
category | eos | ||||||
json_metadata | {"tags":"eos","app":"esteem/1.4.6","format":"markdown+html","community":"esteem"} | ||||||
created | 2017-07-04 00:58:54 | ||||||
last_update | 2017-07-04 00:58:54 | ||||||
depth | 1 | ||||||
children | 0 | ||||||
last_payout | 2017-07-11 00:58:54 | ||||||
cashout_time | 1969-12-31 23:59:59 | ||||||
total_payout_value | 0.000 HBD | ||||||
curator_payout_value | 0.000 HBD | ||||||
pending_payout_value | 0.000 HBD | ||||||
promoted | 0.000 HBD | ||||||
body_length | 55 | ||||||
author_reputation | 219,805,209,163 | ||||||
root_title | "EOS - Developer’s Log Stardate 201707.3" | ||||||
beneficiaries |
| ||||||
max_accepted_payout | 1,000,000.000 HBD | ||||||
percent_hbd | 10,000 | ||||||
post_id | 7,213,727 | ||||||
net_rshares | 1,160,707,380 | ||||||
author_curate_reward | "" |
voter | weight | wgt% | rshares | pct | time |
---|---|---|---|---|---|
dapsyt | 0 | 1,160,707,380 | 100% |
Good post
author | riskimauliza | ||||||
---|---|---|---|---|---|---|---|
permlink | re-dan-201775t13658272z | ||||||
category | eos | ||||||
json_metadata | {"tags":"eos","app":"esteem/1.4.6","format":"markdown+html","community":"esteem"} | ||||||
created | 2017-07-04 18:37:06 | ||||||
last_update | 2017-07-04 18:37:06 | ||||||
depth | 1 | ||||||
children | 0 | ||||||
last_payout | 2017-07-11 18:37:06 | ||||||
cashout_time | 1969-12-31 23:59:59 | ||||||
total_payout_value | 0.000 HBD | ||||||
curator_payout_value | 0.000 HBD | ||||||
pending_payout_value | 0.000 HBD | ||||||
promoted | 0.000 HBD | ||||||
body_length | 9 | ||||||
author_reputation | 219,805,209,163 | ||||||
root_title | "EOS - Developer’s Log Stardate 201707.3" | ||||||
beneficiaries |
| ||||||
max_accepted_payout | 1,000,000.000 HBD | ||||||
percent_hbd | 10,000 | ||||||
post_id | 7,309,129 | ||||||
net_rshares | 0 |
Very interesting, I liked to see it was very nice
author | rodolfocastrodz |
---|---|
permlink | re-dan-eos-developer-s-log-starday-201707-3-20170705t121627276z |
category | eos |
json_metadata | {"tags":["eos"],"app":"steemit/0.1"} |
created | 2017-07-05 12:16:24 |
last_update | 2017-07-05 12:16:24 |
depth | 1 |
children | 0 |
last_payout | 2017-07-12 12:16:24 |
cashout_time | 1969-12-31 23:59:59 |
total_payout_value | 0.000 HBD |
curator_payout_value | 0.000 HBD |
pending_payout_value | 0.000 HBD |
promoted | 0.000 HBD |
body_length | 49 |
author_reputation | 11,181,125,913 |
root_title | "EOS - Developer’s Log Stardate 201707.3" |
beneficiaries | [] |
max_accepted_payout | 1,000,000.000 HBD |
percent_hbd | 10,000 |
post_id | 7,389,948 |
net_rshares | 0 |
such a great blog
author | rohitbisht |
---|---|
permlink | re-dan-eos-developer-s-log-starday-201707-3-20170704t152913125z |
category | eos |
json_metadata | {"tags":["eos"],"app":"steemit/0.1"} |
created | 2017-07-04 15:29:24 |
last_update | 2017-07-04 15:29:24 |
depth | 1 |
children | 0 |
last_payout | 2017-07-11 15:29:24 |
cashout_time | 1969-12-31 23:59:59 |
total_payout_value | 0.000 HBD |
curator_payout_value | 0.000 HBD |
pending_payout_value | 0.000 HBD |
promoted | 0.000 HBD |
body_length | 17 |
author_reputation | 206,795,220,204 |
root_title | "EOS - Developer’s Log Stardate 201707.3" |
beneficiaries | [] |
max_accepted_payout | 1,000,000.000 HBD |
percent_hbd | 10,000 |
post_id | 7,290,098 |
net_rshares | 0 |
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
author | s3rg3 |
---|---|
permlink | re-dan-eos-developer-s-log-starday-201707-3-20170703t215725821z |
category | eos |
json_metadata | {"tags":["eos"],"app":"steemit/0.1"} |
created | 2017-07-03 21:57:24 |
last_update | 2017-07-03 21:57:24 |
depth | 1 |
children | 0 |
last_payout | 2017-07-10 21:57:24 |
cashout_time | 1969-12-31 23:59:59 |
total_payout_value | 0.000 HBD |
curator_payout_value | 0.000 HBD |
pending_payout_value | 0.000 HBD |
promoted | 0.000 HBD |
body_length | 227 |
author_reputation | 50,804,432,544,955 |
root_title | "EOS - Developer’s Log Stardate 201707.3" |
beneficiaries | [] |
max_accepted_payout | 1,000,000.000 HBD |
percent_hbd | 10,000 |
post_id | 7,198,599 |
net_rshares | 0 |
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
author | sam19 |
---|---|
permlink | re-dan-eos-developer-s-log-starday-201707-3-20170703t223654445z |
category | eos |
json_metadata | {"tags":["eos"],"app":"steemit/0.1"} |
created | 2017-07-03 22:37:03 |
last_update | 2017-07-03 22:37:03 |
depth | 1 |
children | 0 |
last_payout | 2017-07-10 22:37:03 |
cashout_time | 1969-12-31 23:59:59 |
total_payout_value | 0.000 HBD |
curator_payout_value | 0.000 HBD |
pending_payout_value | 0.000 HBD |
promoted | 0.000 HBD |
body_length | 184 |
author_reputation | -94,571,600,344 |
root_title | "EOS - Developer’s Log Stardate 201707.3" |
beneficiaries | [] |
max_accepted_payout | 1,000,000.000 HBD |
percent_hbd | 10,000 |
post_id | 7,202,380 |
net_rshares | 0 |
This is yet another project I am looking forward to see...
author | sanat |
---|---|
permlink | re-dan-eos-developer-s-log-starday-201707-3-20170704t143604601z |
category | eos |
json_metadata | {"tags":["eos"],"app":"steemit/0.1"} |
created | 2017-07-04 14:36:06 |
last_update | 2017-07-04 14:36:06 |
depth | 1 |
children | 0 |
last_payout | 2017-07-11 14:36:06 |
cashout_time | 1969-12-31 23:59:59 |
total_payout_value | 0.000 HBD |
curator_payout_value | 0.000 HBD |
pending_payout_value | 0.000 HBD |
promoted | 0.000 HBD |
body_length | 58 |
author_reputation | 2,167,003,527,810 |
root_title | "EOS - Developer’s Log Stardate 201707.3" |
beneficiaries | [] |
max_accepted_payout | 1,000,000.000 HBD |
percent_hbd | 10,000 |
post_id | 7,284,007 |
net_rshares | 0 |
author | sandwich |
---|---|
permlink | re-dan-eos-developer-s-log-starday-201707-3-20170703t220831751z |
category | eos |
json_metadata | {"tags":["eos"],"app":"steemit/0.1"} |
created | 2017-07-03 22:08:33 |
last_update | 2017-07-03 22:08:33 |
depth | 1 |
children | 1 |
last_payout | 2017-07-10 22:08:33 |
cashout_time | 1969-12-31 23:59:59 |
total_payout_value | 0.084 HBD |
curator_payout_value | 0.024 HBD |
pending_payout_value | 0.000 HBD |
promoted | 0.000 HBD |
body_length | 41 |
author_reputation | 7,919,075,206,622 |
root_title | "EOS - Developer’s Log Stardate 201707.3" |
beneficiaries | [] |
max_accepted_payout | 1,000,000.000 HBD |
percent_hbd | 10,000 |
post_id | 7,199,664 |
net_rshares | 16,563,486,064 |
author_curate_reward | "" |
voter | weight | wgt% | rshares | pct | time |
---|---|---|---|---|---|
sandwich | 0 | 13,279,748,301 | 40% | ||
belidged | 0 | 3,283,737,763 | 100% |
I've been seeing a lot of you lately. "I know a good sandwich when I see one"
author | belidged |
---|---|
permlink | re-sandwich-re-dan-eos-developer-s-log-starday-201707-3-20170704t040435773z |
category | eos |
json_metadata | {"tags":["eos"],"app":"steemit/0.1"} |
created | 2017-07-04 04:04:36 |
last_update | 2017-07-04 04:04:36 |
depth | 2 |
children | 0 |
last_payout | 2017-07-11 04:04:36 |
cashout_time | 1969-12-31 23:59:59 |
total_payout_value | 0.000 HBD |
curator_payout_value | 0.000 HBD |
pending_payout_value | 0.000 HBD |
promoted | 0.000 HBD |
body_length | 77 |
author_reputation | 107,019,740,819 |
root_title | "EOS - Developer’s Log Stardate 201707.3" |
beneficiaries | [] |
max_accepted_payout | 1,000,000.000 HBD |
percent_hbd | 10,000 |
post_id | 7,227,853 |
net_rshares | 2,456,446,073 |
author_curate_reward | "" |
voter | weight | wgt% | rshares | pct | time |
---|---|---|---|---|---|
belidged | 0 | 2,456,446,073 | 100% |
How abt security Then. Understood its only read only but no harm is knowing the balance???
author | sanees |
---|---|
permlink | re-dan-eos-developer-s-log-starday-201707-3-20170704t004205808z |
category | eos |
json_metadata | {"tags":["eos"],"app":"steemit/0.1"} |
created | 2017-07-04 00:42:06 |
last_update | 2017-07-04 00:42:06 |
depth | 1 |
children | 0 |
last_payout | 2017-07-11 00:42:06 |
cashout_time | 1969-12-31 23:59:59 |
total_payout_value | 0.000 HBD |
curator_payout_value | 0.000 HBD |
pending_payout_value | 0.000 HBD |
promoted | 0.000 HBD |
body_length | 90 |
author_reputation | 2,019,131,877,450 |
root_title | "EOS - Developer’s Log Stardate 201707.3" |
beneficiaries | [] |
max_accepted_payout | 1,000,000.000 HBD |
percent_hbd | 10,000 |
post_id | 7,212,351 |
net_rshares | 1,991,987,694 |
author_curate_reward | "" |
voter | weight | wgt% | rshares | pct | time |
---|---|---|---|---|---|
sanees | 0 | 1,991,987,694 | 100% |
Let's see what the future holds. It is a good sign that the problems were discussed.
author | senor |
---|---|
permlink | re-dan-eos-developer-s-log-starday-201707-3-20170703t231248662z |
category | eos |
json_metadata | {"tags":["eos"],"app":"steemit/0.1"} |
created | 2017-07-03 23:12:48 |
last_update | 2017-07-03 23:12:48 |
depth | 1 |
children | 0 |
last_payout | 2017-07-10 23:12:48 |
cashout_time | 1969-12-31 23:59:59 |
total_payout_value | 0.000 HBD |
curator_payout_value | 0.000 HBD |
pending_payout_value | 0.000 HBD |
promoted | 0.000 HBD |
body_length | 84 |
author_reputation | 431,911,756,947 |
root_title | "EOS - Developer’s Log Stardate 201707.3" |
beneficiaries | [] |
max_accepted_payout | 1,000,000.000 HBD |
percent_hbd | 10,000 |
post_id | 7,205,357 |
net_rshares | 522,213,331 |
author_curate_reward | "" |
voter | weight | wgt% | rshares | pct | time |
---|---|---|---|---|---|
itan05 | 0 | 522,213,331 | 100% |
Thank you Dan for keeping us updated.
author | shariff |
---|---|
permlink | re-dan-eos-developer-s-log-starday-201707-3-20170704t081817779z |
category | eos |
json_metadata | {"tags":["eos"],"app":"steemit/0.1"} |
created | 2017-07-04 08:18:18 |
last_update | 2017-07-04 08:18:18 |
depth | 1 |
children | 0 |
last_payout | 2017-07-11 08:18:18 |
cashout_time | 1969-12-31 23:59:59 |
total_payout_value | 0.000 HBD |
curator_payout_value | 0.000 HBD |
pending_payout_value | 0.000 HBD |
promoted | 0.000 HBD |
body_length | 37 |
author_reputation | 172,337,616,135 |
root_title | "EOS - Developer’s Log Stardate 201707.3" |
beneficiaries | [] |
max_accepted_payout | 1,000,000.000 HBD |
percent_hbd | 10,000 |
post_id | 7,247,385 |
net_rshares | 0 |
You rock guy. Amazing.
author | shotokanzh |
---|---|
permlink | re-dan-eos-developer-s-log-starday-201707-3-20170704t150353256z |
category | eos |
json_metadata | {"tags":["eos"],"app":"steemit/0.1"} |
created | 2017-07-04 15:03:54 |
last_update | 2017-07-04 15:03:54 |
depth | 1 |
children | 0 |
last_payout | 2017-07-11 15:03:54 |
cashout_time | 1969-12-31 23:59:59 |
total_payout_value | 0.000 HBD |
curator_payout_value | 0.000 HBD |
pending_payout_value | 0.000 HBD |
promoted | 0.000 HBD |
body_length | 22 |
author_reputation | 47,284,538,927 |
root_title | "EOS - Developer’s Log Stardate 201707.3" |
beneficiaries | [] |
max_accepted_payout | 1,000,000.000 HBD |
percent_hbd | 10,000 |
post_id | 7,287,303 |
net_rshares | 0 |
good idea
author | shovonswift |
---|---|
permlink | re-dan-eos-developer-s-log-starday-201707-3-20170704t011756166z |
category | eos |
json_metadata | {"tags":["eos"],"app":"steemit/0.1"} |
created | 2017-07-04 01:18:03 |
last_update | 2017-07-04 01:18:03 |
depth | 1 |
children | 0 |
last_payout | 2017-07-11 01:18:03 |
cashout_time | 1969-12-31 23:59:59 |
total_payout_value | 0.000 HBD |
curator_payout_value | 0.000 HBD |
pending_payout_value | 0.000 HBD |
promoted | 0.000 HBD |
body_length | 9 |
author_reputation | -135,867,443,450 |
root_title | "EOS - Developer’s Log Stardate 201707.3" |
beneficiaries | [] |
max_accepted_payout | 1,000,000.000 HBD |
percent_hbd | 10,000 |
post_id | 7,215,178 |
net_rshares | 986,659,249 |
author_curate_reward | "" |
voter | weight | wgt% | rshares | pct | time |
---|---|---|---|---|---|
shovonswift | 0 | 986,659,249 | 100% |
Hi, I've followed you for a while, could you upvote my most recent article as i'm only small and trying to grow? (:
author | sixteen4narchist |
---|---|
permlink | re-dan-eos-developer-s-log-starday-201707-3-20170704t215706348z |
category | eos |
json_metadata | {"tags":["eos"],"app":"steemit/0.1"} |
created | 2017-07-04 21:57:24 |
last_update | 2017-07-04 21:57:24 |
depth | 1 |
children | 0 |
last_payout | 2017-07-11 21:57:24 |
cashout_time | 1969-12-31 23:59:59 |
total_payout_value | 0.000 HBD |
curator_payout_value | 0.000 HBD |
pending_payout_value | 0.000 HBD |
promoted | 0.000 HBD |
body_length | 115 |
author_reputation | -186,217,745,272 |
root_title | "EOS - Developer’s Log Stardate 201707.3" |
beneficiaries | [] |
max_accepted_payout | 1,000,000.000 HBD |
percent_hbd | 10,000 |
post_id | 7,327,620 |
net_rshares | -1,721,832,393,485 |
author_curate_reward | "" |
voter | weight | wgt% | rshares | pct | time |
---|---|---|---|---|---|
dan | 0 | -1,721,780,297,551 | -1% | ||
blacklist-a | 0 | -52,095,934 | -10% |
Donate for the steemfest and join the party. :)
author | skapaneas |
---|---|
permlink | re-dan-eos-developer-s-log-starday-201707-3-20170705t223201146z |
category | eos |
json_metadata | {"tags":["eos"],"app":"steemit/0.1"} |
created | 2017-07-05 22:32:03 |
last_update | 2017-07-05 22:32:03 |
depth | 1 |
children | 0 |
last_payout | 2017-07-12 22:32:03 |
cashout_time | 1969-12-31 23:59:59 |
total_payout_value | 0.000 HBD |
curator_payout_value | 0.000 HBD |
pending_payout_value | 0.000 HBD |
promoted | 0.000 HBD |
body_length | 48 |
author_reputation | 126,745,380,231,329 |
root_title | "EOS - Developer’s Log Stardate 201707.3" |
beneficiaries | [] |
max_accepted_payout | 1,000,000.000 HBD |
percent_hbd | 10,000 |
post_id | 7,449,800 |
net_rshares | 0 |
follow me
author | smokebox |
---|---|
permlink | re-dan-eos-developer-s-log-starday-201707-3-20170704t153831190z |
category | eos |
json_metadata | {"tags":["eos"],"app":"steemit/0.1"} |
created | 2017-07-04 15:38:27 |
last_update | 2017-07-04 15:38:27 |
depth | 1 |
children | 0 |
last_payout | 2017-07-11 15:38:27 |
cashout_time | 1969-12-31 23:59:59 |
total_payout_value | 0.000 HBD |
curator_payout_value | 0.000 HBD |
pending_payout_value | 0.000 HBD |
promoted | 0.000 HBD |
body_length | 9 |
author_reputation | -2,596,119,939,751 |
root_title | "EOS - Developer’s Log Stardate 201707.3" |
beneficiaries | [] |
max_accepted_payout | 1,000,000.000 HBD |
percent_hbd | 10,000 |
post_id | 7,291,064 |
net_rshares | -166,151,850,809,687 |
author_curate_reward | "" |
voter | weight | wgt% | rshares | pct | time |
---|---|---|---|---|---|
dan | 0 | -166,151,798,713,753 | -100% | ||
blacklist-a | 0 | -52,095,934 | -10% |
amazing blog @dan
author | snorlex20 |
---|---|
permlink | re-dan-eos-developer-s-log-starday-201707-3-20170704t021038737z |
category | eos |
json_metadata | {"tags":["eos"],"users":["dan"],"app":"steemit/0.1"} |
created | 2017-07-04 02:10:39 |
last_update | 2017-07-04 02:10:39 |
depth | 1 |
children | 0 |
last_payout | 2017-07-11 02:10:39 |
cashout_time | 1969-12-31 23:59:59 |
total_payout_value | 0.000 HBD |
curator_payout_value | 0.000 HBD |
pending_payout_value | 0.000 HBD |
promoted | 0.000 HBD |
body_length | 17 |
author_reputation | 20,255,848,295 |
root_title | "EOS - Developer’s Log Stardate 201707.3" |
beneficiaries | [] |
max_accepted_payout | 1,000,000.000 HBD |
percent_hbd | 10,000 |
post_id | 7,219,092 |
net_rshares | 0 |
Would you be recommending Python?
author | space-explorer |
---|---|
permlink | re-dan-eos-developer-s-log-starday-201707-3-20170704t015124499z |
category | eos |
json_metadata | {"tags":["eos"],"app":"steemit/0.1"} |
created | 2017-07-04 01:51:24 |
last_update | 2017-07-04 01:51:24 |
depth | 1 |
children | 0 |
last_payout | 2017-07-11 01:51:24 |
cashout_time | 1969-12-31 23:59:59 |
total_payout_value | 0.000 HBD |
curator_payout_value | 0.000 HBD |
pending_payout_value | 0.000 HBD |
promoted | 0.000 HBD |
body_length | 33 |
author_reputation | 83,400,813 |
root_title | "EOS - Developer’s Log Stardate 201707.3" |
beneficiaries | [] |
max_accepted_payout | 1,000,000.000 HBD |
percent_hbd | 10,000 |
post_id | 7,217,637 |
net_rshares | 1,160,684,883 |
author_curate_reward | "" |
voter | weight | wgt% | rshares | pct | time |
---|---|---|---|---|---|
electrichummus | 0 | 1,160,684,883 | 100% |
Thanks for sharing this information with us, valuable on all terms!
author | sparrow |
---|---|
permlink | re-dan-eos-developer-s-log-starday-201707-3-20170703t223217139z |
category | eos |
json_metadata | {"tags":["eos"],"app":"steemit/0.1"} |
created | 2017-07-03 22:32:18 |
last_update | 2017-07-03 22:32:18 |
depth | 1 |
children | 0 |
last_payout | 2017-07-10 22:32:18 |
cashout_time | 1969-12-31 23:59:59 |
total_payout_value | 0.000 HBD |
curator_payout_value | 0.000 HBD |
pending_payout_value | 0.000 HBD |
promoted | 0.000 HBD |
body_length | 67 |
author_reputation | 1,287,682,859 |
root_title | "EOS - Developer’s Log Stardate 201707.3" |
beneficiaries | [] |
max_accepted_payout | 1,000,000.000 HBD |
percent_hbd | 10,000 |
post_id | 7,201,947 |
net_rshares | 0 |
I love eos HODL!!
author | star02037 |
---|---|
permlink | re-dan-eos-developer-s-log-starday-201707-3-20170704t190407766z |
category | eos |
json_metadata | {"tags":["eos"],"app":"steemit/0.1"} |
created | 2017-07-04 19:04:09 |
last_update | 2017-07-04 19:04:09 |
depth | 1 |
children | 0 |
last_payout | 2017-07-11 19:04:09 |
cashout_time | 1969-12-31 23:59:59 |
total_payout_value | 0.000 HBD |
curator_payout_value | 0.000 HBD |
pending_payout_value | 0.000 HBD |
promoted | 0.000 HBD |
body_length | 18 |
author_reputation | 86,861,760,667 |
root_title | "EOS - Developer’s Log Stardate 201707.3" |
beneficiaries | [] |
max_accepted_payout | 1,000,000.000 HBD |
percent_hbd | 10,000 |
post_id | 7,311,617 |
net_rshares | 0 |
Here's a small tip for a great post. I will be following you. please visit my blog @steemisupport
author | steemisupport |
---|---|
permlink | re-dan-eos-developer-s-log-starday-201707-3-20170704t140604225z |
category | eos |
json_metadata | {"tags":["eos"],"users":["steemisupport"],"app":"steemit/0.1"} |
created | 2017-07-04 14:06:06 |
last_update | 2017-07-04 14:06:06 |
depth | 1 |
children | 0 |
last_payout | 2017-07-11 14:06:06 |
cashout_time | 1969-12-31 23:59:59 |
total_payout_value | 0.000 HBD |
curator_payout_value | 0.000 HBD |
pending_payout_value | 0.000 HBD |
promoted | 0.000 HBD |
body_length | 98 |
author_reputation | 95,939,675,825 |
root_title | "EOS - Developer’s Log Stardate 201707.3" |
beneficiaries | [] |
max_accepted_payout | 1,000,000.000 HBD |
percent_hbd | 10,000 |
post_id | 7,280,480 |
net_rshares | 0 |
Congratulations @dan! You have completed some achievement on Steemit and have been rewarded with new badge(s) : [](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)!
author | steemitboard |
---|---|
permlink | steemitboard-notify-dan-20170705t030635000z |
category | eos |
json_metadata | {"image":["https://steemitboard.com/img/notifications.png"]} |
created | 2017-07-05 03:06:33 |
last_update | 2017-07-05 03:06:33 |
depth | 1 |
children | 0 |
last_payout | 2017-07-12 03:06:33 |
cashout_time | 1969-12-31 23:59:59 |
total_payout_value | 0.000 HBD |
curator_payout_value | 0.000 HBD |
pending_payout_value | 0.000 HBD |
promoted | 0.000 HBD |
body_length | 685 |
author_reputation | 38,975,615,169,260 |
root_title | "EOS - Developer’s Log Stardate 201707.3" |
beneficiaries | [] |
max_accepted_payout | 1,000,000.000 HBD |
percent_hbd | 10,000 |
post_id | 7,349,429 |
net_rshares | 0 |
author | stefen |
---|---|
permlink | re-dan-eos-developer-s-log-starday-201707-3-20170703t214832745z |
category | eos |
json_metadata | {"tags":["eos"],"app":"steemit/0.1"} |
created | 2017-07-03 21:48:36 |
last_update | 2017-07-03 21:48:36 |
depth | 1 |
children | 0 |
last_payout | 2017-07-10 21:48:36 |
cashout_time | 1969-12-31 23:59:59 |
total_payout_value | 0.844 HBD |
curator_payout_value | 0.279 HBD |
pending_payout_value | 0.000 HBD |
promoted | 0.000 HBD |
body_length | 55 |
author_reputation | 6,803,833,244,756 |
root_title | "EOS - Developer’s Log Stardate 201707.3" |
beneficiaries | [] |
max_accepted_payout | 1,000,000.000 HBD |
percent_hbd | 10,000 |
post_id | 7,197,743 |
net_rshares | 168,818,352,754 |
author_curate_reward | "" |
voter | weight | wgt% | rshares | pct | time |
---|---|---|---|---|---|
jamesc1 | 0 | 168,690,658,919 | 1% | ||
lku | 0 | 127,693,835 | 19.18% | ||
patmenpet | 0 | 0 | 0% |
GREAT information! thank you.
author | stonecrypto |
---|---|
permlink | re-dan-eos-developer-s-log-starday-201707-3-20170704t132229100z |
category | eos |
json_metadata | {"tags":["eos"],"app":"steemit/0.1"} |
created | 2017-07-04 13:22:27 |
last_update | 2017-07-04 13:22:27 |
depth | 1 |
children | 0 |
last_payout | 2017-07-11 13:22:27 |
cashout_time | 1969-12-31 23:59:59 |
total_payout_value | 0.000 HBD |
curator_payout_value | 0.000 HBD |
pending_payout_value | 0.000 HBD |
promoted | 0.000 HBD |
body_length | 29 |
author_reputation | 12,550,550,373 |
root_title | "EOS - Developer’s Log Stardate 201707.3" |
beneficiaries | [] |
max_accepted_payout | 1,000,000.000 HBD |
percent_hbd | 10,000 |
post_id | 7,275,325 |
net_rshares | 0 |
Woah thats some data, gotta check out! Upvoted
author | styxer |
---|---|
permlink | re-dan-eos-developer-s-log-starday-201707-3-20170706t184440763z |
category | eos |
json_metadata | {"tags":["eos"],"app":"steemit/0.1"} |
created | 2017-07-06 18:44:39 |
last_update | 2017-07-06 18:44:39 |
depth | 1 |
children | 0 |
last_payout | 2017-07-13 18:44:39 |
cashout_time | 1969-12-31 23:59:59 |
total_payout_value | 0.000 HBD |
curator_payout_value | 0.000 HBD |
pending_payout_value | 0.000 HBD |
promoted | 0.000 HBD |
body_length | 46 |
author_reputation | 497,741,871,659 |
root_title | "EOS - Developer’s Log Stardate 201707.3" |
beneficiaries | [] |
max_accepted_payout | 1,000,000.000 HBD |
percent_hbd | 10,000 |
post_id | 7,553,609 |
net_rshares | 0 |
I need more information on this
author | subcdy |
---|---|
permlink | re-dan-eos-developer-s-log-starday-201707-3-20170704t231934699z |
category | eos |
json_metadata | {"tags":["eos"],"app":"steemit/0.1"} |
created | 2017-07-04 23:20:03 |
last_update | 2017-07-04 23:20:03 |
depth | 1 |
children | 0 |
last_payout | 2017-07-11 23:20:03 |
cashout_time | 1969-12-31 23:59:59 |
total_payout_value | 0.000 HBD |
curator_payout_value | 0.000 HBD |
pending_payout_value | 0.000 HBD |
promoted | 0.000 HBD |
body_length | 32 |
author_reputation | 15,514,900,032 |
root_title | "EOS - Developer’s Log Stardate 201707.3" |
beneficiaries | [] |
max_accepted_payout | 1,000,000.000 HBD |
percent_hbd | 10,000 |
post_id | 7,334,110 |
net_rshares | 0 |
Hello Friend Nice Post by You Please see my post under the title "Please Check the POST" & Respond... Thank you very much
author | sukhvir |
---|---|
permlink | re-dan-eos-developer-s-log-starday-201707-3-20170705t101628097z |
category | eos |
json_metadata | {"tags":["eos"],"app":"steemit/0.1"} |
created | 2017-07-05 10:16:36 |
last_update | 2017-07-05 10:16:36 |
depth | 1 |
children | 0 |
last_payout | 2017-07-12 10:16:36 |
cashout_time | 1969-12-31 23:59:59 |
total_payout_value | 0.000 HBD |
curator_payout_value | 0.000 HBD |
pending_payout_value | 0.000 HBD |
promoted | 0.000 HBD |
body_length | 124 |
author_reputation | 19,206,567,288 |
root_title | "EOS - Developer’s Log Stardate 201707.3" |
beneficiaries | [] |
max_accepted_payout | 1,000,000.000 HBD |
percent_hbd | 10,000 |
post_id | 7,380,247 |
net_rshares | 0 |
Thanks for sharing @dan, good post, I hope your days are fun
author | syehlah |
---|---|
permlink | re-dan-eos-developer-s-log-starday-201707-3-20170704t190547240z |
category | eos |
json_metadata | {"tags":["eos"],"users":["dan"],"app":"steemit/0.1"} |
created | 2017-07-04 19:06:09 |
last_update | 2017-07-04 19:06:09 |
depth | 1 |
children | 0 |
last_payout | 2017-07-11 19:06:09 |
cashout_time | 1969-12-31 23:59:59 |
total_payout_value | 0.000 HBD |
curator_payout_value | 0.000 HBD |
pending_payout_value | 0.000 HBD |
promoted | 0.000 HBD |
body_length | 60 |
author_reputation | 14,638,883,409,413 |
root_title | "EOS - Developer’s Log Stardate 201707.3" |
beneficiaries | [] |
max_accepted_payout | 1,000,000.000 HBD |
percent_hbd | 10,000 |
post_id | 7,311,801 |
net_rshares | 0 |
@dan - You're posting again in person... welcome back! ;)
author | tarquinmaine |
---|---|
permlink | re-dan-eos-developer-s-log-starday-201707-3-20170704t234438048z |
category | eos |
json_metadata | {"tags":["eos"],"users":["dan"],"app":"steemit/0.1"} |
created | 2017-07-04 23:44:39 |
last_update | 2017-07-04 23:45:48 |
depth | 1 |
children | 0 |
last_payout | 2017-07-11 23:44:39 |
cashout_time | 1969-12-31 23:59:59 |
total_payout_value | 0.574 HBD |
curator_payout_value | 0.000 HBD |
pending_payout_value | 0.000 HBD |
promoted | 0.000 HBD |
body_length | 57 |
author_reputation | 2,247,973,866,257 |
root_title | "EOS - Developer’s Log Stardate 201707.3" |
beneficiaries | [] |
max_accepted_payout | 1,000,000.000 HBD |
percent_hbd | 10,000 |
post_id | 7,335,925 |
net_rshares | 92,217,792,794 |
author_curate_reward | "" |
voter | weight | wgt% | rshares | pct | time |
---|---|---|---|---|---|
tarquinmaine | 0 | 92,217,792,794 | 100% |
Good information @dan Very usefull
author | teukurobbybinor |
---|---|
permlink | re-dan-eos-developer-s-log-starday-201707-3-20170704t120712480z |
category | eos |
json_metadata | {"tags":["eos"],"users":["dan"],"app":"steemit/0.1"} |
created | 2017-07-04 12:07:18 |
last_update | 2017-07-04 12:07:18 |
depth | 1 |
children | 0 |
last_payout | 2017-07-11 12:07:18 |
cashout_time | 1969-12-31 23:59:59 |
total_payout_value | 0.000 HBD |
curator_payout_value | 0.000 HBD |
pending_payout_value | 0.000 HBD |
promoted | 0.000 HBD |
body_length | 34 |
author_reputation | 2,114,612,743,120 |
root_title | "EOS - Developer’s Log Stardate 201707.3" |
beneficiaries | [] |
max_accepted_payout | 1,000,000.000 HBD |
percent_hbd | 10,000 |
post_id | 7,267,814 |
net_rshares | 0 |
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
author | thecryptopaper |
---|---|
permlink | re-dan-eos-developer-s-log-starday-201707-3-20170704t022435885z |
category | eos |
json_metadata | {"tags":["eos"],"app":"steemit/0.1"} |
created | 2017-07-04 02:24:33 |
last_update | 2017-07-04 02:24:33 |
depth | 1 |
children | 0 |
last_payout | 2017-07-11 02:24:33 |
cashout_time | 1969-12-31 23:59:59 |
total_payout_value | 0.000 HBD |
curator_payout_value | 0.000 HBD |
pending_payout_value | 0.000 HBD |
promoted | 0.000 HBD |
body_length | 158 |
author_reputation | 127,274,222,468 |
root_title | "EOS - Developer’s Log Stardate 201707.3" |
beneficiaries | [] |
max_accepted_payout | 1,000,000.000 HBD |
percent_hbd | 10,000 |
post_id | 7,220,218 |
net_rshares | 0 |
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.
author | thehutchreport |
---|---|
permlink | re-dan-eos-developer-s-log-starday-201707-3-20170706t103134865z |
category | eos |
json_metadata | {"tags":["eos"],"app":"steemit/0.1"} |
created | 2017-07-06 10:31:36 |
last_update | 2017-07-06 10:31:36 |
depth | 1 |
children | 0 |
last_payout | 2017-07-13 10:31:36 |
cashout_time | 1969-12-31 23:59:59 |
total_payout_value | 0.000 HBD |
curator_payout_value | 0.000 HBD |
pending_payout_value | 0.000 HBD |
promoted | 0.000 HBD |
body_length | 377 |
author_reputation | 1,348,400,951,691 |
root_title | "EOS - Developer’s Log Stardate 201707.3" |
beneficiaries | [] |
max_accepted_payout | 1,000,000.000 HBD |
percent_hbd | 10,000 |
post_id | 7,503,925 |
net_rshares | 0 |
very helpful , eos is very good
author | theking | ||||||
---|---|---|---|---|---|---|---|
permlink | re-dan-eos-developer-s-log-starday-201707-3-201774t194358467z | ||||||
category | eos | ||||||
json_metadata | {"app":"chainbb/0.3","format":"markdown+html","tags":[]} | ||||||
created | 2017-07-04 11:44:09 | ||||||
last_update | 2017-07-04 11:44:09 | ||||||
depth | 1 | ||||||
children | 0 | ||||||
last_payout | 2017-07-11 11:44:09 | ||||||
cashout_time | 1969-12-31 23:59:59 | ||||||
total_payout_value | 0.238 HBD | ||||||
curator_payout_value | 0.001 HBD | ||||||
pending_payout_value | 0.000 HBD | ||||||
promoted | 0.000 HBD | ||||||
body_length | 31 | ||||||
author_reputation | 16,809,049,928,438 | ||||||
root_title | "EOS - Developer’s Log Stardate 201707.3" | ||||||
beneficiaries |
| ||||||
max_accepted_payout | 1,000,000.000 HBD | ||||||
percent_hbd | 10,000 | ||||||
post_id | 7,265,451 | ||||||
net_rshares | 43,538,650,095 | ||||||
author_curate_reward | "" |
voter | weight | wgt% | rshares | pct | time |
---|---|---|---|---|---|
cryptoctopus | 0 | 33,949,990,617 | 0.1% | ||
jesta | 0 | 8,284,866,503 | 0.1% | ||
tomino | 0 | 1,182,351,442 | 1% | ||
redpill | 0 | 121,441,533 | 1% |
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!
author | tommyquest |
---|---|
permlink | re-dan-eos-developer-s-log-starday-201707-3-20170707t063847907z |
category | eos |
json_metadata | {"tags":["eos"],"app":"steemit/0.1"} |
created | 2017-07-07 06:38:48 |
last_update | 2017-07-07 06:38:48 |
depth | 1 |
children | 0 |
last_payout | 2017-07-14 06:38:48 |
cashout_time | 1969-12-31 23:59:59 |
total_payout_value | 0.000 HBD |
curator_payout_value | 0.000 HBD |
pending_payout_value | 0.000 HBD |
promoted | 0.000 HBD |
body_length | 419 |
author_reputation | 336,506,422,737 |
root_title | "EOS - Developer’s Log Stardate 201707.3" |
beneficiaries | [] |
max_accepted_payout | 1,000,000.000 HBD |
percent_hbd | 10,000 |
post_id | 7,610,993 |
net_rshares | 0 |
author_curate_reward | "" |
voter | weight | wgt% | rshares | pct | time |
---|---|---|---|---|---|
tommyquest | 0 | 0 | 100% |
@dan Do you mind I translate into Chinese and share it?
author | tsinrong |
---|---|
permlink | re-dan-eos-developer-s-log-starday-201707-3-20170709t082556984z |
category | eos |
json_metadata | {"tags":["eos"],"users":["dan"],"app":"steemit/0.1"} |
created | 2017-07-09 08:25:57 |
last_update | 2017-07-09 08:25:57 |
depth | 1 |
children | 0 |
last_payout | 2017-07-16 08:25:57 |
cashout_time | 1969-12-31 23:59:59 |
total_payout_value | 0.000 HBD |
curator_payout_value | 0.000 HBD |
pending_payout_value | 0.000 HBD |
promoted | 0.000 HBD |
body_length | 55 |
author_reputation | 92,231,012,305 |
root_title | "EOS - Developer’s Log Stardate 201707.3" |
beneficiaries | [] |
max_accepted_payout | 1,000,000.000 HBD |
percent_hbd | 10,000 |
post_id | 7,842,105 |
net_rshares | 0 |
I got to know about this on twitter today. I am following right away.
author | turpsy |
---|---|
permlink | re-dan-eos-developer-s-log-starday-201707-3-20170703t221917245z |
category | eos |
json_metadata | {"tags":["eos"],"app":"steemit/0.1"} |
created | 2017-07-03 22:19:21 |
last_update | 2017-07-03 22:19:21 |
depth | 1 |
children | 0 |
last_payout | 2017-07-10 22:19:21 |
cashout_time | 1969-12-31 23:59:59 |
total_payout_value | 0.000 HBD |
curator_payout_value | 0.000 HBD |
pending_payout_value | 0.000 HBD |
promoted | 0.000 HBD |
body_length | 69 |
author_reputation | 22,352,016,062,417 |
root_title | "EOS - Developer’s Log Stardate 201707.3" |
beneficiaries | [] |
max_accepted_payout | 1,000,000.000 HBD |
percent_hbd | 10,000 |
post_id | 7,200,690 |
net_rshares | 0 |
So, GPU manufacturing is far from uselessness for crypto.
author | usefree |
---|---|
permlink | re-dan-eos-developer-s-log-starday-201707-3-20170704t115228394z |
category | eos |
json_metadata | {"tags":["eos"],"app":"steemit/0.1"} |
created | 2017-07-04 11:49:15 |
last_update | 2017-07-04 11:49:15 |
depth | 1 |
children | 0 |
last_payout | 2017-07-11 11:49:15 |
cashout_time | 1969-12-31 23:59:59 |
total_payout_value | 0.022 HBD |
curator_payout_value | 0.000 HBD |
pending_payout_value | 0.000 HBD |
promoted | 0.000 HBD |
body_length | 57 |
author_reputation | 3,199,795,184,038 |
root_title | "EOS - Developer’s Log Stardate 201707.3" |
beneficiaries | [] |
max_accepted_payout | 1,000,000.000 HBD |
percent_hbd | 10,000 |
post_id | 7,265,976 |
net_rshares | 3,761,127,297 |
author_curate_reward | "" |
voter | weight | wgt% | rshares | pct | time |
---|---|---|---|---|---|
usefree | 0 | 3,761,127,297 | 100% |
hi my friend its great post may i follow me and up vote me thanks alot
author | vahidrazavi |
---|---|
permlink | re-dan-eos-developer-s-log-starday-201707-3-20170727t071613830z |
category | eos |
json_metadata | {"tags":["eos"],"app":"steemit/0.1"} |
created | 2017-07-28 07:15:27 |
last_update | 2017-07-28 07:15:27 |
depth | 1 |
children | 0 |
last_payout | 2017-08-04 07:15:27 |
cashout_time | 1969-12-31 23:59:59 |
total_payout_value | 0.000 HBD |
curator_payout_value | 0.000 HBD |
pending_payout_value | 0.000 HBD |
promoted | 0.000 HBD |
body_length | 70 |
author_reputation | 12,096,741,882,065 |
root_title | "EOS - Developer’s Log Stardate 201707.3" |
beneficiaries | [] |
max_accepted_payout | 1,000,000.000 HBD |
percent_hbd | 10,000 |
post_id | 9,992,813 |
net_rshares | 0 |
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 :-)
author | varys |
---|---|
permlink | re-dan-eos-developer-s-log-starday-201707-3-20170704t221154490z |
category | eos |
json_metadata | {"tags":["eos"],"app":"steemit/0.1"} |
created | 2017-07-04 22:11:54 |
last_update | 2017-07-04 22:16:42 |
depth | 1 |
children | 0 |
last_payout | 2017-07-11 22:11:54 |
cashout_time | 1969-12-31 23:59:59 |
total_payout_value | 0.000 HBD |
curator_payout_value | 0.000 HBD |
pending_payout_value | 0.000 HBD |
promoted | 0.000 HBD |
body_length | 249 |
author_reputation | 187,900,233 |
root_title | "EOS - Developer’s Log Stardate 201707.3" |
beneficiaries | [] |
max_accepted_payout | 1,000,000.000 HBD |
percent_hbd | 10,000 |
post_id | 7,328,790 |
net_rshares | 0 |
A good planing master 👍👍👍👍👍
author | vellaattaqy | ||||||
---|---|---|---|---|---|---|---|
permlink | re-dan-201774t17178960z | ||||||
category | eos | ||||||
json_metadata | {"tags":"eos","app":"esteem/1.4.6","format":"markdown+html","community":"esteem"} | ||||||
created | 2017-07-04 10:17:12 | ||||||
last_update | 2017-07-04 10:17:12 | ||||||
depth | 1 | ||||||
children | 0 | ||||||
last_payout | 2017-07-11 10:17:12 | ||||||
cashout_time | 1969-12-31 23:59:59 | ||||||
total_payout_value | 0.000 HBD | ||||||
curator_payout_value | 0.000 HBD | ||||||
pending_payout_value | 0.000 HBD | ||||||
promoted | 0.000 HBD | ||||||
body_length | 27 | ||||||
author_reputation | -465,224,412,810 | ||||||
root_title | "EOS - Developer’s Log Stardate 201707.3" | ||||||
beneficiaries |
| ||||||
max_accepted_payout | 1,000,000.000 HBD | ||||||
percent_hbd | 10,000 | ||||||
post_id | 7,257,448 | ||||||
net_rshares | 0 |
Another Awesome Post , Keep Going @dan. You Rock Bro. Upvoted. Good Luck. Nice Share. :)
author | vikbuddy |
---|---|
permlink | re-dan-eos-developer-s-log-starday-201707-3-20170704t040258133z |
category | eos |
json_metadata | {"tags":["eos"],"users":["dan"],"app":"steemit/0.1"} |
created | 2017-07-04 04:03:33 |
last_update | 2017-07-04 04:03:33 |
depth | 1 |
children | 0 |
last_payout | 2017-07-11 04:03:33 |
cashout_time | 1969-12-31 23:59:59 |
total_payout_value | 0.000 HBD |
curator_payout_value | 0.000 HBD |
pending_payout_value | 0.000 HBD |
promoted | 0.000 HBD |
body_length | 88 |
author_reputation | 116,485,656,320,953 |
root_title | "EOS - Developer’s Log Stardate 201707.3" |
beneficiaries | [] |
max_accepted_payout | 1,000,000.000 HBD |
percent_hbd | 10,000 |
post_id | 7,227,763 |
net_rshares | 499,174,508 |
author_curate_reward | "" |
voter | weight | wgt% | rshares | pct | time |
---|---|---|---|---|---|
itan05 | 0 | 499,174,508 | 100% |
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. 🤘✌️
author | vinyprop | ||||||
---|---|---|---|---|---|---|---|
permlink | re-dan-201774t72317144z | ||||||
category | eos | ||||||
json_metadata | {"tags":"eos","app":"esteem/1.4.6","format":"markdown+html","community":"esteem"} | ||||||
created | 2017-07-04 01:53:21 | ||||||
last_update | 2017-07-04 01:53:21 | ||||||
depth | 1 | ||||||
children | 0 | ||||||
last_payout | 2017-07-11 01:53:21 | ||||||
cashout_time | 1969-12-31 23:59:59 | ||||||
total_payout_value | 0.000 HBD | ||||||
curator_payout_value | 0.000 HBD | ||||||
pending_payout_value | 0.000 HBD | ||||||
promoted | 0.000 HBD | ||||||
body_length | 249 | ||||||
author_reputation | 3,650,202,029,790 | ||||||
root_title | "EOS - Developer’s Log Stardate 201707.3" | ||||||
beneficiaries |
| ||||||
max_accepted_payout | 1,000,000.000 HBD | ||||||
percent_hbd | 10,000 | ||||||
post_id | 7,217,770 | ||||||
net_rshares | 945,958,307 | ||||||
author_curate_reward | "" |
voter | weight | wgt% | rshares | pct | time |
---|---|---|---|---|---|
vinyprop | 0 | 945,958,307 | 100% |
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
author | vinyprop | ||||||
---|---|---|---|---|---|---|---|
permlink | re-dan-201775t0846618z | ||||||
category | eos | ||||||
json_metadata | {"tags":"eos","app":"esteem/1.4.6","format":"markdown+html","community":"esteem"} | ||||||
created | 2017-07-04 18:38:51 | ||||||
last_update | 2017-07-04 18:38:51 | ||||||
depth | 1 | ||||||
children | 0 | ||||||
last_payout | 2017-07-11 18:38:51 | ||||||
cashout_time | 1969-12-31 23:59:59 | ||||||
total_payout_value | 0.580 HBD | ||||||
curator_payout_value | 0.160 HBD | ||||||
pending_payout_value | 0.000 HBD | ||||||
promoted | 0.000 HBD | ||||||
body_length | 1,828 | ||||||
author_reputation | 3,650,202,029,790 | ||||||
root_title | "EOS - Developer’s Log Stardate 201707.3" | ||||||
beneficiaries |
| ||||||
max_accepted_payout | 1,000,000.000 HBD | ||||||
percent_hbd | 10,000 | ||||||
post_id | 7,309,302 | ||||||
net_rshares | 122,816,450,576 | ||||||
author_curate_reward | "" |
voter | weight | wgt% | rshares | pct | time |
---|---|---|---|---|---|
innuendo | 0 | 119,304,821,712 | 8% | ||
mysteem | 0 | 84,101,800 | 0.5% | ||
demo | 0 | 161,950,539 | 0.5% | ||
feruz | 0 | 1,520,016,803 | 0.5% | ||
esteemapp | 0 | 841,504,072 | 0.5% | ||
bounties | 0 | 172,459,561 | 0.5% | ||
steempoll | 0 | 167,409,841 | 0.5% | ||
tipping | 0 | 152,143,059 | 0.5% | ||
vinyprop | 0 | 412,043,189 | 100% |
@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?
author | vmsolutionsltd | ||||||
---|---|---|---|---|---|---|---|
permlink | re-dan-201776t14937142z | ||||||
category | eos | ||||||
json_metadata | {"tags":"eos","app":"esteem/1.4.6","format":"markdown+html","community":"esteem"} | ||||||
created | 2017-07-05 23:49:39 | ||||||
last_update | 2017-07-05 23:49:39 | ||||||
depth | 1 | ||||||
children | 0 | ||||||
last_payout | 2017-07-12 23:49:39 | ||||||
cashout_time | 1969-12-31 23:59:59 | ||||||
total_payout_value | 0.058 HBD | ||||||
curator_payout_value | 0.019 HBD | ||||||
pending_payout_value | 0.000 HBD | ||||||
promoted | 0.000 HBD | ||||||
body_length | 761 | ||||||
author_reputation | 309,421,562,457 | ||||||
root_title | "EOS - Developer’s Log Stardate 201707.3" | ||||||
beneficiaries |
| ||||||
max_accepted_payout | 1,000,000.000 HBD | ||||||
percent_hbd | 10,000 | ||||||
post_id | 7,455,371 | ||||||
net_rshares | 16,663,108,986 | ||||||
author_curate_reward | "" |
voter | weight | wgt% | rshares | pct | time |
---|---|---|---|---|---|
vmsolutionsltd | 0 | 16,663,108,986 | 100% |
Ethereum on Steroids? But a lot better, EOS could stand for anything much like my name WVM. Gonna buy some more!
author | wvm |
---|---|
permlink | re-dan-eos-developer-s-log-starday-201707-3-20170704t065154387z |
category | eos |
json_metadata | {"tags":["eos"],"app":"steemit/0.1"} |
created | 2017-07-04 06:51:54 |
last_update | 2017-07-04 06:51:54 |
depth | 1 |
children | 0 |
last_payout | 2017-07-11 06:51:54 |
cashout_time | 1969-12-31 23:59:59 |
total_payout_value | 0.000 HBD |
curator_payout_value | 0.000 HBD |
pending_payout_value | 0.000 HBD |
promoted | 0.000 HBD |
body_length | 112 |
author_reputation | 1,755,829,867,297 |
root_title | "EOS - Developer’s Log Stardate 201707.3" |
beneficiaries | [] |
max_accepted_payout | 1,000,000.000 HBD |
percent_hbd | 10,000 |
post_id | 7,240,092 |
net_rshares | 0 |
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.
author | xdark21 | ||||||
---|---|---|---|---|---|---|---|
permlink | re-dan-201776t15244689z | ||||||
category | eos | ||||||
json_metadata | {"tags":"eos","app":"esteem/1.4.6","format":"markdown+html","community":"esteem"} | ||||||
created | 2017-07-05 23:52:48 | ||||||
last_update | 2017-07-05 23:52:48 | ||||||
depth | 1 | ||||||
children | 0 | ||||||
last_payout | 2017-07-12 23:52:48 | ||||||
cashout_time | 1969-12-31 23:59:59 | ||||||
total_payout_value | 0.000 HBD | ||||||
curator_payout_value | 0.000 HBD | ||||||
pending_payout_value | 0.000 HBD | ||||||
promoted | 0.000 HBD | ||||||
body_length | 325 | ||||||
author_reputation | -11,506,922,188 | ||||||
root_title | "EOS - Developer’s Log Stardate 201707.3" | ||||||
beneficiaries |
| ||||||
max_accepted_payout | 1,000,000.000 HBD | ||||||
percent_hbd | 10,000 | ||||||
post_id | 7,455,651 | ||||||
net_rshares | 0 |
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
author | yakuhi |
---|---|
permlink | re-dan-eos-developer-s-log-starday-201707-3-20170704t170652896z |
category | eos |
json_metadata | {"tags":["eos"],"app":"steemit/0.1"} |
created | 2017-07-04 17:06:51 |
last_update | 2017-07-04 17:06:51 |
depth | 1 |
children | 0 |
last_payout | 2017-07-11 17:06:51 |
cashout_time | 1969-12-31 23:59:59 |
total_payout_value | 0.000 HBD |
curator_payout_value | 0.000 HBD |
pending_payout_value | 0.000 HBD |
promoted | 0.000 HBD |
body_length | 186 |
author_reputation | 3,459,100,868,106 |
root_title | "EOS - Developer’s Log Stardate 201707.3" |
beneficiaries | [] |
max_accepted_payout | 1,000,000.000 HBD |
percent_hbd | 10,000 |
post_id | 7,300,064 |
net_rshares | 0 |
author | ycyr |
---|---|
permlink | re-dan-eos-developer-s-log-starday-201707-3-20170704t130134800z |
category | eos |
json_metadata | {"tags":["eos"],"app":"steemit/0.1"} |
created | 2017-07-04 13:01:33 |
last_update | 2017-07-04 13:01:33 |
depth | 1 |
children | 0 |
last_payout | 2017-07-11 13:01:33 |
cashout_time | 1969-12-31 23:59:59 |
total_payout_value | 0.000 HBD |
curator_payout_value | 0.000 HBD |
pending_payout_value | 0.000 HBD |
promoted | 0.000 HBD |
body_length | 36 |
author_reputation | 17,287,946,451 |
root_title | "EOS - Developer’s Log Stardate 201707.3" |
beneficiaries | [] |
max_accepted_payout | 1,000,000.000 HBD |
percent_hbd | 10,000 |
post_id | 7,273,143 |
net_rshares | 1,644,628,100 |
author_curate_reward | "" |
voter | weight | wgt% | rshares | pct | time |
---|---|---|---|---|---|
itan05 | 0 | 537,572,547 | 100% | ||
ycyr | 0 | 1,107,055,553 | 100% |
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
author | yerdna87 |
---|---|
permlink | re-dan-eos-developer-s-log-starday-201707-3-20170704t002726912z |
category | eos |
json_metadata | {"tags":["eos"],"app":"steemit/0.1"} |
created | 2017-07-04 00:26:15 |
last_update | 2017-07-04 00:26:15 |
depth | 1 |
children | 1 |
last_payout | 2017-07-11 00:26:15 |
cashout_time | 1969-12-31 23:59:59 |
total_payout_value | 0.000 HBD |
curator_payout_value | 0.000 HBD |
pending_payout_value | 0.000 HBD |
promoted | 0.000 HBD |
body_length | 171 |
author_reputation | 518,679,575,212 |
root_title | "EOS - Developer’s Log Stardate 201707.3" |
beneficiaries | [] |
max_accepted_payout | 1,000,000.000 HBD |
percent_hbd | 10,000 |
post_id | 7,211,100 |
net_rshares | 0 |
how much have you read in 10 days?
author | j3dy |
---|---|
permlink | re-yerdna87-re-dan-eos-developer-s-log-starday-201707-3-20170714t061204679z |
category | eos |
json_metadata | {"tags":["eos"],"app":"steemit/0.1"} |
created | 2017-07-14 06:12:12 |
last_update | 2017-07-14 06:12:12 |
depth | 2 |
children | 0 |
last_payout | 2017-07-21 06:12:12 |
cashout_time | 1969-12-31 23:59:59 |
total_payout_value | 0.000 HBD |
curator_payout_value | 0.000 HBD |
pending_payout_value | 0.000 HBD |
promoted | 0.000 HBD |
body_length | 34 |
author_reputation | 9,439,758,416,991 |
root_title | "EOS - Developer’s Log Stardate 201707.3" |
beneficiaries | [] |
max_accepted_payout | 1,000,000.000 HBD |
percent_hbd | 10,000 |
post_id | 8,422,086 |
net_rshares | 0 |
author | yuvi | ||||||
---|---|---|---|---|---|---|---|
permlink | re-dan-eos-developer-s-log-starday-201707-3-201774t19053228z | ||||||
category | eos | ||||||
json_metadata | {"app":"chainbb/0.3","format":"markdown+html","tags":[]} | ||||||
created | 2017-07-04 13:30:57 | ||||||
last_update | 2017-07-04 13:30:57 | ||||||
depth | 1 | ||||||
children | 0 | ||||||
last_payout | 2017-07-11 13:30:57 | ||||||
cashout_time | 1969-12-31 23:59:59 | ||||||
total_payout_value | 0.044 HBD | ||||||
curator_payout_value | 0.000 HBD | ||||||
pending_payout_value | 0.000 HBD | ||||||
promoted | 0.000 HBD | ||||||
body_length | 20 | ||||||
author_reputation | 384,624,060,388 | ||||||
root_title | "EOS - Developer’s Log Stardate 201707.3" | ||||||
beneficiaries |
| ||||||
max_accepted_payout | 1,000,000.000 HBD | ||||||
percent_hbd | 10,000 | ||||||
post_id | 7,276,242 | ||||||
net_rshares | 8,410,274,502 | ||||||
author_curate_reward | "" |
voter | weight | wgt% | rshares | pct | time |
---|---|---|---|---|---|
jesta | 0 | 8,288,832,969 | 0.1% | ||
redpill | 0 | 121,441,533 | 1% |
Informative and metadowned Roger that :)
author | zert |
---|---|
permlink | re-dan-eos-developer-s-log-starday-201707-3-20170704t134956866z |
category | eos |
json_metadata | {"tags":["eos"],"app":"steemit/0.1"} |
created | 2017-07-04 13:50:00 |
last_update | 2017-07-04 13:50:00 |
depth | 1 |
children | 0 |
last_payout | 2017-07-11 13:50:00 |
cashout_time | 1969-12-31 23:59:59 |
total_payout_value | 0.000 HBD |
curator_payout_value | 0.000 HBD |
pending_payout_value | 0.000 HBD |
promoted | 0.000 HBD |
body_length | 40 |
author_reputation | -90,455,819,221 |
root_title | "EOS - Developer’s Log Stardate 201707.3" |
beneficiaries | [] |
max_accepted_payout | 1,000,000.000 HBD |
percent_hbd | 10,000 |
post_id | 7,278,554 |
net_rshares | 632,573,041 |
author_curate_reward | "" |
voter | weight | wgt% | rshares | pct | time |
---|---|---|---|---|---|
zert | 0 | 632,573,041 | 100% |