<div class="text-justify"> <center><h2>My Coding Quiz #33 👨💻🛠️🧩</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/DQmctqHka1TBesSfQUJA6MdwAdqUDj9asTxwW7ogsWuLLTr/quiz_img_en.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-32">previous quiz</a>:</b> <b>number</b>. Line 1 creates a string that can be easily interpreted as a date.</p> <p>Then we create three variables using the powerful <i>destructuring assignment</i> feature of JavaScript with which we assign to several variables the contents of an array or object, in this case the array created by the <code>split</code> method. The variables <code>m</code>, <code>d</code> and <code>y</code> have the values <b>'11'</b>, <b>'30'</b>, <b>'2023'</b> respectively.</p> <p>We then initiate a series of nested <code>try-catch</code> clauses. One more level of nesting would make programmers like Linus Torvalds insult you, ha ha. Let's examine them more closely.</p> <p><code>console.log(typeof Float(y))</code> cannot be executed because the <code>Float</code> function or class does not exist in JavaScript in this form. Did you know that?</p> <p><code>console.log(typeof(+y))</code> does run because it is valid code. The parentheses for the <code>typeof</code> operator are unnecessary here, but they are not a syntax error. The key is that the <code>+</code> operator placed in front of a variable like this <i>will force or attempt a type conversion if the type of the variable is not numeric already</i>. As a consequence, the value of <code>y</code> will be converted to number type and we will get that as output.</p> <p><code>console.log(typeof(y))</code> would not be able to be executed in this script, but it is valid code as well.</p> <p>The crux of this quiz, therefore, is to know the potential of the <i>unary operator <code>+</code></i> to do these data type conversions. It is difficult to consider it a hack, since <a href="https://developer.mozilla.org/en-US/docs/Web/JavaScript/Reference/Operators">it is in fact the method recommended by MDN</a> and other specialized sites, which consider it the "fastest" and the "preferred" one, which in turn makes <code>ParseInt</code> and other similar conversion methods obsolete.</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 #33 👨💻🛠️🧩</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/DQmfPmn1WRUieeFesM24vHVC6HnY9Q7soEi7EXvm3KFgV2Q/quiz_img_es.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-32">quiz anterior</a>:</b> <b>number</b>. La línea 1 crea una cadena que puede interpretarse fácilmente como una fecha.</p> <p>Luego creamos tres variables usando la potente funcionalidad de asignación <i>destructuring</i> de JavaScript con la que asignamos a varias variables el contenido de un array u objeto, en este caso el array creado por el <code>split</code> método. Las variables <code>m</code>, <code>d</code> y <code>y</code> tienen los valores <b>'11'</b>, <b>'30'</b>, <b>'2023'</b> respectivamente.</p> <p>Luego iniciamos una serie de cláusulas <code>try-catch</code> anidadas. Un nivel más de anidamiento haría que programadores como Linus Torvalds te insultaran, ja, ja. Examinémoslos más de cerca.</p> <p><code>console.log(typeof Float(y))</code> no se puede ejecutar porque la función o clase <code>Float</code> no existe en JavaScript de esta manera. ¿Lo sabías?</p> <p><code>console.log(typeof(+y))</code> se ejecuta porque es un código válido. Los paréntesis para el operador <code>typeof</code> son innecesarios aquí, pero no constituyen un error de sintaxis. La clave es que el operador <code>+</code> colocado delante de una variable así <i>forzará o intentará una conversión de tipo si el tipo de la variable aún no es numérico</i>. Como consecuencia, el valor de <code>y</code> se convertirá a un tipo numérico y lo obtendremos como resultado.</p> <p><code>console.log(typeof(y))</code> no podría ejecutarse en este script, pero también es un código válido.</p> <p>El meollo de este quiz, por lo tanto, es conocer el potencial del <i>operador unario <code>+</code></i> para realizar estas conversiones de tipos de datos. Es difícil considerarlo un hack, ya que <a href="https://developer.mozilla.org/en-US/docs/Web/JavaScript/Reference/Operators">es en realidad el método recomendado por MDN</a> y otros sitios especializados, que lo consideran el "más rápido" y el "preferido", lo que a su vez hace que <code>ParseInt</code> y otros métodos de conversión similares queden obsoletos.</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-33 |
category | hive-150329 |
json_metadata | "{"image":["https://images.ecency.com/DQmctqHka1TBesSfQUJA6MdwAdqUDj9asTxwW7ogsWuLLTr/quiz_img_en.png","https://images.ecency.com/DQmfPmn1WRUieeFesM24vHVC6HnY9Q7soEi7EXvm3KFgV2Q/quiz_img_es.png"],"tags":["hive-150329","programming","coding","python","quiz","neoxian","proofofbrain","creativecoin","waivio","spanish"],"description":"My Coding Quiz #33 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.0.37-vision","format":"markdown+html","image_ratios":["0.8282","0.8282"]}" |
created | 2023-11-16 01:33:21 |
last_update | 2023-11-18 18:37:15 |
depth | 0 |
children | 6 |
last_payout | 2023-11-23 01:33:21 |
cashout_time | 1969-12-31 23:59:59 |
total_payout_value | 7.968 HBD |
curator_payout_value | 7.851 HBD |
pending_payout_value | 0.000 HBD |
promoted | 0.000 HBD |
body_length | 6,207 |
author_reputation | 253,328,400,128,603 |
root_title | "My Coding Quiz #33" |
beneficiaries | [] |
max_accepted_payout | 1,000,000.000 HBD |
percent_hbd | 10,000 |
post_id | 128,899,843 |
net_rshares | 33,744,063,725,236 |
author_curate_reward | "" |
voter | weight | wgt% | rshares | pct | time |
---|---|---|---|---|---|
boatymcboatface | 0 | 155,564,764,441 | 8% | ||
drifter1 | 0 | 1,014,270,316 | 2.8% | ||
kingscrown | 0 | 17,405,828,587 | 8% | ||
kevinwong | 0 | 2,812,466,682 | 0.42% | ||
theshell | 0 | 41,631,959,415 | 8% | ||
justtryme90 | 0 | 1,345,807,881 | 70% | ||
eric-boucher | 0 | 14,707,856,628 | 2.8% | ||
thecryptodrive | 0 | 63,034,196,414 | 1.12% | ||
roelandp | 0 | 265,271,386,686 | 35% | ||
cloh76 | 0 | 3,855,095,862 | 2.8% | ||
jza | 0 | 3,143,208,876 | 67% | ||
joshglen | 0 | 699,981,769 | 5.6% | ||
avellana | 0 | 69,759,964,789 | 80% | ||
lordvader | 0 | 31,703,137,230 | 5.6% | ||
rmach | 0 | 11,632,715,406 | 35% | ||
lemouth | 0 | 1,127,403,349,086 | 45% | ||
alaqrab | 0 | 480,700,917 | 2.8% | ||
lamouthe | 0 | 5,573,344,975 | 70% | ||
tfeldman | 0 | 5,362,926,779 | 2.8% | ||
sergiomendes | 0 | 1,302,335,437 | 2.8% | ||
metabs | 0 | 7,501,893,282 | 70% | ||
mcsvi | 0 | 116,610,034,392 | 50% | ||
lk666 | 0 | 1,812,790,673 | 2.8% | ||
cnfund | 0 | 11,190,431,834 | 5.6% | ||
justyy | 0 | 27,902,578,634 | 5.6% | ||
michelle.gent | 0 | 3,383,278,785 | 1.12% | ||
curie | 0 | 315,976,071,707 | 5.6% | ||
safar01 | 0 | 884,051,365 | 36% | ||
modernzorker | 0 | 3,560,766,007 | 3.92% | ||
techslut | 0 | 176,586,052,481 | 28% | ||
steemstem | 0 | 1,290,754,834,546 | 70% | ||
tristancarax | 0 | 683,966,797 | 2.8% | ||
edb | 0 | 5,321,305,391 | 7% | ||
bigtakosensei | 0 | 1,628,326,174 | 1.4% | ||
walterjay | 0 | 445,372,918,865 | 35% | ||
metroair | 0 | 21,430,798,878 | 5.6% | ||
driptorchpress | 0 | 2,161,682,605 | 1.4% | ||
dna-replication | 0 | 2,744,070,695 | 70% | ||
boynashruddin | 0 | 678,022,920 | 5.6% | ||
dhimmel | 0 | 366,742,151,767 | 17.5% | ||
oluwatobiloba | 0 | 2,522,435,650 | 70% | ||
detlev | 0 | 12,355,691,312 | 1.68% | ||
chasmic-cosm | 0 | 844,168,995 | 2.8% | ||
lizanomadsoul | 0 | 4,621,345,084 | 2% | ||
dune69 | 0 | 495,206,158 | 5.6% | ||
lugaxker | 0 | 823,566,558 | 34.65% | ||
federacion45 | 0 | 8,296,927,431 | 2.8% | ||
amberyooper | 0 | 627,317,727 | 2.8% | ||
gamersclassified | 0 | 4,419,052,423 | 2.8% | ||
iansart | 0 | 5,273,757,548 | 2.8% | ||
forykw | 0 | 12,841,888,716 | 2.8% | ||
mobbs | 0 | 102,519,178,259 | 35% | ||
jerrybanfield | 0 | 17,315,068,702 | 5.6% | ||
rt395 | 0 | 2,022,879,785 | 1.5% | ||
bitrocker2020 | 0 | 8,893,306,638 | 0.84% | ||
maxdevalue | 0 | 698,527,634 | 5.6% | ||
sustainablyyours | 0 | 23,888,184,281 | 35% | ||
erick1 | 0 | 36,669,367,479 | 80% | ||
helo | 0 | 3,279,601,089 | 35% | ||
arunava | 0 | 19,479,282,474 | 2.24% | ||
samminator | 0 | 41,398,570,528 | 35% | ||
zerotoone | 0 | 1,095,027,787 | 2.8% | ||
enjar | 0 | 42,712,822,995 | 5.04% | ||
lorenzor | 0 | 1,356,782,769 | 50% | ||
firstamendment | 0 | 87,717,297,293 | 50% | ||
aboutyourbiz | 0 | 883,795,590 | 5.6% | ||
derosnec | 0 | 573,020,645 | 2.8% | ||
alexander.alexis | 0 | 43,013,139,769 | 70% | ||
dandesign86 | 0 | 16,036,903,600 | 8% | ||
jayna | 0 | 7,798,394,315 | 1.12% | ||
deanlogic | 0 | 1,423,405,701 | 2.8% | ||
hhayweaver | 0 | 1,034,084,062 | 1.4% | ||
princessmewmew | 0 | 7,598,333,846 | 2.8% | ||
diabolika | 0 | 804,778,462 | 2.8% | ||
zacherybinx | 0 | 945,344,934 | 5.6% | ||
pipiczech | 0 | 2,281,124,091 | 5.6% | ||
touchman | 0 | 175,941,717,493 | 100% | ||
empath | 0 | 4,142,889,517 | 2.8% | ||
minnowbooster | 0 | 1,074,169,867,692 | 20% | ||
lenasveganliving | 0 | 762,843,578 | 2.8% | ||
felt.buzz | 0 | 10,245,636,681 | 1.4% | ||
howo | 0 | 2,229,120,700,313 | 70% | ||
tsoldovieri | 0 | 7,403,267,233 | 35% | ||
steemwizards | 0 | 3,821,119,439 | 5.6% | ||
neumannsalva | 0 | 4,518,526,772 | 2.8% | ||
stayoutoftherz | 0 | 160,678,123,359 | 1.4% | ||
abigail-dantes | 0 | 25,950,038,435 | 70% | ||
coindevil | 0 | 2,717,551,223 | 4.48% | ||
zonguin | 0 | 3,754,681,233 | 17.5% | ||
enfocate | 0 | 3,803,493,429 | 24% | ||
investingpennies | 0 | 20,720,185,508 | 5.6% | ||
khalil319 | 0 | 2,320,323,185 | 10% | ||
martibis | 0 | 1,543,057,828 | 1.68% | ||
redrica | 0 | 2,031,826,358 | 2.8% | ||
pepskaram | 0 | 578,602,449 | 2.8% | ||
iamphysical | 0 | 741,807,389 | 90% | ||
dipom98 | 0 | 1,188,902,213 | 2.8% | ||
zest | 0 | 1,006,717,867 | 35% | ||
aaronleang | 0 | 9,144,325,172 | 20% | ||
zyx066 | 0 | 4,497,499,541 | 1.68% | ||
chrisdavidphoto | 0 | 1,095,913,079 | 1.68% | ||
revo | 0 | 10,739,805,495 | 5.6% | ||
htotoo | 0 | 3,343,240,824 | 100% | ||
azulear | 0 | 1,232,417,092 | 100% | ||
psicoluigi | 0 | 779,347,577 | 50% | ||
nerdnews | 0 | 813,986,327 | 5.6% | ||
risckylu | 0 | 1,465,805,623 | 24% | ||
rafaelaquino | 0 | 18,516,838,238 | 100% | ||
wilians | 0 | 548,137,818 | 35% | ||
stickchumpion | 0 | 860,394,389 | 2.8% | ||
pele23 | 0 | 177,975,471,015 | 23% | ||
tipu | 0 | 14,097,420,726,838 | 72% | ||
thelordsharvest | 0 | 4,960,403,822 | 5.6% | ||
aidefr | 0 | 7,313,632,828 | 35% | ||
torico | 0 | 1,501,654,202 | 1.84% | ||
sorin.cristescu | 0 | 179,052,851,612 | 35% | ||
therealwolf | 0 | 32,067,002,423 | 2.8% | ||
inthenow | 0 | 20,347,406,374 | 20% | ||
minnowpowerup | 0 | 750,238,334 | 2.8% | ||
yangyanje | 0 | 549,493,489 | 1.4% | ||
splash-of-angs63 | 0 | 7,792,767,796 | 60% | ||
cryptononymous | 0 | 1,918,034,590 | 2.8% | ||
meno | 0 | 25,381,346,342 | 2.8% | ||
buttcoins | 0 | 15,343,738,811 | 1.12% | ||
helyorsini | 0 | 605,958,375 | 2.8% | ||
steemed-proxy | 0 | 946,240,310,694 | 5.6% | ||
fatkat | 0 | 1,431,687,028 | 2.79% | ||
peaceandwar | 0 | 859,046,353 | 2.8% | ||
enzor | 0 | 1,963,050,487 | 35% | ||
marcoriccardi | 0 | 945,238,893 | 5.6% | ||
bartosz546 | 0 | 14,462,080,770 | 2.8% | ||
tazbaz | 0 | 548,029,995 | 2.8% | ||
marleyn | 0 | 7,054,793,466 | 24% | ||
dandays | 0 | 17,234,354,425 | 1.06% | ||
battebilly | 0 | 733,703,793 | 2.8% | ||
notb4mycoffee | 0 | 2,964,002,023 | 5.6% | ||
silverwhale | 0 | 1,229,827,424 | 5.04% | ||
caladan | 0 | 860,423,170 | 5.6% | ||
dejan.vuckovic | 0 | 743,880,236 | 1.12% | ||
lottje | 0 | 612,414,932 | 70% | ||
myach | 0 | 890,146,651 | 4.48% | ||
sunsea | 0 | 4,327,777,515 | 2.8% | ||
eonwarped | 0 | 450,660,875,819 | 30% | ||
postpromoter | 0 | 1,614,059,435,814 | 70% | ||
mejustandrew | 0 | 1,003,501,415 | 2.8% | ||
bluefinstudios | 0 | 3,886,958,031 | 1.68% | ||
steveconnor | 0 | 4,746,967,297 | 2.8% | ||
sankysanket18 | 0 | 1,673,525,677 | 35% | ||
afzalqamar | 0 | 2,224,973,261 | 36% | ||
dbddv01 | 0 | 2,571,128,111 | 17.5% | ||
zmx | 0 | 570,860,758 | 2.8% | ||
nicole-st | 0 | 1,023,277,628 | 2.8% | ||
smartsteem | 0 | 135,402,839,506 | 2.8% | ||
jasimg | 0 | 695,468,536 | 100% | ||
aboutcoolscience | 0 | 4,582,316,227 | 70% | ||
elisonr13 | 0 | 2,720,918,333 | 12% | ||
popurri | 0 | 974,563,328 | 36% | ||
amestyj | 0 | 107,489,087,774 | 100% | ||
sandracarrascal | 0 | 497,298,168 | 50% | ||
skycae | 0 | 702,154,016 | 5.6% | ||
kenadis | 0 | 17,641,330,159 | 70% | ||
madridbg | 0 | 33,103,877,295 | 70% | ||
robotics101 | 0 | 21,185,307,240 | 70% | ||
marcolino76 | 0 | 586,075,188 | 2.8% | ||
onemedia | 0 | 1,148,881,091 | 5.6% | ||
lpv | 0 | 3,047,238,712 | 8.75% | ||
punchline | 0 | 13,666,479,928 | 5.6% | ||
straykat | 0 | 857,698,546 | 2.8% | ||
tomatom | 0 | 479,021,372 | 2.8% | ||
adelepazani | 0 | 1,396,986,426 | 1.12% | ||
danaedwards | 0 | 600,052,480 | 5.6% | ||
r00sj3 | 0 | 119,380,801,277 | 35% | ||
sco | 0 | 19,721,509,640 | 70% | ||
ennyta | 0 | 982,807,943 | 50% | ||
juecoree | 0 | 12,037,685,343 | 49% | ||
gordon92 | 0 | 850,160,283 | 2.8% | ||
stahlberg | 0 | 1,257,120,788 | 2.8% | ||
gabrielatravels | 0 | 1,819,439,544 | 1.96% | ||
cordeta | 0 | 1,017,753,818 | 5.6% | ||
reizak | 0 | 493,003,847 | 2.24% | ||
carn | 0 | 3,568,772,459 | 5.04% | ||
eliaschess333 | 0 | 55,795,832,828 | 100% | ||
branbello | 0 | 2,370,358,440 | 35% | ||
hetty-rowan | 0 | 2,742,785,875 | 2.8% | ||
ydavgonzalez | 0 | 2,210,465,566 | 10% | ||
intrepidphotos | 0 | 15,694,347,994 | 52.5% | ||
fineartnow | 0 | 3,956,215,952 | 2.8% | ||
mathowl | 0 | 46,552,227,433 | 100% | ||
yoghurt | 0 | 1,111,129,662 | 5.6% | ||
steemvault | 0 | 2,199,106,750 | 5.6% | ||
steem4all | 0 | 1,189,400,300 | 2.8% | ||
shinedojo | 0 | 581,153,111 | 5.6% | ||
fragmentarion | 0 | 40,557,713,882 | 70% | ||
bennettitalia | 0 | 1,923,895,065 | 2.8% | ||
utube | 0 | 4,730,954,859 | 5.6% | ||
jigstrike | 0 | 865,206,586 | 2.8% | ||
manncpt | 0 | 3,249,565,871 | 2% | ||
m1alsan | 0 | 1,179,955,030 | 5.6% | ||
dynamicrypto | 0 | 2,545,130,624 | 1% | ||
neneandy | 0 | 6,423,211,781 | 5.6% | ||
pab.ink | 0 | 755,300,076 | 35% | ||
marc-allaria | 0 | 4,282,379,897 | 2.8% | ||
jnmarteau | 0 | 762,125,229 | 2% | ||
real2josh | 0 | 661,181,182 | 35% | ||
sportscontest | 0 | 5,859,753,171 | 5.6% | ||
videosteemit | 0 | 1,240,937,532 | 5.6% | ||
gribouille | 0 | 3,382,452,485 | 70% | ||
pandasquad | 0 | 12,675,849,262 | 5.6% | ||
shaidon | 0 | 165,932,350,201 | 100% | ||
kingabesh | 0 | 1,419,237,358 | 35% | ||
miguelangel2801 | 0 | 796,864,349 | 50% | ||
mproxima | 0 | 2,474,521,819 | 2.8% | ||
fantasycrypto | 0 | 4,561,451,305 | 5.6% | ||
didic | 0 | 1,892,015,196 | 2.8% | ||
careassaktart | 0 | 698,084,116 | 1.68% | ||
franciscomarval | 0 | 979,398,626 | 100% | ||
felixgarciap | 0 | 854,465,882 | 2.8% | ||
emiliomoron | 0 | 10,542,897,454 | 35% | ||
galam | 0 | 662,721,006 | 24.5% | ||
dexterdev | 0 | 2,887,818,712 | 35% | ||
nwjordan | 0 | 833,202,013 | 5.6% | ||
photohunt | 0 | 3,909,530,717 | 5.6% | ||
geopolis | 0 | 4,683,996,982 | 70% | ||
ajfernandez | 0 | 770,623,089 | 100% | ||
robertbira | 0 | 7,583,457,039 | 17.5% | ||
alexdory | 0 | 8,488,450,481 | 70% | ||
takowi | 0 | 109,160,785,699 | 5.6% | ||
sargewhale | 0 | 836,736,942 | 100% | ||
irgendwo | 0 | 18,930,920,472 | 5.6% | ||
vegan.niinja | 0 | 502,800,854 | 2.8% | ||
flugschwein | 0 | 15,061,910,180 | 59.5% | ||
charitybot | 0 | 5,124,966,680 | 100% | ||
cyprianj | 0 | 37,993,286,740 | 35% | ||
kieranstone | 0 | 1,657,154,036 | 1.84% | ||
francostem | 0 | 9,754,242,673 | 70% | ||
endopediatria | 0 | 695,806,150 | 20% | ||
steempampanga | 0 | 502,664,712 | 2.8% | ||
croctopus | 0 | 1,462,992,234 | 100% | ||
jjerryhan | 0 | 4,833,985,753 | 2.8% | ||
putu300 | 0 | 682,712,513 | 5% | ||
zipporah | 0 | 2,754,096,232 | 1.12% | ||
leomarylm | 0 | 1,870,851,022 | 2.8% | ||
randumb | 0 | 828,005,245 | 5.6% | ||
superlotto | 0 | 16,009,436,115 | 5.6% | ||
positiveninja | 0 | 1,110,456,379 | 2.8% | ||
oadissin | 0 | 21,090,387,234 | 12% | ||
emperatriz1503 | 0 | 9,311,166,476 | 100% | ||
miroslavrc | 0 | 1,269,162,097 | 1.4% | ||
jorgebgt | 0 | 2,168,733,789 | 100% | ||
foxyspirit | 0 | 554,785,391 | 2.8% | ||
bscrypto | 0 | 14,544,901,465 | 2.8% | ||
vonaurolacu | 0 | 1,697,202,211 | 2.8% | ||
movingman | 0 | 516,888,934 | 20% | ||
delpilar | 0 | 934,959,443 | 25% | ||
scottshots | 0 | 546,526,162 | 0.28% | ||
tomastonyperez | 0 | 17,118,554,130 | 50% | ||
rodrigocassio | 0 | 891,739,080 | 100% | ||
bil.prag | 0 | 2,517,869,851 | 0.28% | ||
silviomangum29 | 0 | 891,708,099 | 100% | ||
elvigia | 0 | 11,130,363,244 | 50% | ||
sanderjansenart | 0 | 5,087,982,312 | 2.8% | ||
viagens | 0 | 894,122,165 | 100% | ||
vittoriozuccala | 0 | 2,068,065,569 | 2.8% | ||
qberry | 0 | 3,851,582,010 | 2.8% | ||
frissonsteemit | 0 | 1,240,080,277 | 2.8% | ||
rambutan.art | 0 | 1,556,180,055 | 5.6% | ||
greddyforce | 0 | 4,002,512,195 | 2.07% | ||
flyerchen | 0 | 1,285,614,181 | 2.8% | ||
juanmanuellopez1 | 0 | 749,932,971 | 19.2% | ||
braaiboy | 0 | 10,747,342,354 | 2.8% | ||
c0wtschpotato | 0 | 575,082,114 | 2.8% | ||
fotogruppemunich | 0 | 4,468,865,091 | 1.4% | ||
jordangerder | 0 | 3,627,981,211 | 12% | ||
cryptocoinkb | 0 | 2,161,849,919 | 2.8% | ||
de-stem | 0 | 38,664,440,870 | 69.3% | ||
imcore | 0 | 863,747,922 | 10% | ||
serylt | 0 | 3,236,575,900 | 68.6% | ||
josedelacruz | 0 | 4,874,706,091 | 50% | ||
dracrow | 0 | 2,796,735,167 | 9.6% | ||
achimmertens | 0 | 17,060,737,246 | 2.8% | ||
quochuy | 0 | 355,750,913,059 | 5.93% | ||
charitymemes | 0 | 534,023,042 | 100% | ||
mariusfebruary | 0 | 653,690,393 | 2.24% | ||
outtheshellvlog | 0 | 869,757,959 | 2.8% | ||
sawyn | 0 | 664,157,771 | 2.8% | ||
steemitbloggers | 0 | 10,976,742,739 | 25% | ||
el-dee-are-es | 0 | 5,961,704,566 | 10% | ||
erickyoussif | 0 | 610,761,782 | 100% | ||
michaelwrites | 0 | 932,338,427 | 35% | ||
indigoocean | 0 | 1,178,041,939 | 2.8% | ||
deholt | 0 | 4,050,145,444 | 59.5% | ||
anneporter | 0 | 2,741,269,934 | 21% | ||
jancharlest | 0 | 1,890,761,683 | 36% | ||
celinavisaez | 0 | 10,163,058,727 | 30% | ||
eleazarvo | 0 | 806,033,716 | 2.4% | ||
steem.services | 0 | 1,055,640,522 | 1.12% | ||
crystalhuman | 0 | 688,036,310 | 70% | ||
minerthreat | 0 | 3,309,453,283 | 2.8% | ||
nateaguila | 0 | 81,707,751,561 | 5% | ||
crypticat | 0 | 2,755,110,870 | 0.8% | ||
temitayo-pelumi | 0 | 6,037,002,128 | 70% | ||
andrick | 0 | 866,365,209 | 50% | ||
doctor-cog-diss | 0 | 60,216,235,757 | 70% | ||
marcuz | 0 | 2,396,916,986 | 35% | ||
uche-nna | 0 | 5,854,966,203 | 4.48% | ||
lauril | 0 | 470,615,998 | 100% | ||
cheese4ead | 0 | 4,364,896,690 | 2.8% | ||
jd4e | 0 | 3,739,870,996 | 50% | ||
mafufuma | 0 | 7,443,468,329 | 1% | ||
apshamilton | 0 | 14,176,469,739 | 0.7% | ||
longer | 0 | 6,319,345,174 | 18% | ||
nathyortiz | 0 | 1,217,683,200 | 2.8% | ||
nattybongo | 0 | 107,399,303,456 | 70% | ||
drsensor | 0 | 993,726,659 | 36% | ||
roozeec | 0 | 498,159,066 | 10% | ||
revueh | 0 | 1,958,108,375 | 35% | ||
radiosteemit | 0 | 18,480,940,692 | 100% | ||
ilovecryptopl | 0 | 828,408,798 | 4.48% | ||
purelyscience | 0 | 536,710,580 | 35% | ||
bflanagin | 0 | 2,346,801,652 | 1.4% | ||
mightypanda | 0 | 1,665,209,883 | 50.4% | ||
ubaldonet | 0 | 2,365,322,309 | 80% | ||
armandosodano | 0 | 3,228,684,170 | 2.8% | ||
sadbear | 0 | 477,478,264 | 2.8% | ||
hamismsf | 0 | 4,548,563,649 | 0.7% | ||
gerdtrudroepke | 0 | 17,154,092,158 | 20% | ||
goblinknackers | 0 | 73,560,620,095 | 7% | ||
thales7 | 0 | 628,879,738 | 5.6% | ||
smartvote | 0 | 76,443,929,249 | 3.3% | ||
zuerich | 0 | 412,793,603,564 | 10% | ||
anttn | 0 | 21,333,519,066 | 2.8% | ||
reinaseq | 0 | 7,383,991,694 | 100% | ||
vixmemon | 0 | 1,605,540,239 | 4.2% | ||
honeycup-waters | 0 | 612,499,056 | 2.8% | ||
yaelg | 0 | 1,187,249,835 | 1.68% | ||
kylealex | 0 | 4,537,018,397 | 10% | ||
arzkyu97 | 0 | 2,770,919,564 | 9.6% | ||
fran.frey | 0 | 4,214,477,344 | 50% | ||
perpetuum-lynx | 0 | 2,167,175,098 | 68.6% | ||
andreasalas | 0 | 434,854,505 | 24% | ||
petrarodriguez | 0 | 156,361,268,171 | 24% | ||
thelittlebank | 0 | 19,548,636,930 | 2.8% | ||
pboulet | 0 | 151,917,429,576 | 56% | ||
javyeslava.photo | 0 | 594,742,348 | 2.24% | ||
belkisa758 | 0 | 1,265,480,663 | 24% | ||
josesalazar200 | 0 | 491,884,531 | 5.6% | ||
stem-espanol | 0 | 14,687,910,577 | 100% | ||
futurekr | 0 | 1,250,884,136 | 100% | ||
cliffagreen | 0 | 4,755,186,953 | 10% | ||
aleestra | 0 | 12,638,761,078 | 80% | ||
palasatenea | 0 | 3,120,326,798 | 2.8% | ||
lagitana | 0 | 4,301,016,479 | 80% | ||
pocketjs | 0 | 83,199,186 | 5.93% | ||
the.success.club | 0 | 2,350,353,303 | 2.8% | ||
javier.dejuan | 0 | 515,299,364 | 70% | ||
naty16 | 0 | 1,038,518,121 | 2% | ||
meanroosterfarm | 0 | 1,405,483,264 | 35% | ||
racarjoal | 0 | 591,947,207 | 12% | ||
rosauradels | 0 | 636,802,345 | 100% | ||
janettyanez | 0 | 491,297,853 | 4.8% | ||
brianoflondon | 0 | 79,741,203,327 | 1.4% | ||
giulyfarci52 | 0 | 1,722,948,742 | 50% | ||
maryelin | 0 | 547,548,461 | 12% | ||
followjohngalt | 0 | 810,304,904 | 5.6% | ||
steemcryptosicko | 0 | 9,173,416,629 | 1.12% | ||
alvin0617 | 0 | 485,411,542 | 2.8% | ||
multifacetas | 0 | 1,479,820,577 | 2.8% | ||
cakemonster | 0 | 3,548,852,778 | 5.6% | ||
cowpatty | 0 | 1,458,785,457 | 35% | ||
stem.witness | 0 | 4,220,861,482 | 70% | ||
witkowskipawel | 0 | 965,081,265 | 2.8% | ||
hiddendragon | 0 | 638,064,742 | 38% | ||
unitqm | 0 | 444,989,207 | 2.8% | ||
jpbliberty | 0 | 8,150,545,381 | 1.4% | ||
autobodhi | 0 | 998,217,249 | 5.6% | ||
mechanicalowl | 0 | 658,743,302 | 50% | ||
regularowl | 0 | 1,177,061,627 | 50% | ||
morarnagringa | 0 | 1,228,900,280 | 100% | ||
double-negative | 0 | 520,313,302 | 20% | ||
alex-hm | 0 | 504,537,473 | 21.6% | ||
vaultec | 0 | 6,331,806,754 | 12% | ||
steemstorage | 0 | 7,087,313,937 | 5.6% | ||
jtm.support | 0 | 5,145,782,392 | 70% | ||
edithbdraw | 0 | 746,645,822 | 2.8% | ||
crowdwitness | 0 | 185,551,421,242 | 35% | ||
synergized | 0 | 7,340,144,696 | 35% | ||
hairgistix | 0 | 3,188,402,835 | 2.8% | ||
mia-cc | 0 | 9,392,424,895 | 72% | ||
bluemaskman | 0 | 608,856,931 | 2.8% | ||
steemean | 0 | 9,888,779,048 | 5% | ||
proxy-pal | 0 | 1,115,508,325 | 5.6% | ||
cryptofiloz | 0 | 8,923,447,824 | 5.6% | ||
kryptogames | 0 | 187,088,400,855 | 72% | ||
dawnoner | 0 | 1,995,147,405 | 0.56% | ||
photographercr | 0 | 2,686,574,750 | 1.12% | ||
epicdice | 0 | 937,488,405 | 0.84% | ||
yiobri | 0 | 625,597,620 | 12% | ||
iamsaray | 0 | 1,281,290,671 | 2.8% | ||
yonnathang | 0 | 15,482,449,811 | 24% | ||
robibasa | 0 | 17,393,667,182 | 10% | ||
beerlover | 0 | 2,640,956,282 | 1.68% | ||
eliezerfloyd | 0 | 11,623,600,284 | 19.2% | ||
tinyhousecryptos | 0 | 475,308,910 | 5% | ||
victartex | 0 | 1,653,489,674 | 24% | ||
lmvc | 0 | 1,497,270,662 | 64% | ||
rtron86 | 0 | 6,181,307,426 | 50% | ||
tggr | 0 | 1,321,070,502 | 2.8% | ||
quintaesencia | 0 | 83,209,004,074 | 100% | ||
aicu | 0 | 1,220,978,069 | 5.6% | ||
walterprofe | 0 | 44,235,560,869 | 35% | ||
zeruxanime | 0 | 12,985,308,445 | 35% | ||
afarina46 | 0 | 1,950,435,249 | 35% | ||
cryptogambit | 0 | 1,444,869,138 | 7.5% | ||
spinvest | 0 | 973,697,179 | 1.12% | ||
lfu-radio | 0 | 1,150,153,610 | 50% | ||
mind.force | 0 | 1,217,813,040 | 1.4% | ||
h-hamilton | 0 | 1,074,725,551 | 2.8% | ||
tiffin | 0 | 768,570,584 | 5.6% | ||
reggaesteem | 0 | 475,775,638 | 5% | ||
aicoding | 0 | 571,541,196 | 2.8% | ||
capp | 0 | 11,173,523,150 | 50% | ||
knightsunited | 0 | 977,588,019 | 5.6% | ||
javikun | 0 | 723,880,983 | 24% | ||
nazer | 0 | 2,736,729,801 | 35% | ||
lmvc-spaco | 0 | 816,485,279 | 64% | ||
saravm82 | 0 | 3,268,586,503 | 24% | ||
bcm | 0 | 6,554,358,561 | 54% | ||
steemstem-trig | 0 | 1,464,226,932 | 70% | ||
hispapro | 0 | 452,722,552,919 | 24% | ||
baltai | 0 | 5,780,774,287 | 2.8% | ||
dappstats | 0 | 4,652,632,247 | 15% | ||
machan | 0 | 704,209,734 | 2.8% | ||
ibt-survival | 0 | 36,811,663,438 | 10% | ||
hjmarseille | 0 | 2,077,702,102 | 49% | ||
steemdiamond | 0 | 707,436,440 | 5.6% | ||
sweetval | 0 | 13,786,428,108 | 50% | ||
nanyuris | 0 | 9,592,386,833 | 100% | ||
curacer | 0 | 3,465,729,828 | 50% | ||
zirky | 0 | 2,661,968,741 | 4.76% | ||
gloriaolar | 0 | 2,352,806,928 | 1.68% | ||
manic.calm | 0 | 11,121,129,929 | 100% | ||
lightpaintershub | 0 | 664,412,387 | 1% | ||
julesquirin | 0 | 5,243,330,404 | 14.4% | ||
davidlionfish | 0 | 13,862,775,932 | 50% | ||
peterale | 0 | 978,299,446 | 2.8% | ||
cornavirus | 0 | 514,939,917 | 5.6% | ||
andreina57 | 0 | 665,928,224 | 35% | ||
krisconkr | 0 | 572,151,655 | 2.8% | ||
hivebuzz | 0 | 9,342,088,921 | 2% | ||
educationhive | 0 | 379,037,783 | 2.8% | ||
radiohive | 0 | 33,919,140,968 | 100% | ||
stemsocial | 0 | 579,463,488,756 | 70% | ||
hydrodino | 0 | 475,765,524 | 100% | ||
coronadino | 0 | 475,582,663 | 100% | ||
peterpanpan | 0 | 742,964,090 | 1.12% | ||
the100 | 0 | 1,332,440,741 | 2.8% | ||
hiveonboard | 0 | 707,978,843 | 2.8% | ||
graciadegenios | 0 | 2,904,718,120 | 24% | ||
georgelys | 0 | 2,986,013,963 | 24% | ||
kvfm | 0 | 2,139,686,774 | 50% | ||
lqch | 0 | 160,335,969,304 | 12% | ||
noelyss | 0 | 19,794,847,606 | 35% | ||
jsalvage | 0 | 2,001,561,744 | 35% | ||
laradio | 0 | 4,753,224,475 | 100% | ||
mercmarg | 0 | 7,366,719,521 | 40% | ||
adolfom | 0 | 12,570,465,080 | 100% | ||
quinnertronics | 0 | 14,294,789,998 | 7% | ||
anafae | 0 | 609,308,237 | 1.12% | ||
carmenm20 | 0 | 3,068,296,219 | 100% | ||
hivecoffee | 0 | 578,694,935 | 5.6% | ||
mercurial9 | 0 | 61,006,425,273 | 100% | ||
portsundries | 0 | 2,574,812,185 | 100% | ||
rafabvr | 0 | 497,860,280 | 100% | ||
aabcent | 0 | 4,839,459,178 | 4.48% | ||
edfer18 | 0 | 1,823,886,236 | 24% | ||
altleft | 0 | 23,134,527,996 | 0.05% | ||
cleydimar2000 | 0 | 9,318,217,543 | 50% | ||
noalys | 0 | 980,206,169 | 2.8% | ||
enyusael | 0 | 908,275,025 | 12% | ||
evagavilan2 | 0 | 1,436,547,385 | 2.8% | ||
jesuspsoto | 0 | 1,925,038,977 | 24% | ||
radiolovers | 0 | 19,010,324,693 | 100% | ||
ciresophen | 0 | 4,402,033,948 | 100% | ||
hive-144994 | 0 | 478,788,610 | 100% | ||
alberto0607 | 0 | 763,634,732 | 100% | ||
apeboy | 0 | 932,725,111 | 12% | ||
cosplay.hadr | 0 | 1,155,232,991 | 5.6% | ||
hadrgames | 0 | 1,191,264,962 | 5.6% | ||
rawecz | 0 | 768,137,117 | 5.6% | ||
junydoble | 0 | 1,813,674,067 | 70% | ||
maar | 0 | 667,170,753 | 70% | ||
victor816 | 0 | 954,019,648 | 100% | ||
hansvonkatte | 0 | 398,461,446 | 100% | ||
meritocracy | 0 | 63,113,430,141 | 0.56% | ||
bea23 | 0 | 23,469,497,525 | 100% | ||
hispaplus | 0 | 1,510,270,402 | 24% | ||
jesustiano | 0 | 4,441,951,582 | 19.2% | ||
blockbroccoli | 0 | 1,076,658,918 | 64.8% | ||
dcrops | 0 | 35,191,801,610 | 2.8% | ||
rondonshneezy | 0 | 508,545,132 | 2.8% | ||
ciudadcreativa | 0 | 3,720,991,146 | 80% | ||
traderhive | 0 | 12,623,678,846 | 5.6% | ||
alvarezjessica | 0 | 3,735,884,890 | 24% | ||
tawadak24 | 0 | 601,166,201 | 2.8% | ||
ausbit.dev | 0 | 533,032,747 | 2.8% | ||
elgatoshawua | 0 | 669,090,918 | 2.8% | ||
limn | 0 | 793,878,912 | 2.8% | ||
wynella | 0 | 1,106,906,384 | 2.8% | ||
nyxlabs | 0 | 1,058,431,250 | 3.5% | ||
dodovietnam | 0 | 4,038,028,529 | 2.8% | ||
oahb132 | 0 | 1,039,186,915 | 35% | ||
failingforwards | 0 | 3,061,737,678 | 2.8% | ||
drricksanchez | 0 | 14,569,863,952 | 2.8% | ||
trouvaille | 0 | 724,414,109 | 2.8% | ||
joseluis91 | 0 | 822,267,385 | 5.6% | ||
maxelitereturned | 0 | 552,833,877 | 35% | ||
mayllerlys | 0 | 475,207,079 | 50% | ||
magdiel7 | 0 | 567,820,014 | 24% | ||
trippymane | 0 | 1,739,039,441 | 5.6% | ||
victordumont | 0 | 2,006,997,481 | 24% | ||
norokochan | 0 | 1,225,080,874 | 24% | ||
edinson001 | 0 | 994,084,309 | 100% | ||
nfttunz | 0 | 8,619,941,434 | 0.56% | ||
caribayarte | 0 | 3,463,597,953 | 24% | ||
yeidelyt | 0 | 896,773,444 | 24% | ||
soychalbed | 0 | 1,008,898,838 | 12% | ||
okluvmee | 0 | 2,693,086,633 | 2.8% | ||
atexoras.pub | 0 | 1,320,403,293 | 2.8% | ||
holovision.cash | 0 | 1,837,515,627 | 100% | ||
helencct | 0 | 1,706,987,237 | 100% | ||
brujita18 | 0 | 4,476,487,515 | 10.8% | ||
krrizjos18 | 0 | 1,028,587,430 | 12% | ||
hubeyma | 0 | 997,116,748 | 2.8% | ||
podping | 0 | 8,096,208,699 | 1.4% | ||
yenmendt | 0 | 7,127,036,933 | 24% | ||
aguamiel | 0 | 4,413,806,929 | 24% | ||
jessicaossom | 0 | 949,947,982 | 2.8% | ||
beysyd | 0 | 1,873,835,190 | 12% | ||
ferbu | 0 | 2,556,924,104 | 24% | ||
drhueso | 0 | 1,379,810,380 | 2.8% | ||
pinkfloyd878 | 0 | 4,250,731,728 | 100% | ||
janetfund | 0 | 26,917,281,552 | 100% | ||
fabianar25 | 0 | 958,898,523 | 50% | ||
lycanskiss | 0 | 2,105,961,341 | 100% | ||
mairimgo23 | 0 | 5,747,069,815 | 24% | ||
pishio | 0 | 537,910,100,642 | 10% | ||
driplord | 0 | 115,709,227 | 100% | ||
ronymaffi | 0 | 2,468,139,849 | 100% | ||
danokoroafor | 0 | 568,264,446 | 2.8% | ||
shakavon | 0 | 628,778,374 | 50% | ||
miguelstar | 0 | 1,497,204,785 | 24% | ||
seinkalar | 0 | 14,090,577,373 | 5.6% | ||
badge-646464 | 0 | 570,371,611 | 5.6% | ||
amaillo | 0 | 646,171,067 | 4.8% | ||
aries90 | 0 | 38,983,747,757 | 5.6% | ||
cugel | 0 | 2,314,376,302 | 2.8% | ||
tub3r0 | 0 | 1,071,559,238 | 36% | ||
amaillo-m | 0 | 752,837,085 | 24% | ||
acantoni | 0 | 866,606,422 | 2.8% | ||
migka | 0 | 4,368,069,543 | 90% | ||
iradeorum | 0 | 539,803,890 | 100% | ||
poolpartylegolas | 0 | 4,090,906,205 | 100% | ||
mcsherriff | 0 | 589,044,922 | 5.6% | ||
andre-marg25 | 0 | 1,265,550,980 | 24% | ||
iskafan | 0 | 790,145,344 | 2.8% | ||
h3m4n7 | 0 | 543,124,151 | 2.8% | ||
jude9 | 0 | 1,648,409,830 | 17.5% | ||
rkploy786 | 0 | 6,921,826,787 | 100% | ||
yixn | 0 | 37,309,359,002 | 2.8% | ||
kqaosphreak | 0 | 4,283,906,677 | 70% | ||
alt3r | 0 | 1,167,888,601 | 4.31% | ||
mcookies | 0 | 570,587,976 | 2.8% | ||
waivio.curator | 0 | 1,753,383,454 | 3.24% | ||
gercripto | 0 | 1,339,593,294 | 12% | ||
ehizgabriel | 0 | 695,662,791 | 36% | ||
susurrodmisterio | 0 | 897,165,365 | 12% | ||
esalcedo | 0 | 35,782,874,894 | 24% | ||
foxlatam | 0 | 9,741,758,817 | 50% | ||
deadleaf | 0 | 4,186,396,323 | 100% | ||
stefy.music | 0 | 574,989,418 | 2.8% | ||
allentaylor | 0 | 996,176,716 | 2.8% | ||
sam9999 | 0 | 5,370,545,285 | 35% | ||
benwickenton | 0 | 2,665,256,216 | 5.6% | ||
annabeth | 0 | 811,046,016 | 5.6% | ||
blackdaisyft | 0 | 17,603,613,295 | 50% | ||
jerusa777 | 0 | 1,273,557,676 | 15% | ||
doodleaday | 0 | 37,090,547,116 | 50% | ||
njclabaugh | 0 | 476,090,665 | 100% | ||
balabambuz | 0 | 675,676,488 | 2.8% | ||
abejaobrera | 0 | 1,295,055,778 | 24% | ||
prosocialise | 0 | 58,646,602,195 | 35% | ||
archangel21 | 0 | 3,068,711,879 | 5.6% | ||
amafable07 | 0 | 1,004,477,572 | 35% | ||
ricardoeloy | 0 | 873,520,319 | 6% | ||
chechostreet | 0 | 2,068,048,654 | 24% | ||
sabajfa | 0 | 6,838,665,173 | 36% | ||
nazom | 0 | 811,089,006 | 35% | ||
visualblock | 0 | 394,912,423,057 | 100% | ||
baboz | 0 | 1,400,320,803 | 1.4% | ||
universodaniel | 0 | 872,192,576 | 12% | ||
sbtofficial | 0 | 4,633,960,851 | 2.8% | ||
vagabond42069 | 0 | 1,518,318,422 | 35% | ||
eollarvesm | 0 | 887,601,512 | 12% | ||
inibless | 0 | 2,356,930,933 | 35% | ||
hiversbqto | 0 | 2,375,008,659 | 24% | ||
gmzorn | 0 | 2,720,188,264 | 100% | ||
justfavour | 0 | 1,946,476,884 | 2.8% | ||
hispaliterario | 0 | 1,002,004,449 | 24% | ||
sc000 | 0 | 1,360,597,599 | 5.6% | ||
pinkchic | 0 | 635,441,244 | 0.84% | ||
vankushfamily | 0 | 666,219,896 | 35% | ||
minas-glory | 0 | 1,726,334,566 | 2.8% | ||
clpacksperiment | 0 | 2,999,087,059 | 2.8% | ||
the-grandmaster | 0 | 692,385,470 | 2.8% | ||
humbe | 0 | 2,457,803,630 | 2% | ||
peniel2010 | 0 | 4,463,222,926 | 50% | ||
hive-179513 | 0 | 1,984,290,629 | 50% | ||
thepeoplesguild | 0 | 858,232,982 | 2.8% | ||
flywithmarlin | 0 | 864,283,404 | 12% | ||
zackygamer | 0 | 1,285,248,901 | 24% | ||
abu78 | 0 | 17,500,438,852 | 100% | ||
reverio | 0 | 433,971,323 | 5% | ||
warofcriptonft | 0 | 16,343,595,835 | 12% | ||
arduilcelebren | 0 | 2,439,163,324 | 2.8% | ||
opticus | 0 | 6,914,464,824 | 2.8% | ||
paolasinaid | 0 | 1,495,688,112 | 100% | ||
lettinggotech | 0 | 1,292,460,141 | 2.8% | ||
ojsuarez2 | 0 | 3,117,674,786 | 100% | ||
rhemagames | 0 | 4,794,136,428 | 2.8% | ||
cryptoscripts | 0 | 496,555,103 | 14% | ||
cuatrolarense | 0 | 1,236,310,794 | 100% | ||
yanguaro | 0 | 477,886,847 | 100% | ||
mariiestefania | 0 | 2,128,296,629 | 24% | ||
earn.vote | 0 | 10,068,478,508 | 100% | ||
caleb-marvel | 0 | 814,345,252 | 100% | ||
glaizam2023 | 0 | 0 | 100% | ||
blablableu | 0 | 1,894,873,594 | 100% |
@tipu curate 8
author | esalcedo |
---|---|
permlink | re-eniolw-s48fuy |
category | hive-150329 |
json_metadata | {"tags":["hive-150329"],"app":"peakd/2023.10.1"} |
created | 2023-11-16 20:06:36 |
last_update | 2023-11-16 20:06:36 |
depth | 1 |
children | 1 |
last_payout | 2023-11-23 20:06: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 | 15 |
author_reputation | 114,851,708,218,153 |
root_title | "My Coding Quiz #33" |
beneficiaries | [] |
max_accepted_payout | 1,000,000.000 HBD |
percent_hbd | 10,000 |
post_id | 128,921,115 |
net_rshares | 0 |
<a href="https://tipu.online/hive_curator?esalcedo" target="_blank">Upvoted 👌</a> (Mana: 0/72) <a href="https://peakd.com/hive/@reward.app/reward-app-quick-guide-updated" target="_blank">Liquid rewards</a>.
author | tipu |
---|---|
permlink | re-re-eniolw-s48fuy-20231116t200642z |
category | hive-150329 |
json_metadata | "{"app": "beem/0.24.26"}" |
created | 2023-11-16 20:06:42 |
last_update | 2023-11-16 20:06:42 |
depth | 2 |
children | 0 |
last_payout | 2023-11-23 20:06: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 | 215 |
author_reputation | 55,902,105,514,997 |
root_title | "My Coding Quiz #33" |
beneficiaries | [] |
max_accepted_payout | 1,000,000.000 HBD |
percent_hbd | 10,000 |
post_id | 128,921,117 |
net_rshares | 0 |
Oh wow this is pretty crazy! Absolute wild and crazy as well.. However I am actually very impressed. And I think that coding as well as coding boot camps and teaching other people this arcane mysterious art would be more prevalent here on the blockchain... I do a secrets of Hive class and I'd totally trade you for some beginning coding knowledge. I think that your coding content actually I might be more important than you understand.. Nobody here really explains it. We've got a lot of really great coders here that talk in Klingon! Thank you very much for your excellent post. As well as thank you for sharing the knowledge of coding. #freecompliments
author | ganjafarmer |
---|---|
permlink | re-eniolw-20231116t04827892z |
category | hive-150329 |
json_metadata | {"type":"comment","tags":["hive-150329","programming","coding","python","quiz","neoxian","proofofbrain","creativecoin","waivio","spanish"],"app":"ecency/3.0.44-mobile","format":"markdown+html"} |
created | 2023-11-16 08:48:30 |
last_update | 2023-11-16 08:48:30 |
depth | 1 |
children | 2 |
last_payout | 2023-11-23 08:48: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 | 662 |
author_reputation | 672,900,775,922,025 |
root_title | "My Coding Quiz #33" |
beneficiaries | [] |
max_accepted_payout | 1,000,000.000 HBD |
percent_hbd | 10,000 |
post_id | 128,906,316 |
net_rshares | 0 |
Thanks, I'm glad you find this instructive.
author | eniolw |
---|---|
permlink | re-ganjafarmer-20231118t12815380z |
category | hive-150329 |
json_metadata | {"tags":["hive-150329","programming","coding","python","quiz","neoxian","proofofbrain","creativecoin","waivio","spanish"],"app":"ecency/3.0.37-vision","format":"markdown+html"} |
created | 2023-11-18 16:08:27 |
last_update | 2023-11-18 16:08:27 |
depth | 2 |
children | 1 |
last_payout | 2023-11-25 16:08:27 |
cashout_time | 1969-12-31 23:59:59 |
total_payout_value | 0.000 HBD |
curator_payout_value | 0.000 HBD |
pending_payout_value | 0.000 HBD |
promoted | 0.000 HBD |
body_length | 43 |
author_reputation | 253,328,400,128,603 |
root_title | "My Coding Quiz #33" |
beneficiaries | [] |
max_accepted_payout | 1,000,000.000 HBD |
percent_hbd | 10,000 |
post_id | 128,971,442 |
net_rshares | 0 |
You are very welcome.
author | ganjafarmer |
---|---|
permlink | re-eniolw-20231118t81351300z |
category | hive-150329 |
json_metadata | {"type":"comment","tags":["hive-150329","programming","coding","python","quiz","neoxian","proofofbrain","creativecoin","waivio","spanish"],"app":"ecency/3.0.44-mobile","format":"markdown+html"} |
created | 2023-11-18 16:13:51 |
last_update | 2023-11-18 16:13:51 |
depth | 3 |
children | 0 |
last_payout | 2023-11-25 16:13:51 |
cashout_time | 1969-12-31 23:59:59 |
total_payout_value | 0.000 HBD |
curator_payout_value | 0.000 HBD |
pending_payout_value | 0.000 HBD |
promoted | 0.000 HBD |
body_length | 22 |
author_reputation | 672,900,775,922,025 |
root_title | "My Coding Quiz #33" |
beneficiaries | [] |
max_accepted_payout | 1,000,000.000 HBD |
percent_hbd | 10,000 |
post_id | 128,971,626 |
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-33-20231116t233702820z |
category | hive-150329 |
json_metadata | {"app":"STEMsocial"} |
created | 2023-11-16 23:37:03 |
last_update | 2023-11-16 23:37:03 |
depth | 1 |
children | 0 |
last_payout | 2023-11-23 23:37:03 |
cashout_time | 1969-12-31 23:59:59 |
total_payout_value | 0.000 HBD |
curator_payout_value | 0.000 HBD |
pending_payout_value | 0.000 HBD |
promoted | 0.000 HBD |
body_length | 565 |
author_reputation | 22,903,676,462,363 |
root_title | "My Coding Quiz #33" |
beneficiaries | [] |
max_accepted_payout | 1,000,000.000 HBD |
percent_hbd | 10,000 |
post_id | 128,924,645 |
net_rshares | 0 |