<div class="text-justify"> <center><h2>My Coding Quiz #54 👨💻🛠️🧩</h2></center> <p>Welcome to the new installment of my series of <b>Coding Quizzes</b>, in which you will be able to test your knowledge and skills about programming and software development in a simple and fun way. If you want to learn more about it visit <a href="/@eniolw">my blog</a> here on Hive and the <a href="/@eniolw/my-coding-quiz-1">first post</a> where I introduced it.</p> <h3>Without further ado, here's the riddle...</h3> <br> <center> <img src="https://images.ecency.com/DQmcs7RurPUE7cWWCxGjnmWmScYKixnZ8yw2b2h2zRysLwh/image.png" alt="Quiz"> <h6>By @eniolw</h6> </center> <br><center><h3>What's your choice?</h3></center> <p><b>Solution to the <a href="/@eniolw/my-coding-quiz-53">previous quiz</a>:</b> <b>NameError</b>. Line 1 creates a <i>zip object</i>, which is useful for traversing two iterables in parallel. In this case it would be the string <code>"abc"</code> and the <code>range(1,4)</code> which, if resolved as a list, would consist of <b>[1, 2, 3]</b>, so both iterables are the same size.</p> <p>Line 2 creates a dictionary <code>d</code> using the compression notation. We see that it would consist of key/value pairs formed by each parallel element traversed with the <code>zip</code> object, so if we were to print <code>d</code>, it would consist of <b>{'a': 1, 'b': 2, 'c': 3}</b>.</p> <p>Line 3 should show one result, whichever is truthy of the three values joined with the <code>or</code> operator. Let's look at each one:</p> <p>👉 <code>list(c)</code> will, in fact, produce the empty list <b>[]</b>, since <code>zip</code> is like a <i>generator</i>. This means that <i>once it is traversed, it is consumed</i>. We see that it was traversed on line 2, so it is already consumed at this point and produces nothing. An empty list is falsy.</p> <p>👉 <code>d.get(1)</code> returns <b>None</b> since there is no key named <code>1</code> in the <code>d</code> dictionary. The None value is obviously falsy.</p> <p>👉 <code>a</code>, on the other hand, will trigger the <b>NameError</b>, since it is a <i>local variable</i> inside the compressor block. <i>It does not exist outside it</i>. This explains the result obtained, which is not really an output, but an execution error.</p> <p>What do you say, were you right with your choice?</p> <hr> <p>If you want to blog about computer science and programming content, I invite you to join <a href="/">Hive</a> and participate in its communities, such as <a href="/created/hive-196387">STEM-social</a>, <a href="/created/hive-154226">Develop Spanish</a>, <a href="/created/hive-169321">Programming & Dev</a> and others.</p> <hr> <center><h2>Mi Quiz de Programación #54 👨💻🛠️🧩</h2></center> <p>Bienvenido a mi nueva serie de <b>Quizzes de Programación</b>, en la cual podrás poner a prueba tus conocimientos y habilidades sobre programación y desarrollo de software de una manera sencilla y divertida. Si quieres aprender más sobre ella visita <a href="/@eniolw">mi blog</a> aquí en Hive y el <a href="/@eniolw/my-coding-quiz-1">primer post</a> donde la presenté.</p> <h3>Sin más preámbulos, he aquí el acertijo...</h3> <br> <center> <img src="https://images.ecency.com/DQmWxSpoN4svYHPXTVZCqFRT1XUqa2AeqVVTKwNR5DewxVr/image.png" alt="Quiz"> <h6>Por @eniolw</h6> </center> <br><center><h3>¿Cuál es tu elección?</h3></center> <p><b>Solución al <a href="/@eniolw/my-coding-quiz-53">quiz anterior</a>:</b> <b>NameError</b>. La línea 1 crea un <i>objeto zip</i>, que es útil para atravesar dos iterables en paralelo. En este caso sería la cadena <code>"abc"</code> y el <code>range(1,4)</code> que, si se resuelve como una lista, consistiría en <b>[1, 2, 3]</b>, por lo que ambos iterables tienen el mismo tamaño.</p> <p>La línea 2 crea un diccionario <code>d</code> usando la notación de compresión. Vemos que consistiría en pares clave/valor formados por cada elemento paralelo atravesado con el objeto <code>zip</code>, por lo que si imprimiésemos <code>d</code>, consistiría en <b >{'a': 1, 'b': 2, 'c': 3}</b>.</p> <p>La línea 3 debería mostrar un resultado, el que sea verdadero (truthy) de los tres valores unidos con el operador <code>or</code>. Veamos cada uno:</p> <p>👉 <code>list(c)</code> producirá, de hecho, la lista vacía <b>[]</b>, ya que <code>zip</code> es como un <i>generador</i>. Esto significa que <i>una vez que se atraviesa, se consume</i>. Vemos que fue recorrido por la línea 2, por lo que ya está consumido en este punto y no produce nada. Una lista vacía es falsa (falsy).</p> <p>👉 <code>d.get(1)</code> devuelve <b>None</b> ya que no hay ninguna clave denominada <code>1</code> en el diccionario <code>d</code>. El valor None es obviamente falso (falsy).</p> <p>👉 <code>a</code>, por otro lado, desencadenará el <b>NameError</b>, ya que es una <i>variable local</i> dentro del bloque compresor. <i>No existe fuera de él</i>. Esto explica el resultado obtenido, que en realidad no es una salida, sino un error de ejecución.</p> <p>¿Qué dices, acertaste con tu elección?</p> <hr> <p>Si quieres bloguear sobre contenido informático y de programación, te invito a unirte a <a href="/">Hive</a> y participar en sus comunidades, tales como <a href="/created/hive-196387">STEM-social</a>, <a href="/created/hive-154226">Develop Spanish</a>, <a href="/created/hive-169321">Programming & Dev</a> y otras.</p> </div>
author | eniolw |
---|---|
permlink | my-coding-quiz-54 |
category | hive-197685 |
json_metadata | "{"image":["https://images.ecency.com/DQmcs7RurPUE7cWWCxGjnmWmScYKixnZ8yw2b2h2zRysLwh/image.png","https://images.ecency.com/DQmWxSpoN4svYHPXTVZCqFRT1XUqa2AeqVVTKwNR5DewxVr/image.png"],"tags":["hive-197685","programming","coding","python","quiz","chess","neoxian","proofofbrain","creativecoin","waivio","spanish"],"description":"My Coding Quiz #54 Welcome to the new installment of my series of Coding Quizzes, in which you will be able to test your knowledge and skills about programming and software development in a fun way.","app":"ecency/3.1.1-vision","format":"markdown+html","image_ratios":["1.2887","1.2887"]}" |
created | 2024-03-23 21:26:51 |
last_update | 2024-03-23 21:26:51 |
depth | 0 |
children | 9 |
last_payout | 2024-03-30 21:26:51 |
cashout_time | 1969-12-31 23:59:59 |
total_payout_value | 10.176 HBD |
curator_payout_value | 10.039 HBD |
pending_payout_value | 0.000 HBD |
promoted | 0.000 HBD |
body_length | 5,407 |
author_reputation | 253,650,633,664,455 |
root_title | "My Coding Quiz #54" |
beneficiaries | [] |
max_accepted_payout | 1,000,000.000 HBD |
percent_hbd | 10,000 |
post_id | 132,280,220 |
net_rshares | 36,312,855,171,772 |
author_curate_reward | "" |
voter | weight | wgt% | rshares | pct | time |
---|---|---|---|---|---|
boatymcboatface | 0 | 156,717,580,040 | 8% | ||
drifter1 | 0 | 1,040,063,649 | 2.8% | ||
kingscrown | 0 | 10,524,766,750 | 8% | ||
kevinwong | 0 | 5,909,910,869 | 2.8% | ||
theshell | 0 | 41,930,067,642 | 8% | ||
justtryme90 | 0 | 1,358,306,947 | 70% | ||
eric-boucher | 0 | 15,157,990,480 | 2.8% | ||
juanmiguelsalas | 0 | 1,079,861,599 | 1.68% | ||
thecryptodrive | 0 | 38,850,777,094 | 1.12% | ||
kaylinart | 0 | 8,196,544,404 | 2.8% | ||
good-karma | 0 | 46,202,314,618 | 4.16% | ||
roelandp | 0 | 428,708,887,432 | 35% | ||
cloh76 | 0 | 3,925,726,770 | 2.8% | ||
nascimentoab | 0 | 568,410,258 | 2.8% | ||
arconite | 0 | 991,772,378 | 1.4% | ||
joshglen | 0 | 739,775,379 | 5.6% | ||
pipokinha | 0 | 66,054,631,249 | 100% | ||
rmach | 0 | 4,719,920,401 | 35% | ||
lemouth | 0 | 1,955,680,432,319 | 70% | ||
alaqrab | 0 | 547,899,209 | 2.8% | ||
lamouthe | 0 | 5,603,468,845 | 70% | ||
tfeldman | 0 | 5,353,344,862 | 2.8% | ||
sergiomendes | 0 | 1,572,437,416 | 2.8% | ||
metabs | 0 | 7,971,046,905 | 70% | ||
mcsvi | 0 | 116,688,268,335 | 50% | ||
lk666 | 0 | 2,049,930,606 | 2.8% | ||
cnfund | 0 | 11,887,367,419 | 5.6% | ||
boxcarblue | 0 | 12,314,660,146 | 2.8% | ||
justyy | 0 | 32,601,731,441 | 5.6% | ||
michelle.gent | 0 | 3,454,459,820 | 1.12% | ||
curie | 0 | 333,915,015,177 | 5.6% | ||
safar01 | 0 | 848,328,309 | 35.5% | ||
modernzorker | 0 | 3,830,454,825 | 3.92% | ||
techslut | 0 | 188,536,149,452 | 28% | ||
steemstem | 0 | 1,302,819,471,103 | 70% | ||
tristancarax | 0 | 694,558,745 | 2.8% | ||
esteemapp | 0 | 11,747,822,687 | 4.16% | ||
yadamaniart | 0 | 3,847,204,565 | 2.8% | ||
bigtakosensei | 0 | 1,723,615,522 | 1.4% | ||
valth | 0 | 10,525,898,785 | 35% | ||
metroair | 0 | 26,075,071,244 | 5.6% | ||
saleg25 | 0 | 556,777,807 | 2.8% | ||
driptorchpress | 0 | 2,218,469,840 | 1.4% | ||
sardrt | 0 | 1,237,057,024 | 10% | ||
dna-replication | 0 | 2,744,070,695 | 70% | ||
privex | 0 | 3,554,411,340 | 5.6% | ||
boynashruddin | 0 | 787,755,900 | 5.6% | ||
steemiteducation | 0 | 1,461,039,758 | 2.8% | ||
ganjafarmer | 0 | 2,025,752,693 | 0.84% | ||
dhimmel | 0 | 374,515,730,420 | 17.5% | ||
oluwatobiloba | 0 | 1,944,262,281 | 70% | ||
detlev | 0 | 26,300,515,444 | 1.68% | ||
chasmic-cosm | 0 | 854,958,833 | 2.8% | ||
dimarss | 0 | 4,212,894,559 | 20% | ||
dune69 | 0 | 661,631,697 | 5.6% | ||
lugaxker | 0 | 824,083,802 | 34.65% | ||
federacion45 | 0 | 8,206,188,462 | 2.8% | ||
dreamon | 0 | 698,251,044 | 22.2% | ||
amberyooper | 0 | 672,193,403 | 2.8% | ||
gamersclassified | 0 | 3,355,616,311 | 2.8% | ||
xplosive | 0 | 22,953,218,499 | 75% | ||
eliel | 0 | 14,945,022,369 | 5.6% | ||
jerrybanfield | 0 | 18,520,638,038 | 5.6% | ||
rt395 | 0 | 2,136,590,631 | 1.5% | ||
bitrocker2020 | 0 | 11,806,849,078 | 1.12% | ||
sustainablyyours | 0 | 20,352,725,073 | 35% | ||
arunava | 0 | 15,513,730,917 | 2.24% | ||
schoolforsdg4 | 0 | 1,060,796,246 | 5% | ||
samminator | 0 | 49,727,224,190 | 35% | ||
drwom | 0 | 901,555,191 | 2.08% | ||
zerotoone | 0 | 1,108,561,852 | 2.8% | ||
enjar | 0 | 45,399,779,327 | 5.04% | ||
lorenzor | 0 | 1,348,842,164 | 50% | ||
firstamendment | 0 | 90,103,667,881 | 50% | ||
aboutyourbiz | 0 | 1,027,016,583 | 5.6% | ||
derosnec | 0 | 573,020,645 | 2.8% | ||
alexander.alexis | 0 | 43,013,139,769 | 70% | ||
dandesign86 | 0 | 16,546,929,804 | 8% | ||
jayna | 0 | 8,133,205,737 | 1.12% | ||
hhayweaver | 0 | 969,181,962 | 1.4% | ||
finkistinger | 0 | 847,142,768 | 2.8% | ||
princessmewmew | 0 | 8,127,096,324 | 2.8% | ||
grapthar | 0 | 1,311,396,087 | 4.2% | ||
diabolika | 0 | 946,044,161 | 2.8% | ||
hardikv | 0 | 897,834,066 | 7.5% | ||
ufv | 0 | 3,006,808,420 | 50% | ||
gunthertopp | 0 | 73,541,211,488 | 1.4% | ||
pipiczech | 0 | 2,439,531,651 | 5.6% | ||
touchman | 0 | 175,876,445,674 | 100% | ||
empath | 0 | 4,266,247,004 | 2.8% | ||
minnowbooster | 0 | 776,673,449,110 | 20% | ||
ashokcan143 | 0 | 483,182,504 | 7.5% | ||
codingdefined | 0 | 23,083,690,376 | 7.5% | ||
howo | 0 | 2,267,594,257,466 | 70% | ||
tsoldovieri | 0 | 7,428,717,318 | 35% | ||
neumannsalva | 0 | 4,931,874,934 | 2.8% | ||
stayoutoftherz | 0 | 151,851,089,149 | 1.4% | ||
abigail-dantes | 0 | 25,950,038,435 | 70% | ||
coindevil | 0 | 2,950,779,815 | 4.48% | ||
ansoe | 0 | 868,372,376 | 2.8% | ||
zonguin | 0 | 3,775,572,155 | 17.5% | ||
mhel | 0 | 480,714,139 | 1.12% | ||
investingpennies | 0 | 18,987,591,960 | 5.6% | ||
martibis | 0 | 3,295,591,829 | 1.68% | ||
val.halla | 0 | 2,869,753,262 | 10% | ||
redrica | 0 | 2,213,626,521 | 2.8% | ||
pepskaram | 0 | 587,287,078 | 2.8% | ||
iamphysical | 0 | 1,658,466,474 | 90% | ||
dipom98 | 0 | 1,193,005,548 | 2.8% | ||
zest | 0 | 1,013,972,896 | 35% | ||
zyx066 | 0 | 2,958,344,133 | 1.68% | ||
chrisdavidphoto | 0 | 1,272,114,702 | 1.68% | ||
revo | 0 | 11,680,641,913 | 5.6% | ||
ragnarokdel | 0 | 24,675,728,049 | 100% | ||
azulear | 0 | 1,804,749,820 | 100% | ||
psicoluigi | 0 | 865,362,300 | 50% | ||
rafaelaquino | 0 | 15,705,662,214 | 100% | ||
wilians | 0 | 548,137,818 | 35% | ||
rocky1 | 0 | 837,765,326,438 | 0.84% | ||
stickchumpion | 0 | 961,328,999 | 2.8% | ||
tipu | 0 | 11,780,122,052,855 | 71% | ||
thelordsharvest | 0 | 4,162,825,867 | 5.6% | ||
aidefr | 0 | 7,530,281,089 | 35% | ||
torico | 0 | 1,506,366,375 | 1.84% | ||
therealwolf | 0 | 29,509,691,265 | 2.8% | ||
fatman | 0 | 9,052,118,146 | 2% | ||
inthenow | 0 | 21,571,349,352 | 20% | ||
minnowpowerup | 0 | 791,137,985 | 2.8% | ||
splash-of-angs63 | 0 | 11,874,889,179 | 50% | ||
cryptononymous | 0 | 1,967,979,694 | 2.8% | ||
dauerossi | 0 | 6,424,222,083 | 30% | ||
meno | 0 | 27,769,375,834 | 2.8% | ||
buttcoins | 0 | 2,312,207,685 | 1.12% | ||
bigdizzle91 | 0 | 839,662,229 | 2.8% | ||
esteem.app | 0 | 1,554,071,801 | 4.16% | ||
technicalside | 0 | 18,321,888,120 | 25% | ||
steemed-proxy | 0 | 1,088,653,914,688 | 5.6% | ||
fatkat | 0 | 1,475,608,345 | 2.79% | ||
doifeellucky | 0 | 607,303,493 | 2.8% | ||
peaceandwar | 0 | 869,976,492 | 2.8% | ||
bhoa | 0 | 1,160,161,198 | 35% | ||
enzor | 0 | 2,229,756,749 | 35% | ||
marcoriccardi | 0 | 1,026,613,571 | 5.6% | ||
bartosz546 | 0 | 38,746,160,131 | 2.8% | ||
tazbaz | 0 | 559,510,035 | 2.8% | ||
kiaazad | 0 | 43,980,705,335 | 100% | ||
dreamm | 0 | 3,188,372,662 | 50% | ||
battebilly | 0 | 694,962,359 | 2.8% | ||
caladan | 0 | 16,308,419,613 | 5.6% | ||
maverickfoo | 0 | 13,758,270,231 | 50% | ||
dejan.vuckovic | 0 | 890,727,709 | 1.12% | ||
alvinauh | 0 | 1,294,997,142 | 30% | ||
lottje | 0 | 612,414,932 | 70% | ||
myach | 0 | 989,752,355 | 4.48% | ||
inuke | 0 | 2,262,279,504 | 20% | ||
red-rose | 0 | 48,312,624,516 | 99% | ||
sunsea | 0 | 4,832,466,181 | 2.8% | ||
postpromoter | 0 | 1,682,419,494,220 | 70% | ||
mejustandrew | 0 | 835,434,112 | 2.8% | ||
bluefinstudios | 0 | 3,894,018,962 | 1.68% | ||
bobinson | 0 | 147,863,906,637 | 15% | ||
steveconnor | 0 | 4,830,681,013 | 2.8% | ||
sankysanket18 | 0 | 1,518,767,068 | 35% | ||
dbddv01 | 0 | 2,582,433,217 | 17.5% | ||
paulmoon410 | 0 | 2,877,453,741 | 10% | ||
zmx | 0 | 606,143,477 | 2.8% | ||
skippyza | 0 | 481,358,519 | 5.6% | ||
nicole-st | 0 | 930,556,473 | 2.8% | ||
smartsteem | 0 | 133,888,832,345 | 2.8% | ||
jasimg | 0 | 695,696,886 | 100% | ||
smitop | 0 | 10,955,363,966 | 100% | ||
aboutcoolscience | 0 | 365,877,903,698 | 70% | ||
vishire | 0 | 815,766,540 | 15% | ||
silenteyes | 0 | 489,284,614 | 7.5% | ||
afifa | 0 | 637,279,514 | 10% | ||
sandracarrascal | 0 | 484,122,731 | 50% | ||
skycae | 0 | 703,646,493 | 5.6% | ||
sgt-dan | 0 | 31,476,815,709 | 50% | ||
kenadis | 0 | 18,787,286,250 | 70% | ||
bebeomega | 0 | 859,526,959 | 2.8% | ||
shonyishere | 0 | 756,011,254 | 15% | ||
madridbg | 0 | 32,886,664,977 | 70% | ||
robotics101 | 0 | 21,170,853,601 | 70% | ||
marcolino76 | 0 | 647,583,137 | 2.8% | ||
onemedia | 0 | 1,176,082,728 | 5.6% | ||
lpv | 0 | 3,047,238,712 | 8.75% | ||
auleo | 0 | 493,021,467 | 0.83% | ||
ahmadmangazap | 0 | 8,458,461,322 | 2.08% | ||
apon318 | 0 | 506,775,720 | 5.6% | ||
straykat | 0 | 916,496,277 | 2.8% | ||
tomatom | 0 | 472,650,470 | 2.8% | ||
frames | 0 | 807,382,687 | 25% | ||
danaedwards | 0 | 689,206,409 | 5.6% | ||
r00sj3 | 0 | 123,894,660,648 | 35% | ||
sco | 0 | 22,316,434,240 | 70% | ||
phgnomo | 0 | 877,708,748 | 2.8% | ||
ennyta | 0 | 988,125,948 | 50% | ||
brotherhood | 0 | 12,844,412,892 | 5.6% | ||
juecoree | 0 | 10,348,911,566 | 49% | ||
carsonroscoe | 0 | 149,120,473,586 | 100% | ||
gordon92 | 0 | 874,661,267 | 2.8% | ||
stahlberg | 0 | 1,272,733,230 | 2.8% | ||
gabrielatravels | 0 | 2,346,784,025 | 1.96% | ||
cordeta | 0 | 1,044,755,413 | 5.6% | ||
reizak | 0 | 495,652,527 | 2.24% | ||
carn | 0 | 3,678,823,295 | 5.04% | ||
eliaschess333 | 0 | 16,015,929,666 | 100% | ||
branbello | 0 | 1,326,784,712 | 35% | ||
iamjadeline | 0 | 19,695,176,899 | 17% | ||
hetty-rowan | 0 | 3,321,134,081 | 2.8% | ||
ydavgonzalez | 0 | 2,104,943,496 | 10% | ||
intrepidphotos | 0 | 15,570,564,887 | 52.5% | ||
fineartnow | 0 | 4,031,167,186 | 2.8% | ||
mathowl | 0 | 43,962,309,878 | 100% | ||
bobydimitrov | 0 | 541,987,084 | 4.2% | ||
yoghurt | 0 | 844,642,642 | 5.6% | ||
steemvault | 0 | 2,274,177,948 | 5.6% | ||
steem4all | 0 | 722,547,692 | 2.8% | ||
communitybank | 0 | 3,756,087,500 | 5.6% | ||
shinedojo | 0 | 657,128,618 | 5.6% | ||
fragmentarion | 0 | 16,494,730,723 | 70% | ||
bennettitalia | 0 | 1,983,647,182 | 2.8% | ||
utube | 0 | 3,827,277,927 | 5.6% | ||
bala41288 | 0 | 540,935,415,923 | 20% | ||
jigstrike | 0 | 913,886,718 | 2.8% | ||
ahmedsy | 0 | 1,466,717,326 | 5.6% | ||
m1alsan | 0 | 2,076,472,663 | 5.6% | ||
dynamicrypto | 0 | 4,216,742,865 | 5% | ||
neneandy | 0 | 6,460,918,877 | 5.6% | ||
pab.ink | 0 | 772,601,105 | 35% | ||
marc-allaria | 0 | 3,733,947,754 | 2.8% | ||
real2josh | 0 | 661,181,182 | 35% | ||
sportscontest | 0 | 5,466,652,620 | 5.6% | ||
indiaunited | 0 | 747,240,210,439 | 15% | ||
videosteemit | 0 | 939,940,659 | 5.6% | ||
gribouille | 0 | 1,651,731,638 | 35% | ||
pandasquad | 0 | 14,932,886,384 | 5.6% | ||
tobias-g | 0 | 9,664,385,264 | 5% | ||
leoumesh | 0 | 720,039,864 | 35% | ||
chronocrypto | 0 | 1,240,106,657 | 2.8% | ||
cherryng | 0 | 486,625,936 | 0.83% | ||
kingabesh | 0 | 1,422,456,804 | 35% | ||
miguelangel2801 | 0 | 792,095,973 | 50% | ||
mproxima | 0 | 2,815,191,762 | 2.8% | ||
fantasycrypto | 0 | 1,903,038,736 | 2.8% | ||
didic | 0 | 1,915,499,468 | 2.8% | ||
careassaktart | 0 | 2,724,480,345 | 5.6% | ||
jossduarte | 0 | 757,863,753 | 2.8% | ||
emiliomoron | 0 | 6,306,086,692 | 35% | ||
galam | 0 | 968,172,865 | 35% | ||
dexterdev | 0 | 2,887,818,712 | 35% | ||
nwjordan | 0 | 835,429,925 | 5.6% | ||
photohunt | 0 | 3,696,511,739 | 5.6% | ||
geopolis | 0 | 4,683,996,982 | 70% | ||
ajfernandez | 0 | 779,093,731 | 100% | ||
robertbira | 0 | 7,583,457,039 | 17.5% | ||
atomcollector | 0 | 1,778,593,551 | 1.4% | ||
alexdory | 0 | 9,263,694,305 | 70% | ||
takowi | 0 | 1,312,620,451 | 5.6% | ||
irgendwo | 0 | 22,941,121,005 | 5.6% | ||
vegan.niinja | 0 | 509,119,657 | 2.8% | ||
cyprianj | 0 | 60,416,448,086 | 70% | ||
kieranstone | 0 | 1,668,804,440 | 1.84% | ||
bernardino | 0 | 697,042,739 | 2.8% | ||
melvin7 | 0 | 110,764,196,755 | 35% | ||
francostem | 0 | 9,754,242,673 | 70% | ||
endopediatria | 0 | 695,806,150 | 20% | ||
croctopus | 0 | 1,529,329,220 | 100% | ||
jjerryhan | 0 | 5,659,628,214 | 2.8% | ||
ayushthedreamer | 0 | 521,199,129 | 7.5% | ||
zipporah | 0 | 2,900,800,622 | 1.12% | ||
leomarylm | 0 | 2,000,175,816 | 2.8% | ||
superlotto | 0 | 13,265,511,124 | 5.6% | ||
positiveninja | 0 | 1,140,194,843 | 2.8% | ||
foxyspirit | 0 | 564,865,059 | 2.8% | ||
bscrypto | 0 | 15,025,876,550 | 2.8% | ||
vonaurolacu | 0 | 1,113,981,000 | 2.8% | ||
delpilar | 0 | 934,959,443 | 25% | ||
scottshots | 0 | 693,017,594 | 0.28% | ||
tomastonyperez | 0 | 17,021,645,988 | 50% | ||
bil.prag | 0 | 2,616,043,312 | 0.28% | ||
elvigia | 0 | 11,151,988,083 | 50% | ||
sanderjansenart | 0 | 5,788,612,184 | 2.8% | ||
vittoriozuccala | 0 | 1,347,382,731 | 2.8% | ||
laxam | 0 | 5,571,390,527 | 100% | ||
qberry | 0 | 4,018,695,882 | 2.8% | ||
frissonsteemit | 0 | 1,272,144,803 | 2.8% | ||
broncofan99 | 0 | 9,608,829,794 | 20% | ||
flyerchen | 0 | 1,293,869,049 | 2.8% | ||
melbourneswest | 0 | 4,377,053,714 | 2.8% | ||
gadrian | 0 | 536,890,032,669 | 52.5% | ||
jansher | 0 | 696,118,919 | 100% | ||
c0wtschpotato | 0 | 597,260,841 | 2.8% | ||
therising | 0 | 99,761,268,260 | 5.6% | ||
cryptocoinkb | 0 | 2,204,592,051 | 2.8% | ||
de-stem | 0 | 38,664,440,870 | 69.3% | ||
serylt | 0 | 3,236,575,900 | 68.6% | ||
me2selah | 0 | 907,301,738 | 2.8% | ||
josedelacruz | 0 | 4,915,835,902 | 50% | ||
lorenzopistolesi | 0 | 125,586,628 | 2.8% | ||
kgakakillerg | 0 | 19,474,867,429 | 10% | ||
mariusfebruary | 0 | 713,375,750 | 2.24% | ||
outtheshellvlog | 0 | 890,037,094 | 2.8% | ||
sawyn | 0 | 664,157,771 | 2.8% | ||
el-dee-are-es | 0 | 5,142,404,726 | 10% | ||
realblockchain | 0 | 6,516,130,510 | 20% | ||
erickyoussif | 0 | 809,786,476 | 100% | ||
michaelwrites | 0 | 932,338,427 | 35% | ||
indigoocean | 0 | 1,184,730,808 | 2.8% | ||
primersion | 0 | 401,191,286,777 | 20% | ||
deholt | 0 | 3,995,993,045 | 59.5% | ||
anneporter | 0 | 2,741,269,934 | 21% | ||
celinavisaez | 0 | 10,452,692,765 | 30% | ||
steem.services | 0 | 1,064,858,383 | 1.12% | ||
punkblogs | 0 | 907,842,909 | 30% | ||
bushradio | 0 | 693,257,479 | 5.6% | ||
crystalhuman | 0 | 687,927,955 | 70% | ||
pladozero | 0 | 30,042,146,362 | 10% | ||
minerthreat | 0 | 3,972,499,608 | 2.8% | ||
nateaguila | 0 | 68,131,882,255 | 5% | ||
temitayo-pelumi | 0 | 6,602,744,750 | 70% | ||
gmlgang | 0 | 476,425,927 | 88% | ||
andrick | 0 | 861,205,500 | 50% | ||
ragavee | 0 | 495,373,676 | 7.5% | ||
doctor-cog-diss | 0 | 68,116,590,800 | 70% | ||
trisolaran | 0 | 1,572,957,951 | 2.8% | ||
marcuz | 0 | 2,695,225,770 | 35% | ||
acont | 0 | 5,907,535,259 | 50% | ||
uche-nna | 0 | 7,130,535,878 | 4.48% | ||
drawmeaship | 0 | 1,298,254,739 | 50% | ||
vietthuy | 0 | 811,537,100 | 50% | ||
we-are-lucky | 0 | 246,519,190 | 0.7% | ||
cheese4ead | 0 | 4,368,183,350 | 2.8% | ||
jd4e | 0 | 3,739,870,996 | 50% | ||
apshamilton | 0 | 13,696,974,848 | 0.7% | ||
indiaunited-bot | 0 | 580,544,811 | 15% | ||
cryptojiang | 0 | 138,288,755,592 | 100% | ||
longer | 0 | 6,231,705,043 | 17.75% | ||
nattybongo | 0 | 100,428,358,545 | 70% | ||
drsensor | 0 | 1,584,417,210 | 56% | ||
revueh | 0 | 2,018,593,027 | 35% | ||
ilovecryptopl | 0 | 898,607,307 | 4.48% | ||
purelyscience | 0 | 536,710,580 | 35% | ||
bflanagin | 0 | 1,585,898,839 | 1.4% | ||
mightypanda | 0 | 1,510,225,573 | 49.7% | ||
ubaldonet | 0 | 4,360,140,576 | 100% | ||
armandosodano | 0 | 3,883,245,891 | 2.8% | ||
melor9 | 0 | 471,192,822 | 2.8% | ||
ezunjoshy | 0 | 712,744,797 | 7.5% | ||
csy | 0 | 5,891,210,968 | 2.8% | ||
marivic10 | 0 | 749,707,548 | 1.4% | ||
hamismsf | 0 | 4,464,463,843 | 0.7% | ||
gerdtrudroepke | 0 | 42,543,502,817 | 49% | ||
goblinknackers | 0 | 75,543,090,583 | 7% | ||
zuerich | 0 | 388,637,604,135 | 10% | ||
bambinaacida | 0 | 2,463,163,140 | 50% | ||
reinaseq | 0 | 7,606,438,287 | 100% | ||
vixmemon | 0 | 1,732,125,580 | 4.2% | ||
yaelg | 0 | 1,166,737,533 | 1.68% | ||
kylealex | 0 | 4,725,434,178 | 10% | ||
cubapl | 0 | 4,435,821,235 | 35% | ||
orlandogonzalez | 0 | 2,477,396,280 | 25% | ||
fran.frey | 0 | 4,190,406,738 | 50% | ||
perpetuum-lynx | 0 | 2,170,427,997 | 68.6% | ||
gamercreed | 0 | 2,510,938,745 | 5.6% | ||
thelittlebank | 0 | 14,382,715,310 | 2.8% | ||
pboulet | 0 | 146,863,977,389 | 56% | ||
javyeslava.photo | 0 | 597,012,427 | 2.24% | ||
stem-espanol | 0 | 2,645,605,020 | 100% | ||
cliffagreen | 0 | 4,992,787,615 | 10% | ||
aleestra | 0 | 14,662,599,570 | 80% | ||
rowell | 0 | 873,190,553 | 5.6% | ||
palasatenea | 0 | 3,461,924,376 | 2.8% | ||
the.success.club | 0 | 2,440,002,353 | 2.8% | ||
javier.dejuan | 0 | 520,263,312 | 70% | ||
sincensura | 0 | 1,035,312,335 | 100% | ||
meanroosterfarm | 0 | 1,406,397,357 | 35% | ||
brianoflondon | 0 | 79,896,979,989 | 1.4% | ||
giulyfarci52 | 0 | 1,712,941,309 | 50% | ||
esthersanchez | 0 | 3,983,033,447 | 60% | ||
kristall97 | 0 | 743,422,726 | 100% | ||
followjohngalt | 0 | 652,451,495 | 5.6% | ||
steemcryptosicko | 0 | 9,265,943,125 | 1.12% | ||
certain | 0 | 1,076,173,683 | 0.67% | ||
alvin0617 | 0 | 487,793,891 | 2.8% | ||
multifacetas | 0 | 1,916,721,918 | 2.8% | ||
cakemonster | 0 | 2,815,158,084 | 5.6% | ||
cowpatty | 0 | 1,475,582,305 | 35% | ||
stem.witness | 0 | 4,220,861,482 | 70% | ||
witkowskipawel | 0 | 988,591,536 | 2.8% | ||
hiddendragon | 0 | 647,543,717 | 38% | ||
pandapuzzles | 0 | 8,425,926,741 | 100% | ||
jpbliberty | 0 | 7,187,899,934 | 1.4% | ||
autobodhi | 0 | 1,042,152,192 | 5.6% | ||
mechanicalowl | 0 | 658,743,302 | 50% | ||
regularowl | 0 | 1,177,374,965 | 50% | ||
double-negative | 0 | 523,331,837 | 20% | ||
khan.dayyanz | 0 | 18,292,856,979 | 13.5% | ||
alex-hm | 0 | 496,011,746 | 21.3% | ||
zydane | 0 | 39,619,741,581 | 100% | ||
michaias | 0 | 2,102,672,091 | 75% | ||
vaultec | 0 | 562,472,029,231 | 12% | ||
steemstorage | 0 | 6,672,070,586 | 5.6% | ||
steemegg | 0 | 1,104,585,670 | 2.8% | ||
ragnarhewins90 | 0 | 475,150,919 | 10% | ||
jtm.support | 0 | 5,192,347,599 | 70% | ||
edithbdraw | 0 | 754,650,686 | 2.8% | ||
crowdwitness | 0 | 142,231,109,978 | 35% | ||
apokruphos | 0 | 378,602,060,502 | 50% | ||
hairgistix | 0 | 3,274,594,498 | 2.8% | ||
goodcontentbot | 0 | 2,805,784,747 | 50% | ||
bluemaskman | 0 | 643,421,860 | 2.8% | ||
steemean | 0 | 10,062,324,831 | 5% | ||
proxy-pal | 0 | 1,308,317,108 | 5.6% | ||
littlesorceress | 0 | 1,213,229,776 | 2.8% | ||
newton666 | 0 | 1,643,458,571 | 35% | ||
aaronkroeblinger | 0 | 110,373,984,321 | 50% | ||
projectdignity | 0 | 254,124,345 | 12.7% | ||
dawnoner | 0 | 1,867,399,752 | 0.56% | ||
memehub | 0 | 2,958,435,531 | 2.8% | ||
epicdice | 0 | 1,931,435,018 | 1.68% | ||
iamsaray | 0 | 1,523,299,007 | 2.8% | ||
robibasa | 0 | 15,363,609,459 | 10% | ||
justlee87 | 0 | 2,314,237,979 | 100% | ||
beerlover | 0 | 2,412,781,705 | 1.68% | ||
tinyhousecryptos | 0 | 472,131,930 | 5% | ||
rtron86 | 0 | 11,191,852,279 | 50% | ||
tggr | 0 | 1,366,640,260 | 2.8% | ||
aicu | 0 | 1,462,108,812 | 5.6% | ||
walterprofe | 0 | 48,833,844,379 | 35% | ||
zeruxanime | 0 | 12,942,056,693 | 35% | ||
afarina46 | 0 | 1,950,435,249 | 35% | ||
hutty | 0 | 3,657,947,561 | 100% | ||
literalypotato | 0 | 1,286,607,565 | 100% | ||
imbartley | 0 | 835,681,931 | 26.25% | ||
h-hamilton | 0 | 1,136,973,245 | 2.8% | ||
tiffin | 0 | 768,709,491 | 5.6% | ||
reggaesteem | 0 | 480,505,725 | 5% | ||
bala-ag | 0 | 111,834,515 | 20% | ||
bedazzled | 0 | 4,380,891,858 | 100% | ||
aicoding | 0 | 584,659,445 | 2.8% | ||
maciejficek | 0 | 1,457,518,523 | 100% | ||
dechuck | 0 | 15,113,171,884 | 50% | ||
knightsunited | 0 | 866,258,876 | 5.6% | ||
nazer | 0 | 2,769,148,871 | 35% | ||
kanibot | 0 | 9,517,303,251 | 20% | ||
steemstem-trig | 0 | 1,464,226,932 | 70% | ||
baltai | 0 | 6,352,978,617 | 2.8% | ||
chris-uk | 0 | 1,202,392,542 | 2.8% | ||
machan | 0 | 721,626,335 | 2.8% | ||
ibt-survival | 0 | 17,198,179,207 | 10% | ||
steemdiamond | 0 | 730,510,555 | 5.6% | ||
appics.tutorial | 0 | 38,212,310,652 | 100% | ||
zirky | 0 | 2,971,089,466 | 4.76% | ||
julesquirin | 0 | 6,239,086,378 | 14.2% | ||
davidlionfish | 0 | 18,821,985,344 | 50% | ||
andreina57 | 0 | 672,276,508 | 35% | ||
monica-ene | 0 | 6,340,060,514 | 2.8% | ||
krisconkr | 0 | 516,874,263 | 2.8% | ||
fsm-core | 0 | 12,447,137,271 | 50% | ||
stemsocial | 0 | 586,642,857,739 | 70% | ||
greenforever | 0 | 1,985,056,666 | 30% | ||
kodeblaccc | 0 | 568,504,398 | 2.8% | ||
ghastlygames | 0 | 472,077,577 | 5.6% | ||
veeart | 0 | 854,380,596 | 50% | ||
the100 | 0 | 1,377,053,512 | 2.8% | ||
hiveonboard | 0 | 1,078,422,949 | 2.8% | ||
hivelist | 0 | 2,203,897,134 | 1.68% | ||
ecency | 0 | 2,289,536,428,503 | 4.16% | ||
cybercity | 0 | 21,563,362,552 | 5.6% | ||
hive-169313 | 0 | 2,121,118,161 | 100% | ||
noelyss | 0 | 17,973,800,279 | 35% | ||
balvinder294 | 0 | 619,466,408 | 1.12% | ||
jsalvage | 0 | 1,500,879,789 | 35% | ||
quinnertronics | 0 | 8,777,492,208 | 7% | ||
anafae | 0 | 672,905,274 | 1.12% | ||
ecency.stats | 0 | 1,725,810,663 | 4.16% | ||
keco | 0 | 67,389,886,490 | 100% | ||
hivecoffee | 0 | 517,333,275 | 5.6% | ||
portsundries | 0 | 2,597,818,908 | 100% | ||
sevenoh-fiveoh | 0 | 1,064,473,439 | 2.8% | ||
visualartist | 0 | 1,032,254,551 | 2.8% | ||
altleft | 0 | 23,145,660,935 | 0.05% | ||
nickelbunker | 0 | 313,570,626,260 | 100% | ||
omarrojas | 0 | 2,115,409,150 | 2.8% | ||
noalys | 0 | 1,345,735,215 | 2.8% | ||
borniet | 0 | 1,786,823,563 | 2.8% | ||
gonklavez9 | 0 | 1,301,053,838 | 70% | ||
mireyaromero | 0 | 2,539,725,358 | 100% | ||
koshwe | 0 | 897,038,648 | 50% | ||
cosplay.hadr | 0 | 1,273,422,605 | 5.6% | ||
hadrgames | 0 | 1,312,443,915 | 5.6% | ||
yogeshbhatt | 0 | 1,719,599,174 | 15% | ||
rawecz | 0 | 631,433,460 | 5.6% | ||
maar | 0 | 667,170,753 | 70% | ||
meritocracy | 0 | 63,457,097,593 | 0.56% | ||
godfather.ftw | 0 | 10,271,125,527 | 13.5% | ||
blockbroccoli | 0 | 976,647,052 | 63.9% | ||
dcrops | 0 | 38,438,049,018 | 2.8% | ||
rondonshneezy | 0 | 517,845,365 | 2.8% | ||
guitarmcy | 0 | 1,482,488,034 | 5.6% | ||
yozen | 0 | 2,172,188,542 | 2.8% | ||
esmeesmith | 0 | 1,279,367,787 | 2.8% | ||
tawadak24 | 0 | 2,850,364,729 | 2.8% | ||
ausbit.dev | 0 | 548,882,487 | 2.8% | ||
bananass | 0 | 3,421,347,727 | 4.2% | ||
elgatoshawua | 0 | 690,027,369 | 2.8% | ||
arunbiju969 | 0 | 553,278,890 | 14% | ||
limn | 0 | 857,569,195 | 2.8% | ||
nyxlabs | 0 | 1,184,755,366 | 3.5% | ||
dodovietnam | 0 | 2,418,876,871 | 2.8% | ||
mayorkeys | 0 | 517,687,787 | 30% | ||
failingforwards | 0 | 3,330,267,003 | 2.8% | ||
drricksanchez | 0 | 15,009,952,647 | 2.8% | ||
iviaxpow3r | 0 | 625,892,599 | 5% | ||
trouvaille | 0 | 1,526,937,913 | 2.8% | ||
m0rt0nmattd | 0 | 1,325,435,084 | 100% | ||
maxelitereturned | 0 | 584,022,804 | 35% | ||
juecoree.stem | 0 | 481,076,318 | 70% | ||
trippymane | 0 | 1,793,350,706 | 5.6% | ||
ruffatotmeee | 0 | 1,243,276,751 | 2.8% | ||
nfttunz | 0 | 8,414,443,403 | 0.56% | ||
muterra | 0 | 120,424,873,797 | 15% | ||
okluvmee | 0 | 7,178,891,909 | 7.5% | ||
atexoras.pub | 0 | 1,653,429,263 | 2.8% | ||
luisestaba23 | 0 | 485,099,683 | 50% | ||
holovision.cash | 0 | 3,280,988,488 | 100% | ||
krrizjos18 | 0 | 3,078,736,662 | 35% | ||
mirteg | 0 | 739,611,050 | 5.6% | ||
disha30 | 0 | 516,638,028 | 15% | ||
magnacarta | 0 | 895,147,620 | 2.8% | ||
sarashew | 0 | 3,660,860,517 | 5.6% | ||
hukepuk | 0 | 4,457,823,113 | 100% | ||
podping | 0 | 8,528,706,973 | 1.4% | ||
davidbright | 0 | 879,417,600 | 2.8% | ||
jessicaossom | 0 | 1,162,257,035 | 2.8% | ||
drhueso | 0 | 1,420,408,670 | 2.8% | ||
kamaleshwar | 0 | 1,996,679,324 | 15% | ||
pinkfloyd878 | 0 | 4,305,377,421 | 100% | ||
mayberlys | 0 | 2,288,836,933 | 50% | ||
jaydr | 0 | 1,591,835,165 | 2.8% | ||
menzo | 0 | 996,732,104 | 7.1% | ||
mario02 | 0 | 466,879,457 | 2.8% | ||
laviesm | 0 | 6,247,295,181 | 50% | ||
kalivankush | 0 | 582,926,787 | 2.8% | ||
seinkalar | 0 | 1,860,937,550 | 5.6% | ||
tanzil2024 | 0 | 1,561,820,632 | 1% | ||
torz18 | 0 | 4,160,541,665 | 100% | ||
aries90 | 0 | 46,089,165,576 | 5.6% | ||
finch97 | 0 | 16,911,753,822 | 100% | ||
rencongland | 0 | 594,728,753 | 2.8% | ||
cugel | 0 | 1,762,005,844 | 2.8% | ||
acantoni | 0 | 798,931,302 | 2.8% | ||
gambit-x | 0 | 9,818,256,256 | 100% | ||
pogier | 0 | 4,272,261,528 | 100% | ||
blingit | 0 | 3,652,208,702 | 2.8% | ||
mcsherriff | 0 | 549,030,446 | 5.6% | ||
zirkonov | 0 | 3,640,584,289 | 90% | ||
deimage | 0 | 2,615,081,255 | 7.5% | ||
h3m4n7 | 0 | 1,081,547,527 | 2.8% | ||
jude9 | 0 | 498,979,220 | 17.5% | ||
popsfishing | 0 | 685,961,217 | 100% | ||
tanray | 0 | 1,327,765,951 | 100% | ||
mcookies | 0 | 530,361,503 | 2.8% | ||
ikill4yo0 | 0 | 11,882,724,592 | 100% | ||
waivio.curator | 0 | 1,662,381,803 | 3.18% | ||
raph1 | 0 | 3,823,371,428 | 100% | ||
ledgar | 0 | 6,149,736,671 | 100% | ||
simsahas | 0 | 6,226,921,966 | 5.6% | ||
aichanbot | 0 | 2,215,139,636 | 5.6% | ||
ehizgabriel | 0 | 689,913,659 | 35.5% | ||
noctury | 0 | 730,973,219 | 2.8% | ||
checkyzk | 0 | 23,040,844,533 | 98% | ||
deadleaf | 0 | 4,386,143,599 | 100% | ||
lichtkunstfoto | 0 | 7,505,597,559 | 5.6% | ||
netvalar | 0 | 6,126,639,393 | 50% | ||
benwickenton | 0 | 2,753,503,219 | 5.6% | ||
annabeth | 0 | 820,896,369 | 5.6% | ||
blackdaisyft | 0 | 18,910,282,815 | 50% | ||
balaz | 0 | 18,086,904,000 | 20% | ||
thorlock | 0 | 546,131,831 | 5% | ||
doodleaday | 0 | 38,171,923,577 | 50% | ||
ryosai | 0 | 4,147,377,864 | 30% | ||
blockgolem | 0 | 508,670,683 | 5.6% | ||
azj26 | 0 | 4,775,399,934 | 16% | ||
njclabaugh | 0 | 471,200,944 | 100% | ||
balabambuz | 0 | 720,614,944 | 2.8% | ||
draconiac | 0 | 470,765,313 | 100% | ||
prosocialise | 0 | 60,628,357,656 | 35% | ||
bhdc | 0 | 1,467,830,855 | 5.6% | ||
archangel21 | 0 | 14,283,623,521 | 5.6% | ||
plicc8 | 0 | 758,329,780 | 70% | ||
belug | 0 | 3,257,471,916 | 1.68% | ||
matilei | 0 | 1,339,837,239 | 5.6% | ||
filmmaking4hive | 0 | 2,272,125,416 | 5.6% | ||
amafable07 | 0 | 575,088,136 | 35% | ||
mugueto2022 | 0 | 557,363,300 | 20% | ||
ricardoeloy | 0 | 1,373,287,043 | 14% | ||
alfazmalek02 | 0 | 12,465,660,222 | 100% | ||
jaylatour | 0 | 922,052,963 | 5.6% | ||
nazom | 0 | 794,619,701 | 35% | ||
baboz | 0 | 1,514,806,776 | 1.4% | ||
soyjoselopez | 0 | 473,569,043 | 20% | ||
sbtofficial | 0 | 4,531,147,872 | 2.8% | ||
nwothini335 | 0 | 1,196,623,918 | 17.5% | ||
eunice9200 | 0 | 1,194,121,127 | 7.5% | ||
vagabond42069 | 0 | 1,504,896,723 | 35% | ||
inibless | 0 | 1,385,725,876 | 35% | ||
pentaghast | 0 | 8,662,920,792 | 50% | ||
gejami | 0 | 6,272,468,519 | 100% | ||
justfavour | 0 | 953,653,745 | 2.8% | ||
oasiskp2 | 0 | 638,517,546 | 5.6% | ||
sc000 | 0 | 1,423,795,887 | 5.6% | ||
lailalaurent | 0 | 7,506,251,003 | 100% | ||
pinkchic | 0 | 1,877,273,060 | 2.25% | ||
kittykaitlin | 0 | 7,290,596,616 | 98% | ||
vankushfamily | 0 | 672,203,583 | 35% | ||
jijisaurart | 0 | 1,608,055,792 | 2.8% | ||
clpacksperiment | 0 | 2,415,688,377 | 2.8% | ||
ambicrypto | 0 | 71,224,208,080 | 5.6% | ||
humbe | 0 | 1,534,782,002 | 1% | ||
imacryptogeek | 0 | 9,956,688,695 | 15% | ||
technico | 0 | 1,035,058,083 | 2.8% | ||
jesus-son | 0 | 1,226,938,253 | 2.8% | ||
beauty197 | 0 | 510,707,878 | 2.8% | ||
abhay2695 | 0 | 1,476,288,125 | 7.5% | ||
bemier | 0 | 1,010,547,132 | 2.8% | ||
hikergirl | 0 | 527,059,894 | 2.8% | ||
lettinggotech | 0 | 1,294,358,969 | 2.8% | ||
rhemagames | 0 | 5,285,693,752 | 2.8% | ||
soylegionario | 0 | 3,216,626,975 | 5.6% | ||
dev.maverick | 0 | 975,597,779 | 5.6% | ||
hivedrip | 0 | 1,382,155,420 | 5% | ||
actaylor | 0 | 6,473,931,874 | 80% | ||
earn.vote | 0 | 8,382,365,059 | 100% | ||
vscampbell | 0 | 536,555,646 | 50% | ||
mulik369 | 0 | 2,660,843,742 | 100% | ||
skm74 | 0 | 2,802,456,210 | 100% | ||
juniorcreed1 | 0 | 706,298,384 | 50% |
This post has been manually curated by @bhattg from Indiaunited community. Join us on our [Discord Server](https://discord.gg/bGmS2tE). Do you know that you can earn a passive income by delegating to @indiaunited. We share more than 100 % of the curation rewards with the delegators in the form of IUC tokens. HP delegators and IUC token holders also get upto 20% additional vote weight. Here are some handy links for delegations: [100HP](https://hivesigner.com/sign/delegateVestingShares?delegator=&delegatee=indiaunited&vesting_shares=173278.5722055109%20VESTS), [250HP](https://hivesigner.com/sign/delegateVestingShares?delegator=&delegatee=indiaunited&vesting_shares=433196.43051377725%20VESTS), [500HP](https://hivesigner.com/sign/delegateVestingShares?delegator=&delegatee=indiaunited&vesting_shares=866392.8610275545%20VESTS), [1000HP](https://hivesigner.com/sign/delegateVestingShares?delegator=&delegatee=indiaunited&vesting_shares=1732785.722055109%20VESTS). [](https://discord.gg/bGmS2tE) <sub>**100% of the rewards from this comment goes to the curator for their manual curation efforts. Please encourage the curator @bhattg by upvoting this comment and support the community by voting the posts made by @indiaunited.**</sub>
author | indiaunited | ||||||
---|---|---|---|---|---|---|---|
permlink | indiaunited-1711298315769 | ||||||
category | hive-197685 | ||||||
json_metadata | {"app":"hiveblog/0.1","format":"markdown","tags":["hive-197685","programming","coding","python","quiz","chess","neoxian","proofofbrain","creativecoin","waivio","spanish"]} | ||||||
created | 2024-03-24 16:38:36 | ||||||
last_update | 2024-03-24 16:38:36 | ||||||
depth | 1 | ||||||
children | 1 | ||||||
last_payout | 2024-03-31 16:38: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 | 1,327 | ||||||
author_reputation | 95,462,840,533,451 | ||||||
root_title | "My Coding Quiz #54" | ||||||
beneficiaries |
| ||||||
max_accepted_payout | 1,000,000.000 HBD | ||||||
percent_hbd | 10,000 | ||||||
post_id | 132,297,471 | ||||||
net_rshares | 22,121,414,276 | ||||||
author_curate_reward | "" |
voter | weight | wgt% | rshares | pct | time |
---|---|---|---|---|---|
eniolw | 0 | 22,121,414,276 | 100% |
Thank you!
author | eniolw |
---|---|
permlink | re-indiaunited-savfwy |
category | hive-197685 |
json_metadata | {"tags":["hive-197685"],"app":"peakd/2024.3.5"} |
created | 2024-03-24 21:34:12 |
last_update | 2024-03-24 21:34:12 |
depth | 2 |
children | 0 |
last_payout | 2024-03-31 21:34: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 | 10 |
author_reputation | 253,650,633,664,455 |
root_title | "My Coding Quiz #54" |
beneficiaries | [] |
max_accepted_payout | 1,000,000.000 HBD |
percent_hbd | 10,000 |
post_id | 132,302,988 |
net_rshares | 0 |
@tipu curate 8
author | mireyaromero |
---|---|
permlink | re-eniolw-savywb |
category | hive-197685 |
json_metadata | {"tags":["hive-197685"],"app":"peakd/2024.3.5"} |
created | 2024-03-25 04:24:06 |
last_update | 2024-03-25 04:24:06 |
depth | 1 |
children | 2 |
last_payout | 2024-04-01 04:24: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 | 14 |
author_reputation | 23,179,311,363,500 |
root_title | "My Coding Quiz #54" |
beneficiaries | [] |
max_accepted_payout | 1,000,000.000 HBD |
percent_hbd | 10,000 |
post_id | 132,309,870 |
net_rshares | 0 |
Gracias!
author | eniolw |
---|---|
permlink | re-mireyaromero-2024325t152028657z |
category | hive-197685 |
json_metadata | {"tags":["hive-197685"],"app":"ecency/3.1.1-vision","format":"markdown+html"} |
created | 2024-03-25 19:20:30 |
last_update | 2024-03-25 19:20:30 |
depth | 2 |
children | 0 |
last_payout | 2024-04-01 19:20: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 | 8 |
author_reputation | 253,650,633,664,455 |
root_title | "My Coding Quiz #54" |
beneficiaries | [] |
max_accepted_payout | 1,000,000.000 HBD |
percent_hbd | 10,000 |
post_id | 132,326,578 |
net_rshares | 2,823,152,121 |
author_curate_reward | "" |
voter | weight | wgt% | rshares | pct | time |
---|---|---|---|---|---|
mireyaromero | 0 | 2,823,152,121 | 100% |
<a href="https://tipu.online/hive_curator?mireyaromero" target="_blank">Upvoted 👌</a> (Mana: 0/71) <a href="https://peakd.com/hive/@reward.app/reward-app-quick-guide-updated" target="_blank">Liquid rewards</a>.
author | tipu |
---|---|
permlink | re-re-eniolw-savywb-20240325t042413z |
category | hive-197685 |
json_metadata | "{"app": "beem/0.24.26"}" |
created | 2024-03-25 04:24:12 |
last_update | 2024-03-25 04:24:12 |
depth | 2 |
children | 0 |
last_payout | 2024-04-01 04:24: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 | 219 |
author_reputation | 55,909,815,117,786 |
root_title | "My Coding Quiz #54" |
beneficiaries | [] |
max_accepted_payout | 1,000,000.000 HBD |
percent_hbd | 10,000 |
post_id | 132,309,872 |
net_rshares | 0 |
<div class='text-justify'> <div class='pull-left'> <img src='https://stem.openhive.network/images/stemsocialsupport7.png'> </div> Thanks for your contribution to the <a href='/trending/hive-196387'>STEMsocial community</a>. Feel free to join us on <a href='https://discord.gg/9c7pKVD'>discord</a> to get to know the rest of us! Please consider delegating to the @stemsocial account (85% of the curation rewards are returned). You may also include @stemsocial as a beneficiary of the rewards of this post to get a stronger support. <br /> <br /> </div>
author | stemsocial |
---|---|
permlink | re-eniolw-my-coding-quiz-54-20240324t211231142z |
category | hive-197685 |
json_metadata | {"app":"STEMsocial"} |
created | 2024-03-24 21:12:30 |
last_update | 2024-03-24 21:12:30 |
depth | 1 |
children | 0 |
last_payout | 2024-03-31 21:12: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 | 565 |
author_reputation | 22,905,425,648,299 |
root_title | "My Coding Quiz #54" |
beneficiaries | [] |
max_accepted_payout | 1,000,000.000 HBD |
percent_hbd | 10,000 |
post_id | 132,302,578 |
net_rshares | 0 |
Wow. This is nicee! Coding quiz. Do you Put up questions on R language?
author | yinjuolu |
---|---|
permlink | re-eniolw-sawbrl |
category | hive-197685 |
json_metadata | {"tags":["hive-197685"],"app":"peakd/2024.3.5"} |
created | 2024-03-25 09:02:09 |
last_update | 2024-03-25 09:02:09 |
depth | 1 |
children | 2 |
last_payout | 2024-04-01 09:02: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 | 71 |
author_reputation | 10,233,472,597,583 |
root_title | "My Coding Quiz #54" |
beneficiaries | [] |
max_accepted_payout | 1,000,000.000 HBD |
percent_hbd | 10,000 |
post_id | 132,313,588 |
net_rshares | 0 |
Thanks, do you have the answer to the quiz btw? Maybe I also do quizzes with R. I'll take it as a suggestion!
author | eniolw |
---|---|
permlink | re-yinjuolu-2024325t15201640z |
category | hive-197685 |
json_metadata | {"tags":["hive-197685"],"app":"ecency/3.1.1-vision","format":"markdown+html"} |
created | 2024-03-25 19:20:15 |
last_update | 2024-03-25 19:20:15 |
depth | 2 |
children | 1 |
last_payout | 2024-04-01 19:20: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 | 109 |
author_reputation | 253,650,633,664,455 |
root_title | "My Coding Quiz #54" |
beneficiaries | [] |
max_accepted_payout | 1,000,000.000 HBD |
percent_hbd | 10,000 |
post_id | 132,326,575 |
net_rshares | 0 |
No I don't, cause I am not familiar with python
author | yinjuolu |
---|---|
permlink | re-eniolw-sb1s1w |
category | hive-197685 |
json_metadata | {"tags":["hive-197685"],"app":"peakd/2024.3.6"} |
created | 2024-03-28 07:41:57 |
last_update | 2024-03-28 07:41:57 |
depth | 3 |
children | 0 |
last_payout | 2024-04-04 07: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 | 47 |
author_reputation | 10,233,472,597,583 |
root_title | "My Coding Quiz #54" |
beneficiaries | [] |
max_accepted_payout | 1,000,000.000 HBD |
percent_hbd | 10,000 |
post_id | 132,399,641 |
net_rshares | 0 |