<div class="text-justify"> <center><h2>My Coding Quiz #36 馃懆鈥嶐煉火煕狅笍馃З</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/DQmefkq7pVWeC6CC8i6q53SRXnN3omGpwgMTBKjfuQjctpx/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-35">previous quiz</a>:</b> <b>false</b>. This script is similar to how curation works in blogging sites like Hive.</p> <p>We see that three constant variables <code>vote</code>, <code>str</code> and <code>comment</code> are created. The variable <code>str</code> is an auxiliary that contains a string data. It is used shortly after to create the <code>comment</code> variable. However, when we try to parse its content we discover that the value of <code>str</code> does not follow the JSON format. The problem is that it uses single quotes (<code>''</code>) instead of double quotes (<code>""</code>). Did you notice this? If you didn't, you must have been suspicious of the fact that a <code>try-catch</code> clause was used. As a consequence <code>comment</code> is <b>undefined</b>.</p> <p>Then we create the <code>flags</code> object with the <code>upvoted</code> and <code>commented</code> fields. We see that we use the negation operator twice (<code>!!</code>), which helps to get the truth value of <code>vote</code> and <code>comment</code>, whether truthy or falsy. We do this because we are only interested in the boolean value, not the complete data.</p> <p>Finally, we create the constant variable <code>curated</code> using the expression <code>Object.values(flags).every(v => !!v)</code>. The static method <code>Object.values()</code> allows you to create an array from the values of a given object. This is incredibly useful if you want to iterate over the contents of an object using <code>for</code> or <code>map</code>, etc. In our script the array created is <b>[ true, false ]</b> because <code>comment</code> is <b>undefined</b> and this is a falsy value.</p> <p>Then the <code>every</code> method receives the iterable implicitly and the callback function <code>v => !!v</code>. The <code>every</code> method checks if all the elements of the array satisfy the given condition. In our case, the array <b>[ true, false ]</b> does not, because the second item is false. As a consequence <code>every</code> returns <b>false</b> and is assigned to <code>curated</code>. The output is therefore <b>false</b>, indicating that the curation has not been completed.</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> others.</p> <hr> <center><h2>Mi Quiz de Programaci贸n #36 馃懆鈥嶐煉火煕狅笍馃З</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/DQmNRnt2fL1zjmCer2zJsDCyW8mTVvm4R3wjA8D6tLhnEgk/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-35">quiz anterior</a>:</b> <b>false</b>. Este script es similar a c贸mo funciona la curaci贸n en sitios de blogs como Hive.</p> <p>Vemos que se crean tres variables constantes <code>vote</code>, <code>str</code> y <code>comment</code>. La variable <code>str</code> es un auxiliar que contiene una cadena de datos. Se utiliza poco despu茅s para crear la variable <code>comment</code>. Sin embargo, cuando intentamos analizar su contenido descubrimos que el valor de <code>str</code> no sigue el formato JSON. El problema es que utiliza comillas simples (<code>''</code>) en lugar de comillas dobles (<code>""</code>). 驴Notaste esto? Si no lo hiciste, debiste haber sospechado del hecho de que se utiliz贸 una cl谩usula <code>try-catch</code>. Como consecuencia, <code>comment</code> es <b>undefined</b>.</p> <p>Luego creamos el objeto <code>flags</code> con los campos <code>upvoted</code> y <code>commented</code>. Vemos que usamos el operador negaci贸n dos veces (<code>!!</code>), que ayuda a obtener el valor de verdad de <code>vote</code> y <code>comment</code>, ya sea truthy o falsy. Hacemos esto porque solo nos interesa el valor booleano, no los datos completos.</p> <p>Finalmente, creamos la variable constante <code>curated</code> usando la expresi贸n <code>Object.values(flags).every(v => !!v)</code>. El m茅todo est谩tico <code>Object.values()</code> permite crear un arreglo a partir de los valores de un objeto determinado. Esto es incre铆blemente 煤til si deseas iterar sobre el contenido de un objeto usando <code>for</code> o <code>map</code>, etc. En nuestro script, el arreglo creado es <b>[ true, false ]</b> porque <code>comentario</code> es <b>undefined</b> y este es un valor falsy.</p> <p>Entonces el m茅todo <code>every</code> recibe el iterable impl铆citamente y la funci贸n callback <code>v => !!v</code>. El m茅todo <code>every</code> comprueba si todos los elementos del arreglo satisfacen la condici贸n dada. En nuestro caso, el arreglo <b>[ true, false ]</b> no es as铆, porque el segundo elemento es falso. Como consecuencia, <code>every</code> devuelve <b>false</b> y se asigna a <code>curated</code>. Por lo tanto, el resultado es <b>false</b>, lo que indica que la curaci贸n no se ha completado.</p> </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-36 |
category | hive-169321 |
json_metadata | "{"image":["https://images.ecency.com/DQmefkq7pVWeC6CC8i6q53SRXnN3omGpwgMTBKjfuQjctpx/quiz_img_en.png","https://images.ecency.com/DQmNRnt2fL1zjmCer2zJsDCyW8mTVvm4R3wjA8D6tLhnEgk/quiz_img_es.png"],"tags":["hive-169321","coding","programming","python","quiz","neoxian","proofofbrain","waivio","creaivecoin","spanish"],"description":"My Coding Quiz #36 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.9597","0.9597"]}" |
created | 2023-11-25 20:25:24 |
last_update | 2023-11-25 20:25:24 |
depth | 0 |
children | 1 |
last_payout | 2023-12-02 20:25:24 |
cashout_time | 1969-12-31 23:59:59 |
total_payout_value | 4.782 HBD |
curator_payout_value | 4.680 HBD |
pending_payout_value | 0.000 HBD |
promoted | 0.000 HBD |
body_length | 6,619 |
author_reputation | 255,376,104,439,756 |
root_title | "My Coding Quiz #36" |
beneficiaries | [] |
max_accepted_payout | 1,000,000.000 HBD |
percent_hbd | 10,000 |
post_id | 129,165,539 |
net_rshares | 19,978,265,411,267 |
author_curate_reward | "" |
voter | weight | wgt% | rshares | pct | time |
---|---|---|---|---|---|
drifter1 | 0 | 1,006,537,364 | 2.8% | ||
kevinwong | 0 | 18,543,407,196 | 2.8% | ||
justtryme90 | 0 | 1,409,941,611 | 70% | ||
eric-boucher | 0 | 14,568,671,225 | 2.8% | ||
thecryptodrive | 0 | 66,590,921,213 | 1.12% | ||
roelandp | 0 | 307,308,624,444 | 35% | ||
cloh76 | 0 | 3,931,654,196 | 2.8% | ||
lichtblick | 0 | 2,733,729,169 | 1.68% | ||
joshglen | 0 | 691,596,386 | 5.6% | ||
pipokinha | 0 | 65,548,632,337 | 100% | ||
rmach | 0 | 13,945,026,273 | 35% | ||
lemouth | 0 | 1,978,976,701,824 | 70% | ||
alaqrab | 0 | 536,063,511 | 2.8% | ||
lamouthe | 0 | 5,573,344,975 | 70% | ||
tfeldman | 0 | 5,425,957,150 | 2.8% | ||
sergiomendes | 0 | 1,322,372,317 | 2.8% | ||
metabs | 0 | 7,651,745,426 | 70% | ||
mcsvi | 0 | 121,053,870,156 | 50% | ||
lk666 | 0 | 1,814,515,030 | 2.8% | ||
cnfund | 0 | 11,329,467,032 | 5.6% | ||
justyy | 0 | 30,280,774,064 | 5.6% | ||
michelle.gent | 0 | 3,383,278,785 | 1.12% | ||
curie | 0 | 351,517,751,655 | 5.6% | ||
modernzorker | 0 | 3,740,527,103 | 3.92% | ||
techslut | 0 | 184,734,332,959 | 28% | ||
frankches | 0 | 1,402,405,144 | 24% | ||
steemstem | 0 | 1,290,754,834,546 | 70% | ||
dashfit | 0 | 478,842,069 | 2.8% | ||
tristancarax | 0 | 691,695,028 | 2.8% | ||
edb | 0 | 5,090,155,883 | 7% | ||
bigtakosensei | 0 | 1,336,217,287 | 1.4% | ||
walterjay | 0 | 442,898,947,426 | 35% | ||
valth | 0 | 10,503,601,152 | 35% | ||
metroair | 0 | 22,800,065,938 | 5.6% | ||
driptorchpress | 0 | 2,134,156,770 | 1.4% | ||
dna-replication | 0 | 2,744,070,695 | 70% | ||
mariaalmeida | 0 | 17,822,369,493 | 100% | ||
boynashruddin | 0 | 712,888,419 | 5.6% | ||
gifmaster | 0 | 54,907,603,107 | 100% | ||
steemiteducation | 0 | 1,074,670,761 | 2.8% | ||
dhimmel | 0 | 366,666,967,755 | 17.5% | ||
oluwatobiloba | 0 | 2,355,046,053 | 70% | ||
detlev | 0 | 14,247,915,591 | 1.68% | ||
chasmic-cosm | 0 | 848,642,093 | 2.8% | ||
dune69 | 0 | 599,931,649 | 5.6% | ||
lugaxker | 0 | 823,566,558 | 34.65% | ||
federacion45 | 0 | 8,660,930,433 | 2.8% | ||
amberyooper | 0 | 642,268,717 | 2.8% | ||
gamersclassified | 0 | 3,452,290,258 | 2.8% | ||
iansart | 0 | 5,605,716,441 | 2.8% | ||
forykw | 0 | 12,964,878,459 | 2.8% | ||
mobbs | 0 | 110,352,044,192 | 35% | ||
jerrybanfield | 0 | 18,842,681,252 | 5.6% | ||
rt395 | 0 | 1,976,606,454 | 1.5% | ||
bitrocker2020 | 0 | 8,725,823,520 | 0.84% | ||
sustainablyyours | 0 | 24,136,222,701 | 35% | ||
helo | 0 | 14,796,594,088 | 35% | ||
arunava | 0 | 19,125,834,846 | 2.24% | ||
schoolforsdg4 | 0 | 1,053,120,854 | 5% | ||
samminator | 0 | 45,130,290,032 | 35% | ||
zerotoone | 0 | 1,107,884,338 | 2.8% | ||
mahdiyari | 0 | 262,710,446,556 | 80% | ||
lorenzor | 0 | 1,287,088,900 | 50% | ||
aboutyourbiz | 0 | 927,475,803 | 5.6% | ||
derosnec | 0 | 573,020,645 | 2.8% | ||
alexander.alexis | 0 | 43,013,139,769 | 70% | ||
dandesign86 | 0 | 16,038,711,780 | 8% | ||
jayna | 0 | 7,813,645,492 | 1.12% | ||
hhayweaver | 0 | 1,056,906,352 | 1.4% | ||
princessmewmew | 0 | 7,601,551,756 | 2.8% | ||
grapthar | 0 | 1,068,790,259 | 4.2% | ||
joeyarnoldvn | 0 | 474,757,227 | 1.47% | ||
diabolika | 0 | 860,776,194 | 2.8% | ||
ufv | 0 | 3,006,808,420 | 50% | ||
gunthertopp | 0 | 74,763,175,941 | 1.4% | ||
pipiczech | 0 | 2,304,435,084 | 5.6% | ||
empath | 0 | 4,087,484,556 | 2.8% | ||
minnowbooster | 0 | 1,051,202,276,757 | 20% | ||
lenasveganliving | 0 | 763,888,801 | 2.8% | ||
howo | 0 | 2,198,965,581,712 | 70% | ||
tsoldovieri | 0 | 7,408,320,575 | 35% | ||
neumannsalva | 0 | 4,632,754,566 | 2.8% | ||
stayoutoftherz | 0 | 162,526,136,239 | 1.4% | ||
abigail-dantes | 0 | 25,950,038,435 | 70% | ||
coindevil | 0 | 2,826,234,114 | 4.48% | ||
zonguin | 0 | 3,760,165,535 | 17.5% | ||
enfocate | 0 | 4,165,797,759 | 24% | ||
khalil319 | 0 | 2,172,609,941 | 10% | ||
martibis | 0 | 1,513,697,106 | 1.68% | ||
redrica | 0 | 2,048,329,202 | 2.8% | ||
pepskaram | 0 | 589,380,922 | 2.8% | ||
iamphysical | 0 | 745,464,369 | 90% | ||
dipom98 | 0 | 1,189,234,505 | 2.8% | ||
zest | 0 | 1,005,699,876 | 35% | ||
zyx066 | 0 | 4,208,738,050 | 1.68% | ||
chrisdavidphoto | 0 | 1,014,671,032 | 1.68% | ||
revo | 0 | 10,830,297,488 | 5.6% | ||
azulear | 0 | 1,210,471,278 | 100% | ||
psicoluigi | 0 | 750,653,476 | 50% | ||
risckylu | 0 | 1,531,153,729 | 24% | ||
rafaelaquino | 0 | 14,418,855,250 | 100% | ||
wilians | 0 | 548,137,818 | 35% | ||
rocky1 | 0 | 773,622,554,630 | 0.84% | ||
stickchumpion | 0 | 870,571,184 | 2.8% | ||
thelordsharvest | 0 | 4,946,056,427 | 5.6% | ||
aidefr | 0 | 7,334,021,331 | 35% | ||
torico | 0 | 1,490,622,500 | 1.84% | ||
therealwolf | 0 | 32,987,816,865 | 2.8% | ||
fatman | 0 | 9,184,984,790 | 2% | ||
inthenow | 0 | 20,351,883,961 | 20% | ||
minnowpowerup | 0 | 748,943,197 | 2.8% | ||
yangyanje | 0 | 550,432,047 | 1.4% | ||
splash-of-angs63 | 0 | 13,151,795,842 | 100% | ||
cryptononymous | 0 | 1,942,494,546 | 2.8% | ||
dauerossi | 0 | 6,250,802,132 | 30% | ||
meno | 0 | 26,223,111,384 | 2.8% | ||
buttcoins | 0 | 8,888,722,653 | 1.12% | ||
helyorsini | 0 | 610,211,772 | 2.8% | ||
steemed-proxy | 0 | 981,529,542,491 | 5.6% | ||
fatkat | 0 | 1,475,531,592 | 2.79% | ||
peaceandwar | 0 | 869,447,582 | 2.8% | ||
bhoa | 0 | 1,143,682,033 | 35% | ||
enzor | 0 | 2,012,018,054 | 35% | ||
marcoriccardi | 0 | 955,615,639 | 5.6% | ||
bartosz546 | 0 | 13,367,140,462 | 2.8% | ||
tazbaz | 0 | 558,465,766 | 2.8% | ||
afterglow | 0 | 781,550,354 | 10% | ||
dandays | 0 | 17,944,092,170 | 1.06% | ||
battebilly | 0 | 742,802,672 | 2.8% | ||
caladan | 0 | 798,185,669 | 5.6% | ||
dejan.vuckovic | 0 | 767,547,902 | 1.12% | ||
lottje | 0 | 612,414,932 | 70% | ||
myach | 0 | 897,985,741 | 4.48% | ||
sunsea | 0 | 2,568,813,310 | 2.8% | ||
eonwarped | 0 | 460,351,659,819 | 30% | ||
postpromoter | 0 | 1,634,082,677,591 | 70% | ||
mejustandrew | 0 | 661,331,237 | 2.8% | ||
omstavan | 0 | 3,684,923,340 | 50% | ||
steveconnor | 0 | 4,924,330,562 | 2.8% | ||
sankysanket18 | 0 | 1,698,248,433 | 35% | ||
dbddv01 | 0 | 2,567,833,498 | 17.5% | ||
zmx | 0 | 586,797,839 | 2.8% | ||
nicole-st | 0 | 3,275,459,655 | 2.8% | ||
smartsteem | 0 | 136,656,465,782 | 2.8% | ||
aboutcoolscience | 0 | 15,437,529,952 | 70% | ||
elisonr13 | 0 | 2,206,808,332 | 12% | ||
afifa | 0 | 614,031,045 | 10% | ||
sandracarrascal | 0 | 482,865,672 | 50% | ||
ubikalo | 0 | 505,090,143 | 12% | ||
skycae | 0 | 707,486,904 | 5.6% | ||
kenadis | 0 | 18,535,730,004 | 70% | ||
madridbg | 0 | 33,406,059,991 | 70% | ||
robotics101 | 0 | 21,058,057,147 | 70% | ||
marcolino76 | 0 | 614,735,605 | 2.8% | ||
onemedia | 0 | 1,157,247,506 | 5.6% | ||
lpv | 0 | 2,916,151,636 | 8.75% | ||
danaedwards | 0 | 633,029,214 | 5.6% | ||
r00sj3 | 0 | 119,487,626,745 | 35% | ||
sco | 0 | 20,088,624,149 | 70% | ||
phgnomo | 0 | 850,371,275 | 2.8% | ||
ennyta | 0 | 942,275,448 | 50% | ||
juecoree | 0 | 10,282,593,025 | 49% | ||
gordon92 | 0 | 861,602,629 | 2.8% | ||
stahlberg | 0 | 1,272,980,230 | 2.8% | ||
gabrielatravels | 0 | 1,938,891,168 | 1.96% | ||
cordeta | 0 | 1,027,088,654 | 5.6% | ||
reizak | 0 | 498,030,165 | 2.24% | ||
carn | 0 | 3,606,926,487 | 5.04% | ||
branbello | 0 | 3,503,311,731 | 35% | ||
hetty-rowan | 0 | 2,951,852,597 | 2.8% | ||
lilianajimenez | 0 | 589,668,170 | 2.8% | ||
ydavgonzalez | 0 | 1,894,957,796 | 10% | ||
intrepidphotos | 0 | 16,325,304,095 | 52.5% | ||
fineartnow | 0 | 3,807,617,432 | 2.8% | ||
hijosdelhombre | 0 | 42,619,643,148 | 40% | ||
mathowl | 0 | 46,592,348,856 | 100% | ||
yoghurt | 0 | 1,209,189,603 | 5.6% | ||
steemvault | 0 | 2,218,187,164 | 5.6% | ||
shinedojo | 0 | 617,166,549 | 5.6% | ||
fragmentarion | 0 | 39,790,876,740 | 70% | ||
bennettitalia | 0 | 1,945,483,814 | 2.8% | ||
jigstrike | 0 | 880,207,017 | 2.8% | ||
m1alsan | 0 | 1,095,035,745 | 5.6% | ||
dynamicrypto | 0 | 3,369,239,693 | 1% | ||
neneandy | 0 | 6,466,907,145 | 5.6% | ||
pab.ink | 0 | 746,987,554 | 35% | ||
marc-allaria | 0 | 4,361,914,545 | 2.8% | ||
real2josh | 0 | 661,181,182 | 35% | ||
gribouille | 0 | 3,349,818,517 | 70% | ||
pandasquad | 0 | 12,810,029,197 | 5.6% | ||
lunaticpandora | 0 | 588,723,465 | 10.8% | ||
kingabesh | 0 | 1,419,302,749 | 35% | ||
miguelangel2801 | 0 | 754,908,294 | 50% | ||
mproxima | 0 | 2,326,998,440 | 2.8% | ||
didic | 0 | 1,915,063,907 | 2.8% | ||
warpedpoetic | 0 | 2,098,298,929 | 5.6% | ||
careassaktart | 0 | 660,849,489 | 1.68% | ||
jossduarte | 0 | 1,554,719,440 | 2.8% | ||
emiliomoron | 0 | 10,687,336,118 | 35% | ||
galam | 0 | 662,721,006 | 24.5% | ||
dexterdev | 0 | 2,887,818,712 | 35% | ||
nwjordan | 0 | 840,006,931 | 5.6% | ||
geopolis | 0 | 4,683,996,982 | 70% | ||
ajfernandez | 0 | 782,452,366 | 100% | ||
robertbira | 0 | 7,583,457,039 | 17.5% | ||
alexdory | 0 | 8,942,181,272 | 70% | ||
irgendwo | 0 | 21,802,976,498 | 5.6% | ||
vegan.niinja | 0 | 500,997,647 | 2.8% | ||
flugschwein | 0 | 12,071,840,761 | 59.5% | ||
charitybot | 0 | 5,119,892,780 | 100% | ||
cyprianj | 0 | 76,196,632,724 | 70% | ||
kieranstone | 0 | 1,605,941,430 | 1.84% | ||
melvin7 | 0 | 107,886,183,717 | 35% | ||
francostem | 0 | 9,754,242,673 | 70% | ||
russellstockley | 0 | 1,627,447,285 | 1.4% | ||
endopediatria | 0 | 695,806,150 | 20% | ||
steempampanga | 0 | 503,823,589 | 2.8% | ||
croctopus | 0 | 1,400,710,754 | 100% | ||
jjerryhan | 0 | 4,864,654,255 | 2.8% | ||
putu300 | 0 | 546,186,302 | 5% | ||
zipporah | 0 | 2,754,096,232 | 1.12% | ||
leomarylm | 0 | 1,826,189,556 | 2.8% | ||
positiveninja | 0 | 913,939,796 | 2.8% | ||
oadissin | 0 | 7,731,264,505 | 2.8% | ||
miroslavrc | 0 | 986,958,427 | 1.4% | ||
foxyspirit | 0 | 554,305,604 | 2.8% | ||
vonaurolacu | 0 | 1,702,353,579 | 2.8% | ||
movingman | 0 | 519,762,807 | 20% | ||
delpilar | 0 | 934,959,443 | 25% | ||
scottshots | 0 | 550,864,425 | 0.28% | ||
tomastonyperez | 0 | 16,267,760,630 | 50% | ||
bil.prag | 0 | 2,522,324,725 | 0.28% | ||
elvigia | 0 | 10,534,181,130 | 50% | ||
safrizal.mus | 0 | 1,309,447,293 | 75% | ||
sanderjansenart | 0 | 5,154,948,579 | 2.8% | ||
vittoriozuccala | 0 | 2,122,704,424 | 2.8% | ||
laxam | 0 | 5,433,929,373 | 100% | ||
koenau | 0 | 1,520,941,313 | 2.8% | ||
qberry | 0 | 3,892,095,644 | 2.8% | ||
frissonsteemit | 0 | 1,207,443,483 | 2.8% | ||
broncofan99 | 0 | 9,090,003,822 | 20% | ||
rambutan.art | 0 | 1,785,787,311 | 5.6% | ||
greddyforce | 0 | 4,073,043,839 | 2.07% | ||
flyerchen | 0 | 1,301,885,343 | 2.8% | ||
juanmanuellopez1 | 0 | 749,045,843 | 19.2% | ||
braaiboy | 0 | 10,750,015,612 | 2.8% | ||
gadrian | 0 | 444,777,987,864 | 52.5% | ||
c0wtschpotato | 0 | 592,570,409 | 2.8% | ||
fotogruppemunich | 0 | 4,146,914,688 | 1.4% | ||
therising | 0 | 94,989,639,160 | 5.6% | ||
jordangerder | 0 | 3,512,297,963 | 12% | ||
cryptocoinkb | 0 | 2,125,296,007 | 2.8% | ||
gifty-e | 0 | 528,873,120 | 80% | ||
de-stem | 0 | 38,664,440,870 | 69.3% | ||
manuelmusic | 0 | 789,142,915 | 14.4% | ||
serylt | 0 | 3,236,575,900 | 68.6% | ||
josedelacruz | 0 | 4,640,346,003 | 50% | ||
dracrow | 0 | 3,027,717,710 | 9.6% | ||
quochuy | 0 | 358,790,912,096 | 5.93% | ||
lorenzopistolesi | 0 | 11,129,378,026 | 2.8% | ||
kgakakillerg | 0 | 18,275,557,385 | 10% | ||
charitymemes | 0 | 532,768,859 | 100% | ||
mariusfebruary | 0 | 653,838,607 | 2.24% | ||
outtheshellvlog | 0 | 881,317,701 | 2.8% | ||
sawyn | 0 | 664,157,771 | 2.8% | ||
erickyoussif | 0 | 572,923,712 | 100% | ||
michaelwrites | 0 | 932,338,427 | 35% | ||
indigoocean | 0 | 1,179,429,089 | 2.8% | ||
primersion | 0 | 368,599,944,870 | 20% | ||
deholt | 0 | 4,096,036,813 | 59.5% | ||
robmolecule | 0 | 22,276,445,907 | 10% | ||
eleazarvo | 0 | 788,962,497 | 2.4% | ||
steem.services | 0 | 1,050,411,404 | 1.12% | ||
bushradio | 0 | 664,448,187 | 5.6% | ||
pladozero | 0 | 29,187,170,077 | 10% | ||
minerthreat | 0 | 3,445,258,384 | 2.8% | ||
temitayo-pelumi | 0 | 6,436,296,706 | 70% | ||
andrick | 0 | 820,954,187 | 50% | ||
doctor-cog-diss | 0 | 61,326,936,908 | 70% | ||
marcuz | 0 | 2,437,515,204 | 35% | ||
uche-nna | 0 | 5,734,346,618 | 4.48% | ||
cheese4ead | 0 | 4,680,558,707 | 2.8% | ||
jd4e | 0 | 3,739,870,996 | 50% | ||
mafufuma | 0 | 7,435,340,421 | 1% | ||
apshamilton | 0 | 14,449,184,620 | 0.7% | ||
cryptojiang | 0 | 131,676,010,327 | 100% | ||
nattybongo | 0 | 134,720,893,057 | 70% | ||
drsensor | 0 | 1,581,432,748 | 56% | ||
roozeec | 0 | 498,478,496 | 10% | ||
revueh | 0 | 1,956,412,876 | 35% | ||
qila | 0 | 552,867,415 | 5.6% | ||
ilovecryptopl | 0 | 867,339,936 | 4.48% | ||
purelyscience | 0 | 536,710,580 | 35% | ||
bflanagin | 0 | 5,796,289,642 | 2.8% | ||
ubaldonet | 0 | 2,965,610,777 | 100% | ||
armandosodano | 0 | 3,399,560,331 | 2.8% | ||
melor9 | 0 | 517,577,349 | 2.8% | ||
hamismsf | 0 | 4,622,190,318 | 0.7% | ||
teamvn | 0 | 7,275,550,938 | 5.93% | ||
goblinknackers | 0 | 74,136,660,106 | 7% | ||
thales7 | 0 | 637,327,167 | 5.6% | ||
smartvote | 0 | 79,568,881,498 | 3.3% | ||
zuerich | 0 | 393,732,795,049 | 10% | ||
reinaseq | 0 | 7,528,594,844 | 100% | ||
vixmemon | 0 | 1,626,060,740 | 4.2% | ||
honeycup-waters | 0 | 609,454,429 | 2.8% | ||
yaelg | 0 | 1,196,855,388 | 1.68% | ||
kylealex | 0 | 4,561,555,847 | 10% | ||
arzkyu97 | 0 | 2,754,890,872 | 9.6% | ||
fran.frey | 0 | 4,003,202,463 | 50% | ||
perpetuum-lynx | 0 | 2,167,487,287 | 68.6% | ||
petrarodriguez | 0 | 151,973,153,144 | 24% | ||
thelittlebank | 0 | 19,951,988,733 | 2.8% | ||
pboulet | 0 | 135,060,801,766 | 56% | ||
javyeslava.photo | 0 | 623,562,560 | 2.24% | ||
josesalazar200 | 0 | 514,765,991 | 5.6% | ||
stem-espanol | 0 | 13,370,670,835 | 100% | ||
cliffagreen | 0 | 4,793,979,799 | 10% | ||
aleestra | 0 | 12,520,185,564 | 80% | ||
palasatenea | 0 | 3,293,459,733 | 2.8% | ||
the.success.club | 0 | 2,346,064,965 | 2.8% | ||
javier.dejuan | 0 | 531,454,949 | 70% | ||
meanroosterfarm | 0 | 1,405,520,014 | 35% | ||
racarjoal | 0 | 646,164,065 | 12% | ||
janettyanez | 0 | 495,168,098 | 4.8% | ||
brianoflondon | 0 | 81,432,169,118 | 1.4% | ||
priyanarc | 0 | 65,183,514,319 | 60% | ||
giulyfarci52 | 0 | 1,635,112,189 | 50% | ||
esthersanchez | 0 | 1,753,612,981 | 24% | ||
maryelin | 0 | 612,851,953 | 12% | ||
kristall97 | 0 | 3,954,411,946 | 100% | ||
followjohngalt | 0 | 817,878,089 | 5.6% | ||
steemcryptosicko | 0 | 8,952,204,165 | 1.12% | ||
certain | 0 | 1,251,893,032 | 0.67% | ||
alvin0617 | 0 | 490,432,637 | 2.8% | ||
multifacetas | 0 | 1,514,434,696 | 2.8% | ||
cowpatty | 0 | 1,476,048,598 | 35% | ||
stem.witness | 0 | 4,220,861,482 | 70% | ||
witkowskipawel | 0 | 955,781,175 | 2.8% | ||
chipdip | 0 | 789,542,487 | 10% | ||
unitqm | 0 | 428,024,294 | 2.8% | ||
jpbliberty | 0 | 7,854,634,446 | 1.4% | ||
autobodhi | 0 | 1,006,401,397 | 5.6% | ||
mechanicalowl | 0 | 658,743,302 | 50% | ||
regularowl | 0 | 1,177,061,627 | 50% | ||
double-negative | 0 | 521,470,981 | 20% | ||
samsemilia7 | 0 | 881,515,388 | 39% | ||
vaultec | 0 | 6,368,919,281 | 12% | ||
daniel2001 | 0 | 1,830,556,752 | 12% | ||
steemegg | 0 | 1,077,572,786 | 2.8% | ||
ragnarhewins90 | 0 | 477,015,335 | 10% | ||
jtm.support | 0 | 5,384,516,033 | 70% | ||
edithbdraw | 0 | 804,369,790 | 2.8% | ||
crowdwitness | 0 | 168,359,392,439 | 35% | ||
markwannabee | 0 | 475,321,378 | 100% | ||
hairgistix | 0 | 3,230,139,931 | 2.8% | ||
bluemaskman | 0 | 639,237,556 | 2.8% | ||
steemean | 0 | 9,847,570,890 | 5% | ||
proxy-pal | 0 | 1,168,313,864 | 5.6% | ||
lolasophiedanton | 0 | 2,009,318,417 | 90% | ||
angelanichole | 0 | 1,580,851,051 | 100% | ||
newton666 | 0 | 1,490,617,989 | 35% | ||
aaronkroeblinger | 0 | 115,503,084,055 | 50% | ||
cryptofiloz | 0 | 8,951,955,146 | 5.6% | ||
dawnoner | 0 | 1,857,251,165 | 0.56% | ||
jackramsey | 0 | 1,105,952,117 | 3.92% | ||
photographercr | 0 | 2,684,335,854 | 1.12% | ||
epicdice | 0 | 1,931,435,018 | 1.68% | ||
yiobri | 0 | 570,068,839 | 12% | ||
iamsaray | 0 | 1,327,549,949 | 2.8% | ||
yonnathang | 0 | 15,566,296,030 | 24% | ||
beerlover | 0 | 2,421,901,336 | 1.68% | ||
newtrailers | 0 | 1,113,715,474 | 5.6% | ||
tinyhousecryptos | 0 | 475,253,007 | 5% | ||
victartex | 0 | 1,500,878,525 | 24% | ||
tggr | 0 | 1,338,302,222 | 2.8% | ||
quintaesencia | 0 | 82,420,297,187 | 100% | ||
aicu | 0 | 1,298,680,081 | 5.6% | ||
afarina46 | 0 | 1,950,435,249 | 35% | ||
imbartley | 0 | 829,398,595 | 26.25% | ||
spinvest | 0 | 1,098,035,471 | 1.12% | ||
mind.force | 0 | 1,168,448,890 | 1.4% | ||
h-hamilton | 0 | 1,085,617,979 | 2.8% | ||
tiffin | 0 | 755,380,506 | 5.6% | ||
reggaesteem | 0 | 479,211,561 | 5% | ||
aicoding | 0 | 582,428,244 | 2.8% | ||
javikun | 0 | 714,113,445 | 24% | ||
nazer | 0 | 2,746,287,763 | 35% | ||
saravm82 | 0 | 3,402,791,480 | 24% | ||
steemstem-trig | 0 | 1,464,226,932 | 70% | ||
hispapro | 0 | 456,120,467,529 | 24% | ||
baltai | 0 | 5,776,906,352 | 2.8% | ||
atheistrepublic | 0 | 6,684,487,373 | 2.8% | ||
machan | 0 | 711,821,189 | 2.8% | ||
ibt-survival | 0 | 36,448,719,603 | 10% | ||
zirky | 0 | 2,692,773,397 | 4.76% | ||
gloriaolar | 0 | 2,215,199,567 | 1.68% | ||
lightpaintershub | 0 | 663,827,852 | 1% | ||
davidlionfish | 0 | 11,045,400,397 | 50% | ||
peterale | 0 | 1,234,496,885 | 2.8% | ||
hive-127039 | 0 | 478,538,938 | 25% | ||
andreina57 | 0 | 692,700,719 | 35% | ||
monica-ene | 0 | 2,908,011,732 | 2.8% | ||
krisconkr | 0 | 524,174,385 | 2.8% | ||
stemsocial | 0 | 583,150,257,168 | 70% | ||
peterpanpan | 0 | 749,029,190 | 1.12% | ||
holoferncro | 0 | 4,577,112,099 | 10% | ||
the100 | 0 | 1,346,312,187 | 2.8% | ||
hiveonboard | 0 | 817,113,223 | 2.8% | ||
georgelys | 0 | 2,942,328,974 | 24% | ||
lqch | 0 | 163,915,814,076 | 12% | ||
noelyss | 0 | 23,943,478,607 | 35% | ||
adolfom | 0 | 12,781,168,689 | 100% | ||
quinnertronics | 0 | 14,629,330,343 | 7% | ||
anafae | 0 | 599,646,731 | 1.12% | ||
hivecoffee | 0 | 610,698,306 | 5.6% | ||
gohive | 0 | 5,003,346,174 | 100% | ||
aabcent | 0 | 4,203,769,398 | 4.48% | ||
edfer18 | 0 | 2,243,036,363 | 24% | ||
altleft | 0 | 23,508,323,545 | 0.05% | ||
noalys | 0 | 944,712,802 | 2.8% | ||
enyusael | 0 | 908,275,025 | 12% | ||
borniet | 0 | 2,007,262,392 | 2.8% | ||
evagavilan2 | 0 | 6,148,529,692 | 12% | ||
gonklavez9 | 0 | 1,361,217,598 | 70% | ||
jesuspsoto | 0 | 1,792,644,514 | 24% | ||
apeboy | 0 | 933,530,902 | 12% | ||
cosplay.hadr | 0 | 1,185,474,685 | 5.6% | ||
hadrgames | 0 | 1,219,610,268 | 5.6% | ||
rawecz | 0 | 3,245,134,132 | 24% | ||
maar | 0 | 667,170,753 | 70% | ||
meritocracy | 0 | 63,457,988,560 | 0.56% | ||
jmsansan | 0 | 4,601,386,787 | 2.8% | ||
hispaplus | 0 | 773,172,716 | 24% | ||
dcrops | 0 | 35,391,870,309 | 2.8% | ||
rondonshneezy | 0 | 509,034,807 | 2.8% | ||
yggdrasilwind | 0 | 1,594,846,398 | 24% | ||
traderhive | 0 | 12,814,388,959 | 5.6% | ||
alvarezjessica | 0 | 3,683,888,396 | 24% | ||
tawadak24 | 0 | 598,533,042 | 2.8% | ||
eturnerx-honey | 0 | 247,000,829 | 0.8% | ||
ausbit.dev | 0 | 532,899,994 | 2.8% | ||
elgatoshawua | 0 | 676,198,765 | 2.8% | ||
limn | 0 | 817,965,064 | 2.8% | ||
wynella | 0 | 1,113,781,535 | 2.8% | ||
nyxlabs | 0 | 1,062,180,736 | 3.5% | ||
dodovietnam | 0 | 4,136,660,604 | 2.8% | ||
oahb132 | 0 | 1,135,049,629 | 35% | ||
failingforwards | 0 | 3,041,659,019 | 2.8% | ||
hexagono6 | 0 | 2,241,004,887 | 12% | ||
joseluis91 | 0 | 831,456,207 | 5.6% | ||
maxelitereturned | 0 | 544,997,482 | 35% | ||
magdiel7 | 0 | 498,089,582 | 24% | ||
trippymane | 0 | 1,752,948,587 | 5.6% | ||
victordumont | 0 | 1,978,736,295 | 24% | ||
norokochan | 0 | 1,205,355,469 | 24% | ||
nfttunz | 0 | 8,333,673,277 | 0.56% | ||
caribayarte | 0 | 3,746,685,412 | 24% | ||
yeidelyt | 0 | 886,546,701 | 24% | ||
ele.art | 0 | 484,058,684 | 24% | ||
okluvmee | 0 | 2,718,807,424 | 2.8% | ||
atexoras.pub | 0 | 1,336,685,062 | 2.8% | ||
merit.ahama | 0 | 3,734,384,845 | 1.68% | ||
holovision.cash | 0 | 2,277,164,053 | 100% | ||
brujita18 | 0 | 4,672,749,484 | 10.8% | ||
mirteg | 0 | 734,493,990 | 5.6% | ||
sarashew | 0 | 4,048,751,957 | 5.6% | ||
buffalobison | 0 | 27,082,750,220 | 50% | ||
podping | 0 | 8,250,025,624 | 1.4% | ||
yenmendt | 0 | 7,245,065,988 | 24% | ||
davidbright | 0 | 673,248,676 | 2.8% | ||
nabu.doconosor2 | 0 | 1,038,628,335 | 35% | ||
aguamiel | 0 | 4,767,615,298 | 24% | ||
jessicaossom | 0 | 970,290,186 | 2.8% | ||
beysyd | 0 | 2,007,279,656 | 12% | ||
ferbu | 0 | 2,534,171,448 | 24% | ||
drhueso | 0 | 1,339,558,035 | 2.8% | ||
annafenix | 0 | 2,171,881,547 | 12% | ||
mairimgo23 | 0 | 5,667,417,722 | 24% | ||
gislandpoetic | 0 | 670,965,357 | 12% | ||
miguelstar | 0 | 1,497,195,937 | 24% | ||
badge-646464 | 0 | 507,673,824 | 5.6% | ||
amaillo | 0 | 689,042,753 | 4.8% | ||
aries90 | 0 | 41,396,836,668 | 5.6% | ||
cugel | 0 | 2,592,753,474 | 2.8% | ||
amaillo-m | 0 | 755,782,336 | 24% | ||
acantoni | 0 | 843,605,335 | 2.8% | ||
logen9f | 0 | 907,411,308 | 100% | ||
blingit | 0 | 3,536,791,554 | 2.8% | ||
kingz1337 | 0 | 1,311,904,222 | 100% | ||
mcsherriff | 0 | 590,554,682 | 5.6% | ||
andre-marg25 | 0 | 1,241,351,785 | 24% | ||
iskafan | 0 | 738,557,228 | 2.8% | ||
h3m4n7 | 0 | 569,719,874 | 2.8% | ||
jude9 | 0 | 972,266,883 | 17.5% | ||
teteuzinho | 0 | 476,089,412 | 5.6% | ||
kqaosphreak | 0 | 4,715,462,902 | 70% | ||
alt3r | 0 | 1,059,930,874 | 4.31% | ||
mcookies | 0 | 2,227,312,957 | 12% | ||
waivio.curator | 0 | 1,765,756,901 | 3.32% | ||
gercripto | 0 | 1,339,593,294 | 12% | ||
ehizgabriel | 0 | 658,234,454 | 35% | ||
susurrodmisterio | 0 | 982,390,831 | 12% | ||
noctury | 0 | 497,063,400 | 2.8% | ||
esalcedo | 0 | 34,539,110,936 | 24% | ||
foxlatam | 0 | 9,913,591,399 | 50% | ||
deadleaf | 0 | 4,124,006,679 | 100% | ||
taradraz1 | 0 | 526,123,556 | 100% | ||
lukasbachofner | 0 | 2,377,010,963 | 2.8% | ||
allentaylor | 0 | 1,018,570,212 | 2.8% | ||
benwickenton | 0 | 2,690,756,678 | 5.6% | ||
annabeth | 0 | 820,880,583 | 5.6% | ||
jerusa777 | 0 | 1,285,943,624 | 15% | ||
balabambuz | 0 | 681,612,537 | 2.8% | ||
drivingindevon | 0 | 1,700,093,218 | 4.48% | ||
prosocialise | 0 | 58,860,575,376 | 35% | ||
archangel21 | 0 | 3,129,637,895 | 5.6% | ||
matilei | 0 | 1,307,592,694 | 5.6% | ||
amafable07 | 0 | 1,021,364,420 | 35% | ||
mugueto2022 | 0 | 555,130,574 | 20% | ||
ricardoeloy | 0 | 738,095,872 | 6% | ||
chechostreet | 0 | 1,972,763,401 | 24% | ||
nazom | 0 | 808,493,067 | 35% | ||
baboz | 0 | 1,475,228,491 | 1.4% | ||
universodaniel | 0 | 872,192,576 | 12% | ||
sbtofficial | 0 | 4,681,338,788 | 2.8% | ||
vagabond42069 | 0 | 1,504,046,318 | 35% | ||
eollarvesm | 0 | 887,601,512 | 12% | ||
inibless | 0 | 2,480,184,740 | 35% | ||
hiversbqto | 0 | 2,443,116,792 | 24% | ||
hispaliterario | 0 | 667,159,712 | 24% | ||
sc000 | 0 | 1,377,125,434 | 5.6% | ||
pinkchic | 0 | 629,004,735 | 0.84% | ||
vankushfamily | 0 | 669,496,061 | 35% | ||
jijisaurart | 0 | 1,406,167,917 | 2.8% | ||
tuba777 | 0 | 1,568,733,940 | 35% | ||
smariam | 0 | 2,500,194,774 | 25% | ||
clpacksperiment | 0 | 3,065,638,336 | 2.8% | ||
humbe | 0 | 1,311,735,814 | 1% | ||
flywithmarlin | 0 | 848,204,004 | 12% | ||
zackygamer | 0 | 1,413,995,341 | 24% | ||
technico | 0 | 867,460,851 | 2.8% | ||
arduilcelebren | 0 | 1,967,366,118 | 2.8% | ||
opticus | 0 | 6,612,903,930 | 2.8% | ||
lettinggotech | 0 | 1,292,970,309 | 2.8% | ||
rhemagames | 0 | 5,190,091,667 | 2.8% | ||
smile27 | 0 | 3,753,025,592 | 24% | ||
cryptoscripts | 0 | 500,836,453 | 14% | ||
cuatrolarense | 0 | 1,217,188,803 | 100% | ||
yanguaro | 0 | 476,426,719 | 100% | ||
dev.maverick | 0 | 920,951,247 | 5.6% | ||
mariiestefania | 0 | 2,280,569,214 | 24% | ||
vscampbell | 0 | 1,288,679,037 | 50% | ||
yeez1196 | 0 | 2,979,106,763 | 100% |
<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-36-20231127t004909160z |
category | hive-169321 |
json_metadata | {"app":"STEMsocial"} |
created | 2023-11-27 00:49:09 |
last_update | 2023-11-27 00:49:09 |
depth | 1 |
children | 0 |
last_payout | 2023-12-04 00:49: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 | 565 |
author_reputation | 22,918,491,691,707 |
root_title | "My Coding Quiz #36" |
beneficiaries | [] |
max_accepted_payout | 1,000,000.000 HBD |
percent_hbd | 10,000 |
post_id | 129,196,157 |
net_rshares | 0 |