This is the second part of "Making a Simple Post a Little Classier", and we'll go into just a little more detail on this post. <center><a href="https://pixabay.com/photos/butterfly-nature-insect-wing-3054736/"><img src="https://files.steempeak.com/file/steempeak/jamerussell/n07lc9dW-image.png"></a></center><center>Image credit:<a href="https://pixabay.com/users/dreamyart512893/">DreamyArt </a>from <a href="https://pixabay.com">Pixabay.com</a></center> In this post we will be using these HTML tags: `<center>` text or image `</center>` `<sup>` `</sup>`(sup stands for superscript) `<div class=text-justify>` `</div>` (div means division) `<br>` (br means break) In the first post we did not use the superscript or the division tags, but I am going to cover them in this post, it's just a matter of putting them in in the correct place. # Photos or Images We covered picking an image out in our last blog post "Making a Simple Post a Little Classier 1" and you can see that <a href="https://steempeak.com/heyhaveyamet/@jamerussell/making-a-simple-post-a-little-classier-1"> HERE </a>. We are now going to cover an image from a site that offers free open source images to use, and most of them that I have come across state that no attribution is required: <center><img src="https://files.steempeak.com/file/steempeak/jamerussell/HpPPdv5r-image.png"></center> They normally offer a choice of buying them coffee, or in other words, a donation: <center><img src="https://files.steempeak.com/file/steempeak/jamerussell/5YZNmfoH-image.png"></center> In this case the author of our photo is going to be DreamyArt and we are going to use their name under our image as a sourcing or attribution. <div class=text-justify> As I normally cannot afford to give my money away, I choose not to, but do want to do something. And as I am a firm believer in doing to others what we would have them do to us, I would like to point out that I don't care who you are, it is nice if someone uses one of your photos or images and puts that credit or attribution out there with your name on it. It does not hurt anything and gets more recognition for whoever this author is. </div> <br> ## Images So the first thing I do is pick out the image I want to use, and copy the URL in the address bar. In this case it is: `` <div class=text-justify> Now that we have our image picked out, and have the author and the site that the image came from with it, we are going to enter it into our text editor and clean it up with some simple coding. I like to enter it and space it out so that we can easily see everything, much better for proofing if something goes amiss. </div> <br> Second thing is to paste it into our editor, and remove the extra writing and the parenthesis: `![image.png]()` so that it becomes: `https://pixabay.com/photos/butterfly-nature-insect-wing-3054736/` Now just leave space around it. I will then code the page URL as a link for the information page on Pixabay like this: `<a href="https://pixabay.com/photos/butterfly-nature-insect-wing-3054736/"></a>` I will now right click and copy the image URL, and then code it like this: `<img src="https://files.steempeak.com/file/steempeak/jamerussell/n07lc9dW-image.png">` I will insert the image URL into the info page link so that it links to the information page on the Pixabay site and it becomes: `<a href="INFO PAGE URL"> <img src="PICTURE URL"></a>` and so it will become nice and clean thus becomes: `<center>` `<a href="https://pixabay.com/photos/butterfly-nature-insect-wing-3054736/">` `<img src="https://files.steempeak.com/file/steempeak/jamerussell/n07lc9dW-image.png">` `</a>` `</center>` in the editor with this kind of spacing so you can see any mistakes. ## Sourcing So at this point I then right-click on the author's linked name in that information page, and open another tab. Then I have the artist's or author's page. I copy off the URL: https://pixabay.com/users/dreamyart-512893/?utm_source=link-attribution&utm_medium=referral&utm_campaign=image&utm_content=3054736W PLEASE NOTE: I will now remove the extra letters and numbers to simplify, as I just learned this myself thanks to @thekittygirl, otherwise known as Kittypedia!!! Hehe! Turns out that all this extra coding is for tracking purposes! It becomes: https://pixabay.com/users/dreamyart-512893/ Now I code that link just below the image URL and have this: `<center>` `<a href="https://pixabay.com/photos/butterfly-nature-insect-wing-3054736/">` `<img src="https://files.steempeak.com/file/steempeak/jamerussell/n07lc9dW-image.png">` `</a>` `</center>` `https://pixabay.com/users/dreamyart-512893/` I like to keep them spaced out to see the whole enchilada (hahaha, aren't you hungry now: tacos and enchiladas?) Now we can take the other two credits, and work them separately: We take and add our code and the author's name to this URL: `<center>` Image credit: `<a href="https://pixabay.com/users/dreamyart-512893/">`DreamyArt `</a>`from And that is our author part, now for the website part: `<a href="https://pixabay.com">`Pixabay.com `</a></center>` Notice that I did not include the `</center><center>` in between the two parts, because the sourcing will become on sentence. ## Image + sourcing So now I just work the coding in on the image first: `<center><a href="https://pixabay.com/photos/butterfly-nature-insect-wing-3054736/"> <img src="https://files.steempeak.com/file/steempeak/jamerussell/n07lc9dW-image.png"> </a></center>` And it will look like this in the editor ***and*** be a link to the information page in Pixabay: <a href="https://pixabay.com/photos/butterfly-nature-insect-wing-3054736/"> <img src="https://files.steempeak.com/file/steempeak/jamerussell/n07lc9dW-image.png"> </a> Now we simply close up the spacing between all of that and we have a nice tucked up attribution, and it should look like this with it all together: `<center>`Image credit:`<a href="https://pixabay.com/users/dreamyart512893/">`DreamyArt`</a>`from`<a href="https://pixabay.com">`Pixabay.com`</a></center>` And will result in: <center><img src="https://files.steempeak.com/file/steempeak/jamerussell/3PsptJgm-image.png"></center><center>Image credit:<a href="https://pixabay.com/users/dreamyart-512893/"> DreamyArt </a>from <a href="https://pixabay.com/photos/butterfly-nature-insect-wing-3054736/">Pixabay.com</a></center> Now, in our credits, or attribution, we can add the HTML tags `<sup>` and `</sup>` , <div class=text-justify>it will make the writing smaller and tucked in if we so desire, or we could have inserted them in at the broken down stage, or not used them at all and left it large. If you remember I had made a statement about these specific tags, as it renders the writing really small for mobile users who may not be able to read it. </div> <br> This is the result of the `<sup>` and `</sup>` tags being inserted in our credits: `<center><img src="https://pixabay.com/users/dreamyart-512893/"><sup>` Image credit: <a href="https://pixabay.com/users/dreamyart-512893/">DreamyArt </a>from<a href="https://pixabay.com/photos/butterfly-nature-insect-wing-3054736/"> Pixabay.com </a>`</sup></center>` in our code, and results in this: <center><img src="https://files.steempeak.com/file/steempeak/jamerussell/3PsptJgm-image.png"></center><center><sup>Image credit:<a href="https://pixabay.com/users/dreamyart-512893/"> DreamyArt </a>from <a href="https://pixabay.com/photos/butterfly-nature-insect-wing-3054736/"> Pixabay.com </a></sup></center> Also be advised to be considered "correct sourcing", it doesn't need to go to this extreme: for me it is amusement purposes of a freakin' perfectionist!!! # Paragraphs So this is where we will use the tags `<div class=text-justify>` and `</div>` at the end of the paragraph to make it even on the edges and look better. `<div class=text-justify>` <div class=text-justify> So now I am going to close this part off, this is part 2 of making a classier post, please remember that I find this extremely fascinating, and with these small additions one can click on the picture or image to go to the actual full information page, or click on the author, which in this case goes to the author's page in Pixabay, or click on the Pixabay itself to go to the actual home page of the website for Pixabay.com.</div> <br> `</div>` <br> I sincerely hope you all enjoyed reading this post, and I know there are some of you who already knew this, but to me, it was like making notes to myself, and I thoroughly enjoyed writing it for you. Keep on Steeming!!! James <center>https://steemitimages.com/0x0/https://cdn.discordapp.com/attachments/572063798630940682/631164562439143464/james4.gif </center><center><sup>Thanks to @liberty-minded for such a cool gif and modified by @jimramones</sup></center> <br> <center>https://cdn.steemitimages.com/DQmf55ciT8dXvM7JNhDvEazdEnAUAzE6LUpFFHwJGZY4bW2/jamesrussell.gif</center><center><sup>Thanks to @zord189 for the cool autograph gif</sup></center> <br> <div class=text-justify> Hey! Did you know @heyhaveyamet and @steem-aide are partners with the @steemterminal? And hey! Did you know they also sponsor the #rally100 and the #rally500 there as well, along with numerous other contests and challenges? They provide for the growth of the new Steemians and the beginnings on the road to Steemdom. </div> <br> <center>[](https://discord.gg/XZGPGpz)</center> <br> <center><a href="http://www.thealliance.io" target=Top><img src="https://cdn.steemitimages.com/DQmdPNRLswihRn5tictuGcMSPu1UE5pABfWgbyqgEVQdhci/The_Alliance_Banner.png"></a></center> <br> <center><a href="https://discord.gg/BXQhptS"><img src="https://files.steempeak.com/file/steempeak/jamerussell/XHRMEIby-image.png"></a></center> <br> <center> Proud user of  Thanks @steempeak for the great banner </center>
author | jamerussell | ||||||
---|---|---|---|---|---|---|---|
permlink | making-a-simple-post-a-little-classier-2 | ||||||
category | education | ||||||
json_metadata | {"app":"steempeak/2020.03.6","format":"markdown","tags":["education","blogging","steemterminal","heyhaveyamet","innerblocks","oc","palnet","neoxian"],"users":["jamerussell","thekittygirl","liberty-minded","jimramones","zord189","heyhaveyamet","steem-aide","steemterminal","steempeak"],"links":["https://pixabay.com/photos/butterfly-nature-insect-wing-3054736/","https://pixabay.com/users/dreamyart512893/","https://pixabay.com","/heyhaveyamet/@jamerussell/making-a-simple-post-a-little-classier-1","https://pixabay.com/users/dreamyart-512893/?utm_source=link-attribution&utm_medium=referral&utm_campaign=image&utm_content=3054736W","/@thekittygirl","https://pixabay.com/users/dreamyart-512893/","https://pixabay.com/photos/butterfly-nature-insect-wing-3054736/","https://pixabay.com/users/dreamyart-512893/","https://pixabay.com/photos/butterfly-nature-insect-wing-3054736/"],"image":["https://files.steempeak.com/file/steempeak/jamerussell/HpPPdv5r-image.png","https://files.steempeak.com/file/steempeak/jamerussell/n07lc9dW-image.png","https://files.steempeak.com/file/steempeak/jamerussell/5YZNmfoH-image.png","https://files.steempeak.com/file/steempeak/jamerussell/3PsptJgm-image.png","https://cdn.discordapp.com/attachments/572063798630940682/631164562439143464/james4.gif","https://cdn.steemitimages.com/DQmf55ciT8dXvM7JNhDvEazdEnAUAzE6LUpFFHwJGZY4bW2/jamesrussell.gif","https://cdn.steemitimages.com/DQmRFHKzC9oeUzMWsV89KScur5G9AsCAuQcLezPrbGHXkRy/SteemTerminalBanner4.jpg","https://cdn.steemitimages.com/DQmdPNRLswihRn5tictuGcMSPu1UE5pABfWgbyqgEVQdhci/The_Alliance_Banner.png","https://files.steempeak.com/file/steempeak/jamerussell/XHRMEIby-image.png","https://files.steempeak.com/file/steempeak/heyhaveyamet/NzpVVPtE-steempeak_banner.jpg"]} | ||||||
created | 2020-03-18 17:59:03 | ||||||
last_update | 2020-03-18 21:31:24 | ||||||
depth | 0 | ||||||
children | 28 | ||||||
last_payout | 2020-03-25 17:59:03 | ||||||
cashout_time | 1969-12-31 23:59:59 | ||||||
total_payout_value | 0.881 HBD | ||||||
curator_payout_value | 0.873 HBD | ||||||
pending_payout_value | 0.000 HBD | ||||||
promoted | 0.000 HBD | ||||||
body_length | 10,201 | ||||||
author_reputation | 15,805,008,120,514 | ||||||
root_title | "Making a Simple Post a Little Classier 2" | ||||||
beneficiaries |
| ||||||
max_accepted_payout | 1,000,000.000 HBD | ||||||
percent_hbd | 10,000 | ||||||
post_id | 96,468,701 | ||||||
net_rshares | 7,523,192,753,930 | ||||||
author_curate_reward | "" |
voter | weight | wgt% | rshares | pct | time |
---|---|---|---|---|---|
tombstone | 0 | 178,036,128,092 | 0.53% | ||
boombastic | 0 | 162,315,731 | 1.78% | ||
pairmike | 0 | 0 | 1.78% | ||
drifter1 | 0 | 266,349,355 | 1.78% | ||
mindstabber | 0 | 587,837,617 | 100% | ||
tshering-tamang | 0 | 7,761,665,211 | 100% | ||
flemingfarm | 0 | 42,932,560,283 | 50% | ||
cheftony | 0 | 12,311,790,827 | 1.78% | ||
drakernoise | 0 | 47,409,387,846 | 100% | ||
jeffjagoe | 0 | 1,964,846,911 | 2% | ||
diana.catherine | 0 | 217,809,596 | 1.78% | ||
arcange | 0 | 48,175,464,932 | 3% | ||
fiveboringgames | 0 | 98,852,000,407 | 35% | ||
raphaelle | 0 | 923,053,467 | 3% | ||
alchemage | 0 | 1,872,244,878 | 10% | ||
moisesmcardona | 0 | 59,431,257,614 | 50% | ||
gammagooblin | 0 | 532,631,606 | 1.78% | ||
anarcho-andrei | 0 | 9,755,814,419 | 32% | ||
shadowspub | 0 | 428,521,222 | 0.45% | ||
notconvinced | 0 | 1,548,110,342 | 25% | ||
seckorama | 0 | 735,710,230 | 0.89% | ||
dexter-k | 0 | 1,549,283,711 | 0.89% | ||
onezetty | 0 | 4,125,464,914 | 50% | ||
bestofreddit | 0 | 2,951,040,419 | 100% | ||
ansharphoto | 0 | 2,741,644,289 | 1.78% | ||
velocity007 | 0 | 83,513,902 | 100% | ||
sellergenius | 0 | 622,095,929 | 35% | ||
shafay | 0 | 328,263,174 | 1.78% | ||
nasgu | 0 | 3,094,732,302 | 1.78% | ||
azzurra92 | 0 | 252,507,142 | 1.78% | ||
elevator09 | 0 | 958,099,508 | 1.78% | ||
damla | 0 | 10,768,397,793 | 17.84% | ||
sarasate | 0 | 1,816,756,636 | 1.78% | ||
choogirl | 0 | 5,579,700,070 | 10.7% | ||
federacion45 | 0 | 1,078,014,951 | 1.78% | ||
melooo182 | 0 | 4,799,656,543 | 8.92% | ||
vannfrik | 0 | 586,338,634 | 1.42% | ||
morph | 0 | 1,102,240,480 | 42% | ||
robi | 0 | 1,240,618,634 | 1.78% | ||
bargolis | 0 | 191,538,656 | 1.78% | ||
skye1 | 0 | 0 | 6% | ||
enginewitty | 0 | 131,624,145,062 | 100% | ||
jagged | 0 | 2,326,812,579 | 0.89% | ||
roomservice | 0 | 31,021,394,246 | 1.78% | ||
markangeltrueman | 0 | 1,355,112,706 | 17.84% | ||
wishmaiden | 0 | 830,461,712 | 5% | ||
idas4you | 0 | 836,561,106 | 1.78% | ||
kalinka | 0 | 677,462,247 | 1.78% | ||
jackmiller | 0 | 144,624,410,752 | 100% | ||
hotsauceislethal | 0 | 1,020,807,120 | 0.42% | ||
rawpride | 0 | 4,290,956,896 | 4.2% | ||
techken | 0 | 100,857,292 | 0.6% | ||
wesphilbin | 0 | 2,973,889,269 | 8% | ||
digitalis | 0 | 1,569,261,791 | 2.67% | ||
minnowbooster | 0 | 766,514,559,455 | 5% | ||
stevethevagabond | 0 | 8,405,759,613 | 5% | ||
lenonmc21 | 0 | 2,260,322,061 | 50% | ||
jasonbu | 0 | 13,529,878,391 | 16% | ||
podnikatel | 0 | 50,288,154 | 0.18% | ||
sunisa | 0 | 457,085,297 | 1.25% | ||
killerwhale | 0 | 105,801,127,492 | 100% | ||
thelastpoet | 0 | 4,321,315,343 | 50% | ||
sportschain | 0 | 140,548,540 | 33% | ||
rumplestiltskin | 0 | 10,534,296,409 | 100% | ||
torico | 0 | 6,162,982,782 | 8.92% | ||
therealwolf | 0 | 115,070,346,161 | 1.78% | ||
inthenow | 0 | 25,034,480,352 | 100% | ||
stnwllstrtgc | 0 | 3,817,424,473 | 40% | ||
szabolcs | 0 | 612,148,125 | 1.78% | ||
filipino | 0 | 263,904,807 | 10% | ||
dunstuff | 0 | 8,409,584,812 | 100% | ||
upme | 0 | 1,895,331,552 | 1.78% | ||
silvergoldbotty | 0 | 58,041,684,612 | 50% | ||
jlsplatts | 0 | 6,926,185,352 | 1.5% | ||
hannesl | 0 | 940,933,228 | 1.78% | ||
jamiekensell | 0 | 704,739,953 | 80% | ||
steemitcomics | 0 | 17,329,437,435 | 100% | ||
mllg | 0 | 14,276,451,930 | 100% | ||
globetrottergcc | 0 | 528,834,146 | 1.78% | ||
spacecadet1 | 0 | 56,980,441,408 | 100% | ||
mslily | 0 | 538,351,745 | 100% | ||
snook | 0 | 100,925,124,188 | 75% | ||
thekittygirl | 0 | 168,032,594,529 | 100% | ||
socent | 0 | 1,453,628,057 | 15% | ||
shadow3scalpel | 0 | 78,187,868,899 | 80% | ||
anomallies | 0 | 21,054,919,173 | 100% | ||
steemph.manila | 0 | 3,039,997,710 | 17.84% | ||
bluefinstudios | 0 | 4,940,063,477 | 10% | ||
freedompoint | 0 | 16,886,721,445 | 50% | ||
sagarthukral | 0 | 221,233,741 | 1.78% | ||
smartsteem | 0 | 389,351,295,167 | 1.78% | ||
freedomtowrite | 0 | 9,871,898,480 | 50% | ||
robertomarinello | 0 | 455,413,882 | 1.78% | ||
amrumk | 0 | 92,226,427 | 25% | ||
syndicates | 0 | 17,313,100,144 | 100% | ||
sgt-dan | 0 | 214,749,803,597 | 100% | ||
bebeomega | 0 | 11,334,021 | 1.78% | ||
a11y | 0 | 38,838,524,768 | 50% | ||
smooms | 0 | 2,424,602,565 | 1.78% | ||
steembasicincome | 0 | 270,652,327,310 | 55.76% | ||
thedolphincocoon | 0 | 117,689,087,552 | 100% | ||
zipsardinia | 0 | 396,331,101 | 1.78% | ||
tomatom | 0 | 546,120,548 | 8.92% | ||
hetty-rowan | 0 | 767,170,073 | 4.46% | ||
spiritualmax | 0 | 287,374,044 | 1.78% | ||
gibber | 0 | 1,873,736,628 | 32% | ||
mattiarinaldoni | 0 | 0 | 1% | ||
smartmarket | 0 | 49,828,477,918 | 1.78% | ||
iamevilradio | 0 | 1,643,678,877 | 40% | ||
blanca56 | 0 | 15,774,409,035 | 50% | ||
chrismadcboy2016 | 0 | 2,148,544,382 | 5% | ||
errajesh | 0 | 515,756,478 | 1.78% | ||
dynamicrypto | 0 | 3,073,329,282 | 1% | ||
nobyeni | 0 | 1,368,140,789 | 2.78% | ||
mtnmeadowmomma | 0 | 1,605,971,507 | 8% | ||
nedy | 0 | 1,127,124,102 | 1.78% | ||
psyborg | 0 | 9,358,544,891 | 100% | ||
antdroid | 0 | 9,609,176,713 | 100% | ||
natha93 | 0 | 611,360,435 | 2.1% | ||
brittandjosie | 0 | 329,261,185,323 | 100% | ||
yosuandoni | 0 | 3,524,087,790 | 56% | ||
penderis | 0 | 5,807,175,856 | 20% | ||
katrina-ariel | 0 | 66,389,855,053 | 100% | ||
layra | 0 | 535,670,962 | 1.78% | ||
jagoe | 0 | 21,109,869,673 | 24% | ||
artemisa7 | 0 | 12,248,206,531 | 100% | ||
lordjames | 0 | 1,427,774,863 | 0.89% | ||
bonzopoe | 0 | 4,977,701,393 | 30% | ||
kyuubi | 0 | 2,260,643,513 | 1.78% | ||
madpotters | 0 | 1,331,889,145 | 30% | ||
spe3dy123 | 0 | 0 | 1.78% | ||
therising | 0 | 1,185,567,625,963 | 4.46% | ||
namuninja | 0 | 43,977,256 | 1.78% | ||
misterlangdon | 0 | 1,817,255,370 | 50% | ||
payroll | 0 | 327,525,693,249 | 1% | ||
minage27 | 0 | 569,981,572 | 100% | ||
saboin | 0 | 6,378,775,512 | 0.96% | ||
mariart1 | 0 | 718,520,478 | 50% | ||
larryparra | 0 | 1,493,996,693 | 50% | ||
monchhichi23 | 0 | 8,654,272,540 | 100% | ||
mraggaj | 0 | 1,560,249,654 | 5% | ||
meanbees | 0 | 6,389,324,313 | 2.1% | ||
veteranforcrypto | 0 | 12,062,736,427 | 40% | ||
romeskie | 0 | 2,816,312,911 | 8.92% | ||
marcoteixeira | 0 | 738,796,266 | 8.92% | ||
hatoto | 0 | 3,291,387,079 | 1.78% | ||
spreadfire1 | 0 | 1,500,253,665 | 1.78% | ||
minerthreat | 0 | 6,154,210,291 | 1.78% | ||
millibot | 0 | 0 | 0.1% | ||
mikemoi | 0 | 2,192,907,751 | 1.78% | ||
alexworld | 0 | 2,664,828,120 | 50% | ||
inb4 | 0 | 32,231,934,015 | 1.78% | ||
stay4true | 0 | 0 | 1.78% | ||
juliocesar7 | 0 | 604,672,954 | 50% | ||
sagesigma | 0 | 944,983,218 | 1% | ||
thegreatdayne | 0 | 560,541,952 | 50% | ||
sarez | 0 | 4,176,152,276 | 15.69% | ||
cheese4ead | 0 | 3,043,231,304 | 8.92% | ||
longer | 0 | 2,547,412,095 | 50% | ||
mariannelyr11 | 0 | 2,108,820,187 | 50% | ||
kafupraise | 0 | 210,259,380 | 50% | ||
dariuska2008 | 0 | 5,582,418,015 | 50% | ||
enormeanimal | 0 | 577,677,399 | 30% | ||
mrnightmare89 | 0 | 38,757,222 | 0.18% | ||
donald.porter | 0 | 839,920,935 | 0.75% | ||
ambiguity | 0 | 2,428,442,249 | 20% | ||
alliedforces | 0 | 166,490,816,928 | 100% | ||
xmrking | 0 | 645,518,697 | 1.78% | ||
ubaldonet | 0 | 1,467,622,707 | 15% | ||
drinkyouroj | 0 | 81,687,672 | 1.78% | ||
welcomewagon | 0 | 1,033,930,130 | 5% | ||
jcbit | 0 | 27,062,539,762 | 1.78% | ||
nancybmp | 0 | 820,277,734 | 8.92% | ||
skylinebuds | 0 | 1,646,753,014 | 6% | ||
voxmortis | 0 | 1,307,680,529 | 0.17% | ||
szr-network | 0 | 85,476,987,255 | 50% | ||
nadjette | 0 | 776,428,708 | 100% | ||
wistonleon | 0 | 616,813,886 | 100% | ||
team-mexico | 0 | 101,754,939,787 | 100% | ||
c-squared | 0 | 41,275,285,943 | 17.84% | ||
noblewitness | 0 | 25,803,330,013 | 40% | ||
bengiles | 0 | 3,507,705,167 | 1.05% | ||
metametheus | 0 | 43,587,464,261 | 50% | ||
greencmetaha | 0 | 571,517,980 | 100% | ||
thesummoner | 0 | 7,615,731,551 | 100% | ||
drfk | 0 | 1,120,765,543 | 0.89% | ||
lunamoon | 0 | 7,395,128,115 | 100% | ||
khaldeesi | 0 | 7,330,362,315 | 100% | ||
freyamber | 0 | 7,201,069,298 | 100% | ||
canna-curate | 0 | 22,687,957,099 | 4.2% | ||
franz54 | 0 | 604,008,841 | 5% | ||
darkprince66 | 0 | 539,234,576 | 100% | ||
canna-collective | 0 | 6,139,317,247 | 1.26% | ||
alexverde | 0 | 617,634,592 | 25% | ||
rosauradels | 0 | 1,404,417,681 | 50% | ||
qwoyn | 0 | 1,126,529,863 | 2.1% | ||
colecornell | 0 | 48,081,734 | 1.78% | ||
edwinbasu | 0 | 792,163,754 | 50% | ||
chain.games | 0 | 16,906,104,754 | 100% | ||
eliasseth | 0 | 2,459,812,776 | 50% | ||
erarium | 0 | 884,215,874 | 70% | ||
new-steemit | 0 | 962,675,599 | 1.78% | ||
xcountytravelers | 0 | 52,226,172,873 | 100% | ||
alfarofranudy | 0 | 3,480,530,448 | 50% | ||
crypt0renegade | 0 | 1,883,678,169 | 1.78% | ||
redheaddemon | 0 | 1,827,381,074 | 80% | ||
superbad | 0 | 13,871,410,218 | 100% | ||
knaveen | 0 | 400,414,497 | 100% | ||
rubberduckiemom | 0 | 5,036,278,341 | 25% | ||
butthugs | 0 | 7,732,397,039 | 100% | ||
steemtank | 0 | 309,651,835 | 1.78% | ||
helpiecake | 0 | 15,094,343,003 | 25% | ||
lord-of-the-d | 0 | 7,369,101,516 | 100% | ||
andresurrego | 0 | 816,336,128 | 1.78% | ||
elizabethharvey | 0 | 312,530,328 | 1.78% | ||
goodcontentbot | 0 | 427,069,608 | 50% | ||
electru | 0 | 824,630,500 | 50% | ||
steemdapps | 0 | 1,431,796,741 | 1.78% | ||
steemforsteem | 0 | 3,002,585,486 | 100% | ||
toonuts | 0 | 2,111,260,910 | 100% | ||
twonuts | 0 | 2,148,434,433 | 100% | ||
simply-happy | 0 | 661,943,525 | 1.6% | ||
hashkings | 0 | 6,862,591,681 | 2.1% | ||
boobnugs | 0 | 2,054,034,690 | 100% | ||
thelogicaldude | 0 | 752,437,584 | 2.1% | ||
bewithbreath | 0 | 2,605,126,110 | 2.78% | ||
carl3 | 0 | 822,059,348 | 50% | ||
aaronkroeblinger | 0 | 545,167,509 | 1.78% | ||
lucycohete | 0 | 721,997,464 | 50% | ||
russia-btc | 0 | 230,606,035,701 | 40% | ||
vcdragon | 0 | 553,996,681 | 1.78% | ||
mrbarckhoff | 0 | 92,896,709 | 25% | ||
celine-robichaud | 0 | 108,620,085 | 50% | ||
grizz-21 | 0 | 546,682,630 | 100% | ||
letlove | 0 | 2,701,435,695 | 100% | ||
allied-mafia | 0 | 6,724,778,736 | 100% | ||
epicdice | 0 | 11,120,780,165 | 0.53% | ||
bitcoingodmode | 0 | 769,116,544 | 75% | ||
thecryptohoarder | 0 | 6,590,472,096 | 20% | ||
scarletreaper | 0 | 15,318,481,215 | 40% | ||
yonnathang | 0 | 629,378,926 | 10% | ||
sexualtendencies | 0 | 1,777,619,654 | 100% | ||
steemforschool | 0 | 1,092,163,859 | 100% | ||
steemforschools | 0 | 1,322,221,230 | 100% | ||
itwasme | 0 | 1,167,728,922 | 100% | ||
deeanndmathews | 0 | 4,222,490,031 | 8.92% | ||
anacarranza | 0 | 559,480,990 | 50% | ||
g-spot-bot | 0 | 998,300,810 | 100% | ||
g-spotbot | 0 | 1,002,799,547 | 100% | ||
weedcash | 0 | 561,828,754 | 1.38% | ||
budwizard | 0 | 197,515,715 | 4% | ||
jalentakesphotos | 0 | 2,657,840,384 | 10% | ||
hgn66 | 0 | 1,842,981,510 | 100% | ||
elotro | 0 | 1,121,596,007 | 50% | ||
x40l1n | 0 | 1,243,275,600 | 100% | ||
fambalam | 0 | 3,370,051,343 | 100% | ||
grannabis | 0 | 569,224,654 | 23% | ||
mytunes | 0 | 586,890,719 | 100% | ||
publicview | 0 | 6,667,299,801 | 100% | ||
bliss11 | 0 | 45,268,583,703 | 100% | ||
innerblocks | 0 | 269,350,438,180 | 50% | ||
dr-autoflower | 0 | 882,005,114 | 2.1% | ||
c-squared-pal | 0 | 177,479,709 | 38.69% | ||
untersatz | 0 | 264,325,411,665 | 50% | ||
trust187 | 0 | 957,108,603 | 1.78% | ||
steem.consultant | 0 | 31,782,543,547 | 50% | ||
vipservice | 0 | 44,398,269,326 | 3% | ||
leonardodaslade | 0 | 0 | 100% | ||
draxnews | 0 | 708,774,971 | 2.23% | ||
allianceshow | 0 | 3,541,637,956 | 100% | ||
monkeydex | 0 | 762,763,221 | 100% | ||
c-squared-neoxag | 0 | 106,202,533 | 39.65% | ||
yourtop3 | 0 | 17,926,555,518 | 7.13% | ||
florianopolis | 0 | 1,134,558,993 | 1% | ||
communityvoter | 0 | 2,030,184,901 | 100% | ||
sofimax | 0 | 2,297,107,346 | 50% | ||
certhas | 0 | -9,144,929 | -10% | ||
jorjis | 0 | -9,144,929 | -10% | ||
bilpcoinpower | 0 | 0 | 25% | ||
bi0digital | 0 | 3,594,603,914 | 50% | ||
cuko | 0 | 400,715,301 | 10% | ||
jennyzer | 0 | 1,376,320,400 | 50% | ||
benicents | 0 | 3,231,185,295 | 20% | ||
benitrade | 0 | 24,560,586,131 | 20% | ||
beni.witness | 0 | 9,537,559,338 | 20% | ||
hive-123585 | 0 | 18,829,205,940 | 100% | ||
marcisist | 0 | 0 | 100% |
Gonna share this beauty in rally 100 and 500 and I donโt mean the blue steem butterfly
author | brittandjosie |
---|---|
permlink | re-jamerussell-q7fhkp |
category | education |
json_metadata | {"tags":["education"],"app":"steempeak/2020.03.6"} |
created | 2020-03-19 06:48:27 |
last_update | 2020-03-19 06:48:45 |
depth | 1 |
children | 1 |
last_payout | 2020-03-26 06:48:27 |
cashout_time | 1969-12-31 23:59:59 |
total_payout_value | 0.000 HBD |
curator_payout_value | 0.000 HBD |
pending_payout_value | 0.000 HBD |
promoted | 0.000 HBD |
body_length | 86 |
author_reputation | 525,661,217,955,513 |
root_title | "Making a Simple Post a Little Classier 2" |
beneficiaries | [] |
max_accepted_payout | 1,000,000.000 HBD |
percent_hbd | 10,000 |
post_id | 96,483,065 |
net_rshares | 39,911,363,510 |
author_curate_reward | "" |
voter | weight | wgt% | rshares | pct | time |
---|---|---|---|---|---|
jamerussell | 0 | 39,911,363,510 | 100% |
Thanks @brittandjosie!!!
author | jamerussell |
---|---|
permlink | re-brittandjosie-q7gat0 |
category | education |
json_metadata | {"tags":["education"],"app":"steempeak/2020.03.6"} |
created | 2020-03-19 17:19:51 |
last_update | 2020-03-19 17:19:51 |
depth | 2 |
children | 0 |
last_payout | 2020-03-26 17:19:51 |
cashout_time | 1969-12-31 23:59:59 |
total_payout_value | 0.000 HBD |
curator_payout_value | 0.000 HBD |
pending_payout_value | 0.000 HBD |
promoted | 0.000 HBD |
body_length | 24 |
author_reputation | 15,805,008,120,514 |
root_title | "Making a Simple Post a Little Classier 2" |
beneficiaries | [] |
max_accepted_payout | 1,000,000.000 HBD |
percent_hbd | 10,000 |
post_id | 96,495,922 |
net_rshares | 0 |
<div class="pull-left">https://cdn.steemitimages.com/DQmVHt1f2jqCViLk6dX2SZsajYRWBpmdQA7sQDEbuQBxFB3/c2100.png</div><br>This post was shared in the <a href="https://discord.gg/B8JFmJ4">Curation Collective Discord community</a> for curators, and upvoted and resteemed by the @c-squared community account after manual review.<br/>@c-squared runs a <a href="https://steemit.com/witness/@c-cubed/announcing-the-launch-of-the-new-c-squared-witness">community witness</a>. Please consider using one of your witness votes on us <a href ="https://steemconnect.com/sign/account-witness-vote?witness=c-squared&approve=true">here</a>
author | c-squared |
---|---|
permlink | 20200319t184030790z |
category | education |
json_metadata | {"tags":["c-squared"]} |
created | 2020-03-19 18:41:00 |
last_update | 2020-03-19 18:41:00 |
depth | 1 |
children | 0 |
last_payout | 2020-03-26 18:41:00 |
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 | 622 |
author_reputation | 8,872,520,093,091 |
root_title | "Making a Simple Post a Little Classier 2" |
beneficiaries | [] |
max_accepted_payout | 1,000,000.000 HBD |
percent_hbd | 10,000 |
post_id | 96,497,682 |
net_rshares | 0 |
Pretty classy :P @alliedforces curate 2
author | enginewitty |
---|---|
permlink | re-jamerussell-q7hfw2 |
category | education |
json_metadata | {"tags":["education"],"app":"steempeak/2020.03.6"} |
created | 2020-03-20 08:07:15 |
last_update | 2020-03-20 08:07:15 |
depth | 1 |
children | 2 |
last_payout | 2020-03-27 08:07: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 | 40 |
author_reputation | 698,067,787,587,266 |
root_title | "Making a Simple Post a Little Classier 2" |
beneficiaries | [] |
max_accepted_payout | 1,000,000.000 HBD |
percent_hbd | 10,000 |
post_id | 96,512,874 |
net_rshares | 39,632,035,536 |
author_curate_reward | "" |
voter | weight | wgt% | rshares | pct | time |
---|---|---|---|---|---|
jamerussell | 0 | 39,632,035,536 | 100% |
<center>You got some love from a member of @thealliance family! Keep up the great work and [join us in The Castle](https://discord.gg/EpyXNyh) sometime! <sup>The #spreadlovenotwar curation campaign is under the guidance of witnesses [@enginewitty](https://enginewitty.steem.design/) and [@untersatz](https://untersatz.steem.design/).</sup></center><center><sup>Current VP: 94.85%</sup></center>
author | alliedforces |
---|---|
permlink | cwqyh5yj5k |
category | education |
json_metadata | "" |
created | 2020-03-20 08:07:39 |
last_update | 2020-03-20 08:07:39 |
depth | 2 |
children | 0 |
last_payout | 2020-03-27 08:07:39 |
cashout_time | 1969-12-31 23:59:59 |
total_payout_value | 0.092 HBD |
curator_payout_value | 0.092 HBD |
pending_payout_value | 0.000 HBD |
promoted | 0.000 HBD |
body_length | 394 |
author_reputation | 603,813,274,536 |
root_title | "Making a Simple Post a Little Classier 2" |
beneficiaries | [] |
max_accepted_payout | 1,000,000.000 HBD |
percent_hbd | 10,000 |
post_id | 96,512,878 |
net_rshares | 754,106,359,442 |
author_curate_reward | "" |
voter | weight | wgt% | rshares | pct | time |
---|---|---|---|---|---|
thealliance | 0 | 754,106,359,442 | 100% |
Thanks @enginewitty! I tried, but was in no hurry to post, but did all at once and forgot I wanted to put the Spanish on the same post down below like I did on the first one. OOPS!!!
author | jamerussell |
---|---|
permlink | re-enginewitty-q7ilha |
category | education |
json_metadata | {"tags":["education"],"app":"peakd/2020.03.7"} |
created | 2020-03-20 23:05:57 |
last_update | 2020-03-20 23:05:57 |
depth | 2 |
children | 0 |
last_payout | 2020-03-27 23:05:57 |
cashout_time | 1969-12-31 23:59:59 |
total_payout_value | 0.000 HBD |
curator_payout_value | 0.000 HBD |
pending_payout_value | 0.000 HBD |
promoted | 0.000 HBD |
body_length | 182 |
author_reputation | 15,805,008,120,514 |
root_title | "Making a Simple Post a Little Classier 2" |
beneficiaries | [] |
max_accepted_payout | 1,000,000.000 HBD |
percent_hbd | 10,000 |
post_id | 96,524,538 |
net_rshares | 0 |
He said, ***'Stop doing wrong things and turn back to God! The kingdom of heaven is almost here.***'(Matthew 3:2) ## Question from the Bible, *What is the best religion in the world?* Watch the Video below to know the Answer... ***(Sorry for sending this comment. We are not looking for our self profit, our intentions is to preach the words of God in any means possible.)*** https://youtu.be/CbnmFrJWYxg Comment what you understand of our Youtube Video to receive our full votes. We have 30,000 #SteemPower. It's our little way to **Thank you, our beloved friend.** Check our [Discord Chat](https://discord.gg/vzHFNd6) Join our Official Community: https://steemit.com/created/hive-182074
author | florianopolis |
---|---|
permlink | viwsoker4cn |
category | education |
json_metadata | "" |
created | 2020-03-18 18:07:18 |
last_update | 2020-03-18 18:07:18 |
depth | 1 |
children | 0 |
last_payout | 2020-03-25 18:07:18 |
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 | 694 |
author_reputation | -5,988,767,749,052 |
root_title | "Making a Simple Post a Little Classier 2" |
beneficiaries | [] |
max_accepted_payout | 10,000.000 HBD |
percent_hbd | 100 |
post_id | 96,468,907 |
net_rshares | 1,131,998,366 |
author_curate_reward | "" |
voter | weight | wgt% | rshares | pct | time |
---|---|---|---|---|---|
florianopolis | 0 | 1,131,998,366 | 1% |
Hello! This post has been manually curated, resteemed and gifted with some virtually delicious cake from the @helpiecake curation team! Much love to you from all of us at @helpie! Keep up the great work! <a href="http://steemit.com/@helpie">  </a> Manually curated by @wesphilbin. <sub> @helpie is a [Community Witness](https://steemitwallet.com/~witnesses). </sub>
author | helpiecake | ||||||
---|---|---|---|---|---|---|---|
permlink | re-helpiecake-comment-1584627615z | ||||||
category | education | ||||||
json_metadata | {"tags":["helpiecake"]} | ||||||
created | 2020-03-19 14:20:15 | ||||||
last_update | 2020-03-19 14:20:15 | ||||||
depth | 1 | ||||||
children | 0 | ||||||
last_payout | 2020-03-26 14:20:15 | ||||||
cashout_time | 1969-12-31 23:59:59 | ||||||
total_payout_value | 0.000 HBD | ||||||
curator_payout_value | 0.000 HBD | ||||||
pending_payout_value | 0.000 HBD | ||||||
promoted | 0.000 HBD | ||||||
body_length | 492 | ||||||
author_reputation | 2,152,994,728,423 | ||||||
root_title | "Making a Simple Post a Little Classier 2" | ||||||
beneficiaries |
| ||||||
max_accepted_payout | 1,000,000.000 HBD | ||||||
percent_hbd | 10,000 | ||||||
post_id | 96,491,886 | ||||||
net_rshares | 0 |
<center>***Thanks for sharing your experience with us***! <img src="https://i.postimg.cc/P5nkXgK2/Logo2-300.png" alt="TIBLogo" style="border:none;" /></center> ###### You have been curated by @wesphilbin on behalf of **Inner Blocks**: a community encouraging first hand content, with each individual living their best life, and being responsible for their own well being. #innerblocks Check it out at @innerblocks for the latest information and community updates, or to show your support via delegation.
author | innerblocks |
---|---|
permlink | re-making-a-simple-post-a-little-classier-2-20200319t143252z |
category | education |
json_metadata | "{"app": "beem/0.21.1"}" |
created | 2020-03-19 14:32:51 |
last_update | 2020-03-19 14:32:51 |
depth | 1 |
children | 0 |
last_payout | 2020-03-26 14:32:51 |
cashout_time | 1969-12-31 23:59:59 |
total_payout_value | 0.012 HBD |
curator_payout_value | 0.012 HBD |
pending_payout_value | 0.000 HBD |
promoted | 0.000 HBD |
body_length | 503 |
author_reputation | 15,178,744,260,153 |
root_title | "Making a Simple Post a Little Classier 2" |
beneficiaries | [] |
max_accepted_payout | 1,000,000.000 HBD |
percent_hbd | 10,000 |
post_id | 96,492,129 |
net_rshares | 129,025,489,086 |
author_curate_reward | "" |
voter | weight | wgt% | rshares | pct | time |
---|---|---|---|---|---|
enginewitty | 0 | 129,025,489,086 | 100% |
This one is just for you mate! https://s3.amazonaws.com/image.blingee.com/images15/content/output/000/000/000/369/158071009_1956945.gif?6
author | jackmiller |
---|---|
permlink | q7g8k3 |
category | education |
json_metadata | {"image":["https://s3.amazonaws.com/image.blingee.com/images15/content/output/000/000/000/369/158071009_1956945.gif?6"],"app":"steemit/0.2"} |
created | 2020-03-19 16:31:15 |
last_update | 2020-03-19 16:31:15 |
depth | 1 |
children | 1 |
last_payout | 2020-03-26 16:31: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 | 139 |
author_reputation | 68,065,227,692,972 |
root_title | "Making a Simple Post a Little Classier 2" |
beneficiaries | [] |
max_accepted_payout | 1,000,000.000 HBD |
percent_hbd | 10,000 |
post_id | 96,494,882 |
net_rshares | 37,585,686,748 |
author_curate_reward | "" |
voter | weight | wgt% | rshares | pct | time |
---|---|---|---|---|---|
jamerussell | 0 | 37,585,686,748 | 100% |
Hahahahahahaha!!!! Thanks Jack @jackmiller! Only in our own minds!!!
author | jamerussell |
---|---|
permlink | re-jackmiller-q7gb3a |
category | education |
json_metadata | {"tags":["education"],"app":"steempeak/2020.03.6"} |
created | 2020-03-19 17:26:00 |
last_update | 2020-03-19 17:26:00 |
depth | 2 |
children | 0 |
last_payout | 2020-03-26 17:26:00 |
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 | 69 |
author_reputation | 15,805,008,120,514 |
root_title | "Making a Simple Post a Little Classier 2" |
beneficiaries | [] |
max_accepted_payout | 1,000,000.000 HBD |
percent_hbd | 10,000 |
post_id | 96,496,042 |
net_rshares | 0 |
Very useful this publication dear @jamerussell I have to practice it, because I was having a hard time pinpointing the sources in the images. Thank you
author | mllg |
---|---|
permlink | q7g2gd |
category | education |
json_metadata | {"users":["jamerussell"],"app":"steemit/0.2"} |
created | 2020-03-19 14:19:24 |
last_update | 2020-03-19 14:19:24 |
depth | 1 |
children | 2 |
last_payout | 2020-03-26 14:19:24 |
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 | 151 |
author_reputation | 114,641,519,219,424 |
root_title | "Making a Simple Post a Little Classier 2" |
beneficiaries | [] |
max_accepted_payout | 1,000,000.000 HBD |
percent_hbd | 10,000 |
post_id | 96,491,864 |
net_rshares | 38,330,824,981 |
author_curate_reward | "" |
voter | weight | wgt% | rshares | pct | time |
---|---|---|---|---|---|
jamerussell | 0 | 38,330,824,981 | 100% |
Thank you @mllg, I want to try and get someone to translate this into Spanish, I may attempt it, but forgot to set it up from the beginning to implement it.
author | jamerussell |
---|---|
permlink | re-mllg-q7gb0v |
category | education |
json_metadata | {"tags":["education"],"app":"steempeak/2020.03.6"} |
created | 2020-03-19 17:24:33 |
last_update | 2020-03-19 17:24:33 |
depth | 2 |
children | 1 |
last_payout | 2020-03-26 17:24: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 | 156 |
author_reputation | 15,805,008,120,514 |
root_title | "Making a Simple Post a Little Classier 2" |
beneficiaries | [] |
max_accepted_payout | 1,000,000.000 HBD |
percent_hbd | 10,000 |
post_id | 96,496,012 |
net_rshares | 14,390,127,525 |
author_curate_reward | "" |
voter | weight | wgt% | rshares | pct | time |
---|---|---|---|---|---|
mllg | 0 | 14,390,127,525 | 100% |
Well, I think I understood everything. Just I have a little problem with my new computer, because I didnยดt find some commands Your post will help me, Thanks.
author | mllg |
---|---|
permlink | q7got2 |
category | education |
json_metadata | {"app":"steemit/0.2"} |
created | 2020-03-19 22:22:15 |
last_update | 2020-03-19 22:22:15 |
depth | 3 |
children | 0 |
last_payout | 2020-03-26 22:22: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 | 157 |
author_reputation | 114,641,519,219,424 |
root_title | "Making a Simple Post a Little Classier 2" |
beneficiaries | [] |
max_accepted_payout | 1,000,000.000 HBD |
percent_hbd | 10,000 |
post_id | 96,502,842 |
net_rshares | 0 |
Oh thanks for the tips - keep going
author | russia-btc |
---|---|
permlink | q7owfx |
category | education |
json_metadata | {"app":"hiveblog/0.1"} |
created | 2020-03-24 08:48:03 |
last_update | 2020-03-24 08:48:03 |
depth | 1 |
children | 0 |
last_payout | 2020-03-31 08:48: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 | 35 |
author_reputation | 57,712,600,739,228 |
root_title | "Making a Simple Post a Little Classier 2" |
beneficiaries | [] |
max_accepted_payout | 1,000,000.000 HBD |
percent_hbd | 10,000 |
post_id | 96,561,585 |
net_rshares | 0 |
Outstanding tutorial! This is great for everybody! Resteemed and Tweeted!
author | sgt-dan |
---|---|
permlink | re-jamerussell-q7ov0s |
category | education |
json_metadata | {"tags":["education"],"app":"peakd/2020.03.10"} |
created | 2020-03-24 08:17:24 |
last_update | 2020-03-24 08:17:24 |
depth | 1 |
children | 0 |
last_payout | 2020-03-31 08:17:24 |
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 | 73 |
author_reputation | 33,689,299,469,472 |
root_title | "Making a Simple Post a Little Classier 2" |
beneficiaries | [] |
max_accepted_payout | 1,000,000.000 HBD |
percent_hbd | 10,000 |
post_id | 96,561,343 |
net_rshares | 0 |
Votado por el trail @team-mexico [Comunidad mexicana / hive-174683](https://beta.steemit.com/trending/hive-174683) ยกTe esperamos! <h6>Delegaciรณn: [50 SP](https://beta.steemconnect.com/sign/delegateVestingShares?delegator=team-mexico&delegatee=&vesting_shares=50%20SP), [100 SP](https://beta.steemconnect.com/sign/delegateVestingShares?delegator=team-mexico&delegatee=&vesting_shares=100%20SP), [500 SP](https://beta.steemconnect.com/sign/delegateVestingShares?delegator=team-mexico&delegatee=&vesting_shares=500%20SP).</h6>.png)
author | team-mexico |
---|---|
permlink | q7hex7 |
category | education |
json_metadata | {"users":["team-mexico"],"image":["https://cdn.steemitimages.com/DQmZuLbj9CvE86MkUWzFMh4hiFmjBNamchpbWECRu1xjnGQ/teammexico%20(1).png"],"links":["https://beta.steemit.com/trending/hive-174683","https://beta.steemconnect.com/sign/delegateVestingShares?delegator=team-mexico&delegatee=&vesting_shares=50%20SP","https://beta.steemconnect.com/sign/delegateVestingShares?delegator=team-mexico&delegatee=&vesting_shares=100%20SP","https://beta.steemconnect.com/sign/delegateVestingShares?delegator=team-mexico&delegatee=&vesting_shares=500%20SP"],"app":"steemit/0.2"} |
created | 2020-03-20 07:46:21 |
last_update | 2020-03-20 07:46:21 |
depth | 1 |
children | 1 |
last_payout | 2020-03-27 07:46: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 | 646 |
author_reputation | 24,313,950,176,077 |
root_title | "Making a Simple Post a Little Classier 2" |
beneficiaries | [] |
max_accepted_payout | 1,000,000.000 HBD |
percent_hbd | 10,000 |
post_id | 96,512,446 |
net_rshares | 40,440,151,476 |
author_curate_reward | "" |
voter | weight | wgt% | rshares | pct | time |
---|---|---|---|---|---|
jamerussell | 0 | 40,440,151,476 | 100% |
Muchas gracias @team-mexico!
author | jamerussell |
---|---|
permlink | re-team-mexico-q7iljr |
category | education |
json_metadata | {"tags":["education"],"app":"peakd/2020.03.7"} |
created | 2020-03-20 23:07:06 |
last_update | 2020-03-20 23:07:06 |
depth | 2 |
children | 0 |
last_payout | 2020-03-27 23:07:06 |
cashout_time | 1969-12-31 23:59:59 |
total_payout_value | 0.000 HBD |
curator_payout_value | 0.000 HBD |
pending_payout_value | 0.000 HBD |
promoted | 0.000 HBD |
body_length | 28 |
author_reputation | 15,805,008,120,514 |
root_title | "Making a Simple Post a Little Classier 2" |
beneficiaries | [] |
max_accepted_payout | 1,000,000.000 HBD |
percent_hbd | 10,000 |
post_id | 96,524,546 |
net_rshares | 0 |
🎁 Hi @jamerussell! You have received 0.1 STEEM tip from @wesphilbin!<br><p><strong>Check out <a href=https://www.steempeak.com/@wesphilbin>@wesphilbin blog here</a> and follow if you like the content :)</strong></p><p><a href="https://steempeak.com/steemit/@tipu/tipu-tips-guide" rel="noopener">Sending tips with @tipU - how to guide.</a></p>
author | tipu |
---|---|
permlink | re-making-a-simple-post-a-little-classier-2-20200319t142504 |
category | education |
json_metadata | "" |
created | 2020-03-19 14:25:03 |
last_update | 2020-03-19 14:25:03 |
depth | 1 |
children | 0 |
last_payout | 2020-03-26 14:25: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 | 350 |
author_reputation | 55,938,686,792,287 |
root_title | "Making a Simple Post a Little Classier 2" |
beneficiaries | [] |
max_accepted_payout | 1,000,000.000 HBD |
percent_hbd | 10,000 |
post_id | 96,491,985 |
net_rshares | 0 |
Another great post as well as example of creating positive content on the Blockchain my friend! Off topic, hope you have a great hatch day today !tip
author | wesphilbin |
---|---|
permlink | re-jamerussell-q7g2ek |
category | education |
json_metadata | {"tags":["education"],"app":"steempeak/2020.03.6"} |
created | 2020-03-19 14:18:21 |
last_update | 2020-03-19 14:18:21 |
depth | 1 |
children | 1 |
last_payout | 2020-03-26 14:18: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 | 150 |
author_reputation | 76,943,488,844,589 |
root_title | "Making a Simple Post a Little Classier 2" |
beneficiaries | [] |
max_accepted_payout | 1,000,000.000 HBD |
percent_hbd | 10,000 |
post_id | 96,491,836 |
net_rshares | 39,112,691,259 |
author_curate_reward | "" |
voter | weight | wgt% | rshares | pct | time |
---|---|---|---|---|---|
jamerussell | 0 | 39,112,691,259 | 100% |
Thank you @wesphilbin!!!
author | jamerussell |
---|---|
permlink | re-wesphilbin-q7gatv |
category | education |
json_metadata | {"tags":["education"],"app":"steempeak/2020.03.6"} |
created | 2020-03-19 17:20:21 |
last_update | 2020-03-19 17:20:21 |
depth | 2 |
children | 0 |
last_payout | 2020-03-26 17:20: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 | 24 |
author_reputation | 15,805,008,120,514 |
root_title | "Making a Simple Post a Little Classier 2" |
beneficiaries | [] |
max_accepted_payout | 1,000,000.000 HBD |
percent_hbd | 10,000 |
post_id | 96,495,933 |
net_rshares | 4,876,683,874 |
author_curate_reward | "" |
voter | weight | wgt% | rshares | pct | time |
---|---|---|---|---|---|
wesphilbin | 0 | 4,876,683,874 | 13% |
!trdo
author | wesphilbin |
---|---|
permlink | re-jamerussell-q7g2ex |
category | education |
json_metadata | {"tags":["education"],"app":"steempeak/2020.03.6"} |
created | 2020-03-19 14:18:33 |
last_update | 2020-03-19 14:18:33 |
depth | 1 |
children | 1 |
last_payout | 2020-03-26 14:18: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 | 5 |
author_reputation | 76,943,488,844,589 |
root_title | "Making a Simple Post a Little Classier 2" |
beneficiaries | [] |
max_accepted_payout | 1,000,000.000 HBD |
percent_hbd | 10,000 |
post_id | 96,491,839 |
net_rshares | 0 |
Congratulations @wesphilbin, you successfuly trended the post shared by @jamerussell! @jamerussell will receive <b>4.99377150</b> [TRDO](https://steem-engine.com/?p=history&t=TRDO) & @wesphilbin will get <b>3.32918100</b> [TRDO](https://steem-engine.com/?p=history&t=TRDO) curation in 3 Days from Post Created Date! <b>"Call [TRDO](https://steem-engine.com/?p=history&t=TRDO), Your Comment Worth Something!"</b> --- <sup>To view or trade TRDO go to [steem-engine.com](https://steem-engine.com/?p=market&t=TRDO) Join [TRDO Discord Channel](https://discord.gg/wySP8T9) or Join [TRDO Web Site](http://www.trendotoken.info/)</sup>
author | trendotoken |
---|---|
permlink | re-wesphilbin-re-jamerussell-q7g2ex-20200319t141842361z |
category | education |
json_metadata | {"tags":["comments-scot","trendo-bot"],"app":"comments-scot/1.1","format":"markdown"} |
created | 2020-03-19 14:18:42 |
last_update | 2020-03-19 14:18:42 |
depth | 2 |
children | 0 |
last_payout | 2020-03-26 14:18:42 |
cashout_time | 1969-12-31 23:59:59 |
total_payout_value | 0.000 HBD |
curator_payout_value | 0.000 HBD |
pending_payout_value | 0.000 HBD |
promoted | 0.000 HBD |
body_length | 628 |
author_reputation | 5,546,209,053,433 |
root_title | "Making a Simple Post a Little Classier 2" |
beneficiaries | [] |
max_accepted_payout | 1,000,000.000 HBD |
percent_hbd | 10,000 |
post_id | 96,491,844 |
net_rshares | 0 |
@giphy curate
author | wesphilbin |
---|---|
permlink | re-jamerussell-q7g2fb |
category | education |
json_metadata | {"tags":["education"],"app":"steempeak/2020.03.6"} |
created | 2020-03-19 14:18:48 |
last_update | 2020-03-19 14:18:48 |
depth | 1 |
children | 0 |
last_payout | 2020-03-26 14:18:48 |
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 | 76,943,488,844,589 |
root_title | "Making a Simple Post a Little Classier 2" |
beneficiaries | [] |
max_accepted_payout | 1,000,000.000 HBD |
percent_hbd | 10,000 |
post_id | 96,491,849 |
net_rshares | 0 |
@alliedforces curate
author | wesphilbin |
---|---|
permlink | re-jamerussell-q7g2fr |
category | education |
json_metadata | {"tags":["education"],"app":"steempeak/2020.03.6"} |
created | 2020-03-19 14:19:03 |
last_update | 2020-03-19 14:19:03 |
depth | 1 |
children | 1 |
last_payout | 2020-03-26 14:19: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 | 21 |
author_reputation | 76,943,488,844,589 |
root_title | "Making a Simple Post a Little Classier 2" |
beneficiaries | [] |
max_accepted_payout | 1,000,000.000 HBD |
percent_hbd | 10,000 |
post_id | 96,491,855 |
net_rshares | 0 |
<center>You got some love from a member of @thealliance family! Keep up the great work and [join us in The Castle](https://discord.gg/EpyXNyh) sometime! <sup>The #spreadlovenotwar curation campaign is under the guidance of witnesses [@enginewitty](https://enginewitty.steem.design/) and [@untersatz](https://untersatz.steem.design/).</sup></center><center><sup>Current VP: 81.95%</sup></center>
author | alliedforces |
---|---|
permlink | k38prb02jot |
category | education |
json_metadata | "" |
created | 2020-03-19 14:19:36 |
last_update | 2020-03-19 14:19:36 |
depth | 2 |
children | 0 |
last_payout | 2020-03-26 14:19:36 |
cashout_time | 1969-12-31 23:59:59 |
total_payout_value | 0.000 HBD |
curator_payout_value | 0.000 HBD |
pending_payout_value | 0.000 HBD |
promoted | 0.000 HBD |
body_length | 394 |
author_reputation | 603,813,274,536 |
root_title | "Making a Simple Post a Little Classier 2" |
beneficiaries | [] |
max_accepted_payout | 1,000,000.000 HBD |
percent_hbd | 10,000 |
post_id | 96,491,871 |
net_rshares | 0 |
@untersatz curate
author | wesphilbin |
---|---|
permlink | re-jamerussell-q7g2g3 |
category | education |
json_metadata | {"tags":["education"],"app":"steempeak/2020.03.6"} |
created | 2020-03-19 14:19:18 |
last_update | 2020-03-19 14:19:18 |
depth | 1 |
children | 1 |
last_payout | 2020-03-26 14:19:18 |
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 | 18 |
author_reputation | 76,943,488,844,589 |
root_title | "Making a Simple Post a Little Classier 2" |
beneficiaries | [] |
max_accepted_payout | 1,000,000.000 HBD |
percent_hbd | 10,000 |
post_id | 96,491,861 |
net_rshares | 0 |
<center>This post has been upvoted by witness [@untersatz](https://untersatz.steem.design). You've done a great job! <sup>The [@untersatz](https://untersatz.steem.design) witness and manual curation is under the guidance of @contrabourdon and @organduo.</sup></center><center><sup>Current VP: 96.7%</sup></center>
author | untersatz |
---|---|
permlink | 1o1pellyavmj |
category | education |
json_metadata | "" |
created | 2020-03-19 14:20:00 |
last_update | 2020-03-19 14:20:00 |
depth | 2 |
children | 0 |
last_payout | 2020-03-26 14:20:00 |
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 | 313 |
author_reputation | 2,138,111,545,808 |
root_title | "Making a Simple Post a Little Classier 2" |
beneficiaries | [] |
max_accepted_payout | 1,000,000.000 HBD |
percent_hbd | 10,000 |
post_id | 96,491,883 |
net_rshares | 0 |