<div class="text-justify"> <center><h2>My Coding Quiz #57 馃懆鈥嶐煉火煕狅笍馃З</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/DQmbSrArXNwhhMDKvmDWcXjBrLEKyVJyFzQRWZUNjJuCyaQ/imagen.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-56">previous quiz</a></b>: <b><class 'set'> False</b>. One more time we've used chess motifs to illustrate the concept of this code. This is how we created the set <code>moves</code>, which contains characters that represent moves in a chess game: <code>moves = {'e4', 'c5', 'd4', 'e4', 'cxd4'}</code>.</p> <p>As we know, sets have unique elements, so the repeated element that was hardcoded (<code>'e4'</code>) is actually eliminated during the compilation and execution of the program. So, the set <code>moves</code> would actually consist of <b>{'c5', 'd4', 'e4', 'cxd4'}</b>.</p> <p>Next, we create a list <code>numbers</code> with a sequence of natural numbers that correspond to the elements of the set <code>moves</code> one by one. This is useful to be able to enumerate the moves. In chess, the movements of a game are numbered in pairs (one white move and one black move represent a single pair), but at the programming level, each move corresponds to a single number. In case you need to see it, the content of <code>numbers</code> is <b>[0, 1, 2, 3]</b>.</p> <p>Then we have the instruction <code>jug = [j1, j2, j3, j4] = moves</code>, which is curious and potentially confusing. There we make a chained assignment or mapping. Reading from left to right, we have <code>[j1, j2, j3, j4] = moves</code> and this is an unpacking: we are creating four variables and assigning to them items from <code>moves</code> in the order in which they appear; We are not creating a list.</p> <p>That explains what occurs in the following part: <code>jug = [j1, j2, j3, j4]</code>. Here <code>jug</code> does not refer to any list, but directly to <code>moves</code>.</p> <p>Finally we use <code>print</code> to show the output: <code>print(type(jug), {numbers[0]} < {numbers[1]})</code>. The first part produces the type of <code>jug</code>, which is a <b>set</b>.</p> <p>The following part in the print deserves its own discussion: We are doing one of the multiple set operations. In this case, the <code><</code> operator serves to check whether a set is a proper subset of another. Here <code>{numbers[0]} < {numbers[1]}</code> consists of <code>{0} < {1}</code>. Even though the value of the element of the first set is smaller than that of the second, this is not how this operation works. The truth value here is <b>False</b> because <code>{0}</code> is not a subset of <code>{1}</code>.</p> <p>That explains why the final output is <b><class 'set'> False</b>. As you can see, even though it looks like a simple script, it contains several interesting concepts and details that even take time to understand and explain.</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 #57 馃懆鈥嶐煉火煕狅笍馃З</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/DQmVPD5tnu2VkvjHKPedthucuf3hpU3NBUtMhrPr1hS9QS3/imagen.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-56">quiz anterior</a></b>: <b><class 'set'> False</b>. Nuevamente utilizamos motivos de ajedrez para ilustrar el concepto de este c贸digo. As铆 es como creamos el conjunto <code>moves</code>, que contiene caracteres que representan movimientos en un juego de ajedrez: <code>moves = {'e4', 'c5', 'd4', 'e4', ' cxd4'}</code>.</p> <p>Como sabemos, los conjuntos tienen elementos 煤nicos, por lo que el elemento repetido que fue codificado (<code>'e4'</code>) en realidad se elimina durante la compilaci贸n y ejecuci贸n del programa. Entonces, el conjunto <code>moves</code> en realidad consistir铆a en <b>{'c5', 'd4', 'e4', 'cxd4'}</b>.</p> <p>A continuaci贸n, creamos una lista <code>numbers</code> con una secuencia de n煤meros naturales que corresponden a los elementos del conjunto <code>moves</code> uno por uno. Esto es 煤til para poder enumerar los movimientos. En el ajedrez, los movimientos de una partida se numeran por parejas (una jugada de las blancas y otra de las negras representan un 煤nico par), pero a nivel de programaci贸n, cada jugada corresponde a un 煤nico n煤mero. En caso de que necesites verlo, el contenido de <code>n煤meros</code> es <b>[0, 1, 2, 3]</b>.</p> <p>Luego tenemos la instrucci贸n <code>jug = [j1, j2, j3, j4] = moves</code>, que es curiosa y potencialmente confusa. All铆 realizamos una asignaci贸n o mapeo encadenado. Leyendo de izquierda a derecha, tenemos <code>[j1, j2, j3, j4] = moves</code> y esto es un desempaquetado: estamos creando cuatro variables y asign谩ndoles elementos de <code>moves</code> en el orden en que aparecen; no estamos creando una lista.</p> <p>Eso explica lo que ocurre en la siguiente parte: <code>jug = [j1, j2, j3, j4]</code>. Aqu铆 <code>jug</code> no se refiere a ninguna lista, sino directamente a <code>movimientos</code>.</p> <p>Finalmente usamos <code>print</code> para mostrar el resultado: <code>print(type(jug), {numbers[0]} < {numbers[1]})</code>. La primera parte produce el tipo de <code>jug</code>, que es un <b>set</b>.</p> <p>La siguiente parte de la impresi贸n merece su propia discusi贸n: Estamos realizando una de las m煤ltiples operaciones de conjunto. En este caso, el operador <code><</code> sirve para comprobar si un conjunto es un subconjunto propio de otro. Aqu铆 <code>{numbers[0]} < {numbers[1]}</code> consta de <code>{0} < {1}</code>. Aunque el valor del elemento del primer conjunto es menor que el del segundo, esta operaci贸n no funciona as铆. El valor de verdad aqu铆 es <b>False</b> porque <code>{0}</code> no es un subconjunto de <code>{1}</code>.</p> <p>Eso explica por qu茅 el resultado final es <b><class 'set'> False</b>. Como puedes ver, aunque parece un script sencillo, contiene varios conceptos y detalles interesantes que incluso llevan tiempo comprender y explicar.</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-57 |
category | hive-197685 |
json_metadata | "{"app":"ecency/3.1.1-vision","description":"My Coding Quiz #57 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.","format":"markdown+html","image":["https://images.ecency.com/DQmbSrArXNwhhMDKvmDWcXjBrLEKyVJyFzQRWZUNjJuCyaQ/imagen.png","https://images.ecency.com/DQmVPD5tnu2VkvjHKPedthucuf3hpU3NBUtMhrPr1hS9QS3/imagen.png"],"image_ratios":["0.9960","0.9960"],"tags":["hive-197685","programming","coding","python","chess","quiz","neoxian","proofofbrain","creativecoin","waivio","spanish"]}" |
created | 2024-04-26 18:31:06 |
last_update | 2024-04-26 18:31:57 |
depth | 0 |
children | 9 |
last_payout | 2024-05-03 18:31:06 |
cashout_time | 1969-12-31 23:59:59 |
total_payout_value | 7.974 HBD |
curator_payout_value | 7.876 HBD |
pending_payout_value | 0.000 HBD |
promoted | 0.000 HBD |
body_length | 7,632 |
author_reputation | 253,543,214,078,146 |
root_title | "My Coding Quiz #57" |
beneficiaries | [] |
max_accepted_payout | 1,000,000.000 HBD |
percent_hbd | 10,000 |
post_id | 133,146,130 |
net_rshares | 39,007,230,125,274 |
author_curate_reward | "" |
voter | weight | wgt% | rshares | pct | time |
---|---|---|---|---|---|
boatymcboatface | 0 | 159,615,688,479 | 8% | ||
drifter1 | 0 | 1,054,971,111 | 2.8% | ||
kingscrown | 0 | 5,651,187,514 | 8% | ||
kevinwong | 0 | 1,129,752,982 | 0.56% | ||
theshell | 0 | 42,703,490,445 | 8% | ||
justtryme90 | 0 | 1,399,572,198 | 70% | ||
eric-boucher | 0 | 15,579,368,320 | 2.8% | ||
juanmiguelsalas | 0 | 1,192,074,281 | 1.68% | ||
thecryptodrive | 0 | 6,919,959,261 | 1.12% | ||
kaylinart | 0 | 12,290,540,034 | 2.8% | ||
good-karma | 0 | 70,361,359,340 | 6.96% | ||
roelandp | 0 | 234,558,540,857 | 35% | ||
cloh76 | 0 | 4,031,959,643 | 2.8% | ||
nascimentoab | 0 | 556,319,183 | 2.8% | ||
joshglen | 0 | 795,979,859 | 5.6% | ||
rmach | 0 | 748,779,087 | 35% | ||
lemouth | 0 | 1,948,971,631,515 | 70% | ||
alaqrab | 0 | 568,028,711 | 2.8% | ||
lamouthe | 0 | 5,603,468,845 | 70% | ||
tfeldman | 0 | 5,498,562,168 | 2.8% | ||
metabs | 0 | 7,882,362,535 | 70% | ||
mcsvi | 0 | 105,119,741,043 | 50% | ||
lk666 | 0 | 2,294,433,002 | 2.8% | ||
cnfund | 0 | 12,247,822,954 | 5.6% | ||
boxcarblue | 0 | 12,812,203,038 | 2.8% | ||
justyy | 0 | 36,144,046,921 | 5.6% | ||
michelle.gent | 0 | 3,470,499,450 | 1.12% | ||
curie | 0 | 345,608,866,023 | 5.6% | ||
safar01 | 0 | 924,031,367 | 37.5% | ||
modernzorker | 0 | 4,108,627,508 | 3.92% | ||
techslut | 0 | 186,855,899,245 | 28% | ||
steemstem | 0 | 1,302,819,471,103 | 70% | ||
dashfit | 0 | 484,372,701 | 2.8% | ||
tristancarax | 0 | 719,029,750 | 2.8% | ||
edb | 0 | 6,166,331,687 | 7% | ||
esteemapp | 0 | 17,633,704,092 | 6.96% | ||
bigtakosensei | 0 | 1,764,027,418 | 1.4% | ||
walterjay | 0 | 450,003,172,826 | 35% | ||
valth | 0 | 10,447,441,457 | 35% | ||
metroair | 0 | 27,100,561,031 | 5.6% | ||
driptorchpress | 0 | 2,228,596,258 | 1.4% | ||
dna-replication | 0 | 2,744,070,695 | 70% | ||
boynashruddin | 0 | 829,137,473 | 5.6% | ||
bloghound | 0 | 846,682,921 | 1.39% | ||
steemiteducation | 0 | 1,283,243,609 | 2.8% | ||
dhimmel | 0 | 379,152,043,429 | 17.5% | ||
oluwatobiloba | 0 | 2,343,905,832 | 70% | ||
damla | 0 | 332,845,933,927 | 50% | ||
detlev | 0 | 27,303,287,523 | 1.68% | ||
chasmic-cosm | 0 | 857,221,513 | 2.8% | ||
lugaxker | 0 | 824,083,802 | 34.65% | ||
federacion45 | 0 | 8,644,968,207 | 2.8% | ||
amberyooper | 0 | 677,183,741 | 2.8% | ||
gamersclassified | 0 | 5,311,892,588 | 2.8% | ||
forykw | 0 | 13,257,847,082 | 2.8% | ||
mobbs | 0 | 189,787,313,093 | 70% | ||
eliel | 0 | 15,429,283,309 | 5.6% | ||
jerrybanfield | 0 | 19,247,876,501 | 5.6% | ||
rt395 | 0 | 2,193,971,709 | 1.5% | ||
bitrocker2020 | 0 | 11,678,894,664 | 1.12% | ||
sustainablyyours | 0 | 20,173,223,432 | 35% | ||
erick1 | 0 | 29,433,225,186 | 80% | ||
helo | 0 | 507,568,435 | 35% | ||
arunava | 0 | 15,385,695,991 | 2.24% | ||
schoolforsdg4 | 0 | 1,074,081,415 | 5% | ||
samminator | 0 | 50,239,992,571 | 35% | ||
drwom | 0 | 1,560,091,394 | 3.48% | ||
zerotoone | 0 | 1,121,204,815 | 2.8% | ||
enjar | 0 | 48,304,026,229 | 5.04% | ||
lorenzor | 0 | 1,342,834,909 | 50% | ||
firstamendment | 0 | 90,818,837,678 | 50% | ||
sam99 | 0 | 12,175,739,037 | 21% | ||
aboutyourbiz | 0 | 1,073,675,829 | 5.6% | ||
derosnec | 0 | 573,020,645 | 2.8% | ||
alexander.alexis | 0 | 43,013,139,769 | 70% | ||
dandesign86 | 0 | 16,614,557,610 | 8% | ||
jayna | 0 | 8,128,164,069 | 1.12% | ||
hhayweaver | 0 | 1,000,130,154 | 1.4% | ||
finkistinger | 0 | 952,734,407 | 2.8% | ||
princessmewmew | 0 | 8,076,988,632 | 2.8% | ||
joeyarnoldvn | 0 | 468,501,533 | 1.47% | ||
diabolika | 0 | 1,057,960,238 | 2.8% | ||
ufv | 0 | 3,006,808,420 | 50% | ||
gunthertopp | 0 | 77,766,358,734 | 1.4% | ||
empath | 0 | 4,342,208,080 | 2.8% | ||
minnowbooster | 0 | 795,920,734,948 | 20% | ||
lenasveganliving | 0 | 482,995,639 | 2.8% | ||
felt.buzz | 0 | 7,910,388,719 | 1.4% | ||
howo | 0 | 2,283,903,685,888 | 70% | ||
tsoldovieri | 0 | 7,438,855,522 | 35% | ||
neumannsalva | 0 | 5,027,345,020 | 2.8% | ||
stayoutoftherz | 0 | 157,642,305,640 | 1.4% | ||
abigail-dantes | 0 | 25,950,038,435 | 70% | ||
coindevil | 0 | 3,061,655,277 | 4.48% | ||
syh7758520 | 0 | 2,620,978,969 | 80% | ||
zonguin | 0 | 3,777,018,981 | 17.5% | ||
mhel | 0 | 510,010,535 | 1.12% | ||
enfocate | 0 | 4,710,351,590 | 24% | ||
investingpennies | 0 | 18,224,553,647 | 5.6% | ||
martibis | 0 | 2,973,315,490 | 1.68% | ||
val.halla | 0 | 2,869,753,262 | 10% | ||
redrica | 0 | 1,487,448,897 | 2.8% | ||
pepskaram | 0 | 593,291,829 | 2.8% | ||
iamphysical | 0 | 1,588,430,150 | 90% | ||
sunisa | 0 | 490,510,060 | 2.8% | ||
zest | 0 | 1,015,809,466 | 35% | ||
zyx066 | 0 | 3,157,276,722 | 1.68% | ||
chrisdavidphoto | 0 | 1,274,606,369 | 1.68% | ||
revo | 0 | 12,258,722,754 | 5.6% | ||
azulear | 0 | 1,444,007,977 | 100% | ||
psicoluigi | 0 | 832,074,777 | 50% | ||
risckylu | 0 | 970,899,642 | 24% | ||
rafaelaquino | 0 | 13,228,467,896 | 100% | ||
wilians | 0 | 548,137,818 | 35% | ||
stickchumpion | 0 | 1,192,549,196 | 2.8% | ||
tipu | 0 | 15,227,187,235,531 | 75% | ||
thelordsharvest | 0 | 3,987,618,294 | 5.6% | ||
raj808 | 0 | 381,200,442 | 1.68% | ||
aidefr | 0 | 7,786,999,805 | 35% | ||
torico | 0 | 1,530,337,246 | 1.84% | ||
therealwolf | 0 | 28,299,162,020 | 2.8% | ||
fatman | 0 | 9,102,475,668 | 2% | ||
inthenow | 0 | 21,683,626,414 | 20% | ||
minnowpowerup | 0 | 839,565,160 | 2.8% | ||
splash-of-angs63 | 0 | 12,004,383,362 | 50% | ||
cryptononymous | 0 | 1,997,543,268 | 2.8% | ||
meno | 0 | 29,647,209,406 | 2.8% | ||
buttcoins | 0 | 2,310,412,407 | 1.12% | ||
isnochys | 0 | 10,185,177,686 | 5% | ||
bigdizzle91 | 0 | 845,035,436 | 2.8% | ||
helyorsini | 0 | 693,764,269 | 2.8% | ||
esteem.app | 0 | 2,354,100,010 | 6.96% | ||
steemed-proxy | 0 | 1,146,513,689,644 | 5.6% | ||
fatkat | 0 | 1,492,592,142 | 2.79% | ||
peaceandwar | 0 | 871,714,047 | 2.8% | ||
bhoa | 0 | 669,905,229 | 35% | ||
enzor | 0 | 2,325,536,468 | 35% | ||
marcoriccardi | 0 | 1,086,664,397 | 5.6% | ||
bartosz546 | 0 | 30,487,092,929 | 2.8% | ||
tazbaz | 0 | 566,915,312 | 2.8% | ||
marleyn | 0 | 1,666,136,416 | 24% | ||
battebilly | 0 | 739,838,707 | 2.8% | ||
caladan | 0 | 8,091,387,450 | 5.6% | ||
dejan.vuckovic | 0 | 947,380,150 | 1.12% | ||
alvinauh | 0 | 1,297,298,982 | 30% | ||
lottje | 0 | 612,414,932 | 70% | ||
myach | 0 | 1,011,850,071 | 4.48% | ||
sunsea | 0 | 5,100,138,838 | 2.8% | ||
eonwarped | 0 | 235,279,788,916 | 30% | ||
postpromoter | 0 | 1,685,377,688,727 | 70% | ||
omstavan | 0 | 3,779,806,736 | 50% | ||
bluefinstudios | 0 | 3,998,111,782 | 1.68% | ||
steveconnor | 0 | 5,057,865,706 | 2.8% | ||
sankysanket18 | 0 | 1,591,227,260 | 35% | ||
afzalqamar | 0 | 2,477,393,292 | 37.5% | ||
dbddv01 | 0 | 2,587,399,336 | 17.5% | ||
zmx | 0 | 613,336,248 | 2.8% | ||
skippyza | 0 | 492,312,209 | 5.6% | ||
nicole-st | 0 | 712,999,429 | 2.8% | ||
smartsteem | 0 | 135,324,242,319 | 2.8% | ||
jasimg | 0 | 695,830,897 | 100% | ||
aboutcoolscience | 0 | 345,650,335,900 | 70% | ||
elisonr13 | 0 | 1,936,041,234 | 12% | ||
popurri | 0 | 864,341,775 | 37.5% | ||
anli | 0 | 11,174,233,962 | 100% | ||
afifa | 0 | 645,227,664 | 10% | ||
sandracarrascal | 0 | 507,963,425 | 50% | ||
skycae | 0 | 700,891,392 | 5.6% | ||
kenadis | 0 | 19,239,997,170 | 70% | ||
bebeomega | 0 | 878,909,023 | 2.8% | ||
madridbg | 0 | 29,258,905,220 | 70% | ||
robotics101 | 0 | 21,464,420,676 | 70% | ||
marcolino76 | 0 | 462,782,152 | 2.8% | ||
lpv | 0 | 3,042,119,665 | 8.75% | ||
auleo | 0 | 784,576,520 | 1.39% | ||
ahmadmangazap | 0 | 14,124,840,625 | 3.48% | ||
apon318 | 0 | 531,549,559 | 5.6% | ||
straykat | 0 | 921,220,966 | 2.8% | ||
tomatom | 0 | 470,765,552 | 2.8% | ||
danaedwards | 0 | 716,795,882 | 5.6% | ||
sco | 0 | 22,512,255,001 | 70% | ||
phgnomo | 0 | 886,152,179 | 2.8% | ||
ennyta | 0 | 983,631,830 | 50% | ||
juecoree | 0 | 8,170,601,054 | 49% | ||
gordon92 | 0 | 890,202,775 | 2.8% | ||
stahlberg | 0 | 1,287,817,788 | 2.8% | ||
gabrielatravels | 0 | 2,378,271,690 | 1.96% | ||
cordeta | 0 | 1,079,972,397 | 5.6% | ||
reizak | 0 | 497,280,886 | 2.24% | ||
eliaschess333 | 0 | 20,579,048,597 | 100% | ||
branbello | 0 | 1,376,897,838 | 35% | ||
hetty-rowan | 0 | 3,340,850,343 | 2.8% | ||
ydavgonzalez | 0 | 2,189,993,023 | 10% | ||
intrepidphotos | 0 | 16,327,638,529 | 52.5% | ||
fineartnow | 0 | 4,091,580,765 | 2.8% | ||
mathowl | 0 | 33,126,349,094 | 100% | ||
bobydimitrov | 0 | 509,190,841 | 4.2% | ||
yoghurt | 0 | 725,557,904 | 5.6% | ||
steemvault | 0 | 2,378,576,185 | 5.6% | ||
steem4all | 0 | 564,303,256 | 2.8% | ||
shinedojo | 0 | 684,755,729 | 5.6% | ||
fragmentarion | 0 | 16,520,031,154 | 70% | ||
utube | 0 | 3,963,592,211 | 5.6% | ||
jigstrike | 0 | 929,552,793 | 2.8% | ||
m1alsan | 0 | 38,238,367,156 | 100% | ||
dynamicrypto | 0 | 1,355,027,027 | 1% | ||
neneandy | 0 | 6,460,253,128 | 5.6% | ||
pab.ink | 0 | 749,818,700 | 35% | ||
marc-allaria | 0 | 3,535,187,514 | 2.8% | ||
real2josh | 0 | 661,181,182 | 35% | ||
sportscontest | 0 | 5,653,113,014 | 5.6% | ||
videosteemit | 0 | 945,916,067 | 5.6% | ||
gribouille | 0 | 1,676,020,574 | 35% | ||
pandasquad | 0 | 15,294,631,684 | 5.6% | ||
atongis | 0 | 14,809,332,043 | 5% | ||
leoumesh | 0 | 361,632,694 | 35% | ||
cool08 | 0 | 4,078,645,525 | 35% | ||
chronocrypto | 0 | 1,241,275,832 | 2.8% | ||
lunaticpandora | 0 | 633,194,935 | 10.8% | ||
cherryng | 0 | 881,030,125 | 1.39% | ||
kingabesh | 0 | 1,425,608,894 | 35% | ||
miguelangel2801 | 0 | 788,450,340 | 50% | ||
mproxima | 0 | 2,539,768,354 | 2.8% | ||
fantasycrypto | 0 | 3,832,332,285 | 5.6% | ||
didic | 0 | 1,940,579,127 | 2.8% | ||
jossduarte | 0 | 611,042,578 | 2.8% | ||
emiliomoron | 0 | 6,502,711,533 | 35% | ||
galam | 0 | 968,172,865 | 35% | ||
dexterdev | 0 | 2,887,818,712 | 35% | ||
zelenicic | 0 | 33,834,008,193 | 100% | ||
photohunt | 0 | 3,728,281,115 | 5.6% | ||
geopolis | 0 | 4,683,996,982 | 70% | ||
ajfernandez | 0 | 770,228,109 | 100% | ||
robertbira | 0 | 7,583,457,039 | 17.5% | ||
atomcollector | 0 | 1,950,981,527 | 1.4% | ||
alexdory | 0 | 9,548,746,243 | 70% | ||
takowi | 0 | 1,319,414,825 | 5.6% | ||
sargewhale | 0 | 837,676,572 | 100% | ||
irgendwo | 0 | 23,823,771,789 | 5.6% | ||
vegan.niinja | 0 | 533,242,320 | 2.8% | ||
charitybot | 0 | 5,105,889,753 | 100% | ||
kieranstone | 0 | 1,681,635,221 | 1.84% | ||
bernardino | 0 | 704,638,048 | 2.8% | ||
melvin7 | 0 | 111,636,455,700 | 35% | ||
francostem | 0 | 9,754,242,673 | 70% | ||
russellstockley | 0 | 1,623,403,165 | 1.4% | ||
endopediatria | 0 | 695,806,150 | 20% | ||
croctopus | 0 | 1,508,798,390 | 100% | ||
jjerryhan | 0 | 5,699,669,677 | 2.8% | ||
michelmake | 0 | 48,256,907,868 | 25% | ||
zipporah | 0 | 2,900,800,622 | 1.12% | ||
leomarylm | 0 | 1,470,130,871 | 2.8% | ||
superlotto | 0 | 11,728,471,256 | 5.6% | ||
positiveninja | 0 | 1,158,692,482 | 2.8% | ||
foxyspirit | 0 | 580,688,549 | 2.8% | ||
bscrypto | 0 | 15,752,142,499 | 2.8% | ||
vonaurolacu | 0 | 537,111,061 | 2.8% | ||
movingman | 0 | 576,161,154 | 20% | ||
delpilar | 0 | 934,959,443 | 25% | ||
scottshots | 0 | 445,141,784 | 0.28% | ||
tomastonyperez | 0 | 16,948,332,685 | 50% | ||
rodrigocassio | 0 | 892,767,058 | 100% | ||
bil.prag | 0 | 2,636,344,786 | 0.28% | ||
elvigia | 0 | 11,015,301,791 | 50% | ||
sanderjansenart | 0 | 6,010,213,436 | 2.8% | ||
vittoriozuccala | 0 | 1,054,015,023 | 2.8% | ||
qberry | 0 | 4,047,251,571 | 2.8% | ||
frissonsteemit | 0 | 1,293,198,098 | 2.8% | ||
broncofan99 | 0 | 10,085,147,510 | 20% | ||
emotionalsea | 0 | 982,504,283 | 25% | ||
flyerchen | 0 | 1,346,381,512 | 2.8% | ||
juanmanuellopez1 | 0 | 782,660,794 | 19.2% | ||
gadrian | 0 | 609,973,671,606 | 52.5% | ||
jansher | 0 | 696,670,540 | 100% | ||
c0wtschpotato | 0 | 605,099,411 | 2.8% | ||
therising | 0 | 110,278,264,592 | 5.6% | ||
jordangerder | 0 | 2,153,672,191 | 12% | ||
cryptocoinkb | 0 | 2,266,147,815 | 2.8% | ||
de-stem | 0 | 38,664,440,870 | 69.3% | ||
manuelmusic | 0 | 1,815,897,819 | 14.4% | ||
serylt | 0 | 3,236,575,900 | 68.6% | ||
me2selah | 0 | 909,597,964 | 2.8% | ||
josedelacruz | 0 | 4,533,191,165 | 50% | ||
dracrow | 0 | 1,393,111,620 | 9.6% | ||
achimmertens | 0 | 13,198,963,692 | 2.8% | ||
lorenzopistolesi | 0 | 1,205,199,762 | 2.8% | ||
kgakakillerg | 0 | 19,581,494,017 | 10% | ||
charitymemes | 0 | 523,630,227 | 100% | ||
mariusfebruary | 0 | 722,572,747 | 2.24% | ||
outtheshellvlog | 0 | 902,388,497 | 2.8% | ||
softa | 0 | 3,326,428,865 | 1.12% | ||
el-dee-are-es | 0 | 4,094,464,464 | 10% | ||
erickyoussif | 0 | 703,707,609 | 100% | ||
michaelwrites | 0 | 932,338,427 | 35% | ||
indigoocean | 0 | 1,336,224,303 | 2.8% | ||
primersion | 0 | 407,424,669,978 | 20% | ||
deholt | 0 | 4,096,036,813 | 59.5% | ||
jancharlest | 0 | 2,102,539,982 | 37.5% | ||
eleazarvo | 0 | 647,325,726 | 2.4% | ||
steem.services | 0 | 1,040,678,165 | 1.12% | ||
minerthreat | 0 | 3,766,579,536 | 2.8% | ||
temitayo-pelumi | 0 | 6,671,713,527 | 70% | ||
andrick | 0 | 857,279,703 | 50% | ||
doctor-cog-diss | 0 | 68,712,445,729 | 70% | ||
dailyspam | 0 | 23,066,337,460 | 20% | ||
marcuz | 0 | 2,740,864,743 | 35% | ||
acont | 0 | 5,937,863,670 | 50% | ||
uche-nna | 0 | 8,106,205,764 | 4.48% | ||
drawmeaship | 0 | 1,347,656,723 | 50% | ||
vietthuy | 0 | 811,590,078 | 50% | ||
we-are-lucky | 0 | 247,396,142 | 0.7% | ||
cheese4ead | 0 | 4,352,919,426 | 2.8% | ||
jd4e | 0 | 3,739,870,996 | 50% | ||
apshamilton | 0 | 14,342,527,295 | 0.7% | ||
longer | 0 | 6,697,188,341 | 18.75% | ||
nathyortiz | 0 | 3,799,109,650 | 12% | ||
nattybongo | 0 | 52,328,725,182 | 70% | ||
drsensor | 0 | 1,584,921,275 | 56% | ||
revueh | 0 | 2,030,442,924 | 35% | ||
ilovecryptopl | 0 | 930,034,634 | 4.48% | ||
purelyscience | 0 | 536,710,580 | 35% | ||
bflanagin | 0 | 3,617,600,066 | 2.8% | ||
mightypanda | 0 | 1,764,607,862 | 52.5% | ||
ubaldonet | 0 | 3,861,609,432 | 80% | ||
armandosodano | 0 | 4,576,624,798 | 2.8% | ||
yourmind | 0 | 1,442,685,924 | 100% | ||
acousticguitar | 0 | 14,078,853,771 | 50% | ||
marivic10 | 0 | 690,028,154 | 1.4% | ||
acidtiger | 0 | 813,811,826 | 2.8% | ||
hamismsf | 0 | 4,746,169,637 | 0.7% | ||
gerdtrudroepke | 0 | 42,834,797,176 | 49% | ||
teamvn | 0 | 7,383,395,870 | 5.93% | ||
thales7 | 0 | 5,432,444,206 | 5.6% | ||
smartvote | 0 | 75,869,976,553 | 3.3% | ||
zuerich | 0 | 419,269,244,063 | 10% | ||
reinaseq | 0 | 8,089,071,016 | 100% | ||
vixmemon | 0 | 1,766,557,710 | 4.2% | ||
yaelg | 0 | 1,234,027,818 | 1.68% | ||
kylealex | 0 | 4,820,172,303 | 10% | ||
cubapl | 0 | 4,413,178,132 | 35% | ||
orlandogonzalez | 0 | 2,674,870,593 | 25% | ||
arzkyu97 | 0 | 2,943,964,591 | 9.6% | ||
fran.frey | 0 | 4,172,195,939 | 50% | ||
perpetuum-lynx | 0 | 2,170,736,730 | 68.6% | ||
andreasalas | 0 | 973,038,306 | 24% | ||
petrarodriguez | 0 | 121,573,900,444 | 24% | ||
thelittlebank | 0 | 6,632,045,845 | 2.8% | ||
pboulet | 0 | 144,616,385,602 | 56% | ||
javyeslava.photo | 0 | 611,897,636 | 2.24% | ||
belkisa758 | 0 | 2,143,688,951 | 24% | ||
stem-espanol | 0 | 2,415,872,724 | 100% | ||
voter007 | 0 | 158,890,988 | 100% | ||
cliffagreen | 0 | 5,054,986,289 | 10% | ||
aleestra | 0 | 14,551,613,502 | 80% | ||
palasatenea | 0 | 3,629,492,086 | 2.8% | ||
the.success.club | 0 | 2,675,260,347 | 2.8% | ||
javier.dejuan | 0 | 520,056,790 | 70% | ||
xmauron3 | 0 | 437,777,387 | 2.8% | ||
meanroosterfarm | 0 | 1,406,676,075 | 35% | ||
racarjoal | 0 | 662,165,945 | 12% | ||
janettyanez | 0 | 1,003,023,461 | 4.8% | ||
brianoflondon | 0 | 90,613,155,511 | 1.4% | ||
giulyfarci52 | 0 | 1,705,370,694 | 50% | ||
esthersanchez | 0 | 1,546,073,477 | 24% | ||
maryelin | 0 | 682,997,065 | 12% | ||
kristall97 | 0 | 721,976,685 | 100% | ||
followjohngalt | 0 | 631,397,709 | 5.6% | ||
steemcryptosicko | 0 | 9,326,297,939 | 1.12% | ||
alvin0617 | 0 | 493,755,376 | 2.8% | ||
multifacetas | 0 | 2,059,379,124 | 2.8% | ||
cakemonster | 0 | 2,841,455,329 | 5.6% | ||
cowpatty | 0 | 1,442,838,231 | 35% | ||
stem.witness | 0 | 4,220,861,482 | 70% | ||
witkowskipawel | 0 | 1,015,229,990 | 2.8% | ||
jpbliberty | 0 | 8,718,582,753 | 1.4% | ||
autobodhi | 0 | 1,079,878,098 | 5.6% | ||
mechanicalowl | 0 | 658,743,302 | 50% | ||
regularowl | 0 | 1,177,444,216 | 50% | ||
double-negative | 0 | 520,951,792 | 20% | ||
alex-hm | 0 | 562,347,168 | 22.5% | ||
vaultec | 0 | 564,831,225,434 | 12% | ||
daniel2001 | 0 | 450,453,172 | 12% | ||
steemstorage | 0 | 6,949,119,719 | 5.6% | ||
steemegg | 0 | 1,123,516,911 | 2.8% | ||
jtm.support | 0 | 5,345,839,120 | 70% | ||
edithbdraw | 0 | 833,362,366 | 2.8% | ||
crowdwitness | 0 | 76,340,978,645 | 35% | ||
synergized | 0 | 3,001,093,820 | 35% | ||
hairgistix | 0 | 3,324,321,395 | 2.8% | ||
mia-cc | 0 | 9,682,321,168 | 75% | ||
bluemaskman | 0 | 641,044,115 | 2.8% | ||
steemean | 0 | 10,107,116,149 | 5% | ||
proxy-pal | 0 | 1,382,870,345 | 5.6% | ||
quentinvb | 0 | 469,026,117 | 100% | ||
deriyon | 0 | 472,012,745 | 100% | ||
thelogicaldude | 0 | 892,009,967 | 1.68% | ||
littlesorceress | 0 | 1,432,449,915 | 2.8% | ||
historiasamorlez | 0 | 578,608,030 | 2.8% | ||
newton666 | 0 | 1,649,534,029 | 35% | ||
kryptogames | 0 | 28,012,955,937 | 75% | ||
dawnoner | 0 | 2,116,351,497 | 0.56% | ||
epicdice | 0 | 1,928,561,915 | 1.68% | ||
iamsaray | 0 | 1,448,509,976 | 2.8% | ||
yonnathang | 0 | 7,882,509,157 | 24% | ||
endersong | 0 | 606,846,385 | 4.48% | ||
robibasa | 0 | 12,857,520,715 | 10% | ||
beerlover | 0 | 2,621,677,775 | 1.68% | ||
tinyhousecryptos | 0 | 471,438,171 | 5% | ||
rtron86 | 0 | 11,259,056,968 | 50% | ||
tggr | 0 | 1,452,657,725 | 2.8% | ||
quintaesencia | 0 | 89,163,149,410 | 100% | ||
aicu | 0 | 1,519,356,834 | 5.6% | ||
afarina46 | 0 | 1,950,435,249 | 35% | ||
cryptogambit | 0 | 1,444,869,138 | 7.5% | ||
swayzilla | 0 | 3,614,348,646 | 100% | ||
imbartley | 0 | 836,245,435 | 26.25% | ||
kgswallet | 0 | 1,079,760,231 | 20% | ||
tiffin | 0 | 630,818,301 | 5.6% | ||
reggaesteem | 0 | 493,151,965 | 5% | ||
aicoding | 0 | 592,800,082 | 2.8% | ||
tokensink | 0 | 3,340,856,000 | 5.6% | ||
dechuck | 0 | 15,219,537,672 | 50% | ||
knightsunited | 0 | 881,898,750 | 5.6% | ||
javikun | 0 | 716,880,031 | 24% | ||
nazer | 0 | 2,972,413,964 | 35% | ||
zulfrontado | 0 | 607,789,192 | 12% | ||
electronico | 0 | 17,590,549,589 | 100% | ||
bcm | 0 | 6,968,197,260 | 56.25% | ||
steemstem-trig | 0 | 1,464,226,932 | 70% | ||
hispapro | 0 | 478,871,697,288 | 24% | ||
baltai | 0 | 6,827,039,816 | 2.8% | ||
dappstats | 0 | 4,599,330,564 | 15% | ||
chris-uk | 0 | 1,264,442,993 | 2.8% | ||
mowemu | 0 | 484,698,673 | 5.6% | ||
atheistrepublic | 0 | 5,148,023,441 | 2.8% | ||
ibt-survival | 0 | 16,402,092,527 | 10% | ||
hjmarseille | 0 | 2,184,865,125 | 49% | ||
steemdiamond | 0 | 760,389,515 | 5.6% | ||
sweetval | 0 | 14,335,603,426 | 50% | ||
jennyzer | 0 | 3,379,826,091 | 24% | ||
julesquirin | 0 | 506,846,131 | 1.12% | ||
davidlionfish | 0 | 11,604,747,236 | 50% | ||
peterale | 0 | 565,652,760 | 2.8% | ||
cornavirus | 0 | 9,825,322,295 | 90% | ||
andreina57 | 0 | 701,220,318 | 35% | ||
krisconkr | 0 | 601,545,082 | 2.8% | ||
stemsocial | 0 | 587,138,265,202 | 70% | ||
kyleana | 0 | 736,036,282 | 50% | ||
hydrodino | 0 | 470,507,381 | 100% | ||
hiveonboard | 0 | 816,022,954 | 2.8% | ||
louis00334 | 0 | 2,239,005,822 | 50% | ||
miriannalis | 0 | 213,724,917,094 | 100% | ||
hivelist | 0 | 2,053,277,835 | 1.68% | ||
graciadegenios | 0 | 2,709,546,134 | 24% | ||
ecency | 0 | 3,603,084,138,885 | 6.96% | ||
cybercity | 0 | 18,428,142,586 | 5.6% | ||
georgelys | 0 | 3,030,474,362 | 24% | ||
lqch | 0 | 1,816,587,323 | 12% | ||
palimanali | 0 | 805,793,822 | 2.8% | ||
noelyss | 0 | 18,373,697,826 | 35% | ||
jsalvage | 0 | 1,338,074,421 | 35% | ||
miguelpeliculas | 0 | 2,543,789,072 | 40% | ||
greengalletti | 0 | 1,331,877,014 | 2.8% | ||
adolfom | 0 | 14,084,036,487 | 100% | ||
quinnertronics | 0 | 9,959,188,005 | 7% | ||
anafae | 0 | 579,327,289 | 1.12% | ||
ecency.stats | 0 | 2,611,493,352 | 6.96% | ||
scriptkittie | 0 | 13,675,138,580 | 2.8% | ||
sevenoh-fiveoh | 0 | 1,226,351,988 | 2.8% | ||
visualartist | 0 | 1,065,685,994 | 2.8% | ||
edfer18 | 0 | 8,728,718,004 | 24% | ||
altleft | 0 | 22,983,503,479 | 0.05% | ||
omarrojas | 0 | 2,241,969,941 | 2.8% | ||
noalys | 0 | 1,619,741,827 | 2.8% | ||
enyusael | 0 | 908,275,025 | 12% | ||
evagavilan2 | 0 | 6,789,207,165 | 12% | ||
gonklavez9 | 0 | 1,338,661,709 | 70% | ||
jesuspsoto | 0 | 889,133,324 | 24% | ||
ebon123 | 0 | 645,345,844 | 100% | ||
hive-144994 | 0 | 471,157,897 | 100% | ||
blezyn | 0 | 474,237,426 | 2.8% | ||
apeboy | 0 | 934,396,535 | 12% | ||
apendix1994 | 0 | 3,982,488,789 | 90% | ||
koshwe | 0 | 899,059,421 | 50% | ||
cosplay.hadr | 0 | 1,429,729,425 | 5.6% | ||
hadrgames | 0 | 1,467,500,882 | 5.6% | ||
rawecz | 0 | 2,858,078,186 | 24% | ||
maar | 0 | 667,170,753 | 70% | ||
meritocracy | 0 | 63,144,628,182 | 0.56% | ||
jmsansan | 0 | 4,635,989,645 | 2.8% | ||
dcrops | 0 | 40,563,866,704 | 2.8% | ||
rondonshneezy | 0 | 522,435,081 | 2.8% | ||
youloseagain | 0 | 600,307,311 | 20% | ||
yggdrasilwind | 0 | 1,646,923,870 | 24% | ||
yozen | 0 | 2,196,727,216 | 2.8% | ||
alvarezjessica | 0 | 3,677,233,789 | 24% | ||
bananass | 0 | 1,981,594,329 | 4.2% | ||
elgatoshawua | 0 | 679,287,877 | 2.8% | ||
arunbiju969 | 0 | 553,545,469 | 14% | ||
limn | 0 | 962,623,329 | 2.8% | ||
nyxlabs | 0 | 1,224,405,096 | 3.5% | ||
mayorkeys | 0 | 1,550,830,306 | 30% | ||
failingforwards | 0 | 3,582,359,447 | 2.8% | ||
hexagono6 | 0 | 2,115,517,522 | 12% | ||
trouvaille | 0 | 750,793,158 | 2.8% | ||
joseluis91 | 0 | 848,487,418 | 5.6% | ||
maxelitereturned | 0 | 562,331,720 | 35% | ||
juecoree.stem | 0 | 481,076,318 | 70% | ||
victordumont | 0 | 1,975,103,954 | 24% | ||
nfttunz | 0 | 9,684,614,647 | 0.56% | ||
caribayarte | 0 | 1,187,888,627 | 24% | ||
yeidelyt | 0 | 887,687,192 | 24% | ||
ele.art | 0 | 517,102,381 | 24% | ||
atexoras.pub | 0 | 1,654,647,533 | 2.8% | ||
edcraft | 0 | 452,423,802 | 24% | ||
holovision.cash | 0 | 4,093,566,800 | 100% | ||
brujita18 | 0 | 5,634,528,073 | 10.8% | ||
krrizjos18 | 0 | 1,020,728,174 | 12% | ||
hubeyma | 0 | 841,308,039 | 2.8% | ||
mirteg | 0 | 740,800,499 | 5.6% | ||
artsugar | 0 | 1,135,374,049 | 2.8% | ||
hukepuk | 0 | 4,396,560,774 | 100% | ||
doriangel | 0 | 668,523,482 | 12% | ||
podping | 0 | 8,723,989,417 | 1.4% | ||
davidbright | 0 | 950,063,462 | 2.8% | ||
jessicaossom | 0 | 954,384,258 | 2.8% | ||
beysyd | 0 | 1,179,287,057 | 12% | ||
ferbu | 0 | 2,753,378,586 | 24% | ||
drhueso | 0 | 1,451,303,754 | 2.8% | ||
asderhz | 0 | 492,101,841 | 12% | ||
janetfund | 0 | 27,952,103,716 | 100% | ||
mairimgo23 | 0 | 2,289,151,680 | 24% | ||
mario02 | 0 | 518,422,257 | 2.8% | ||
miguelstar | 0 | 1,414,928,508 | 24% | ||
tanzil2024 | 0 | 1,119,574,410 | 1% | ||
badge-646464 | 0 | 2,833,104,238 | 100% | ||
sidalim88 | 0 | 3,749,584,274 | 2.8% | ||
amaillo | 0 | 756,445,175 | 4.8% | ||
aries90 | 0 | 51,912,592,211 | 5.6% | ||
franvenezuela | 0 | 636,179,167 | 12% | ||
rencongland | 0 | 601,630,292 | 2.8% | ||
cugel | 0 | 862,504,985 | 2.8% | ||
martinthemass | 0 | 615,000,233 | 100% | ||
tub3r0 | 0 | 1,941,649,800 | 7.5% | ||
amaillo-m | 0 | 764,048,449 | 24% | ||
acantoni | 0 | 681,995,139 | 2.8% | ||
migka | 0 | 4,959,104,952 | 90% | ||
blingit | 0 | 3,672,418,440 | 2.8% | ||
barizon | 0 | 1,241,710,087 | 100% | ||
axelx12 | 0 | 3,582,448,876 | 100% | ||
mcsherriff | 0 | 520,777,303 | 5.6% | ||
pob.curator | 0 | 602,461,082 | 50% | ||
h3m4n7 | 0 | 1,169,612,069 | 2.8% | ||
victoraraguayan1 | 0 | 572,227,130 | 24% | ||
yixn | 0 | 13,191,276,977 | 2.8% | ||
kqaosphreak | 0 | 6,882,182,016 | 70% | ||
mcookies | 0 | 2,548,057,179 | 12% | ||
waivio.curator | 0 | 1,687,510,615 | 3.26% | ||
chaosmagic23 | 0 | 2,101,395,898 | 11% | ||
gercripto | 0 | 1,348,553,599 | 12% | ||
aichanbot | 0 | 1,963,928,979 | 5.6% | ||
ehizgabriel | 0 | 679,571,690 | 35% | ||
newilluminati | 0 | 16,490,054,229 | 2.8% | ||
susurrodmisterio | 0 | 1,004,419,657 | 12% | ||
esalcedo | 0 | 38,885,551,433 | 24% | ||
rafael-rdguez2 | 0 | 203,877,910 | 100% | ||
foxlatam | 0 | 10,889,175,522 | 50% | ||
deadleaf | 0 | 4,090,460,798 | 100% | ||
stefy.music | 0 | 668,574,404 | 2.8% | ||
asado | 0 | 616,994,034 | 2.8% | ||
allentaylor | 0 | 1,174,725,676 | 3.48% | ||
xurph | 0 | 762,006,182 | 2.8% | ||
benwickenton | 0 | 2,776,673,298 | 5.6% | ||
jerusa777 | 0 | 1,422,411,108 | 15% | ||
henrietta27 | 0 | 475,843,997 | 2.8% | ||
dusunenkalpp | 0 | 1,415,799,466 | 2.8% | ||
azj26 | 0 | 4,806,205,197 | 16% | ||
balabambuz | 0 | 728,225,849 | 2.8% | ||
her18lux | 0 | 17,337,091,228 | 100% | ||
draconiac | 0 | 469,615,288 | 100% | ||
drivingindevon | 0 | 1,692,888,442 | 4.48% | ||
prosocialise | 0 | 155,150,746,799 | 35% | ||
treasuree | 0 | 598,356,938 | 2.8% | ||
archangel21 | 0 | 15,610,394,109 | 5.6% | ||
shawnnft | 0 | 484,132,634 | 0.56% | ||
plicc8 | 0 | 765,832,105 | 70% | ||
belug | 0 | 3,546,525,907 | 1.68% | ||
mugueto2022 | 0 | 552,426,917 | 20% | ||
ricardoeloy | 0 | 1,035,260,010 | 14% | ||
chechostreet | 0 | 2,034,865,074 | 24% | ||
jaylatour | 0 | 948,915,820 | 5.6% | ||
nazom | 0 | 841,208,817 | 35% | ||
baboz | 0 | 1,592,151,463 | 1.4% | ||
mr-rent | 0 | 4,225,990,296 | 75% | ||
universodaniel | 0 | 876,131,938 | 12% | ||
soyjoselopez | 0 | 471,075,705 | 20% | ||
sbtofficial | 0 | 5,142,957,233 | 2.8% | ||
nwothini335 | 0 | 1,529,398,347 | 17.5% | ||
vagabond42069 | 0 | 1,521,573,183 | 35% | ||
eollarvesm | 0 | 887,601,512 | 12% | ||
inibless | 0 | 1,960,927,242 | 35% | ||
hiversbqto | 0 | 2,937,438,908 | 24% | ||
idksamad78699 | 0 | 2,081,490,945 | 2.8% | ||
justfavour | 0 | 1,071,936,067 | 2.8% | ||
sc000 | 0 | 1,619,879,640 | 5.6% | ||
cardcompounding | 0 | 1,997,745,423 | 100% | ||
hannahjames710 | 0 | 36,485,624,955 | 100% | ||
jijisaurart | 0 | 1,681,610,872 | 2.8% | ||
tuba777 | 0 | 1,584,298,517 | 35% | ||
clpacksperiment | 0 | 2,620,741,971 | 2.8% | ||
ambicrypto | 0 | 106,109,653,819 | 5.6% | ||
humbe | 0 | 1,894,914,179 | 1% | ||
peniel2010 | 0 | 919,338,942 | 50% | ||
flywithmarlin | 0 | 862,329,908 | 12% | ||
zackygamer | 0 | 1,387,506,691 | 24% | ||
technico | 0 | 958,058,627 | 2.8% | ||
fotlala | 0 | 761,926,168 | 12% | ||
jesus-son | 0 | 1,170,375,111 | 2.8% | ||
whitneyalexx | 0 | 576,921,288 | 2.8% | ||
liberius-1 | 0 | 1,487,627,122 | 24% | ||
lettinggotech | 0 | 1,292,852,258 | 2.8% | ||
pob.voter | 0 | 882,422,728 | 25% | ||
alive.voter | 0 | 1,786,689,314 | 25% | ||
ojsuarez2 | 0 | 3,161,401,927 | 100% | ||
tahastories1 | 0 | 486,647,694 | 2.8% | ||
rhemagames | 0 | 5,379,209,835 | 2.8% | ||
aslamrer | 0 | 21,360,361,729 | 50% | ||
kryptof | 0 | 4,226,931,308 | 5% | ||
ruthmarquez | 0 | 521,209,432 | 24% | ||
cuatrolarense | 0 | 2,364,641,411 | 100% | ||
yanguaro | 0 | 498,285,134 | 100% | ||
mariiestefania | 0 | 2,667,993,029 | 24% | ||
actaylor | 0 | 4,899,538,508 | 50% | ||
queasuluz | 0 | 2,313,362,697 | 24% | ||
fredinks | 0 | 1,140,809,186 | 75% | ||
juniorcreed1 | 0 | 909,609,106 | 50% | ||
bulliontool | 0 | 8,334,788,202 | 50% |
Hey! What an awesome find today! You're doing dev quizzes. I definitely need to come back here. I'm just in my feed here today finding yours. On the quiz above I have no clou yet and look forward to your solution in #58 hopefully. Would love to have me mentioned for not missing out. Your lesson reminds me of going into regular expressions more, yet having little reason in a usual day in and day out as not being a dev yet. Make this a great day! !invest_vote
author | anli |
---|---|
permlink | re-eniolw-2024427t123028663z |
category | hive-197685 |
json_metadata | {"type":"post","tags":["hive-197685","programming","coding","python","chess","quiz","neoxian","proofofbrain","creativecoin","waivio","spanish"],"app":"ecency/3.0.46-mobile","format":"markdown+html"} |
created | 2024-04-27 10:30:30 |
last_update | 2024-04-27 10:31:21 |
depth | 1 |
children | 4 |
last_payout | 2024-05-04 10:30: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 | 465 |
author_reputation | 22,251,606,504,045 |
root_title | "My Coding Quiz #57" |
beneficiaries | [] |
max_accepted_payout | 1,000,000.000 HBD |
percent_hbd | 10,000 |
post_id | 133,163,344 |
net_rshares | 0 |
Hey! Thank you for stopping by! I hope you like my coding series. Are you learning coding? If you follow me, I think you should get updates about my posts in your feed.
author | eniolw |
---|---|
permlink | re-anli-2024427t123339955z |
category | hive-197685 |
json_metadata | {"tags":["hive-197685","programming","coding","python","chess","quiz","neoxian","proofofbrain","creativecoin","waivio","spanish"],"app":"ecency/3.1.1-vision","format":"markdown+html"} |
created | 2024-04-27 16:33:39 |
last_update | 2024-04-27 16:33:39 |
depth | 2 |
children | 3 |
last_payout | 2024-05-04 16:33:39 |
cashout_time | 1969-12-31 23:59:59 |
total_payout_value | 0.000 HBD |
curator_payout_value | 0.000 HBD |
pending_payout_value | 0.000 HBD |
promoted | 0.000 HBD |
body_length | 168 |
author_reputation | 253,543,214,078,146 |
root_title | "My Coding Quiz #57" |
beneficiaries | [] |
max_accepted_payout | 1,000,000.000 HBD |
percent_hbd | 10,000 |
post_id | 133,168,756 |
net_rshares | 6,656,218,619 |
author_curate_reward | "" |
voter | weight | wgt% | rshares | pct | time |
---|---|---|---|---|---|
anli | 0 | 6,656,218,619 | 100% |
No, I'm not learning to code. I've tried to go into it, though never had the patience to dive very deep. I'm more of an admin then a coder. My feed is what led me here, yet that's not very reliable as I don't often can afford [days like today](https://ecency.com/hive-106444/@qwerrie/re-anli-scm1et). !LOLZ So I miss a lot that is in my feed. Yet I now have added your account to my F.R.I.D.A.Y and look forward to more of your quizzes! 馃榾馃憤 !invest_vote
author | anli |
---|---|
permlink | re-eniolw-2024427t19553963z |
category | hive-197685 |
json_metadata | {"tags":["hive-197685","programming","coding","python","chess","quiz","neoxian","proofofbrain","creativecoin","waivio","spanish"],"app":"ecency/3.1.1-vision","format":"markdown+html"} |
created | 2024-04-27 17:05:54 |
last_update | 2024-04-27 17:05:54 |
depth | 3 |
children | 2 |
last_payout | 2024-05-04 17:05:54 |
cashout_time | 1969-12-31 23:59:59 |
total_payout_value | 0.000 HBD |
curator_payout_value | 0.000 HBD |
pending_payout_value | 0.000 HBD |
promoted | 0.000 HBD |
body_length | 455 |
author_reputation | 22,251,606,504,045 |
root_title | "My Coding Quiz #57" |
beneficiaries | [] |
max_accepted_payout | 1,000,000.000 HBD |
percent_hbd | 10,000 |
post_id | 133,169,263 |
net_rshares | 0 |
@tipu curate 8
author | miriannalis |
---|---|
permlink | re-eniolw-scmfua |
category | hive-197685 |
json_metadata | {"tags":["hive-197685"],"app":"peakd/2024.4.3"} |
created | 2024-04-27 21:55:15 |
last_update | 2024-04-27 21:55:15 |
depth | 1 |
children | 2 |
last_payout | 2024-05-04 21:55: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 | 14 |
author_reputation | 304,689,227,513,599 |
root_title | "My Coding Quiz #57" |
beneficiaries | [] |
max_accepted_payout | 1,000,000.000 HBD |
percent_hbd | 10,000 |
post_id | 133,176,600 |
net_rshares | 0 |
Gracias!
author | eniolw |
---|---|
permlink | re-miriannalis-2024429t163519520z |
category | hive-197685 |
json_metadata | {"tags":["hive-197685"],"app":"ecency/3.1.1-vision","format":"markdown+html"} |
created | 2024-04-29 20:35:21 |
last_update | 2024-04-29 20:35:21 |
depth | 2 |
children | 0 |
last_payout | 2024-05-06 20:35:21 |
cashout_time | 1969-12-31 23:59:59 |
total_payout_value | 0.040 HBD |
curator_payout_value | 0.040 HBD |
pending_payout_value | 0.000 HBD |
promoted | 0.000 HBD |
body_length | 8 |
author_reputation | 253,543,214,078,146 |
root_title | "My Coding Quiz #57" |
beneficiaries | [] |
max_accepted_payout | 1,000,000.000 HBD |
percent_hbd | 10,000 |
post_id | 133,225,572 |
net_rshares | 193,159,140,376 |
author_curate_reward | "" |
voter | weight | wgt% | rshares | pct | time |
---|---|---|---|---|---|
miriannalis | 0 | 193,159,140,376 | 100% |
<a href="https://tipu.online/hive_curator?miriannalis" target="_blank">Upvoted 👌</a> (Mana: 0/75) <a href="https://peakd.com/hive/@reward.app/reward-app-quick-guide-updated" target="_blank">Liquid rewards</a>.
author | tipu |
---|---|
permlink | re-re-eniolw-scmfua-20240427t215521z |
category | hive-197685 |
json_metadata | "{"app": "beem/0.24.26"}" |
created | 2024-04-27 21:55:21 |
last_update | 2024-04-27 21:55:21 |
depth | 2 |
children | 0 |
last_payout | 2024-05-04 21:55:21 |
cashout_time | 1969-12-31 23:59:59 |
total_payout_value | 0.000 HBD |
curator_payout_value | 0.000 HBD |
pending_payout_value | 0.000 HBD |
promoted | 0.000 HBD |
body_length | 218 |
author_reputation | 55,905,961,568,182 |
root_title | "My Coding Quiz #57" |
beneficiaries | [] |
max_accepted_payout | 1,000,000.000 HBD |
percent_hbd | 10,000 |
post_id | 133,176,606 |
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-57-20240427t185140260z |
category | hive-197685 |
json_metadata | {"app":"STEMsocial"} |
created | 2024-04-27 18:51:39 |
last_update | 2024-04-27 18:51:39 |
depth | 1 |
children | 0 |
last_payout | 2024-05-04 18:51: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 | 565 |
author_reputation | 22,903,711,652,468 |
root_title | "My Coding Quiz #57" |
beneficiaries | [] |
max_accepted_payout | 1,000,000.000 HBD |
percent_hbd | 10,000 |
post_id | 133,170,987 |
net_rshares | 0 |