前回はリアクティブプログラムミングの概要についてまとめました(記事は[こちら](https://steemit.com/promari/@promari/programming-rxjava-vol-1))。今回は[RxJava](https://github.com/ReactiveX/RxJava)の概要をまとめてみます。 ### 1.3 RxJava #### 1.3.1 概要  - Javaでリアクティブプログラミングを行うためのライブラリ - [RxJava](https://github.com/ReactiveX/RxJava)は、もともとは2009年にMicrosoftで .NET Frameworkの実験的なライブラリ「Reactive Extensions」(略して「Rx」)として公開され、2012年にオープンソース化されたものを、後にNetflixがJavaに移植しオープンソースとして公開した。 - Reactive Extensionsを扱うライブラリは[ReactiveX](http://reactivex.io/)としてオープンソースプロジェクト化し、Javaや.NETだけでなくJavaScriptやSwiftなど様々なプログラミング言語に対応したライブラリを提供している - バージョン2.0よりReactive Streamsの仕様を実装している。2.0よりReactive StreamsのAPIに依存。 - デザインパターンの1つであるObserverパターンをうまく拡張している。Observerパターンは、監視対象のオブジェクトの状態変化に対するデザインパターンで、状態が変化するとそれを観察しているオブジェクトに対し変化があったことを知らせる構成。このパターンの特徴を生かし、特にデータを生産する側とデータを消費する側に分けることで、無理なくデータストリームを扱うことができる作りになっている。 #### 1.3.2 バージョンの違い - バージョン1からバージョン2に移行する際に単にパッケージ名やクラス名を変えるだけではなく、それらのAPI周りの変更も必要に なる |バージョン|パッケージ| |:--|:--| |1.x|rx| |2.x|io.reactivex| - 参考サイト - [RxJava 1.x → 2.x 移行ガイド](https://hydrakecat.hatenablog.jp/entry/2018/06/30/RxJava_1.x_%E2%86%92_2.x_%E7%A7%BB%E8%A1%8C%E3%82%AC%E3%82%A4%E3%83%89) - [What's different in 2.0](https://github.com/ReactiveX/RxJava/wiki/What's-different-in-2.0#maven-address-and-base-package) #### 1.3.3 RxJavaの仕組み - RxJavaの仕組みはデータを生産し通知する生産者と通知されたデータを受け取り処理を行う消費者の構成で成り立つ。 - RxJavaではこの生産者と消費者の関係が大きく分けて2つあり、1つはReactive Streamsを対応しているFlowableとSubscriber、もう1つはReactive Streamsの対応をしておらずバックプレッシャー(過去のメッセージも取得できること)の機能がないObservableとObserverの構成で成り立つ - FlowableはObservableの進化系。BackPressureを調整して、onNestででてくるデータのスピード調整などができる。 |Reactive Streams|生産者(-able; 購読される)|消費者(-er; 購読する)|生産者&消費者(-erであり、-ableでもある)| |:--|:--|:--|:--| |Reactive Streams対応あり(バックプレッシャー機能あり)|Flowable|Subscriber|Processor| |Reactive Streams対応なし(バックプレッシャー機能なし)|Observable|Observer|Subject| - Flowable/Subscriber - 生産者であるFlowableによる購読開始(onSubscribe)、データ通知(onNext)、エラー(onError)、完了(onComplete)の4つの通知を行い、消費者であるSubscriberによって各通知を受け取った際の処理を行う。 - Subscriptionを通してデータ数のリクエストや購読の解除を行う。 - Observable/Observer - FlowableとSubscriberの構成とほぼ同じで、生産者であるObservableからの購読開始(onSubscribe)、データ通知(onNext)、エラー(onError)、完了(onComplete)の4つの通知をObserverで受け取る - 通知するデータ数の制御を行うバックプレッシャーの機能がないため、データ数のリクエストを行わない。そのため、Subscriptionは使わず、Disposableという購読解除のメソッドを持つインターフェースを用いる。 - Disposableは購読解除を行うため、購読を解除するdispose()と、購読を解除している場合はtrueを、解除していない場合はfalseを返すisDisposed()メソッドを持つ - ObservableとObserver間でデータをやり取りをする場合は、FlowableとSubscriber 間のようなデータ数のリクエストは行わず、データが生成されるとすぐにObserverに通知される  #### Source:[Reactive Streams And Microservices - A Case Study](http://blog.avenuecode.com/reactive-streams-and-microservices-a-case-study) #### 1.3.4 オペレータ - RxJavaでは、Publisher(Flowable/Observable)からSubscriber(Subscriber/Observerにデータが通知される間にSubscriberがデータを利用しやすい形に整形、変換することができる。 - 整形されたデータは再びFlowable/Observableなデータとして返されるため、メソッドチェインする形で段階的にデータを整形することが可能。 - こうしたデータを生成したり、変換したり、フィルターをかけたりできるメソッドのことをRxJavaではオペレータと呼ぶ。  #### Source:[RxJavaリアクティブプログラミング](https://www.amazon.co.jp/dp/B06XGYSHCN/) #### 1.3.5 RxJava Examples - RxJavaの大まかな流れ - 1.Observableを作る - 2.filterやmapなどのOperatorを使って値を加工する - 3.Observerを使ってObservableをsubscribeする - Flowable(Reactive Streams 対応)を使ったサンプル - Sample1 文字列を配信するObservableプログラム ``` public void basicExample() { Observable<String> observable = Observable.create(new ObservableOnSubscribe<String>() { @Override public void subscribe(ObservableEmitter<String> e) throws Exception { e.onNext("Hello"); e.onNext("Welcome"); e.onNext("This is your first RxJava example"); e.onComplete(); } }); Observer<String> observer = new Observer<String>() { @Override public void onSubscribe(Disposable d) { LOGGER.info("observer subscribed to observable - on subscribe"); } @Override public void onNext(String value) { LOGGER.info("observer - onNext " + value); } @Override public void onError(Throwable e) { LOGGER.info("observer - onError " + e.toString()); } @Override public void onComplete() { LOGGER.info("observer - on complete"); } }; observable.subscribe(observer); } ``` - Sample2 Operatorを使って値を加工するプログラム ``` Observable.from(new Integer[] {1, 2, 3, 4, 5, 6, 7, 8, 9, 10}) .filter(new Func1<Integer, Boolean>() { @Override public Boolean call(Integer i) { return (i % 2) == 0; } }) .map(new Func1<Integer, Integer>() { @Override public Integer call(Integer i) { return i * 10; } }) .subscribe(new Observer<Integer>() { @Override public void onNext(Integer integer) { Log.d("Hoge", integer.toString()); } @Override public void onCompleted() { Log.d("Hoge", "completed"); } @Override public void onError(Throwable e) {} }); ``` - Sample3 あいさつの言葉を通知するFlowableプログラム ``` public static void main(String[] args) throws Exception { // あいさつの言葉を通知するFlowableの生成 Flowable < String > flowable = Flowable.create(new FlowableOnSubscribe<String>() { @Override public void subscribe(FlowableEmitter<String> emitter) throws Exception { String[] datas = { "Hello, World!", "こんにちは、世界!" }; for (String data: datas) { // 購読解除されている場合は処理をやめる if (emitter.isCancelled()) { return; } // データを通知する emitter.onNext(data); } // 完了したことを通知する emitter.onComplete(); } }, BackpressureStrategy.BUFFER); // 超過したデータはバッファする flowable // Subscriberの処理を別スレッドで行うようにする .observeOn(Schedulers.computation()) // 購読する .subscribe(new Subscriber<String>() { // データ数のリクエストおよび購読の解除を行うオブジェクト private Subscription subscription; // 購読が開始された際の処理 @Override public void onSubscribe(Subscription subscription) { // SubscriptionをSubscriber内で保持する this.subscription = subscription; // 受け取るデータ数をリクエストする this.subscription.request(1 L); } // データを受け取った際の処理 @Override public void onNext(String data) { // 実行しているスレッド名の取得 String threadName = Thread.currentThread().getName(); // 受け取ったデータを出力する System.out.println(threadName + ": " + data); // 次に受け取るデータ数をリクエストする this.subscription.request(1 L); } // 完了を通知された際の処理 @Override public void onComplete() { // 実行しているスレッド名の取得 String threadName = Thread.currentThread().getName(); System.out.println(threadName + ": 完了しました"); } // エラーを通知された際の処理 @Override public void onError(Throwable error) { error.printStackTrace(); } }); // しばらく待つ Thread.sleep(500 L); } ``` #### 1.3.6 副作用を発生させる処理 - 副作用を発生させる処理とは、オブジェクトの状態を変更するなどして、処理の外部からでも参照可能なオブジェクトに対して何らかの変化を加えることや、ファイルやデータベースの中身を変えるようなことを指す。 - 副作用を発生させないことは、複数スレッドから共有されるオブジェクトがないことになり、スレッドセーフを担保することができる - データを通知してから消費者に受け取られるまでの間は副作用の発生を避ける作りとする。 - RxJavaでは基本的に副作用を発生させるような処理を行うのは、メソッドチェインの途中ではなく、最終的にデータを受け取り処理を行う消費者側で行うこと。 次回は「[【Programming】RxJava リアクティブプログラミング vol.3 / RxJavaの構成~前編~](https://steemit.com/promari/@promari/programming-rxjava-vol-3-rxjava)」についてまとめてみます。  written by [tamito0201](https://steemit.com/@tamito0201/) プログラミングとのご縁結びなら[プロマリ](https://www.programming-mariage.jp/)へ。 オンラインプログラミング学習スクールの[プロマリ](https://www.programming-mariage.jp/)は、プログラミングの初学者の皆様を応援しています。プログラミング講師と一緒に面白いアプリを作りませんか。 <a href="https://www.programming-mariage.jp"></a> The programming school "[Promari](https://www.programming-mariage.jp/)" will help you learn programming. "[Promari](https://www.programming-mariage.jp/)" is supporting the first scholars of programming. Let's develop an application with our programming instructor.
author | promari | ||||||
---|---|---|---|---|---|---|---|
permlink | programming-rxjava-vol-2-rxjava | ||||||
category | promari | ||||||
json_metadata | {"links":["https://steemit.com/promari/@promari/programming-rxjava-vol-1","https://github.com/ReactiveX/RxJava","http://reactivex.io/","https://hydrakecat.hatenablog.jp/entry/2018/06/30/RxJava_1.x_%E2%86%92_2.x_%E7%A7%BB%E8%A1%8C%E3%82%AC%E3%82%A4%E3%83%89","https://github.com/ReactiveX/RxJava/wiki/What's-different-in-2.0#maven-address-and-base-package","http://blog.avenuecode.com/reactive-streams-and-microservices-a-case-study","https://www.amazon.co.jp/dp/B06XGYSHCN/","https://steemit.com/promari/@promari/programming-rxjava-vol-3-rxjava","https://steemit.com/@tamito0201/","https://www.programming-mariage.jp/","https://www.programming-mariage.jp"],"image":["https://img.esteem.ws/eqkfqyeubf.png","https://img.esteem.ws/kt30zjz878.png","https://img.esteem.ws/ocyxiwg9tj.png","https://img.esteem.ws/t0r78hqbeu.png","https://img.esteem.ws/btpb5hmlur.png"],"tags":["promari","programming","japanese","blog","java"],"app":"steemit/0.1","format":"markdown","community":"esteem.app"} | ||||||
created | 2019-04-01 11:53:21 | ||||||
last_update | 2019-04-05 21:48:24 | ||||||
depth | 0 | ||||||
children | 2 | ||||||
last_payout | 2019-04-08 11:53:21 | ||||||
cashout_time | 1969-12-31 23:59:59 | ||||||
total_payout_value | 15.421 HBD | ||||||
curator_payout_value | 4.850 HBD | ||||||
pending_payout_value | 0.000 HBD | ||||||
promoted | 0.000 HBD | ||||||
body_length | 8,613 | ||||||
author_reputation | 6,028,120,705,374 | ||||||
root_title | "【Programming】RxJava リアクティブプログラミング vol.2 / RxJavaの概要" | ||||||
beneficiaries |
| ||||||
max_accepted_payout | 1,000,000.000 HBD | ||||||
percent_hbd | 10,000 | ||||||
post_id | 82,303,910 | ||||||
net_rshares | 30,342,080,268,650 | ||||||
author_curate_reward | "" |
voter | weight | wgt% | rshares | pct | time |
---|---|---|---|---|---|
pairmike | 0 | 2,206,937,882 | 100% | ||
brett-barth | 0 | 256,691,522 | 100% | ||
digi3d | 0 | 733,373,097 | 100% | ||
gribgo | 0 | 171,782,073 | 100% | ||
krystox | 0 | 252,637,221 | 100% | ||
animus | 0 | 3,214,916,075 | 100% | ||
steemdrive | 0 | 3,688,243,796 | 100% | ||
gruber | 0 | 6,178,499,451 | 100% | ||
skyefox | 0 | 209,482,086 | 100% | ||
djennyfloro | 0 | 2,251,638,172 | 100% | ||
sporsho | 0 | 194,823,954 | 100% | ||
dercoco | 0 | 10,629,010,281 | 100% | ||
shanghaipreneur | 0 | 5,056,832,854 | 100% | ||
melek | 0 | 4,291,156,376 | 100% | ||
jayfox | 0 | 198,181,786 | 100% | ||
telos | 0 | 22,653,350,606 | 100% | ||
guyfawkes | 0 | 2,967,857,419 | 100% | ||
masonmiler | 0 | 17,550,378,944 | 100% | ||
nathan-rokus | 0 | 263,475,529 | 100% | ||
benadapt | 0 | 227,032,821 | 100% | ||
azadhaso | 0 | 306,830,451 | 100% | ||
iknowtybo | 0 | 292,934,098 | 100% | ||
develcuy | 0 | 24,288,273,871 | 100% | ||
slider2990 | 0 | 9,332,134,399 | 100% | ||
ahmedelakehal | 0 | 182,778,185 | 100% | ||
oleg326756 | 0 | 6,988,592,545 | 22.25% | ||
brandonk | 0 | 435,317,904 | 100% | ||
blacktranquility | 0 | 4,801,251,143 | 100% | ||
gildar | 0 | 263,492,423 | 100% | ||
alanmirza | 0 | 178,794,097 | 100% | ||
golos-zoo-fund | 0 | 466,360,907 | 100% | ||
barvon | 0 | 290,150,953 | 100% | ||
da-dawn | 0 | 3,847,445,704 | 22% | ||
ayahlicious | 0 | 193,580,630 | 100% | ||
eb637413 | 0 | 171,756,175 | 100% | ||
marcoafsousa | 0 | 3,506,177,129 | 100% | ||
dongiovanni | 0 | 186,107,464 | 100% | ||
inceptionally | 0 | 134,869,961,668 | 100% | ||
artur9010 | 0 | 191,233,461 | 100% | ||
italianguy | 0 | 168,675,259 | 100% | ||
crypto-pontiff | 0 | 383,076,702 | 100% | ||
dexter-stoner | 0 | 2,231,663,233 | 100% | ||
bleh773 | 0 | 4,335,825,696 | 100% | ||
onlyonce | 0 | 452,648,351 | 100% | ||
dr-boo | 0 | 197,749,863 | 100% | ||
quotesbyharper | 0 | 337,575,639 | 100% | ||
thestar | 0 | 419,425,618 | 100% | ||
viqral | 0 | 451,441,917 | 100% | ||
tilenpirih | 0 | 380,887,895 | 100% | ||
imperfect-one | 0 | 16,470,117,685 | 14.23% | ||
blackvapor | 0 | 448,813,301 | 100% | ||
jerge | 0 | 26,471,906 | 10% | ||
basicstoliving | 0 | 315,974,195 | 100% | ||
sarahber | 0 | 318,150,722 | 100% | ||
lenost | 0 | 178,448,753 | 100% | ||
xplosive | 0 | 3,634,343,013 | 100% | ||
davydd.evans | 0 | 3,226,644,706 | 100% | ||
miriamslozberg | 0 | 304,899,893 | 100% | ||
philippbuxbaum | 0 | 3,293,047,006 | 100% | ||
kumaran444 | 0 | 199,445,379 | 100% | ||
mys | 0 | 15,738,409,046 | 14.23% | ||
capitan.akela | 0 | 680,400,685 | 100% | ||
boricuapr | 0 | 2,447,211,526 | 100% | ||
nyh | 0 | 2,189,359,569 | 100% | ||
shae-meyer | 0 | 9,530,721,634 | 100% | ||
the-commentator | 0 | 169,174,451 | 100% | ||
sadekj | 0 | 270,670,783 | 100% | ||
pakistani | 0 | 284,173,567 | 100% | ||
cldgrf | 0 | 437,625,392 | 100% | ||
droucil | 0 | 356,200,008 | 100% | ||
iotas | 0 | 419,356,998 | 100% | ||
corono | 0 | 428,467,098 | 100% | ||
manchupichu | 0 | 428,400,750 | 100% | ||
amreshchandra | 0 | 20,036,222,262 | 100% | ||
steem-gaming | 0 | 6,797,134,715 | 100% | ||
evangelio | 0 | 188,729,245 | 100% | ||
renat242 | 0 | 339,318,623 | 100% | ||
mrbearbear | 0 | 355,353,836 | 100% | ||
fano | 0 | 419,246,095 | 100% | ||
senro888 | 0 | 428,164,508 | 100% | ||
protons | 0 | 425,392,513 | 100% | ||
normad | 0 | 419,252,142 | 100% | ||
shapar | 0 | 428,146,795 | 100% | ||
noguard | 0 | 419,294,110 | 100% | ||
hknyasar | 0 | 383,119,830 | 100% | ||
nasau | 0 | 428,254,910 | 100% | ||
saruman | 0 | 428,342,643 | 100% | ||
mathemandy | 0 | 3,442,630,838 | 100% | ||
floass | 0 | 428,310,833 | 100% | ||
laseemu | 0 | 428,109,890 | 100% | ||
ricardoamv793 | 0 | 299,504,057 | 100% | ||
huahua | 0 | 425,689,926 | 100% | ||
jeffjaxx | 0 | 424,226,906 | 100% | ||
d0wr0 | 0 | 425,886,056 | 100% | ||
protus88 | 0 | 425,696,450 | 100% | ||
tutoti | 0 | 425,710,195 | 100% | ||
randcorp | 0 | 425,711,995 | 100% | ||
mozom | 0 | 425,758,915 | 100% | ||
seasa | 0 | 425,647,964 | 100% | ||
borav | 0 | 167,252,120 | 100% | ||
gregario | 0 | 16,054,753,713 | 100% | ||
pearica | 0 | 11,063,872,078 | 80% | ||
banjokid | 0 | 4,804,029,470 | 100% | ||
hougi | 0 | 428,184,449 | 100% | ||
nasso | 0 | 428,133,886 | 100% | ||
xom | 0 | 428,010,267 | 100% | ||
nnu | 0 | 424,823,466 | 100% | ||
shibah | 0 | 425,945,013 | 100% | ||
jaxxx | 0 | 426,040,929 | 100% | ||
hg343 | 0 | 425,891,375 | 100% | ||
quee | 0 | 424,167,209 | 100% | ||
yul | 0 | 425,717,457 | 100% | ||
herozero | 0 | 426,103,548 | 100% | ||
nakita | 0 | 428,097,655 | 100% | ||
zuvelt521 | 0 | 424,085,951 | 100% | ||
khobi7 | 0 | 405,599,360 | 100% | ||
becometheartist | 0 | 119,979,355,835 | 100% | ||
nairamallam | 0 | 346,749,314 | 100% | ||
kawj | 0 | 427,277,579 | 100% | ||
dand | 0 | 424,343,078 | 100% | ||
plotn | 0 | 417,229,301 | 100% | ||
zapata42 | 0 | 7,727,682,131 | 100% | ||
littlemaster | 0 | 424,190,393 | 100% | ||
cessarespinozaa | 0 | 2,446,747,184 | 100% | ||
margaritagalleta | 0 | 316,855,408 | 100% | ||
dreamzchm | 0 | 2,532,323,609 | 100% | ||
carverdelic | 0 | 232,122,822 | 100% | ||
cryptokraze | 0 | 270,770,501 | 100% | ||
onejoe | 0 | 167,667,175 | 100% | ||
frost04 | 0 | 97,446,331,107 | 100% | ||
ibay | 0 | 315,663,311 | 100% | ||
ahmad.kamil | 0 | 462,665,978 | 100% | ||
hereforawhile | 0 | 209,573,580 | 100% | ||
guinsoo | 0 | 254,483,413 | 100% | ||
mysteemvote | 0 | 384,058,454 | 100% | ||
zayushz | 0 | 2,155,087,535 | 100% | ||
iamjsunc | 0 | 274,912,147 | 100% | ||
travelmuse | 0 | 170,735,300 | 100% | ||
visky | 0 | 261,812,348 | 100% | ||
daff | 0 | 425,475,568 | 100% | ||
afreen | 0 | 459,428,553 | 100% | ||
tokyowomanslife | 0 | 6,846,095,600 | 100% | ||
dorth | 0 | 3,488,927,129 | 100% | ||
samsulbahri90 | 0 | 282,388,882 | 100% | ||
uzgo | 0 | 3,505,145,089 | 100% | ||
smy | 0 | 393,283,783 | 100% | ||
anaman | 0 | 277,305,445 | 100% | ||
ganesh245866 | 0 | 256,274,941 | 100% | ||
juleskajimenez | 0 | 425,440,876 | 100% | ||
biroel | 0 | 428,064,770 | 100% | ||
withsmn | 0 | 70,376,557,857 | 100% | ||
diskorvery | 0 | 329,811,392 | 100% | ||
toxichustle | 0 | 25,922,866,598 | 100% | ||
awww | 0 | 379,518,847 | 100% | ||
pawanregmi28 | 0 | 325,844,266 | 100% | ||
alexmorenoec | 0 | 225,998,502 | 100% | ||
robertking | 0 | 305,777,946,200 | 100% | ||
bachone | 0 | 187,338,848 | 100% | ||
planetenamek | 0 | 4,157,461,829 | 100% | ||
mrgamer | 0 | 304,115,368 | 100% | ||
tailinks | 0 | 188,091,384 | 100% | ||
renata95 | 0 | 349,763,629 | 100% | ||
foxycat | 0 | 323,159,267 | 100% | ||
josead11 | 0 | 296,241,416 | 100% | ||
agoesdeuge | 0 | 312,422,825 | 100% | ||
abubakarefty | 0 | 340,360,586 | 100% | ||
hobo66 | 0 | 415,857,330 | 100% | ||
juanangel40bcn | 0 | 2,385,804,492 | 100% | ||
exprmnt | 0 | 193,378,958 | 100% | ||
theleapingkoala | 0 | 13,620,743,673 | 100% | ||
voloshyn | 0 | 438,128,299 | 100% | ||
azis | 0 | 3,216,665,703 | 100% | ||
alhasan | 0 | 334,455,609 | 100% | ||
garudi | 0 | 16,136,805,709 | 100% | ||
investwarrior | 0 | 303,121,197 | 100% | ||
natepowell | 0 | 2,594,129,465 | 100% | ||
dong262514 | 0 | 223,089,813,423 | 100% | ||
danzy | 0 | 198,592,974 | 100% | ||
dynie | 0 | 427,747,828 | 100% | ||
chichon | 0 | 290,407,627 | 100% | ||
musicgeek | 0 | 2,220,120,815 | 100% | ||
mhmegh | 0 | 460,529,275 | 100% | ||
jessie901220 | 0 | 2,602,899,683 | 100% | ||
akilie1029 | 0 | 342,466,923 | 100% | ||
youngky | 0 | 170,871,355 | 100% | ||
ivrmakers | 0 | 353,531,383 | 100% | ||
polsza | 0 | 4,024,070,101 | 100% | ||
parejan | 0 | 2,215,453,726 | 8% | ||
tids | 0 | 424,680,635 | 100% | ||
nickmorphew | 0 | 13,659,373,233 | 100% | ||
sigmond | 0 | 425,650,034 | 100% | ||
steemengines | 0 | 104,608,105,289 | 100% | ||
robow | 0 | 426,493,784 | 100% | ||
gameapk | 0 | 311,818,545 | 100% | ||
kihase | 0 | 350,376,059 | 100% | ||
cwen | 0 | 169,184,706 | 100% | ||
kesh | 0 | 2,219,542,274 | 100% | ||
argon | 0 | 99,341,502,974 | 25% | ||
zulman | 0 | 2,508,148,131 | 100% | ||
hokkaido | 0 | 2,214,504,047 | 100% | ||
tetrahedron96 | 0 | 295,424,717 | 100% | ||
hdemir | 0 | 442,138,792 | 100% | ||
thewinter | 0 | 334,423,137 | 100% | ||
chazzy | 0 | 198,432,755 | 100% | ||
blogtrovert | 0 | 320,876,365 | 100% | ||
chuchu-cordova | 0 | 334,276,747 | 100% | ||
florenta | 0 | 170,458,055 | 100% | ||
udayan | 0 | 427,970,401 | 100% | ||
cotarelo | 0 | 173,967,507,096 | 100% | ||
deathwing | 0 | 3,508,344,331 | 100% | ||
dontryme2 | 0 | 307,944,838 | 100% | ||
decentropia | 0 | 229,851,001 | 100% | ||
ashikbiswas01 | 0 | 306,117,796 | 100% | ||
okoro | 0 | 2,851,765,375 | 100% | ||
moemyint | 0 | 393,455,794 | 100% | ||
kasou80 | 0 | 291,708,161 | 100% | ||
zolindvalp | 0 | 427,256,789 | 100% | ||
lovehaswon | 0 | 450,240,939 | 100% | ||
calitoo | 0 | 254,564,923 | 100% | ||
mrs.roy | 0 | 388,756,673 | 100% | ||
lixing | 0 | 14,881,501,383 | 100% | ||
capsoni | 0 | 2,460,914,931 | 100% | ||
steemedchitty | 0 | 329,383,409 | 100% | ||
angelol | 0 | 10,510,282,274 | 100% | ||
isan | 0 | 247,281,022 | 50% | ||
micaldaviddin | 0 | 356,235,695 | 100% | ||
adv1 | 0 | 459,580,885 | 100% | ||
ladytsfrancine | 0 | 211,016,262 | 100% | ||
hanna900 | 0 | 3,343,993,392 | 100% | ||
kurzer84 | 0 | 2,224,182,755 | 100% | ||
haxmat | 0 | 318,590,190 | 100% | ||
kmitina | 0 | 380,300,425 | 100% | ||
hoosain | 0 | 190,714,403 | 100% | ||
dafp12 | 0 | 449,935,697 | 100% | ||
garretlim | 0 | 17,431,652,235 | 100% | ||
penantang | 0 | 208,593,219 | 50% | ||
orhun | 0 | 76,290,999 | 21% | ||
interestinginfo | 0 | 235,022,888 | 48% | ||
teddieelga | 0 | 214,609,713 | 44% | ||
dawnasheelagh | 0 | 172,512,713 | 37% | ||
doryaeriell | 0 | 94,760,737 | 24% | ||
valenesiana | 0 | 251,584,868 | 50% | ||
eolandananni | 0 | 167,141,105 | 36% | ||
agnessejanot | 0 | 167,141,105 | 36% | ||
juninalethia | 0 | 130,950,921 | 30% | ||
elladinenolana | 0 | 76,364,016 | 21% | ||
steemiumaf | 0 | 459,583,766 | 100% | ||
leonardtd | 0 | 267,518,350 | 100% | ||
egbujorvictor | 0 | 2,141,930,362 | 100% | ||
lrd | 0 | 2,495,950,214 | 100% | ||
hunzlakhan | 0 | 403,893,690 | 100% | ||
ashishdash | 0 | 455,178,657 | 100% | ||
tammyfit95 | 0 | 2,185,290,351 | 100% | ||
wamsverrucko | 0 | 2,251,632,261 | 100% | ||
jhonatanhc | 0 | 449,906,416 | 100% | ||
anushkasingh | 0 | 166,965,431 | 100% | ||
hsynterkr | 0 | 254,354,083 | 100% | ||
paulrajaaaaah | 0 | 231,565,258 | 100% | ||
extremeromance | 0 | 260,422,332 | 100% | ||
jaynesquill | 0 | 188,174,197 | 100% | ||
ajulu | 0 | 171,214,479 | 100% | ||
shammi | 0 | 6,635,845,747 | 100% | ||
cryptocheta | 0 | 285,133,348 | 100% | ||
puneetsuthar | 0 | 2,413,956,738 | 100% | ||
boosting | 0 | 337,512,348 | 100% | ||
mrwhale | 0 | 261,885,282 | 100% | ||
bestnazmul2 | 0 | 297,562,801 | 100% | ||
gamma00 | 0 | 362,142,902 | 100% | ||
soulinsiders | 0 | 348,315,336 | 100% | ||
gopiselvan | 0 | 191,800,403 | 100% | ||
chan16735 | 0 | 405,251,394 | 100% | ||
racdaolato1976 | 0 | 148,457,285 | 33% | ||
trendingtube | 0 | 187,744,683 | 100% | ||
lifernesec1973 | 0 | 190,554,284 | 40% | ||
fueprojacan1988 | 0 | 202,581,998 | 42% | ||
kaderkhan | 0 | 381,462,604 | 100% | ||
coriolanus | 0 | 9,623,696,233 | 100% | ||
yadyasir | 0 | 194,692,188 | 100% | ||
moniristi | 0 | 2,959,667,532 | 100% | ||
mfctanzim | 0 | 2,297,469,510 | 100% | ||
dima772089 | 0 | 363,811,121 | 100% | ||
funnytime | 0 | 191,267,895 | 40% | ||
artworld | 0 | 251,163,034 | 50% | ||
naturecenter | 0 | 227,458,079 | 46% | ||
traveled | 0 | 76,665,645 | 21% | ||
marccage833 | 0 | 358,219,489 | 100% | ||
ganeshuppahgffye | 0 | 353,178,676 | 100% | ||
nirgf | 0 | 5,790,793,016 | 100% | ||
lerass | 0 | 415,687,396 | 100% | ||
kubi | 0 | 63,360,120 | 20% | ||
healthylifes | 0 | 129,074,073 | 30% | ||
mariano35 | 0 | 88,318,714 | 23% | ||
montecarlo35 | 0 | 238,665,141 | 48% | ||
franchescasacco | 0 | 244,678,998 | 49% | ||
boklassen | 0 | 160,484,999 | 35% | ||
davrild | 0 | 2,534,266,029 | 100% | ||
nejdat | 0 | 172,512,713 | 37% | ||
phuoc.hong95 | 0 | 380,593,253 | 100% | ||
demiro86 | 0 | 434,473,209 | 100% | ||
housegod | 0 | 459,864,757 | 100% | ||
foodstall | 0 | 64,764,224 | 19% | ||
healthyfoods | 0 | 0 | 31% | ||
artdirector | 0 | 191,087,950 | 40% | ||
art-is | 0 | 136,843,161 | 31% | ||
ecocoin | 0 | 96,303,324 | 25% | ||
xplay | 0 | 34,757,115 | 41% | ||
cryptoocurrency | 0 | 216,760,163 | 46% | ||
smartsteem | 0 | 24,560,220,555,490 | 18.24% | ||
an0na | 0 | 5,632,868,226 | 100% | ||
hassanics | 0 | 421,912,658 | 100% | ||
chnorris | 0 | 341,170,350 | 100% | ||
jashimuddin | 0 | 449,930,066 | 100% | ||
resteemyourpost | 0 | 375,138,769 | 100% | ||
sarmin | 0 | 459,441,338 | 100% | ||
beauknows | 0 | 31,717,984,293 | 100% | ||
fmalafaya | 0 | 8,582,909,439 | 100% | ||
manfoundstanding | 0 | 170,261,519 | 100% | ||
mkuvekaba1111 | 0 | 294,711,102 | 100% | ||
drawer | 0 | 359,914,128 | 100% | ||
jibspark | 0 | 197,383,105 | 100% | ||
jokers | 0 | 432,910,236 | 100% | ||
newsbitcoin | 0 | 149,925,946 | 46% | ||
fightcancer | 0 | 449,932,901 | 100% | ||
carlos-farias | 0 | 310,729,221 | 100% | ||
mithunsarker | 0 | 449,929,957 | 100% | ||
everdayfood | 0 | 70,038,267 | 20% | ||
absn | 0 | 2,417,535,743 | 100% | ||
nishadhasan | 0 | 190,820,867 | 100% | ||
caner | 0 | 226,261,074 | 100% | ||
minnowbacker | 0 | 250,382,122 | 100% | ||
xettrinabin | 0 | 271,686,932 | 100% | ||
odl | 0 | 587,519,235 | 22% | ||
ungest | 0 | 191,199,633 | 100% | ||
peterruck | 0 | 438,217,291 | 100% | ||
luckyjuly24 | 0 | 361,294,945 | 100% | ||
barrabass123 | 0 | 448,634,783 | 100% | ||
green.zaman | 0 | 211,976,658 | 100% | ||
kcherukuri | 0 | 3,167,771,024 | 100% | ||
reyha | 0 | 175,937,287 | 100% | ||
andara | 0 | 322,467,495 | 100% | ||
masumalucky | 0 | 434,704,140 | 100% | ||
mesafe | 0 | 103,165,508 | 2% | ||
evananisa | 0 | 380,915,922 | 100% | ||
newslady | 0 | 3,113,297,996 | 100% | ||
thecryptoboy | 0 | 358,219,107 | 100% | ||
bitcoinmastered | 0 | 429,248,769 | 100% | ||
bitcoinmining | 0 | 438,216,208 | 100% | ||
andymoonpie | 0 | 354,558,752 | 100% | ||
scishow | 0 | 329,031,183 | 100% | ||
meherin | 0 | 23,870,325,519 | 100% | ||
vicky456 | 0 | 297,782,363 | 100% | ||
inversionistam | 0 | 6,848,350,945 | 100% | ||
ahmadkhan | 0 | 435,308,448 | 100% | ||
alajij2014 | 0 | 337,130,820 | 100% | ||
proofmaster | 0 | 2,797,986,677 | 100% | ||
omeratagun | 0 | 187,365,194 | 100% | ||
alcoholism | 0 | 2,382,791,700 | 100% | ||
kotik1 | 0 | 2,723,288,495 | 100% | ||
bilgi | 0 | 221,157,288 | 45% | ||
eksisozluk | 0 | 118,887,526 | 28% | ||
sohbet | 0 | 143,014,316 | 32% | ||
ilginc | 0 | 237,745,580 | 49% | ||
onedio | 0 | 188,875,656 | 41% | ||
bursa | 0 | 130,950,921 | 30% | ||
osmanli | 0 | 100,792,434 | 25% | ||
mrswhale | 0 | 1,596,816,393 | 38% | ||
hottopic | 0 | 214,340,616,672 | 100% | ||
starsima | 0 | 351,370,305 | 100% | ||
bitcoinfast | 0 | 215,590,113 | 44% | ||
fahimmostofa | 0 | 250,093,071 | 50% | ||
ohadiyorum | 0 | 155,077,711 | 34% | ||
mybitcoinacademy | 0 | 202,110,867 | 100% | ||
alorozario | 0 | 353,024,360 | 100% | ||
monirul22 | 0 | 428,160,029 | 100% | ||
yhaulez | 0 | 348,097,167 | 100% | ||
pafulim | 0 | 207,480,791 | 100% | ||
secretcodrin | 0 | 449,884,806 | 100% | ||
gamezine | 0 | 395,895,475 | 100% | ||
gasparcha | 0 | 167,229,460 | 100% | ||
hydroponics101 | 0 | 2,267,532,543 | 100% | ||
reisronddewereld | 0 | 4,252,693,934 | 100% | ||
ashraful02 | 0 | 269,484,686 | 100% | ||
dasneuegeld | 0 | 429,571,669 | 100% | ||
nextico | 0 | 428,530,341 | 100% | ||
aka-alias | 0 | 318,702,541 | 100% | ||
yeasin111 | 0 | 279,588,009 | 100% | ||
jhonniq | 0 | 389,353,153 | 100% | ||
alfi1212 | 0 | 401,691,990 | 100% | ||
ohi786 | 0 | 394,221,848 | 100% | ||
mosaddekursakib | 0 | 388,698,873 | 100% | ||
mehedi118 | 0 | 245,496,820 | 100% | ||
cn-roces | 0 | 291,817,444 | 100% | ||
naymur | 0 | 1,697,941,483 | 50% | ||
pporet | 0 | 356,928,536 | 100% | ||
brainfarts | 0 | 173,558,457 | 100% | ||
freetime | 0 | 88,533,648 | 100% | ||
nikonmarshall | 0 | 2,530,290,819 | 100% | ||
memobi | 0 | 262,725,141 | 22% | ||
beema | 0 | 307,407,848 | 100% | ||
bitcoinsuccess | 0 | 429,033,142 | 100% | ||
successmotivator | 0 | 428,814,350 | 100% | ||
thecryptocoins | 0 | 428,791,357 | 100% | ||
cryptoinfinite | 0 | 436,778,654 | 100% | ||
bacabaca | 0 | 386,639,637 | 100% | ||
nikhilanil2645 | 0 | 287,135,891 | 100% | ||
andreeamta | 0 | 360,669,292 | 100% | ||
cracksnews | 0 | 171,699,939 | 100% | ||
fahrizalarif1995 | 0 | 428,135,443 | 100% | ||
erhanoz | 0 | 340,587,573 | 100% | ||
madviking | 0 | 6,171,910,783 | 100% | ||
yaamitonmoy | 0 | 292,604,030 | 100% | ||
darkmrmystic | 0 | 287,388,090 | 100% | ||
regards | 0 | 407,093,314 | 100% | ||
timeforfun | 0 | 429,144,080 | 100% | ||
itsmemetime | 0 | 429,197,789 | 100% | ||
azadakar | 0 | 8,031,201,018 | 100% | ||
cryptopimp | 0 | 402,448,096 | 100% | ||
nathansackey | 0 | 2,377,347,379 | 100% | ||
ademkrgl | 0 | 189,185,482 | 100% | ||
dailymotivator | 0 | 436,739,971 | 100% | ||
billibong | 0 | 185,145,617 | 100% | ||
syarif5 | 0 | 316,216,057 | 100% | ||
fiducia | 0 | 92,839,178,344 | 100% | ||
rifat956 | 0 | 172,611,144 | 100% | ||
earthpix | 0 | 390,299,318 | 100% | ||
traveladdicted | 0 | 438,514,027 | 100% | ||
animefanrd | 0 | 394,728,387 | 100% | ||
dieley | 0 | 356,250,472 | 100% | ||
gnchmurat | 0 | 2,657,512,689 | 100% | ||
arggil | 0 | 430,293,671 | 100% | ||
matt01y | 0 | 292,326,487 | 100% | ||
thi-js | 0 | 21,248,031,604 | 100% | ||
faruqomer | 0 | 563,201,561 | 100% | ||
vishalhkothari | 0 | 8,051,676,114 | 100% | ||
azaanwrites | 0 | 183,995,287 | 100% | ||
nuek | 0 | 266,257,185 | 100% | ||
imh3ll | 0 | 2,094,599,904 | 100% | ||
geekscience | 0 | 459,577,847 | 100% | ||
tosyne2much | 0 | 176,378,162 | 100% | ||
sanakhan1920 | 0 | 460,796,451 | 100% | ||
eng.ramy | 0 | 424,117,023 | 100% | ||
chukwunalu | 0 | 2,214,132,380 | 100% | ||
acrywhif | 0 | 306,748,936 | 100% | ||
kathybell | 0 | 2,499,943,042 | 100% | ||
maixa | 0 | 430,269,677 | 100% | ||
davidvargas | 0 | 425,374,605 | 100% | ||
mdoo824 | 0 | 182,405,147 | 100% | ||
kdforlife | 0 | 419,122,444 | 100% | ||
ifog | 0 | 317,232,722 | 100% | ||
oschlypajac | 0 | 3,468,982,025 | 100% | ||
saidelbouchri | 0 | 376,942,737 | 100% | ||
fiderlet | 0 | 343,741,179 | 100% | ||
bestsmiles | 0 | 100,228,692 | 50% | ||
indronill | 0 | 359,153,552 | 100% | ||
geeechoes | 0 | 174,002,650 | 100% | ||
thejoker5 | 0 | 318,466,712 | 100% | ||
umm | 0 | 214,747,071 | 100% | ||
mudassir55 | 0 | 432,866,628 | 100% | ||
fernax77 | 0 | 441,040,294 | 100% | ||
animad | 0 | 373,240,027 | 100% | ||
all.cars | 0 | 7,559,423,113 | 100% | ||
lestravel | 0 | 3,452,891,819 | 100% | ||
aaron7 | 0 | 444,077,198 | 100% | ||
bassrebels | 0 | 203,779,523 | 100% | ||
baycan | 0 | 6,488,633,842 | 100% | ||
javierleiva | 0 | 285,609,740 | 100% | ||
corhevs | 0 | 335,339,339 | 100% | ||
mariginal | 0 | 232,089,926 | 47% | ||
zkan | 0 | 139,917,663 | 38% | ||
carnelian | 0 | 171,868,868 | 100% | ||
kaanight | 0 | 237,988,160 | 48% | ||
maykolcontreras | 0 | 255,613,755 | 100% | ||
dippa | 0 | 383,314,126 | 100% | ||
iliasjourney | 0 | 391,074,661 | 100% | ||
elgatohuelepega | 0 | 405,548,924 | 100% | ||
toymaster | 0 | 205,454,702 | 100% | ||
kartheekh | 0 | 363,481,652 | 100% | ||
jiashin | 0 | 363,116,727 | 100% | ||
nashbe | 0 | 357,214,644 | 100% | ||
cebuladeals | 0 | 413,989,053 | 100% | ||
fusionnuclear | 0 | 346,031,601 | 100% | ||
peppermint24 | 0 | 228,354,596 | 3.3% | ||
safiriks | 0 | 358,803,456 | 100% | ||
snoke | 0 | 315,011,842 | 100% | ||
yovanek | 0 | 436,418,049 | 100% | ||
xrileyxquinnx | 0 | 353,466,902 | 100% | ||
dailythoughts | 0 | 287,609,599 | 100% | ||
world-cup | 0 | 591,761,879 | 100% | ||
azamali | 0 | 325,071,601 | 100% | ||
harj | 0 | 242,185,449 | 100% | ||
greycrasan | 0 | 190,038,008 | 100% | ||
jeffleinwand | 0 | 2,415,649,471 | 100% | ||
kwangjaggle | 0 | 167,455,406 | 100% | ||
davidsiedoma | 0 | 235,347,567 | 100% | ||
andresfer0310 | 0 | 381,173,861 | 100% | ||
imanuddin | 0 | 2,483,720,357 | 100% | ||
mytokondria | 0 | 204,743,116 | 100% | ||
charismatics | 0 | 358,342,883 | 100% | ||
mastermax13124 | 0 | 428,044,107 | 100% | ||
williamsyee | 0 | 2,616,132,391 | 100% | ||
lowestdefinition | 0 | 12,911,915,426 | 100% | ||
mashab76 | 0 | 379,682,986 | 100% | ||
nacarid | 0 | 322,003,728 | 100% | ||
khinzawlatt | 0 | 2,408,096,460 | 100% | ||
buttpacker | 0 | 200,010,189 | 100% | ||
ninjapiraterobot | 0 | 9,964,070,061 | 100% | ||
zafarjadoon | 0 | 326,701,782 | 100% | ||
xandros | 0 | 3,016,857,849 | 100% | ||
bellsx1 | 0 | 274,832,663 | 100% | ||
johnleon | 0 | 429,752,384 | 100% | ||
antomil | 0 | 389,533,616 | 100% | ||
mustdogdu | 0 | 428,811,673 | 100% | ||
dee-y | 0 | 194,039,735 | 100% | ||
lukasmining | 0 | 5,433,278,089 | 100% | ||
dayveedben | 0 | 234,875,465 | 100% | ||
dissolve | 0 | 196,374,779 | 100% | ||
b-s | 0 | 339,405,356 | 100% | ||
deus-lo-vult | 0 | 402,316,664 | 100% | ||
steem-hikers | 0 | 217,579,280 | 14.23% | ||
chronocrypto | 0 | 2,516,420,036 | 100% | ||
erpachon | 0 | 412,899,919 | 100% | ||
krommus | 0 | 401,620,907 | 100% | ||
deril | 0 | 416,538,867 | 100% | ||
trulaloo | 0 | 312,714,101 | 100% | ||
nadinka | 0 | 87,739,825 | 100% | ||
bubbleboy | 0 | 207,204,001 | 100% | ||
uzercanan | 0 | 513,505,038 | 100% | ||
shahabshah | 0 | 336,019,636 | 100% | ||
takemyupvote | 0 | 433,592,842 | 100% | ||
dinvestor | 0 | 2,258,070,511 | 100% | ||
technicalbero | 0 | 400,673,144 | 100% | ||
starcontract | 0 | 2,224,807,834 | 100% | ||
mdnazmulhasan | 0 | 417,664,370 | 100% | ||
kerimcaglar | 0 | 220,049,790 | 46% | ||
alejandromata | 0 | 187,321,921 | 100% | ||
ankur310794 | 0 | 375,549,792 | 100% | ||
rosemarymist | 0 | 430,058,402 | 100% | ||
kral789 | 0 | 357,354,079 | 100% | ||
raise-me-up | 0 | 64,532,000,215 | 90% | ||
miniklady | 0 | 3,038,423,182 | 100% | ||
bestjokes | 0 | 317,865,770 | 100% | ||
piadas | 0 | 175,546,145 | 100% | ||
mctursh | 0 | 436,623,233 | 100% | ||
intellihandling | 0 | 6,122,663,719 | 100% | ||
cateyes1990 | 0 | 434,826,831 | 100% | ||
xomemes | 0 | 221,277,425 | 100% | ||
tahirmahmood | 0 | 430,993,833 | 100% | ||
vicrivasr | 0 | 378,225,979 | 100% | ||
jeffersonsalcedo | 0 | 398,766,991 | 100% | ||
lila-wish-genie | 0 | 329,378,481 | 100% | ||
treasoner13 | 0 | 351,317,111 | 100% | ||
alvaritokeloke | 0 | 281,419,420 | 100% | ||
sunrock | 0 | 2,827,981,076 | 100% | ||
kshitizraj | 0 | 404,889,270 | 100% | ||
ajose300 | 0 | 435,470,595 | 100% | ||
checkem | 0 | 449,378,982 | 100% | ||
cha0s0000 | 0 | 3,957,223,443 | 100% | ||
tejacode | 0 | 340,438,320 | 100% | ||
sylinda | 0 | 192,692,031 | 43% | ||
luish | 0 | 379,554,559 | 100% | ||
knthalo | 0 | 265,651,350 | 100% | ||
indertat | 0 | 446,039,271 | 100% | ||
gamemodeop | 0 | 350,340,774 | 100% | ||
kuttmoped | 0 | 626,858,184 | 100% | ||
galoisconnection | 0 | 279,195,910 | 100% | ||
plasmachicken | 0 | 340,509,390 | 100% | ||
technology-talks | 0 | 282,155,078 | 100% | ||
retrojordanchris | 0 | 324,223,087 | 100% | ||
livsky | 0 | 170,257,162 | 100% | ||
sjomeath | 0 | 3,202,096,208 | 100% | ||
fionagan | 0 | 188,206,632 | 100% | ||
inspiringquotes | 0 | 361,152,216 | 100% | ||
johannesbaumer | 0 | 371,493,109 | 100% | ||
nymphfeo | 0 | 449,941,040 | 100% | ||
apenjoch6 | 0 | 196,020,090 | 100% | ||
toddjr | 0 | 2,852,400,216 | 100% | ||
sobluecloud | 0 | 388,605,739 | 100% | ||
desper | 0 | 438,118,440 | 100% | ||
dromzz | 0 | 175,613,247 | 100% | ||
kshitizrun | 0 | 425,650,476 | 100% | ||
pikar | 0 | 431,241,771 | 100% | ||
jintorprivate | 0 | 459,819,472 | 100% | ||
sgupta | 0 | 2,868,106,738 | 100% | ||
danielcares | 0 | 421,201,471 | 100% | ||
tblaze | 0 | 479,910,410 | 100% | ||
desolator | 0 | 275,300,985 | 100% | ||
willdouglas | 0 | 16,306,339,413 | 100% | ||
meraj98 | 0 | 461,970,980 | 100% | ||
eityrupa | 0 | 293,704,691 | 100% | ||
ehtishamjadoon | 0 | 388,009,202 | 100% | ||
alexandersteemit | 0 | 379,015,275 | 100% | ||
aress | 0 | 437,125,758 | 100% | ||
gotsummerpl | 0 | 2,306,709,034 | 100% | ||
khann001 | 0 | 257,362,477 | 100% | ||
sahil4808 | 0 | 449,332,154 | 100% | ||
teteh8993 | 0 | 331,167,483 | 100% | ||
archet | 0 | 228,731,122 | 100% | ||
nrose1234 | 0 | 392,097,643 | 100% | ||
nrose123 | 0 | 342,896,372 | 100% | ||
sreeram661 | 0 | 384,119,766 | 100% | ||
kappablanca | 0 | 324,440,397 | 100% | ||
mariaes | 0 | 410,265,432 | 100% | ||
retoldname | 0 | 284,872,078 | 100% | ||
exzorltg | 0 | 3,673,601,966 | 100% | ||
dhaka | 0 | 309,298,872 | 100% | ||
maximize | 0 | 67,632,224 | 80% | ||
minimize | 0 | 53,332,251 | 80% | ||
jglake | 0 | 2,619,291,707 | 100% | ||
musigny | 0 | 11,314,997,253 | 100% | ||
loraanasta | 0 | 351,062,331 | 100% | ||
fionala | 0 | 227,700,639 | 100% | ||
mariannana | 0 | 215,872,874 | 100% | ||
pagla | 0 | 299,149,941 | 100% | ||
judeanth | 0 | 291,115,028 | 100% | ||
viki27 | 0 | 287,833,837 | 100% | ||
hera-b | 0 | 247,193,215 | 50% | ||
simpati | 0 | 247,296,858 | 50% | ||
bluebiker | 0 | 436,402,702 | 100% | ||
resan | 0 | 190,332,976 | 100% | ||
walid321 | 0 | 297,436,127 | 100% | ||
azby | 0 | 449,879,301 | 100% | ||
starlord28 | 0 | 392,110,838 | 100% | ||
erikklok | 0 | 17,583,863,388 | 100% | ||
satanclaus123 | 0 | 248,723,412 | 100% | ||
agron0m89 | 0 | 438,100,507 | 100% | ||
brainstew | 0 | 351,563,034 | 100% | ||
blinkybill | 0 | 22,535,986,983 | 100% | ||
roundhere | 0 | 3,078,295,274 | 100% | ||
akhilarudraraju | 0 | 438,109,332 | 100% | ||
vhmcrypto | 0 | 358,252,296 | 100% | ||
msena | 0 | 3,066,283,663 | 100% | ||
awais33 | 0 | 242,949,556 | 50% | ||
ashishchavda | 0 | 176,158,130 | 50% | ||
anikpolash | 0 | 359,637,863 | 100% | ||
allisgood | 0 | 2,215,421,879 | 100% | ||
upbd | 0 | 437,023,312 | 100% | ||
ayman123 | 0 | 392,543,632 | 100% | ||
rebelcrypto | 0 | 394,874,268 | 100% | ||
it-is-nuel | 0 | 428,062,408 | 100% | ||
zuhuk | 0 | 310,626,239 | 100% | ||
abuzar1 | 0 | 405,738,727 | 100% | ||
duchess1 | 0 | 385,318,108 | 100% | ||
adit9 | 0 | 460,549,486 | 100% | ||
arpan01 | 0 | 461,932,867 | 100% | ||
futurefarmers | 0 | 341,871,629 | 100% | ||
sadiksalad | 0 | 361,564,537 | 100% | ||
xxsamu | 0 | 268,541,467 | 100% | ||
thematrax | 0 | 455,629,928 | 100% | ||
winnerblessed | 0 | 320,637,019 | 100% | ||
legin | 0 | 2,383,682,147 | 100% | ||
overgrownheffo | 0 | 259,499,494 | 100% | ||
jguzman394 | 0 | 36,462,669,403 | 100% | ||
iamthelonewolf | 0 | 396,235,413 | 100% | ||
lavinas | 0 | 224,013,708 | 100% | ||
n-i-n-a | 0 | 341,135,683 | 100% | ||
hasiburrahman | 0 | 398,997,355 | 100% | ||
votemachine | 0 | 419,512,389 | 100% | ||
mikersantana1 | 0 | 376,697,910 | 100% | ||
jeffspace | 0 | 250,511,262 | 100% | ||
programminghub | 0 | 198,465,199 | 100% | ||
babshegar123 | 0 | 283,220,895 | 100% | ||
xararzx95 | 0 | 447,232,066 | 100% | ||
robixd | 0 | 195,917,008 | 100% | ||
jesseluther | 0 | 3,529,195,262 | 100% | ||
mintu999 | 0 | 352,904,743 | 100% | ||
ringku | 0 | 429,234,414 | 100% | ||
zulama28 | 0 | 448,315,229 | 100% | ||
netya | 0 | 279,120,732 | 100% | ||
diego01798 | 0 | 396,569,635 | 100% | ||
zygibo | 0 | 6,866,259,331 | 100% | ||
steemhispano | 0 | 129,565,837 | 30% | ||
losmosqueteros | 0 | 444,160,008 | 100% | ||
volfenhauser | 0 | 2,836,946,197 | 100% | ||
partyheld | 0 | 405,998,267 | 100% | ||
babatunde123 | 0 | 381,650,677 | 100% | ||
guerranicole266 | 0 | 312,413,706 | 100% | ||
adrianvillalobos | 0 | 2,318,041,605 | 100% | ||
mahadassirisha | 0 | 344,372,961 | 100% | ||
dnaingkhan | 0 | 453,253,949 | 100% | ||
ilhamudi | 0 | 192,746,203 | 100% | ||
mshoumik | 0 | 336,600,357 | 100% | ||
tstarnes | 0 | 189,367,942 | 100% | ||
kennybeans | 0 | 459,579,366 | 100% | ||
abu-banderas | 0 | 203,250,721 | 100% | ||
atifaman | 0 | 277,736,474 | 100% | ||
botefarm | 0 | 2,290,910,763 | 100% | ||
kbakadave | 0 | 383,986,683 | 100% | ||
zenifar | 0 | 2,181,086,988 | 100% | ||
zekesito | 0 | 329,840,544 | 100% | ||
nsfw2 | 0 | 309,879,742 | 100% | ||
jahid157 | 0 | 421,698,759 | 100% | ||
shamzieyblitz | 0 | 359,059,249 | 100% | ||
travelprincess | 0 | 393,700,972 | 100% | ||
donovanbanyard | 0 | 300,780,219 | 100% | ||
dop-dop | 0 | 359,140,784 | 100% | ||
top10ranker | 0 | 398,233,397 | 100% | ||
smsyfurrahman | 0 | 393,458,491 | 100% | ||
naimbiswas | 0 | 416,127,583 | 100% | ||
winchestergirl42 | 0 | 2,353,431,868 | 100% | ||
kucukprens | 0 | 551,830,246 | 100% | ||
upmine | 0 | 355,614,798 | 100% | ||
novogel | 0 | 292,400,873 | 100% | ||
steemia-io | 0 | 266,889,764 | 100% | ||
hookah | 0 | 397,446,595 | 100% | ||
otac | 0 | 3,326,676,563 | 100% | ||
pikasodan | 0 | 2,880,843,918 | 100% | ||
aponkl | 0 | 348,452,889 | 100% | ||
sedas | 0 | 195,971,007 | 100% | ||
true2dacrypto | 0 | 351,309,911 | 100% | ||
jemjewl | 0 | 172,313,679 | 100% | ||
piccolo | 0 | 3,323,682,952 | 100% | ||
richie211 | 0 | 410,516,690 | 100% | ||
cjsaez | 0 | 432,586,836 | 100% | ||
genblockchain | 0 | 271,613,907 | 100% | ||
bandmxo88 | 0 | 394,746,224 | 100% | ||
itasteem | 0 | 446,666,720 | 100% | ||
fazlerabby | 0 | 288,976,175 | 100% | ||
peter007 | 0 | 387,813,873 | 100% | ||
elenalila | 0 | 208,877,408 | 100% | ||
katy777 | 0 | 459,932,742 | 100% | ||
calistenia360 | 0 | 426,695,842 | 100% | ||
a000 | 0 | 187,062,294 | 100% | ||
oyinlomoa | 0 | 449,908,252 | 100% | ||
sammynathaniels | 0 | 428,184,688 | 100% | ||
luciiik | 0 | 459,818,271 | 100% | ||
ziuntown | 0 | 358,541,690 | 100% | ||
enny-b | 0 | 480,413,746 | 100% | ||
dasvolk | 0 | 438,338,425 | 100% | ||
muliyadi | 0 | 459,580,633 | 100% | ||
abu.bakkar | 0 | 218,569,547 | 100% | ||
bobbinj | 0 | 455,848,094 | 100% | ||
mahmudshafin | 0 | 449,876,533 | 100% | ||
slimsieris | 0 | 449,278,110 | 100% | ||
ultrapsycho | 0 | 435,130,126 | 100% | ||
justdice | 0 | 427,672,747 | 100% | ||
sanekabir | 0 | 362,246,663 | 100% | ||
upvoteid | 0 | 400,237,954 | 100% | ||
vohon17 | 0 | 465,971,161 | 100% | ||
raindropbd | 0 | 437,679,372 | 100% | ||
fazlerabby2 | 0 | 273,382,787 | 100% | ||
abdullah14 | 0 | 439,622,884 | 100% | ||
kuchee | 0 | 368,994,334 | 100% | ||
cryptodj99 | 0 | 2,217,593,491 | 100% | ||
rahul111 | 0 | 429,876,272 | 100% | ||
kxitizraj | 0 | 401,176,455 | 100% | ||
knot | 0 | 3,052,832,516 | 100% | ||
ross92 | 0 | 347,961,256 | 100% | ||
visitcostarica | 0 | 354,769,204 | 100% | ||
pretty.dorky | 0 | 2,462,055,453 | 100% | ||
milchtropfen | 0 | 2,234,523,977 | 100% | ||
steemaniax | 0 | 409,940,996 | 100% | ||
pureone | 0 | 452,501,818 | 100% | ||
ranjitoram | 0 | 362,315,714 | 100% | ||
linerus | 0 | 442,406,915 | 100% | ||
israfunna | 0 | 248,998,368 | 50% | ||
rasyib | 0 | 248,085,430 | 50% | ||
fofi | 0 | 6,080,456,681 | 100% | ||
thepharaoh | 0 | 432,794,736 | 100% | ||
oyver | 0 | 449,885,995 | 100% | ||
agrestic | 0 | 409,677,872 | 50% | ||
sitifajar | 0 | 449,331,596 | 100% | ||
steeemlover | 0 | 270,883,846 | 100% | ||
nafij-sura | 0 | 318,043,279 | 100% | ||
str1k3r | 0 | 422,423,875 | 100% | ||
sayutimamet | 0 | 436,418,186 | 100% | ||
sristeem | 0 | 390,836,544 | 100% | ||
mrjokar | 0 | 411,150,382 | 100% | ||
efredis | 0 | 435,766,708 | 100% | ||
laviq | 0 | 3,448,511,411 | 100% | ||
darksideofmoon | 0 | 354,924,353 | 100% | ||
ariel998 | 0 | 459,409,814 | 100% | ||
crypto-n-custard | 0 | 180,523,005,170 | 100% | ||
aandebickel | 0 | 14,224,770,345 | 100% | ||
emergedinsteem | 0 | 323,383,478 | 100% | ||
adewale123 | 0 | 377,194,715 | 100% | ||
eazz | 0 | 361,956,251 | 100% | ||
tornadoman | 0 | 178,826,563 | 100% | ||
teetee | 0 | 340,030,369 | 100% | ||
leticar5 | 0 | 435,071,112 | 100% | ||
crypto-taco | 0 | 322,687,184 | 100% | ||
sexbot | 0 | 448,610,167 | 100% | ||
riskaaulia | 0 | 387,200,867 | 100% | ||
shilpe | 0 | 297,282,227 | 100% | ||
draisyduran | 0 | 427,971,130 | 100% | ||
eghireme2 | 0 | 399,304,760 | 100% | ||
gabrielaleiva | 0 | 406,287,171 | 100% | ||
steembusters | 0 | 285,808,462 | 100% | ||
zawilq | 0 | 320,534,771 | 100% | ||
littl-lesser | 0 | 452,515,891 | 100% | ||
sriz | 0 | 235,747,125 | 100% | ||
steem-pro | 0 | 252,267,617 | 100% | ||
mairayasir | 0 | 404,324,593 | 100% | ||
cryptobeginner | 0 | 414,300,171 | 100% | ||
platinumsuperman | 0 | 394,454,977 | 100% | ||
kadirus94 | 0 | 219,658,111 | 100% | ||
tamer5461 | 0 | 166,068,880 | 36% | ||
povoq | 0 | 199,213,364 | 100% | ||
olusamex | 0 | 349,125,689 | 100% | ||
sultana | 0 | 419,309,597 | 100% | ||
xwt | 0 | 184,282,294 | 100% | ||
rdalex | 0 | 436,414,344 | 100% | ||
lecuong2290 | 0 | 100,641,258 | 27% | ||
yoitsme | 0 | 276,863,899 | 100% | ||
rismayanti | 0 | 445,726,754 | 100% | ||
deathblow | 0 | 182,891,218 | 100% | ||
riazuddin101 | 0 | 352,984,294 | 100% | ||
shakilanupur | 0 | 449,916,870 | 100% | ||
wisex | 0 | 34,081,747 | 26% | ||
superxsdo | 0 | 305,251,412 | 100% | ||
bangladeshbot | 0 | 350,248,411 | 100% | ||
olamilekan21 | 0 | 297,995,436 | 100% | ||
thetufan | 0 | 207,072,082 | 100% | ||
james18 | 0 | 428,842,181 | 100% | ||
johnjan1697 | 0 | 321,315,532 | 100% | ||
rolanddeschain | 0 | 346,770,015 | 100% | ||
fatih17 | 0 | 449,332,203 | 100% | ||
hamzahere | 0 | 293,810,334 | 100% | ||
sadia2 | 0 | 422,524,846 | 100% | ||
simplemrakpor | 0 | 325,698,075 | 100% | ||
foxyd | 0 | 284,451,922 | 100% | ||
ridita | 0 | 427,988,455 | 100% | ||
rajthala | 0 | 428,736,955 | 100% | ||
mohazjadoon | 0 | 346,858,623 | 100% | ||
yahoobot | 0 | 427,961,992 | 100% | ||
shenanigans | 0 | 2,282,978,079 | 100% | ||
alfheim15 | 0 | 459,586,821 | 100% | ||
schrodingers-cat | 0 | 311,101,536 | 100% | ||
adelliana | 0 | 214,444,758 | 100% | ||
hivaids | 0 | 397,506,680 | 100% | ||
readrun | 0 | 380,314,559 | 100% | ||
rosecat | 0 | 459,124,527 | 100% | ||
fucktime | 0 | 354,104,130 | 100% | ||
mdmahmudulhasan | 0 | 436,405,026 | 100% | ||
coinsity | 0 | 474,313,664 | 100% | ||
genych | 0 | 94,989,849,330 | 100% | ||
zamazingo1898 | 0 | 325,941,110 | 100% | ||
ashtray34 | 0 | 100,366,200 | 29% | ||
liton24 | 0 | 436,413,853 | 100% | ||
fishhead | 0 | 326,130,136 | 100% | ||
hrx-07 | 0 | 391,982,530 | 100% | ||
jesusmarin18 | 0 | 353,434,981 | 100% | ||
orient | 0 | 268,690,310 | 100% | ||
huesos | 0 | 216,417,957 | 100% | ||
superlao | 0 | 3,248,199,527 | 100% | ||
xyphr | 0 | 429,614,818 | 100% | ||
steemit-contest | 0 | 349,134,384 | 100% | ||
rozario | 0 | 170,732,513 | 100% | ||
masavi | 0 | 425,819,381 | 100% | ||
simay | 0 | 184,892,568 | 39% | ||
bomaprecious | 0 | 225,459,409 | 100% | ||
minutiae | 0 | 394,145,211 | 100% | ||
guider | 0 | 3,091,521,857 | 100% | ||
fariah | 0 | 317,689,966 | 100% | ||
kraitahex | 0 | 422,187,418 | 100% | ||
hockeygirl21 | 0 | 377,282,597 | 100% | ||
simin | 0 | 420,988,889 | 100% | ||
schatalie | 0 | 187,015,158 | 100% | ||
steemtradecards | 0 | 239,025,601 | 100% | ||
cryptoempire | 0 | 2,240,894,947 | 100% | ||
atalante | 0 | 405,380,838 | 100% | ||
quorum4 | 0 | 2,208,221,990 | 100% | ||
manfaluthi | 0 | 364,363,485 | 100% | ||
dangbeo | 0 | 352,172,054 | 100% | ||
charlieheart | 0 | 196,129,078 | 100% | ||
preshey | 0 | 6,568,204,466 | 100% | ||
tehmi | 0 | 460,151,724 | 100% | ||
archetypal | 0 | 201,924,963 | 14.23% | ||
edyscout81 | 0 | 187,390,488 | 100% | ||
cryptoletter | 0 | 209,526,342 | 100% | ||
letstalkk | 0 | 449,948,785 | 100% | ||
oyelekan | 0 | 326,762,934 | 100% | ||
tibeo | 0 | 422,620,535 | 100% | ||
maikellelcrack | 0 | 385,754,731 | 100% | ||
mrashed043 | 0 | 422,322,293 | 100% | ||
muhibbullah | 0 | 342,753,066 | 100% | ||
dogmaportraits | 0 | 361,917,619 | 100% | ||
oppapouk | 0 | 459,409,803 | 100% | ||
bushakov | 0 | 449,938,468 | 100% | ||
synerqix | 0 | 176,964,505 | 100% | ||
whitneywhitedust | 0 | 427,668,172 | 100% | ||
steemcollege | 0 | 449,929,866 | 100% | ||
martintm | 0 | 449,904,451 | 100% | ||
eoswashingtondc | 0 | 323,725,632 | 100% | ||
hbosteem | 0 | 390,510,143 | 100% | ||
maddieseal | 0 | 444,767,428 | 100% | ||
geocities | 0 | 390,422,677 | 100% | ||
enero | 0 | 449,942,146 | 100% | ||
woogle | 0 | 449,938,004 | 100% | ||
theh | 0 | 2,379,439,321 | 100% | ||
angelinadivya | 0 | 384,354,592 | 100% | ||
dontcare | 0 | 428,732,995 | 100% | ||
steemvegas | 0 | 429,428,203 | 100% | ||
steemitabuser | 0 | 428,452,656 | 100% | ||
steemmiami | 0 | 441,223,279 | 100% | ||
steemchicago | 0 | 429,518,531 | 100% | ||
steembostonma | 0 | 450,652,263 | 100% | ||
steemaustin | 0 | 437,158,636 | 100% | ||
airony | 0 | 261,440,432 | 100% | ||
mista9904 | 0 | 390,715,217 | 100% | ||
janyarbos | 0 | 255,928,282 | 100% | ||
ethant109 | 0 | 267,611,669 | 100% | ||
ksapolash | 0 | 259,048,499 | 100% | ||
talavira | 0 | 420,554,620 | 100% | ||
pasat777 | 0 | 420,556,626 | 100% | ||
suhana05 | 0 | 383,760,044 | 100% | ||
onesickplankton | 0 | 398,840,957 | 100% | ||
saulmaldonadotch | 0 | 446,735,835 | 100% | ||
raulhirribarren | 0 | 446,732,189 | 100% | ||
sergiosantanam | 0 | 436,391,255 | 100% | ||
va2099 | 0 | 344,525,942 | 100% | ||
vulture | 0 | 459,407,043 | 100% | ||
dgig | 0 | 423,989,902 | 100% | ||
yoo19000 | 0 | 459,433,429 | 100% | ||
awaisnisar | 0 | 459,436,212 | 100% | ||
suchmuchwow | 0 | 436,421,892 | 100% | ||
dogeonsteemit | 0 | 436,204,215 | 100% | ||
thebestfails | 0 | 186,939,103 | 100% | ||
motherofalegend | 0 | 7,698,843,780 | 100% | ||
cryptocurrency0 | 0 | 3,400,292,120 | 100% | ||
gangstars | 0 | 409,388,022 | 100% | ||
nahin9 | 0 | 438,866,413 | 100% | ||
ajvm | 0 | 449,298,531 | 100% | ||
promotedpost | 0 | 7,833,873,446 | 100% | ||
vigna | 0 | 336,900,692 | 100% | ||
steemhealthcare | 0 | 167,844,189 | 100% | ||
gangresteem | 0 | 2,803,013,757 | 100% | ||
football-365 | 0 | 357,503,698 | 100% | ||
sdr-9 | 0 | 199,404,796 | 100% | ||
kuftjs | 0 | 391,355,301 | 100% | ||
djfugly | 0 | 2,993,435,496 | 100% | ||
japasep16 | 0 | 408,636,209 | 100% | ||
germano | 0 | 402,103,855 | 100% | ||
airdropcu | 0 | 365,561,232 | 100% | ||
benash | 0 | 217,778,240 | 100% | ||
frieder | 0 | 452,581,609 | 100% | ||
mindly | 0 | 427,932,684 | 100% | ||
isla4 | 0 | 386,041,845 | 100% | ||
efsane60 | 0 | 128,879,624 | 100% | ||
elohibaluk | 0 | 329,376,562 | 100% | ||
daktviper84 | 0 | 342,266,077 | 100% | ||
krasnalek | 0 | 4,570,652,352 | 100% | ||
bernietheinbred | 0 | 418,319,126 | 100% | ||
nheyyo | 0 | 436,404,715 | 100% | ||
mukter97 | 0 | 437,442,427 | 100% | ||
berniefucksfam | 0 | 395,146,264 | 100% | ||
alina2 | 0 | 362,194,761 | 100% | ||
yetivi | 0 | 193,571,251 | 100% | ||
ahmedibrahem | 0 | 399,910,523 | 100% | ||
kr7753191 | 0 | 10,719,504,448 | 100% | ||
arceuzz | 0 | 435,853,901 | 100% | ||
foribex | 0 | 186,077,905 | 100% | ||
tubabayrak | 0 | 238,569,120 | 50% | ||
happynation | 0 | 328,098,074 | 100% | ||
yiter | 0 | 2,913,292,954 | 100% | ||
ismailsagor13 | 0 | 177,130,885 | 50% | ||
therapysession | 0 | 333,319,256 | 100% | ||
nikenaka | 0 | 427,974,491 | 100% | ||
ruchit786 | 0 | 228,298,433 | 100% | ||
netizens | 0 | 363,936,124 | 100% | ||
up-voter | 0 | 326,588,450 | 100% | ||
franklin001233 | 0 | 430,018,159 | 100% | ||
sintina | 0 | 364,155,711 | 100% | ||
mlpd | 0 | 436,206,135 | 100% | ||
bernieisboss | 0 | 436,207,457 | 100% | ||
lektolek | 0 | 319,427,290 | 100% | ||
nyuntwin | 0 | 210,842,469 | 100% | ||
aisteemit | 0 | 353,004,046 | 100% | ||
kingsteen | 0 | 362,944,603 | 100% | ||
dorotharatti | 0 | 254,443,321 | 100% | ||
openanimus | 0 | 2,215,504,467 | 100% | ||
nykonicstreamz | 0 | 354,678,768 | 100% | ||
juma20 | 0 | 359,367,377 | 100% | ||
steemdc | 0 | 427,821,948 | 100% | ||
steemla | 0 | 449,694,444 | 100% | ||
steemseattle | 0 | 449,697,087 | 100% | ||
steemhouston | 0 | 449,698,188 | 100% | ||
yourpnn | 0 | 457,743,585 | 100% | ||
gameranger | 0 | 431,837,815 | 100% | ||
yahpawoh | 0 | 361,750,557 | 100% | ||
armuse | 0 | 384,877,843 | 100% | ||
meletik | 0 | 387,178,552 | 100% | ||
ryanng | 0 | 3,032,005,961 | 100% | ||
bullish27 | 0 | 297,664,348 | 100% | ||
christianmemes | 0 | 436,209,869 | 100% | ||
bernardtjames | 0 | 3,435,579,082 | 100% | ||
mahiuddinkhan | 0 | 172,461,486 | 100% | ||
domovoi | 0 | 2,576,671,826 | 100% | ||
randobooster | 0 | 427,942,221 | 100% | ||
bitcoinmarketss | 0 | 444,640,621 | 100% | ||
steemitbloger | 0 | 248,487,464 | 100% | ||
autobooster | 0 | 334,726,850 | 100% | ||
steemit.king | 0 | 235,500,899 | 100% | ||
gorovoyskaya | 0 | 422,943,430 | 100% | ||
love-steemit | 0 | 276,632,448 | 100% | ||
pushpost | 0 | 231,117,232 | 100% | ||
sbdbot | 0 | 319,204,535 | 100% | ||
moneylover | 0 | 247,316,320 | 100% | ||
svecheva6 | 0 | 420,552,922 | 100% | ||
gyrinovych | 0 | 420,552,257 | 100% | ||
upvoteup | 0 | 171,403,082 | 100% |
Congratulations @promari! Your post was mentioned in the [Steem Hit Parade](https://steemit.com/hit-parade/@arcange/daily-hit-parade-20190401) in the following category: * Upvotes - Ranked 10 with 1690 upvotes
author | arcange |
---|---|
permlink | re-programming-rxjava-vol-2-rxjava-20190401t175028000z |
category | promari |
json_metadata | "" |
created | 2019-04-02 15:52:42 |
last_update | 2019-04-02 15:52:42 |
depth | 1 |
children | 0 |
last_payout | 2019-04-09 15:52: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 | 211 |
author_reputation | 1,146,608,602,483,196 |
root_title | "【Programming】RxJava リアクティブプログラミング vol.2 / RxJavaの概要" |
beneficiaries | [] |
max_accepted_payout | 1,000,000.000 HBD |
percent_hbd | 10,000 |
post_id | 82,371,846 |
net_rshares | 0 |
Congratulations @promari! You have completed the following achievement on the Steem blockchain and have been rewarded with new badge(s) : <table><tr><td>https://steemitimages.com/60x70/http://steemitboard.com/@promari/voted.png?201904011928</td><td>You received more than 8000 upvotes. Your next target is to reach 9000 upvotes.</td></tr> </table> <sub>_You can view [your badges on your Steem Board](https://steemitboard.com/@promari) and compare to others on the [Steem Ranking](http://steemitboard.com/ranking/index.php?name=promari)_</sub> <sub>_If you no longer want to receive notifications, reply to this comment with the word_ `STOP`</sub> ###### [Vote for @Steemitboard as a witness](https://v2.steemconnect.com/sign/account-witness-vote?witness=steemitboard&approve=1) to get one more award and increased upvotes!
author | steemitboard |
---|---|
permlink | steemitboard-notify-promari-20190401t205340000z |
category | promari |
json_metadata | {"image":["https://steemitboard.com/img/notify.png"]} |
created | 2019-04-01 20:53:39 |
last_update | 2019-04-01 20:53:39 |
depth | 1 |
children | 0 |
last_payout | 2019-04-08 20:53: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 | 828 |
author_reputation | 38,975,615,169,260 |
root_title | "【Programming】RxJava リアクティブプログラミング vol.2 / RxJavaの概要" |
beneficiaries | [] |
max_accepted_payout | 1,000,000.000 HBD |
percent_hbd | 10,000 |
post_id | 82,328,801 |
net_rshares | 0 |