<div class="text-justify"> <center><h2>My Coding Quiz #32 👨💻🛠️🧩</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/DQmeBxSEidpA2NeX4w8etxfTzZt6XWSFdqGhyycZohcVAbv/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-31">previous quiz</a>:</b> <b>stem</b>. First we create a string <code>base</code> that has several unintelligible characters, but that doesn't matter. Line 2 converts them into a list using the powerful Python list comprehension mechanism. That list in turn is transformed into a set in line 3 using the <code>set</code> constructor. A set is, simply put, an unordered collection of unique elements.</p> <p>In our case, the set <code>a</code> will be formed by all the characters in <code>base</code>, noting that as the character <b>'h'</b> is duplicated in <code>base</code>, it will not be duplicated in <code>a</code>, since sets do not have duplicates by definition.</p> <p>Then, line 4 presents the difference operation that applies to two sets. We see that it applies to <code>a</code> and <code>b</code>. The way to read that instruction is which elements are in <code>a</code> that are not in <code>b</code>. We have that:</p> <pre><code>a = {'m', 'c', 'e', 'n', 'a', 'h', 't', 's', 'i'}</code></pre> And <pre><code>b = {'c', 'n', 'h', 'a', 'i'}</code></pre> The difference <code>a - b</code> is the set: <pre><code>c = {'s', 'm', 't', 'e'}</code></pre> <p>The object returned by <code>difference</code> is a new set. In the final line, the set <code>c</code> is converted to a list and then converted to a string using <code>join</code>. What is printed is an anagram of <b>'stem'</b>, that is, a word with the same letters that stem has.</p> <p>Enthusiast @gabrielr29 came up with the right answer. Congratulations.</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>, <a href="/created/hive-153850">Hive Learners</a> and others.</p> <hr> <center><h2>Mi Quiz de Programación #32 👨💻🛠️🧩</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/DQmQpqZQopCsthL3JoMV3eQRWBCo2tZx6wMpNXeXQZfjyhh/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-31">quiz anterior</a>:</b> <b>stem</b>. Primero creamos una cadena <code>base</code> que tiene varios caracteres ininteligibles, pero eso no importa. La línea 2 los convierte en una lista utilizando el poderoso mecanismo de comprensión de listas de Python. Esa lista a su vez se transforma en un conjunto en la línea 3 usando el constructor <code>set</code>. Un conjunto es, en pocas palabras, una colección desordenada de elementos únicos.</p> <p>En nuestro caso, el conjunto <code>a</code> estará formado por todos los caracteres de <code>base</code>, teniendo en cuenta que como el carácter <b>'h'</b> es duplicado en <code>base</code>, no se duplicará en <code>a</code>, ya que los conjuntos no tienen duplicados por definición.</p> <p>Luego, la línea 4 presenta la operación de diferencia que se aplica a dos conjuntos. Vemos que se aplica a <code>a</code> y <code>b</code>. La forma de leer esa instrucción es qué elementos están en <code>a</code> y no en <code>b</code>. Tenemos que:</p> <pre><code>a = {'m', 'c', 'e', 'n', 'a', 'h', 't', 's', 'i'}</code></pre> Y <pre><code>b = {'c', 'n', 'h', 'a', 'i'}</code></pre> La diferencia <code>a - b</code> es el conjunto: <pre><code>c = {'s', 'm', 't', 'e'}</code></pre> <p>El objeto devuelto por <code>difference</code> es un conjunto nuevo. En la línea final, el conjunto <code>c</code> se convierte en una lista y luego se convierte en una cadena usando <code>join</code>. Lo que está impreso es un anagrama de <b>'stem'</b>, es decir, una palabra con las mismas letras que tiene stem.</p> <p>El entusiasta @gabrielr29 dio con la respuesta correcta. Felicitaciones.</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>, <a href="/created/hive-153850">Hive Learners</a> y otras.</p> </div>
author | eniolw |
---|---|
permlink | my-coding-quiz-32 |
category | hive-140084 |
json_metadata | "{"image":["https://images.ecency.com/DQmeBxSEidpA2NeX4w8etxfTzZt6XWSFdqGhyycZohcVAbv/quiz_img_en.png","https://images.ecency.com/DQmQpqZQopCsthL3JoMV3eQRWBCo2tZx6wMpNXeXQZfjyhh/quiz_img_es.png"],"tags":["hive-140084","coding","programming","python","development","neoxian","proofofbrain","creativecoin","waivio","spanish","tech"],"description":"My Coding Quiz #32 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.6299","0.6299"]}" |
created | 2023-11-10 17:48:45 |
last_update | 2023-11-10 17:48:45 |
depth | 0 |
children | 7 |
last_payout | 2023-11-17 17:48:45 |
cashout_time | 1969-12-31 23:59:59 |
total_payout_value | 4.294 HBD |
curator_payout_value | 4.186 HBD |
pending_payout_value | 0.000 HBD |
promoted | 0.000 HBD |
body_length | 5,480 |
author_reputation | 253,328,400,128,603 |
root_title | "My Coding Quiz #32" |
beneficiaries | [] |
max_accepted_payout | 1,000,000.000 HBD |
percent_hbd | 10,000 |
post_id | 128,742,814 |
net_rshares | 17,710,937,213,376 |
author_curate_reward | "" |
voter | weight | wgt% | rshares | pct | time |
---|---|---|---|---|---|
drifter1 | 0 | 1,030,354,883 | 2.8% | ||
kevinwong | 0 | 19,861,003,105 | 2.8% | ||
justtryme90 | 0 | 1,433,353,097 | 70% | ||
eric-boucher | 0 | 14,467,958,701 | 2.8% | ||
thecryptodrive | 0 | 64,010,946,986 | 1.12% | ||
roelandp | 0 | 273,034,279,065 | 35% | ||
cloh76 | 0 | 3,994,483,022 | 2.8% | ||
lichtblick | 0 | 2,576,149,505 | 1.68% | ||
joshglen | 0 | 717,299,756 | 5.6% | ||
sunshine | 0 | 16,161,997,563 | 2.8% | ||
lordvader | 0 | 35,088,291,532 | 5.6% | ||
rmach | 0 | 14,188,183,993 | 35% | ||
lemouth | 0 | 1,179,650,858,274 | 45% | ||
alaqrab | 0 | 551,166,890 | 2.8% | ||
lamouthe | 0 | 5,573,344,975 | 70% | ||
tfeldman | 0 | 5,450,489,050 | 2.8% | ||
sergiomendes | 0 | 1,292,570,758 | 2.8% | ||
metabs | 0 | 7,761,475,049 | 70% | ||
mcsvi | 0 | 124,300,307,284 | 50% | ||
lk666 | 0 | 1,949,815,284 | 2.8% | ||
cnfund | 0 | 11,375,879,241 | 5.6% | ||
boxcarblue | 0 | 11,919,049,552 | 2.8% | ||
justyy | 0 | 32,714,850,796 | 5.6% | ||
michelle.gent | 0 | 3,338,926,709 | 1.12% | ||
curie | 0 | 346,695,252,200 | 5.6% | ||
modernzorker | 0 | 3,787,290,375 | 3.92% | ||
techslut | 0 | 184,572,484,059 | 28% | ||
steemstem | 0 | 1,290,754,834,546 | 70% | ||
dashfit | 0 | 482,498,358 | 2.8% | ||
tristancarax | 0 | 688,646,005 | 2.8% | ||
edb | 0 | 24,348,233,094 | 31% | ||
yadamaniart | 0 | 3,384,433,803 | 2.8% | ||
bigtakosensei | 0 | 1,599,280,728 | 1.4% | ||
walterjay | 0 | 470,867,874,179 | 35% | ||
valth | 0 | 10,572,241,792 | 35% | ||
metroair | 0 | 23,509,962,128 | 5.6% | ||
driptorchpress | 0 | 2,144,174,978 | 1.4% | ||
sardrt | 0 | 1,237,057,024 | 10% | ||
dna-replication | 0 | 2,744,070,695 | 70% | ||
boynashruddin | 0 | 744,513,677 | 5.6% | ||
steemiteducation | 0 | 895,997,965 | 2.8% | ||
dhimmel | 0 | 368,492,329,262 | 17.5% | ||
oluwatobiloba | 0 | 2,326,862,993 | 70% | ||
detlev | 0 | 22,752,158,797 | 1.68% | ||
chasmic-cosm | 0 | 846,271,090 | 2.8% | ||
dune69 | 0 | 517,139,320 | 5.6% | ||
lugaxker | 0 | 823,566,558 | 34.65% | ||
federacion45 | 0 | 8,721,384,776 | 2.8% | ||
amberyooper | 0 | 672,436,940 | 2.8% | ||
gamersclassified | 0 | 4,242,410,845 | 2.8% | ||
iansart | 0 | 5,628,864,214 | 2.8% | ||
forykw | 0 | 12,823,306,284 | 2.8% | ||
mobbs | 0 | 97,904,941,275 | 35% | ||
jerrybanfield | 0 | 18,965,964,348 | 5.6% | ||
rt395 | 0 | 2,031,207,807 | 1.5% | ||
bitrocker2020 | 0 | 8,641,978,172 | 0.84% | ||
maxdevalue | 0 | 697,955,668 | 5.6% | ||
sustainablyyours | 0 | 24,635,994,863 | 35% | ||
helo | 0 | 926,544,335 | 35% | ||
arunava | 0 | 21,150,402,602 | 2.24% | ||
schoolforsdg4 | 0 | 1,066,806,564 | 5% | ||
samminator | 0 | 43,676,100,751 | 35% | ||
zerotoone | 0 | 1,112,927,112 | 2.8% | ||
enjar | 0 | 45,884,477,525 | 5.04% | ||
mahdiyari | 0 | 55,800,851,438 | 20% | ||
lorenzor | 0 | 1,356,782,769 | 50% | ||
aboutyourbiz | 0 | 970,743,066 | 5.6% | ||
derosnec | 0 | 573,020,645 | 2.8% | ||
alexander.alexis | 0 | 43,013,139,769 | 70% | ||
dandesign86 | 0 | 16,046,364,464 | 8% | ||
jayna | 0 | 7,859,920,011 | 1.12% | ||
deanlogic | 0 | 1,422,714,226 | 2.8% | ||
hhayweaver | 0 | 1,071,366,856 | 1.4% | ||
princessmewmew | 0 | 8,202,336,862 | 2.8% | ||
grapthar | 0 | 1,026,060,371 | 4.2% | ||
joeyarnoldvn | 0 | 475,463,348 | 1.47% | ||
diabolika | 0 | 768,736,001 | 2.8% | ||
ufv | 0 | 3,006,808,420 | 50% | ||
gunthertopp | 0 | 77,470,893,014 | 1.4% | ||
pipiczech | 0 | 2,280,573,916 | 5.6% | ||
empath | 0 | 4,205,682,365 | 2.8% | ||
minnowbooster | 0 | 1,076,510,852,403 | 20% | ||
howo | 0 | 2,392,557,357,403 | 70% | ||
tsoldovieri | 0 | 7,403,267,233 | 35% | ||
steemwizards | 0 | 4,125,870,146 | 5.6% | ||
neumannsalva | 0 | 4,823,959,039 | 2.8% | ||
stayoutoftherz | 0 | 162,332,227,798 | 1.4% | ||
abigail-dantes | 0 | 25,950,038,435 | 70% | ||
coindevil | 0 | 2,896,152,932 | 4.48% | ||
zonguin | 0 | 3,743,641,250 | 17.5% | ||
enfocate | 0 | 4,025,038,989 | 24% | ||
khalil319 | 0 | 2,520,196,284 | 10% | ||
martibis | 0 | 1,561,069,798 | 1.68% | ||
val.halla | 0 | 2,869,753,262 | 10% | ||
redrica | 0 | 2,041,897,347 | 2.8% | ||
pepskaram | 0 | 588,596,167 | 2.8% | ||
iamphysical | 0 | 839,879,121 | 90% | ||
dipom98 | 0 | 1,188,741,361 | 2.8% | ||
zest | 0 | 1,012,724,745 | 35% | ||
zyx066 | 0 | 5,234,152,981 | 1.68% | ||
chrisdavidphoto | 0 | 1,095,870,099 | 1.68% | ||
revo | 0 | 11,154,658,881 | 5.6% | ||
azulear | 0 | 1,416,662,674 | 100% | ||
djlethalskillz | 0 | 438,009,657 | 5% | ||
psicoluigi | 0 | 844,878,306 | 50% | ||
nerdnews | 0 | 896,545,478 | 5.6% | ||
risckylu | 0 | 1,409,667,993 | 24% | ||
rafaelaquino | 0 | 17,149,418,024 | 100% | ||
wilians | 0 | 548,137,818 | 35% | ||
stickchumpion | 0 | 878,866,588 | 2.8% | ||
noloafing | 0 | 519,073,547 | 17.5% | ||
thelordsharvest | 0 | 5,030,764,321 | 5.6% | ||
timehacker | 0 | 1,831,223,709 | 2.25% | ||
vera-vaders-ea | 0 | 498,987,663 | 5.6% | ||
sumant | 0 | 8,760,518,896 | 2.8% | ||
aidefr | 0 | 7,587,155,791 | 35% | ||
torico | 0 | 1,502,020,500 | 1.84% | ||
roleerob | 0 | 915,383,370 | 0.22% | ||
minnowpowerup | 0 | 772,037,170 | 2.8% | ||
yangyanje | 0 | 548,921,414 | 1.4% | ||
splash-of-angs63 | 0 | 12,926,531,557 | 100% | ||
cryptononymous | 0 | 1,947,935,399 | 2.8% | ||
braveboat | 0 | 21,958,186,146 | 40% | ||
meno | 0 | 26,443,144,669 | 2.8% | ||
buttcoins | 0 | 15,688,291,749 | 1.12% | ||
toocurious | 0 | 1,562,082,729 | 2.8% | ||
steemed-proxy | 0 | 1,029,276,864,677 | 5.6% | ||
fatkat | 0 | 1,481,777,576 | 2.79% | ||
peaceandwar | 0 | 873,286,726 | 2.8% | ||
enzor | 0 | 2,180,501,645 | 35% | ||
marcoriccardi | 0 | 1,039,473,935 | 5.6% | ||
bartosz546 | 0 | 14,047,059,332 | 2.8% | ||
tazbaz | 0 | 557,358,489 | 2.8% | ||
korghawk | 0 | 2,233,642,503 | 100% | ||
afterglow | 0 | 709,278,635 | 10% | ||
marleyn | 0 | 7,062,519,215 | 24% | ||
dandays | 0 | 18,376,946,264 | 1.06% | ||
battebilly | 0 | 866,658,844 | 2.8% | ||
notb4mycoffee | 0 | 2,966,146,518 | 5.6% | ||
silverwhale | 0 | 1,341,623,187 | 5.04% | ||
dejan.vuckovic | 0 | 790,384,987 | 1.12% | ||
alvinauh | 0 | 1,284,568,942 | 30% | ||
lottje | 0 | 612,414,932 | 70% | ||
myach | 0 | 970,812,169 | 4.48% | ||
sunsea | 0 | 4,646,790,222 | 2.8% | ||
eonwarped | 0 | 450,573,955,224 | 30% | ||
postpromoter | 0 | 1,615,626,777,241 | 70% | ||
mejustandrew | 0 | 1,174,190,165 | 2.8% | ||
bluefinstudios | 0 | 3,966,213,734 | 1.68% | ||
steveconnor | 0 | 4,937,388,220 | 2.8% | ||
sankysanket18 | 0 | 1,663,967,819 | 35% | ||
dbddv01 | 0 | 2,563,522,372 | 17.5% | ||
zmx | 0 | 579,280,435 | 2.8% | ||
nicole-st | 0 | 1,580,006,309 | 2.8% | ||
aboutcoolscience | 0 | 3,953,277,321 | 70% | ||
elisonr13 | 0 | 2,253,175,785 | 12% | ||
afifa | 0 | 653,946,510 | 10% | ||
sandracarrascal | 0 | 510,546,591 | 50% | ||
ubikalo | 0 | 501,262,333 | 12% | ||
kenadis | 0 | 19,066,971,132 | 70% | ||
madridbg | 0 | 32,870,799,742 | 70% | ||
robotics101 | 0 | 21,873,093,367 | 70% | ||
marcolino76 | 0 | 602,987,331 | 2.8% | ||
lpv | 0 | 3,047,238,712 | 8.75% | ||
punchline | 0 | 15,013,156,908 | 5.6% | ||
apon318 | 0 | 482,194,686 | 5.6% | ||
tomatom | 0 | 508,404,367 | 2.8% | ||
adelepazani | 0 | 1,379,395,589 | 1.12% | ||
danaedwards | 0 | 662,947,546 | 5.6% | ||
sco | 0 | 20,546,102,335 | 70% | ||
ennyta | 0 | 993,997,127 | 50% | ||
juecoree | 0 | 13,001,458,033 | 49% | ||
gordon92 | 0 | 864,323,598 | 2.8% | ||
stahlberg | 0 | 1,278,178,633 | 2.8% | ||
gabrielatravels | 0 | 1,822,169,425 | 1.96% | ||
cordeta | 0 | 1,026,439,968 | 5.6% | ||
reizak | 0 | 494,401,782 | 2.24% | ||
carn | 0 | 3,564,042,677 | 5.04% | ||
branbello | 0 | 2,551,513,393 | 35% | ||
hetty-rowan | 0 | 2,677,169,346 | 2.8% | ||
ydavgonzalez | 0 | 2,370,693,010 | 10% | ||
fineartnow | 0 | 4,051,588,554 | 2.8% | ||
hijosdelhombre | 0 | 10,597,403,022 | 10% | ||
mathowl | 0 | 46,532,960,236 | 100% | ||
yoghurt | 0 | 1,412,182,932 | 5.6% | ||
steemvault | 0 | 2,196,511,576 | 5.6% | ||
steem4all | 0 | 1,285,119,989 | 2.8% | ||
shinedojo | 0 | 641,443,803 | 5.6% | ||
fragmentarion | 0 | 32,633,891,777 | 70% | ||
bennettitalia | 0 | 810,045,799 | 2.8% | ||
utube | 0 | 4,823,880,624 | 5.6% | ||
jigstrike | 0 | 889,926,998 | 2.8% | ||
m1alsan | 0 | 1,282,139,862 | 5.6% | ||
dynamicrypto | 0 | 2,458,161,437 | 1% | ||
pab.ink | 0 | 754,029,823 | 35% | ||
real2josh | 0 | 661,181,182 | 35% | ||
gribouille | 0 | 3,661,942,640 | 70% | ||
pandasquad | 0 | 13,050,968,607 | 5.6% | ||
kingabesh | 0 | 1,425,876,847 | 35% | ||
miguelangel2801 | 0 | 796,864,349 | 50% | ||
mproxima | 0 | 2,331,608,920 | 2.8% | ||
didic | 0 | 1,922,848,740 | 2.8% | ||
careassaktart | 0 | 697,383,528 | 1.68% | ||
emiliomoron | 0 | 10,687,336,118 | 35% | ||
galam | 0 | 662,721,006 | 24.5% | ||
dexterdev | 0 | 2,887,818,712 | 35% | ||
photohunt | 0 | 3,964,547,556 | 5.6% | ||
geopolis | 0 | 4,683,996,982 | 70% | ||
ajfernandez | 0 | 776,212,742 | 100% | ||
robertbira | 0 | 7,583,457,039 | 17.5% | ||
alexdory | 0 | 8,979,304,827 | 70% | ||
takowi | 0 | 109,086,818,181 | 5.6% | ||
irgendwo | 0 | 19,341,402,991 | 5.6% | ||
vegan.niinja | 0 | 509,743,834 | 2.8% | ||
flugschwein | 0 | 18,070,221,470 | 59.5% | ||
charitybot | 0 | 5,126,092,248 | 100% | ||
cyprianj | 0 | 75,729,805,503 | 70% | ||
kieranstone | 0 | 1,622,620,969 | 1.84% | ||
francostem | 0 | 9,754,242,673 | 70% | ||
endopediatria | 0 | 695,806,150 | 20% | ||
steempampanga | 0 | 597,462,097 | 2.8% | ||
croctopus | 0 | 1,570,410,912 | 100% | ||
jjerryhan | 0 | 4,829,087,666 | 2.8% | ||
putu300 | 0 | 729,947,401 | 5% | ||
zipporah | 0 | 2,724,002,770 | 1.12% | ||
leomarylm | 0 | 1,900,670,061 | 2.8% | ||
randumb | 0 | 845,227,691 | 5.6% | ||
positiveninja | 0 | 1,128,109,270 | 2.8% | ||
miroslavrc | 0 | 1,403,457,751 | 1.4% | ||
foxyspirit | 0 | 576,938,259 | 2.8% | ||
vonaurolacu | 0 | 1,748,906,642 | 2.8% | ||
movingman | 0 | 516,795,720 | 20% | ||
delpilar | 0 | 934,959,443 | 25% | ||
scottshots | 0 | 544,357,748 | 0.28% | ||
tomastonyperez | 0 | 17,118,554,130 | 50% | ||
bil.prag | 0 | 2,531,486,096 | 0.28% | ||
elvigia | 0 | 11,193,905,414 | 50% | ||
sanderjansenart | 0 | 5,286,196,035 | 2.8% | ||
vittoriozuccala | 0 | 2,129,580,838 | 2.8% | ||
koenau | 0 | 2,144,590,241 | 2.8% | ||
qberry | 0 | 3,991,987,495 | 2.8% | ||
frissonsteemit | 0 | 1,259,943,788 | 2.8% | ||
broncofan99 | 0 | 9,857,136,114 | 20% | ||
rambutan.art | 0 | 1,841,900,671 | 5.6% | ||
greddyforce | 0 | 4,116,373,399 | 2.07% | ||
flyerchen | 0 | 1,305,836,391 | 2.8% | ||
juanmanuellopez1 | 0 | 713,998,552 | 19.2% | ||
braaiboy | 0 | 10,739,909,338 | 2.8% | ||
ryenneleow | 0 | 6,480,683,501 | 90% | ||
gadrian | 0 | 437,904,178,250 | 52.5% | ||
c0wtschpotato | 0 | 591,061,775 | 2.8% | ||
therising | 0 | 98,701,155,272 | 5.6% | ||
jordangerder | 0 | 3,469,481,752 | 12% | ||
cryptocoinkb | 0 | 2,194,941,593 | 2.8% | ||
de-stem | 0 | 38,664,440,870 | 69.3% | ||
manuelmusic | 0 | 796,716,920 | 14.4% | ||
serylt | 0 | 3,236,575,900 | 68.6% | ||
josedelacruz | 0 | 4,874,706,091 | 50% | ||
dracrow | 0 | 2,882,671,504 | 9.6% | ||
vinnieleow | 0 | 5,399,473,222 | 90% | ||
kgakakillerg | 0 | 18,145,166,508 | 10% | ||
charitymemes | 0 | 534,493,884 | 100% | ||
mariusfebruary | 0 | 666,509,208 | 2.24% | ||
outtheshellvlog | 0 | 884,155,876 | 2.8% | ||
sawyn | 0 | 664,157,771 | 2.8% | ||
steemitbloggers | 0 | 10,996,525,328 | 25% | ||
realblockchain | 0 | 15,900,201,719 | 50% | ||
erickyoussif | 0 | 707,302,021 | 100% | ||
michaelwrites | 0 | 932,338,427 | 35% | ||
indigoocean | 0 | 1,176,219,811 | 2.8% | ||
deholt | 0 | 4,075,644,081 | 59.5% | ||
eleazarvo | 0 | 787,865,389 | 2.4% | ||
steem.services | 0 | 1,090,193,002 | 1.12% | ||
gwilberiol | 0 | 149,900,735,993 | 45% | ||
netzisde | 0 | 1,022,074,761 | 2.8% | ||
pladozero | 0 | 29,097,328,031 | 10% | ||
minerthreat | 0 | 3,538,315,931 | 2.8% | ||
temitayo-pelumi | 0 | 6,545,197,948 | 70% | ||
gabrielr29 | 0 | 7,620,244,332 | 100% | ||
andrick | 0 | 866,365,209 | 50% | ||
doctor-cog-diss | 0 | 62,751,552,437 | 70% | ||
trisolaran | 0 | 1,572,957,951 | 2.8% | ||
marcuz | 0 | 2,417,127,051 | 35% | ||
acont | 0 | 9,327,696,434 | 50% | ||
uche-nna | 0 | 6,758,864,089 | 4.48% | ||
citizendog | 0 | 5,166,330,897 | 5.6% | ||
cheese4ead | 0 | 4,774,503,235 | 2.8% | ||
jd4e | 0 | 3,739,870,996 | 50% | ||
mafufuma | 0 | 7,443,468,329 | 1% | ||
apshamilton | 0 | 13,682,501,606 | 0.7% | ||
nathyortiz | 0 | 5,548,288,517 | 12% | ||
nattybongo | 0 | 119,725,233,478 | 70% | ||
drsensor | 0 | 998,513,477 | 36% | ||
revueh | 0 | 2,012,456,511 | 35% | ||
ilovecryptopl | 0 | 904,714,532 | 4.48% | ||
purelyscience | 0 | 536,710,580 | 35% | ||
bflanagin | 0 | 2,690,578,799 | 1.4% | ||
ubaldonet | 0 | 2,457,526,587 | 80% | ||
armandosodano | 0 | 3,373,161,218 | 2.8% | ||
sadbear | 0 | 484,733,091 | 2.8% | ||
acousticguitar | 0 | 14,079,752,084 | 50% | ||
marivic10 | 0 | 462,047,079 | 1.4% | ||
hamismsf | 0 | 4,396,843,012 | 0.7% | ||
goblinknackers | 0 | 73,556,289,364 | 7% | ||
zuerich | 0 | 469,082,654,142 | 10% | ||
anttn | 0 | 25,945,518,883 | 2.8% | ||
reinaseq | 0 | 8,071,556,334 | 100% | ||
vixmemon | 0 | 1,693,925,782 | 4.2% | ||
honeycup-waters | 0 | 601,873,099 | 2.8% | ||
yaelg | 0 | 1,152,681,980 | 1.68% | ||
kylealex | 0 | 4,673,883,820 | 10% | ||
orlandogonzalez | 0 | 3,056,547,481 | 25% | ||
arzkyu97 | 0 | 2,754,868,484 | 9.6% | ||
fran.frey | 0 | 4,214,477,344 | 50% | ||
perpetuum-lynx | 0 | 2,166,934,804 | 68.6% | ||
andreasalas | 0 | 508,651,140 | 24% | ||
hanshotfirst-sm | 0 | 485,853,065 | 5.6% | ||
petrarodriguez | 0 | 154,475,769,857 | 24% | ||
thelittlebank | 0 | 19,895,276,651 | 2.8% | ||
pboulet | 0 | 171,063,134,764 | 56% | ||
javyeslava.photo | 0 | 603,690,125 | 2.24% | ||
josesalazar200 | 0 | 537,071,393 | 5.6% | ||
stem-espanol | 0 | 18,329,470,485 | 100% | ||
cliffagreen | 0 | 4,880,697,822 | 10% | ||
aleestra | 0 | 14,100,556,910 | 80% | ||
palasatenea | 0 | 3,284,800,417 | 2.8% | ||
the.success.club | 0 | 2,327,413,762 | 2.8% | ||
javier.dejuan | 0 | 540,507,211 | 70% | ||
amansharma555 | 0 | 595,961,049 | 100% | ||
meanroosterfarm | 0 | 1,405,471,004 | 35% | ||
racarjoal | 0 | 604,892,984 | 12% | ||
merlin7 | 0 | 11,136,915,193 | 5.6% | ||
janettyanez | 0 | 494,437,126 | 4.8% | ||
brianoflondon | 0 | 70,641,421,586 | 1.4% | ||
giulyfarci52 | 0 | 1,722,948,742 | 50% | ||
esthersanchez | 0 | 1,639,234,464 | 24% | ||
maryelin | 0 | 572,029,269 | 12% | ||
followjohngalt | 0 | 853,594,168 | 5.6% | ||
steemcryptosicko | 0 | 9,090,085,314 | 1.12% | ||
alvin0617 | 0 | 488,906,658 | 2.8% | ||
multifacetas | 0 | 1,525,640,329 | 2.8% | ||
cowpatty | 0 | 1,476,048,598 | 35% | ||
stem.witness | 0 | 4,220,861,482 | 70% | ||
witkowskipawel | 0 | 949,115,201 | 2.8% | ||
unitqm | 0 | 507,708,019 | 2.8% | ||
jpbliberty | 0 | 7,553,587,537 | 1.4% | ||
autobodhi | 0 | 1,023,309,901 | 5.6% | ||
mechanicalowl | 0 | 658,743,302 | 50% | ||
regularowl | 0 | 1,177,044,109 | 50% | ||
samsemilia7 | 0 | 881,915,063 | 39% | ||
vaultec | 0 | 6,324,191,015 | 12% | ||
jtm.support | 0 | 5,471,624,750 | 70% | ||
edithbdraw | 0 | 811,367,141 | 2.8% | ||
crowdwitness | 0 | 181,737,001,728 | 35% | ||
hairgistix | 0 | 3,236,295,718 | 2.8% | ||
bluemaskman | 0 | 637,097,779 | 2.8% | ||
steemean | 0 | 10,043,783,606 | 5% | ||
raynen | 0 | 3,967,094,223 | 100% | ||
proxy-pal | 0 | 1,187,596,529 | 5.6% | ||
thelogicaldude | 0 | 776,009,302 | 1.12% | ||
newton666 | 0 | 1,436,151,491 | 35% | ||
dawnoner | 0 | 1,996,513,941 | 0.56% | ||
jackramsey | 0 | 1,104,222,536 | 3.92% | ||
koychev22 | 0 | 1,671,760,340 | 2.8% | ||
photographercr | 0 | 2,658,644,518 | 1.12% | ||
epicdice | 0 | 1,913,469,713 | 1.68% | ||
yiobri | 0 | 705,055,602 | 12% | ||
iamsaray | 0 | 1,447,932,397 | 2.8% | ||
yonnathang | 0 | 14,855,043,444 | 24% | ||
jishan5 | 0 | 494,820,023 | 2.8% | ||
beerlover | 0 | 2,084,598,054 | 1.68% | ||
tggr | 0 | 1,317,618,651 | 2.8% | ||
aicu | 0 | 1,341,512,803 | 5.6% | ||
zeruxanime | 0 | 12,839,170,938 | 35% | ||
afarina46 | 0 | 1,950,435,249 | 35% | ||
swayzilla | 0 | 3,609,777,129 | 100% | ||
imbartley | 0 | 833,083,193 | 26.25% | ||
mind.force | 0 | 1,252,986,841 | 1.4% | ||
h-hamilton | 0 | 1,069,912,669 | 2.8% | ||
tiffin | 0 | 806,884,699 | 5.6% | ||
reggaesteem | 0 | 494,208,941 | 5% | ||
aicoding | 0 | 581,300,110 | 2.8% | ||
javikun | 0 | 710,794,871 | 24% | ||
nazer | 0 | 2,721,074,364 | 35% | ||
electronico | 0 | 10,898,404,788 | 100% | ||
saravm82 | 0 | 3,116,611,268 | 24% | ||
entrepreneur.one | 0 | 6,814,687,831 | 100% | ||
steemstem-trig | 0 | 1,464,226,932 | 70% | ||
hispapro | 0 | 449,075,269,252 | 24% | ||
baltai | 0 | 6,137,609,372 | 2.8% | ||
atheistrepublic | 0 | 6,613,803,254 | 2.8% | ||
machan | 0 | 712,833,618 | 2.8% | ||
ibt-survival | 0 | 37,323,220,651 | 10% | ||
sarahandsam | 0 | 15,772,199,097 | 100% | ||
hjmarseille | 0 | 2,073,064,246 | 49% | ||
steemdiamond | 0 | 707,132,755 | 5.6% | ||
zirky | 0 | 2,833,126,905 | 4.76% | ||
gloriaolar | 0 | 2,488,584,954 | 1.68% | ||
manic.calm | 0 | 11,066,941,540 | 100% | ||
lightpaintershub | 0 | 664,330,068 | 1% | ||
bilpcoinbpc | 0 | 812,656,939 | 5% | ||
davidlionfish | 0 | 13,410,036,317 | 50% | ||
peterale | 0 | 1,265,563,258 | 2.8% | ||
hive-127039 | 0 | 475,718,696 | 25% | ||
andreina57 | 0 | 673,317,391 | 35% | ||
krisconkr | 0 | 542,047,990 | 2.8% | ||
educationhive | 0 | 524,174,274 | 2.8% | ||
iliyan90 | 0 | 807,520,434 | 2.8% | ||
stemsocial | 0 | 581,797,797,388 | 70% | ||
ississ89 | 0 | 6,341,734,343 | 2.8% | ||
velinov86 | 0 | 1,433,945,277 | 1.4% | ||
the100 | 0 | 1,332,559,643 | 2.8% | ||
hiveonboard | 0 | 721,682,155 | 2.8% | ||
roflie | 0 | 1,883,931,557 | 2.8% | ||
georgelys | 0 | 2,912,071,788 | 24% | ||
lqch | 0 | 200,441,014,996 | 12% | ||
noelyss | 0 | 20,765,328,931 | 35% | ||
jsalvage | 0 | 1,968,155,031 | 35% | ||
adolfom | 0 | 12,375,632,134 | 100% | ||
quinnertronics | 0 | 14,418,119,313 | 7% | ||
anafae | 0 | 600,608,776 | 1.12% | ||
hivecoffee | 0 | 643,319,425 | 5.6% | ||
sevenoh-fiveoh | 0 | 973,826,629 | 2.8% | ||
aabcent | 0 | 6,031,958,327 | 4.48% | ||
edfer18 | 0 | 1,953,047,158 | 24% | ||
artsyproxy | 0 | 476,847,786 | 5.6% | ||
altleft | 0 | 21,951,268,423 | 0.05% | ||
noalys | 0 | 891,754,105 | 2.8% | ||
enyusael | 0 | 901,680,229 | 12% | ||
evagavilan2 | 0 | 6,280,111,583 | 12% | ||
gonklavez9 | 0 | 1,289,330,481 | 70% | ||
jesuspsoto | 0 | 1,996,065,885 | 24% | ||
apeboy | 0 | 944,121,388 | 12% | ||
apendix1994 | 0 | 3,842,126,135 | 90% | ||
cosplay.hadr | 0 | 1,282,949,086 | 5.6% | ||
hadrgames | 0 | 1,319,026,090 | 5.6% | ||
rawecz | 0 | 3,502,385,018 | 24% | ||
maar | 0 | 667,170,753 | 70% | ||
meritocracy | 0 | 63,166,870,607 | 0.56% | ||
hispaplus | 0 | 1,883,796,171 | 24% | ||
jesustiano | 0 | 4,746,201,405 | 19.2% | ||
dcrops | 0 | 35,136,343,168 | 2.8% | ||
pimpstudio-cash | 0 | 766,070,929 | 100% | ||
guitarmcy | 0 | 26,764,247,817 | 100% | ||
alicewonderyoga | 0 | 656,029,077 | 2.8% | ||
tbabachev | 0 | 667,697,136 | 2.8% | ||
traderhive | 0 | 12,549,319,169 | 5.6% | ||
alvarezjessica | 0 | 3,695,408,975 | 24% | ||
mihaylov | 0 | 686,943,251 | 2.8% | ||
tawadak24 | 0 | 602,449,798 | 2.8% | ||
elgatoshawua | 0 | 692,663,604 | 2.8% | ||
limn | 0 | 817,972,390 | 2.8% | ||
wynella | 0 | 1,102,781,666 | 2.8% | ||
nyxlabs | 0 | 1,050,865,502 | 3.5% | ||
dodovietnam | 0 | 3,973,950,904 | 2.8% | ||
oahb132 | 0 | 1,118,118,762 | 35% | ||
failingforwards | 0 | 3,194,891,272 | 2.8% | ||
fwxiii | 0 | 496,783,706 | 2.8% | ||
hexagono6 | 0 | 2,139,237,265 | 12% | ||
trouvaille | 0 | 724,310,089 | 2.8% | ||
maxelitereturned | 0 | 547,913,136 | 35% | ||
juecoree.stem | 0 | 475,672,021 | 70% | ||
trippymane | 0 | 1,737,552,482 | 5.6% | ||
victordumont | 0 | 1,985,003,924 | 24% | ||
norokochan | 0 | 1,203,546,174 | 24% | ||
nfttunz | 0 | 8,904,757,640 | 0.56% | ||
hive-bulgaria | 0 | 774,486,323 | 2.8% | ||
caribayarte | 0 | 3,177,825,472 | 24% | ||
yeidelyt | 0 | 880,776,918 | 24% | ||
okluvmee | 0 | 2,688,259,355 | 2.8% | ||
atexoras.pub | 0 | 1,328,743,860 | 2.8% | ||
naath | 0 | 1,051,674,494 | 12% | ||
merit.ahama | 0 | 4,150,817,517 | 1.68% | ||
holovision.cash | 0 | 3,526,280,921 | 100% | ||
brujita18 | 0 | 4,402,977,615 | 10.8% | ||
mirteg | 0 | 727,598,565 | 5.6% | ||
projectmamabg | 0 | 4,882,315,093 | 10% | ||
snedeva | 0 | 1,842,017,264 | 5% | ||
podping | 0 | 7,363,496,189 | 1.4% | ||
davidbright | 0 | 656,301,990 | 2.8% | ||
dontcare89 | 0 | 681,421,371 | 0.56% | ||
beysyd | 0 | 1,837,966,744 | 12% | ||
ferbu | 0 | 2,477,368,089 | 24% | ||
drhueso | 0 | 1,404,592,980 | 2.8% | ||
annafenix | 0 | 1,944,540,155 | 12% | ||
pinkfloyd878 | 0 | 4,225,118,360 | 100% | ||
lavista | 0 | 15,386,451,985 | 100% | ||
asderhz | 0 | 1,467,309,517 | 12% | ||
lycanskiss | 0 | 2,107,585,189 | 100% | ||
mairimgo23 | 0 | 5,685,056,262 | 24% | ||
danokoroafor | 0 | 568,090,927 | 2.8% | ||
miguelstar | 0 | 1,481,693,152 | 24% | ||
seinkalar | 0 | 16,045,380,295 | 5.6% | ||
tanzil2024 | 0 | 970,123,792 | 1% | ||
badge-646464 | 0 | 717,489,285 | 5.6% | ||
sidalim88 | 0 | 3,441,502,111 | 2.8% | ||
amaillo | 0 | 636,411,304 | 4.8% | ||
aries90 | 0 | 42,835,379,779 | 5.6% | ||
franvenezuela | 0 | 1,071,363,832 | 12% | ||
cugel | 0 | 2,599,613,582 | 2.8% | ||
acantoni | 0 | 842,109,230 | 2.8% | ||
migka | 0 | 4,385,472,904 | 90% | ||
blingit | 0 | 3,508,624,935 | 2.8% | ||
kingz1337 | 0 | 1,313,136,726 | 100% | ||
theargirova | 0 | 956,593,997 | 2.8% | ||
rynos-6 | 0 | 2,733,047,863 | 100% | ||
andre-marg25 | 0 | 1,265,536,112 | 24% | ||
iskafan | 0 | 889,165,188 | 2.8% | ||
h3m4n7 | 0 | 595,722,529 | 2.8% | ||
jude9 | 0 | 2,041,970,130 | 17.5% | ||
yixn | 0 | 37,262,505,832 | 2.8% | ||
tanray | 0 | 1,602,616,563 | 100% | ||
kqaosphreak | 0 | 4,233,320,211 | 70% | ||
alt3r | 0 | 1,283,195,392 | 4.31% | ||
mcookies | 0 | 2,257,067,798 | 12% | ||
waivio.curator | 0 | 1,695,140,756 | 3.15% | ||
ledgar | 0 | 5,966,441,459 | 100% | ||
gercripto | 0 | 1,328,614,880 | 12% | ||
simsahas | 0 | 3,902,021,498 | 5.6% | ||
aichanbot | 0 | 2,126,389,671 | 5.6% | ||
ehizgabriel | 0 | 673,608,944 | 35% | ||
zerothree | 0 | 51,690,862,151 | 100% | ||
vickoly | 0 | 6,539,109,622 | 2.8% | ||
susurrodmisterio | 0 | 933,275,309 | 12% | ||
noctury | 0 | 483,895,255 | 2.8% | ||
zerofour | 0 | 35,034,183,694 | 100% | ||
esalcedo | 0 | 35,549,147,828 | 24% | ||
diyan3973lenkov | 0 | 1,176,557,715 | 2.8% | ||
reenave | 0 | 2,910,622,770 | 37% | ||
foxlatam | 0 | 9,769,457,722 | 50% | ||
deadleaf | 0 | 4,273,555,770 | 100% | ||
vasilev89 | 0 | 536,830,799 | 2.8% | ||
stefy.music | 0 | 548,188,825 | 2.8% | ||
netvalar | 0 | 6,126,029,150 | 50% | ||
zerozerozero | 0 | 66,916,969,824 | 100% | ||
allentaylor | 0 | 986,830,604 | 2.8% | ||
zerozeroone | 0 | 18,964,193,687 | 100% | ||
iliev26 | 0 | 647,387,473 | 2.8% | ||
jerusa777 | 0 | 1,252,406,881 | 15% | ||
crisch23 | 0 | 483,151,304 | 12% | ||
balabambuz | 0 | 740,559,946 | 2.8% | ||
abejaobrera | 0 | 1,331,943,928 | 24% | ||
draconiac | 0 | 476,142,145 | 100% | ||
archangel21 | 0 | 3,455,083,411 | 5.6% | ||
titly | 0 | 477,826,710 | 50% | ||
belug | 0 | 2,134,857,109 | 1.68% | ||
amafable07 | 0 | 1,029,443,878 | 35% | ||
benbow2017 | 0 | 5,683,753,748 | 2.8% | ||
mugueto2022 | 0 | 551,363,778 | 20% | ||
ricardoeloy | 0 | 999,316,834 | 6% | ||
mdasein | 0 | 8,005,976,413 | 100% | ||
fonestreet | 0 | 2,521,603,578 | 33.75% | ||
nazom | 0 | 838,510,063 | 35% | ||
prasiatko | 0 | 1,855,610,985 | 2.25% | ||
universodaniel | 0 | 865,852,503 | 12% | ||
sieghard1990 | 0 | 2,422,855,215 | 100% | ||
sbtofficial | 0 | 4,928,215,608 | 2.8% | ||
vagabond42069 | 0 | 1,507,139,644 | 35% | ||
eollarvesm | 0 | 881,135,968 | 12% | ||
inibless | 0 | 2,240,560,990 | 35% | ||
hiversbqto | 0 | 2,506,296,596 | 24% | ||
daje10 | 0 | 21,150,197,526 | 50% | ||
justfavour | 0 | 1,940,914,733 | 2.8% | ||
hispaliterario | 0 | 1,208,746,875 | 24% | ||
sc000 | 0 | 1,359,990,746 | 5.6% | ||
pinkchic | 0 | 710,698,066 | 0.84% | ||
vankushfamily | 0 | 676,371,180 | 35% | ||
jijisaurart | 0 | 1,344,724,153 | 2.8% | ||
minas-glory | 0 | 2,424,605,694 | 2.8% | ||
clpacksperiment | 0 | 3,078,651,665 | 2.8% | ||
the-grandmaster | 0 | 1,413,522,298 | 2.8% | ||
the-burn | 0 | 1,414,598,156 | 2.8% | ||
peniel2010 | 0 | 4,464,635,049 | 50% | ||
thepeoplesguild | 0 | 827,118,955 | 2.8% | ||
flywithmarlin | 0 | 851,069,240 | 12% | ||
zackygamer | 0 | 1,285,459,827 | 24% | ||
jesus-son | 0 | 587,275,056 | 2.8% | ||
warofcriptonft | 0 | 17,515,457,305 | 12% | ||
hive-140084 | 0 | 1,359,860,299 | 45% | ||
lettinggotech | 0 | 1,293,240,246 | 2.8% | ||
ojsuarez2 | 0 | 3,037,045,276 | 100% | ||
niggyayo | 0 | 1,309,690,593 | 12% | ||
rhemagames | 0 | 4,869,190,346 | 2.8% | ||
smile27 | 0 | 1,750,903,559 | 12% | ||
cryptoscripts | 0 | 496,511,040 | 14% | ||
b1ng1 | 0 | 218,864,898 | 100% | ||
mariiestefania | 0 | 1,919,084,323 | 24% | ||
fc-curation | 0 | 8,724,410,243 | 45% | ||
earn.vote | 0 | 9,859,147,799 | 100% | ||
caleb-marvel | 0 | 842,976,944 | 100% | ||
empo.voter | 0 | 105,574,559,142 | 0.45% | ||
pepe.voter | 0 | 8,554,138,805 | 22.5% |
!DHEDGE
author | fc-curation |
---|---|
permlink | re-eniolw-20231111t1610335z |
category | hive-140084 |
json_metadata | {"tags":["hive-140084","coding","programming","python","development","neoxian","proofofbrain","creativecoin","waivio","spanish","tech"],"app":"ecency/3.0.37-vision","format":"markdown+html"} |
created | 2023-11-11 11:10:33 |
last_update | 2023-11-11 11:10:33 |
depth | 1 |
children | 1 |
last_payout | 2023-11-18 11:10:33 |
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 | 7 |
author_reputation | 61,419,996,141,932 |
root_title | "My Coding Quiz #32" |
beneficiaries | [] |
max_accepted_payout | 1,000,000.000 HBD |
percent_hbd | 10,000 |
post_id | 128,766,360 |
net_rshares | 0 |
you have 0.0 vote calls available today, your vote calls will reset at next snapshot. You can [buy DHEDGE on Tribaldex](https://tribaldex.com/trade/DHEDGE) or earn some daily by joining one of our many delegation pools at [app.dhedge.cc](https://app.dhedge.cc) to increase your daily amount.
author | dhedge |
---|---|
permlink | re-re-eniolw-20231111t1610335z-20231111t111040z |
category | hive-140084 |
json_metadata | "{"app": "beem/0.24.26"}" |
created | 2023-11-11 11:10:39 |
last_update | 2023-11-11 11:10:39 |
depth | 2 |
children | 0 |
last_payout | 2023-11-18 11:10: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 | 291 |
author_reputation | 5,003,962,900,629 |
root_title | "My Coding Quiz #32" |
beneficiaries | [] |
max_accepted_payout | 1,000,000.000 HBD |
percent_hbd | 10,000 |
post_id | 128,766,365 |
net_rshares | 0 |
I guess it's the last choice. 🤞 !PGM
author | mdasein |
---|---|
permlink | re-eniolw-20231112t20171370z |
category | hive-140084 |
json_metadata | {"tags":["hive-140084","coding","programming","python","development","neoxian","proofofbrain","creativecoin","waivio","spanish","tech"],"app":"ecency/3.0.43-mobile","format":"markdown+html"} |
created | 2023-11-12 12:17:12 |
last_update | 2023-11-12 12:17:12 |
depth | 1 |
children | 3 |
last_payout | 2023-11-19 12:17:12 |
cashout_time | 1969-12-31 23:59:59 |
total_payout_value | 0.000 HBD |
curator_payout_value | 0.000 HBD |
pending_payout_value | 0.000 HBD |
promoted | 0.000 HBD |
body_length | 36 |
author_reputation | 14,955,469,933,292 |
root_title | "My Coding Quiz #32" |
beneficiaries | [] |
max_accepted_payout | 1,000,000.000 HBD |
percent_hbd | 10,000 |
post_id | 128,792,110 |
net_rshares | 0 |
OK! We'll see about that in the next installment :)
author | eniolw |
---|---|
permlink | re-mdasein-20231114t214829823z |
category | hive-140084 |
json_metadata | {"tags":["hive-140084","coding","programming","python","development","neoxian","proofofbrain","creativecoin","waivio","spanish","tech"],"app":"ecency/3.0.37-vision","format":"markdown+html"} |
created | 2023-11-15 01:48:30 |
last_update | 2023-11-15 01:48:30 |
depth | 2 |
children | 0 |
last_payout | 2023-11-22 01: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 | 51 |
author_reputation | 253,328,400,128,603 |
root_title | "My Coding Quiz #32" |
beneficiaries | [] |
max_accepted_payout | 1,000,000.000 HBD |
percent_hbd | 10,000 |
post_id | 128,869,835 |
net_rshares | 0 |
Haha, no, that's not it, you're not hopeless.
author | eniolw |
---|---|
permlink | re-mdasein-20231118t12101248z |
category | hive-140084 |
json_metadata | {"tags":["hive-140084","coding","programming","python","development","neoxian","proofofbrain","creativecoin","waivio","spanish","tech"],"app":"ecency/3.0.37-vision","format":"markdown+html"} |
created | 2023-11-18 16:10:03 |
last_update | 2023-11-18 16:10:03 |
depth | 2 |
children | 0 |
last_payout | 2023-11-25 16:10: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 | 45 |
author_reputation | 253,328,400,128,603 |
root_title | "My Coding Quiz #32" |
beneficiaries | [] |
max_accepted_payout | 1,000,000.000 HBD |
percent_hbd | 10,000 |
post_id | 128,971,485 |
net_rshares | 0 |
<center>Sent 0.1 PGM - 0.1 LVL- 1 STARBITS - 0.05 DEC - 1 SBT - 0.1 THG - 0.000001 SQM - 0.1 BUDS - 0.01 WOO - 0.005 SCRAP tokens </center> <center><sub>remaining commands 8</sub></center> **BUY AND STAKE THE PGM TO SEND A LOT OF TOKENS!** The tokens that the command sends are: 0.1 PGM-0.1 LVL-0.1 THGAMING-0.05 DEC-15 SBT-1 STARBITS-[0.00000001 BTC (SWAP.BTC) only if you have 2500 PGM in stake or more ] 5000 PGM IN STAKE = 2x rewards!  Discord [](https://discord.gg/KCvuNTEjWw) Support the curation account @ pgm-curator with a delegation [10 HP](https://hivesigner.com/sign/op/WyJkZWxlZ2F0ZV92ZXN0aW5nX3NoYXJlcyIseyJkZWxlZ2F0b3IiOiJfX3NpZ25lciIsImRlbGVnYXRlZSI6InBnbS1jdXJhdG9yIiwidmVzdGluZ19zaGFyZXMiOiIxMCJ9XQ..) - [50 HP](https://hivesigner.com/sign/op/WyJkZWxlZ2F0ZV92ZXN0aW5nX3NoYXJlcyIseyJkZWxlZ2F0b3IiOiJfX3NpZ25lciIsImRlbGVnYXRlZSI6InBnbS1jdXJhdG9yIiwidmVzdGluZ19zaGFyZXMiOiI1MCJ9XQ..) - [100 HP](https://hivesigner.com/sign/op/WyJkZWxlZ2F0ZV92ZXN0aW5nX3NoYXJlcyIseyJkZWxlZ2F0b3IiOiJfX3NpZ25lciIsImRlbGVnYXRlZSI6InBnbS1jdXJhb3RyIiwidmVzdGluZ19zaGFyZXMiOiIxMDAifV0.) - [500 HP](https://hivesigner.com/sign/op/WyJkZWxlZ2F0ZV92ZXN0aW5nX3NoYXJlcyIseyJkZWxlZ2F0b3IiOiJfX3NpZ25lciIsImRlbGVnYXRlZSI6InBnbS1jdXJhdG9yIiwidmVzdGluZ19zaGFyZXMiOiI1MDAifV0.) - [1000 HP](https://hivesigner.com/sign/op/WyJ0cmFuc2Zlcl90b192ZXN0aW5nIix7ImZyb20iOiJfX3NpZ25lciIsInRvIjoicGdtLWN1cmF0b3IiLCJhbW91bnQiOiIxMDAwIn1d) Get **potential** votes from @ pgm-curator by paying in PGM, here is a [guide](https://peakd.com/hive-146620/@zottone444/pay-1-pgm-and-get-4-votes-itaegn) <sub>I'm a bot, if you want a hand ask @ zottone444</sub> ***
author | pgm-curator |
---|---|
permlink | pgm-curatormdasein1699791449953 |
category | hive-140084 |
json_metadata | {"tags":[],"app":"pgm/0.1","format":"markdown+html"} |
created | 2023-11-12 12:17:30 |
last_update | 2023-11-12 12:17:30 |
depth | 2 |
children | 0 |
last_payout | 2023-11-19 12:17: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 | 1,916 |
author_reputation | 3,409,490,822,394 |
root_title | "My Coding Quiz #32" |
beneficiaries | [] |
max_accepted_payout | 1,000,000.000 HBD |
percent_hbd | 10,000 |
post_id | 128,792,115 |
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-32-20231111t172116904z |
category | hive-140084 |
json_metadata | {"app":"STEMsocial"} |
created | 2023-11-11 17:21:15 |
last_update | 2023-11-11 17:21:15 |
depth | 1 |
children | 0 |
last_payout | 2023-11-18 17:21: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 | 565 |
author_reputation | 22,903,676,462,363 |
root_title | "My Coding Quiz #32" |
beneficiaries | [] |
max_accepted_payout | 1,000,000.000 HBD |
percent_hbd | 10,000 |
post_id | 128,774,189 |
net_rshares | 0 |