Hello buddies! My journey to building on Hive has just begun. Yesterday, and the day before, I learned how to use the [how to pull blog posts with the ```Dhive```library](https://developers.hive.io/tutorials-javascript/blog_feed.html).to fetch blog entries yesterday and the day before. I literally grinned while working with the code throughout the course since I chose to use Javascript rather than Python to develop :). The author suggested that after finishing the course, one might integrate hive blog articles on websites. And soon once I realized that this idea was perfect for me because I've always wanted to showcase my Hive blog pieces in my portfolio. So I commenced... ### Installing The Needed Npm Package --- Before the tutorial, I assumed javascript's **Fetch** method would be used to retrieve hive blog feeds. I was shocked to learn that this is not the case. Fetching hive blog feeds would require one to install a package known as **[@hiveio/dhive](https://www.npmjs.com/package/@hiveio/dhive)** > @hiveio/dhive is a JavaScript library for interfacing with the Hive blockchain. It provides a simple and easy-to-use API for working with Hive transactions, blocks, accounts, and other data. ### Importing Dhive Client This tutorial doesn't require a bunch of imports as fetching blog feed requires just the import below. ```const { Client } = require("@hiveio/dhive");``` ```Client ``` alone doesn't have the ability to communicate with the hive blockchain as it expects a node URL. The tutorial stated that one could run their node to connect via WebSockets. But because I don't have any experience of such, I went with using the popular live node most of y'all might be familiar with ```https://api.hive.blog```; ```const client = new Client('https://api.hive.blog');``` After declaring an instance of the Client with a node URL, we can now access every detail of a post using the **client** variable. #### Understanding Fetch Aata And Format --- I learned that ```condenser_api.get_discussions_by_*``` followed by the discussion type is a way to fetch a specific discussion type on the hive blockchain. Let's say we need to fetch a blog discussion, we have to do it this way```condenser_api.get_discussions_by_blog```. However, ```Dhive package``` has a different way it accepts the discussion type. instead of the above style, we do it this way; ``` client.database.getDiscussions("blog", query)```. As you can see, we made use of the client variable declared before now to access the database, the **getDiscussions()**, which then accept discussion type, 'blog' in this case, and query which is an object. As stated, the query is an abject with a tag, and a limit defined. For the tag, just as the name states, it's used to **Get** specific posts based on the tag provided. But in this case, we are using it to fetch for user's post. So, I passed in my username ('rufans'). The limit is the number of posts to fetch, as shown below. ``` client.database .getDiscussions("blog", { tag: 'rufans', limit: 3 }) .then((result) => { console.log(result) } ```` ### Writing Them In NextJs Just in case you haven't noticed, the above code wasn't written in async await but rather in promise. Since I was going to fetch my post to my portfolio, I got the opportunity to rewrite the function the way I would like. I approached it with async await; ``` // connecting to hive blogchain const [posts, setPosts] = useState([]); const getUserPost = async () => { const post = []; const data = await client.database.getDiscussions("blog", { tag: "rufans", limit: 3, }); data.map((postDetails) => { // setPosts(postDetails); post.push(postDetails); setPosts(post); }); }; ``` Because I was using nextjs, a reactjs framework, I made sure to utilize the useState() hook, which is why I set the posts details inside **setPosts(post)**. #### Displaying And Formating the result At this point, I was almost done with everything. It was left to map over my post because it's an array. ``` posts?.map((post) => { const json = JSON.parse(post.json_metadata); const postMarkDown = post.body; const htmlbody = markdown.render(postMarkDown); const postBody = stripHtml(htmlbody.substring(0, 200)).result; const postDate = new Date(post.created).toDateString(); } ``` I faced a little issue where the post body was still in markdown format. I had to install these libraries to convert the post to plaintext. ``` const markdown = require("markdown-it")(); import { stripHtml } from "string-strip-html"; ``` --- Finally, I had my posts displayed inside these cards. Each of the cards can be clicked which then navigates to the original post on hive. <center> </center> That's all for this post. Next, I will be working on Hive authentication.
author | rufans |
---|---|
permlink | my-hive-blog-feeds-are-now-embedded-in-my-portfolio |
category | hive-169321 |
json_metadata | {"tags":["hivedevs","leofinance","neoxian","waivio","programming","palnet","vyb"],"users":["hiveio"],"image":["https://images.hive.blog/DQmcdGSJXseSxw4pH79HhQmF5LBRPRz559pg3n5YmWnWgca/image.png"],"links":["https://developers.hive.io/tutorials-javascript/blog_feed.html"],"app":"hiveblog/0.1","format":"markdown"} |
created | 2022-12-16 22:49:42 |
last_update | 2022-12-17 00:28:48 |
depth | 0 |
children | 3 |
last_payout | 2022-12-23 22:49:42 |
cashout_time | 1969-12-31 23:59:59 |
total_payout_value | 1.533 HBD |
curator_payout_value | 1.493 HBD |
pending_payout_value | 0.000 HBD |
promoted | 0.000 HBD |
body_length | 4,991 |
author_reputation | 101,081,674,466,198 |
root_title | "My Hive Blog Feeds Are Now Embedded In My Portfolio." |
beneficiaries | [] |
max_accepted_payout | 1,000,000.000 HBD |
percent_hbd | 10,000 |
post_id | 119,169,629 |
net_rshares | 7,753,704,976,256 |
author_curate_reward | "" |
voter | weight | wgt% | rshares | pct | time |
---|---|---|---|---|---|
onealfa | 0 | 37,145,277,779 | 6.66% | ||
eric-boucher | 0 | 1,989,333,254 | 0.4% | ||
thecryptodrive | 0 | 6,230,213,711 | 0.16% | ||
mammasitta | 0 | 1,215,693,857 | 0.4% | ||
roelandp | 0 | 42,888,627,884 | 5% | ||
marsresident | 0 | 712,367,473 | 37.5% | ||
cloh76 | 0 | 532,623,527 | 0.4% | ||
alz190 | 0 | 637,743,266 | 15% | ||
joshglen | 0 | 4,689,602,284 | 37.5% | ||
psygambler | 0 | 6,168,689,588 | 37.5% | ||
lordvader | 0 | 7,717,895,697 | 0.8% | ||
rmach | 0 | 1,302,806,925 | 5% | ||
sc-steemit | 0 | 1,387,099,740 | 37.5% | ||
lemouth | 0 | 258,637,909,001 | 10% | ||
lamouthe | 0 | 730,349,451 | 10% | ||
tfeldman | 0 | 741,909,599 | 0.4% | ||
metabs | 0 | 955,310,576 | 10% | ||
mcsvi | 0 | 100,196,090,754 | 50% | ||
cnfund | 0 | 1,435,118,704 | 0.8% | ||
justyy | 0 | 3,842,509,217 | 0.8% | ||
curie | 0 | 93,571,114,542 | 0.8% | ||
techslut | 0 | 23,489,740,227 | 4% | ||
steemstem | 0 | 576,931,913,802 | 10% | ||
edb | 0 | 1,195,020,010 | 1% | ||
apsu | 0 | 589,573,589 | 0.28% | ||
hoboway | 0 | 833,962,759 | 37.5% | ||
walterjay | 0 | 49,312,010,163 | 5% | ||
valth | 0 | 1,559,714,279 | 5% | ||
dna-replication | 0 | 344,083,160 | 10% | ||
privex | 0 | 928,582,217 | 0.8% | ||
yuslindwi | 0 | 1,078,510,459 | 37.5% | ||
sixexgames | 0 | 4,026,758,698 | 37.5% | ||
pouchon | 0 | 427,319,801,542 | 15% | ||
dhimmel | 0 | 54,480,197,044 | 2.5% | ||
oluwatobiloba | 0 | 731,114,977 | 10% | ||
elevator09 | 0 | 536,043,422 | 0.4% | ||
detlev | 0 | 3,309,261,937 | 0.24% | ||
more4less | 0 | 2,139,133,426 | 75% | ||
federacion45 | 0 | 1,197,761,165 | 0.4% | ||
gamersclassified | 0 | 510,731,220 | 0.4% | ||
iansart | 0 | 1,116,282,379 | 0.4% | ||
forykw | 0 | 4,837,894,080 | 0.4% | ||
mobbs | 0 | 6,871,178,372 | 5% | ||
mrstaf | 0 | 1,498,313,708 | 37.5% | ||
jerrybanfield | 0 | 2,722,854,589 | 0.8% | ||
rt395 | 0 | 1,360,930,664 | 1.5% | ||
bitrocker2020 | 0 | 1,428,619,924 | 0.12% | ||
sustainablyyours | 0 | 4,288,103,780 | 5% | ||
yehey | 0 | 530,804,611 | 0.8% | ||
arunava | 0 | 1,278,808,298 | 0.08% | ||
juancar347 | 0 | 1,626,250,644 | 0.4% | ||
samminator | 0 | 1,883,295,642 | 0.5% | ||
slefesteem | 0 | 721,734,044 | 37.5% | ||
friesennerz | 0 | 1,716,718,054 | 37.5% | ||
alexander.alexis | 0 | 5,190,342,231 | 10% | ||
ew-and-patterns | 0 | 12,273,490,039 | 5% | ||
techken | 0 | 28,931,040,843 | 37.5% | ||
princessmewmew | 0 | 1,019,688,818 | 0.4% | ||
grapthar | 0 | 1,414,189,403 | 0.6% | ||
gunthertopp | 0 | 10,532,933,289 | 0.2% | ||
adambarratt | 0 | 28,463,345,582 | 30% | ||
flatman | 0 | 652,621,601 | 0.8% | ||
minnowbooster | 0 | 1,114,280,385,969 | 20% | ||
tsoldovieri | 0 | 997,072,067 | 5% | ||
steemwizards | 0 | 511,125,105 | 0.8% | ||
neumannsalva | 0 | 575,929,510 | 0.4% | ||
stayoutoftherz | 0 | 18,967,620,500 | 0.2% | ||
abigail-dantes | 0 | 3,617,038,096 | 10% | ||
urchice | 0 | 1,584,320,123 | 37.5% | ||
zonguin | 0 | 611,653,058 | 2.5% | ||
fatherfaith | 0 | 924,327,238 | 37.5% | ||
investingpennies | 0 | 1,895,690,889 | 0.8% | ||
mamalikh13 | 0 | 2,241,616,971 | 0.8% | ||
zyx066 | 0 | 616,115,177 | 0.24% | ||
pearlumie | 0 | 1,053,202,057 | 37.5% | ||
revo | 0 | 1,451,490,398 | 0.8% | ||
rocky1 | 0 | 112,637,915,195 | 0.12% | ||
thelordsharvest | 0 | 651,928,580 | 0.8% | ||
hundlola | 0 | 524,536,436 | 37.5% | ||
aidefr | 0 | 1,022,318,308 | 5% | ||
tochprince | 0 | 1,219,196,816 | 37.5% | ||
sorin.cristescu | 0 | 1,542,406,290 | 0.4% | ||
therealwolf | 0 | 4,571,413,372 | 0.4% | ||
rodent | 0 | 6,120,605,217 | 27% | ||
meno | 0 | 2,966,056,165 | 0.4% | ||
airmarshalob1 | 0 | 490,002,869 | 75% | ||
enzor | 0 | 587,438,111 | 10% | ||
silasvogt | 0 | 566,142,938 | 37.5% | ||
dandays | 0 | 1,290,728,174 | 0.16% | ||
battebilly | 0 | 8,229,366,032 | 37.5% | ||
kdee916 | 0 | 4,475,320,779 | 37.5% | ||
sunsea | 0 | 566,157,121 | 0.4% | ||
steveconnor | 0 | 588,421,259 | 0.4% | ||
paulmoon410 | 0 | 1,473,387,627 | 10% | ||
nicole-st | 0 | 546,460,515 | 0.4% | ||
smartsteem | 0 | 19,832,638,508 | 0.4% | ||
fredkese | 0 | 2,068,640,436 | 20% | ||
marvel1206 | 0 | 799,627,440 | 37.5% | ||
tboyloyal | 0 | 905,789,392 | 37.5% | ||
hrhmikelength | 0 | 906,214,364 | 37.5% | ||
kenadis | 0 | 2,639,602,788 | 10% | ||
robotics101 | 0 | 2,932,226,899 | 10% | ||
punchline | 0 | 1,980,914,851 | 0.8% | ||
tomatom | 0 | 6,685,952,327 | 37.5% | ||
sco | 0 | 2,592,775,035 | 10% | ||
anikekirsten | 0 | 528,016,717 | 5% | ||
brotherhood | 0 | 1,267,561,262 | 0.8% | ||
juecoree | 0 | 2,787,818,968 | 7% | ||
azmielbanjary | 0 | 2,108,881,524 | 37.5% | ||
sholly1 | 0 | 4,038,078,044 | 30% | ||
intrepidphotos | 0 | 196,255,743,863 | 7.5% | ||
fineartnow | 0 | 503,279,163 | 0.4% | ||
eprolific | 0 | 5,403,277,663 | 75% | ||
oscarina | 0 | 723,861,537 | 10% | ||
yoghurt | 0 | 498,893,563 | 0.8% | ||
fragmentarion | 0 | 2,531,816,721 | 10% | ||
utube | 0 | 612,192,692 | 0.8% | ||
steemboat-steve | 0 | 1,624,873,296 | 18.75% | ||
neneandy | 0 | 875,251,708 | 0.8% | ||
pab.ink | 0 | 6,404,730,843 | 5% | ||
sportscontest | 0 | 745,033,617 | 0.8% | ||
pandasquad | 0 | 1,126,794,665 | 0.8% | ||
oredebby | 0 | 300,174,996 | 37.5% | ||
geopolis | 0 | 617,672,124 | 10% | ||
robertbira | 0 | 1,037,232,737 | 2.5% | ||
alexdory | 0 | 1,551,043,249 | 10% | ||
irgendwo | 0 | 1,984,345,512 | 0.8% | ||
melvin7 | 0 | 3,371,579,596 | 5% | ||
francostem | 0 | 1,332,806,961 | 10% | ||
dwayne16 | 0 | 63,629,865,831 | 4.5% | ||
sodrill | 0 | 870,748,141 | 60% | ||
superlotto | 0 | 1,977,801,812 | 0.8% | ||
oilprinzz | 0 | 1,055,227,305 | 30% | ||
sunshinebear | 0 | 1,123,510,204 | 37.5% | ||
sanderjansenart | 0 | 630,161,867 | 0.4% | ||
blainjones | 0 | 3,645,384,981 | 4% | ||
gadrian | 0 | 43,046,704,701 | 7.5% | ||
therising | 0 | 13,792,453,569 | 0.8% | ||
kathryn95 | 0 | 878,100,150 | 37.5% | ||
de-stem | 0 | 5,411,216,816 | 9.9% | ||
imcore | 0 | 872,346,802 | 10% | ||
gogreenbuddy | 0 | 2,406,085,729 | 0.8% | ||
thegoldencobra | 0 | 714,354,252 | 100% | ||
jacksondavies | 0 | 1,762,608,880 | 37.5% | ||
meanbees | 0 | 14,371,945,463 | 10% | ||
thomaskatan | 0 | 1,159,958,925 | 52.5% | ||
savagebits | 0 | 17,159,525,104 | 100% | ||
deholt | 0 | 535,907,965 | 8.5% | ||
celinavisaez | 0 | 9,457,006,822 | 30% | ||
diabonua | 0 | 727,179,864 | 0.4% | ||
temitayo-pelumi | 0 | 816,177,412 | 10% | ||
motherofalegend | 0 | 1,502,043,824 | 5% | ||
doctor-cog-diss | 0 | 7,634,979,236 | 10% | ||
uche-nna | 0 | 631,626,164 | 0.64% | ||
hardaeborla | 0 | 3,695,952,080 | 37.5% | ||
ihal0001 | 0 | 914,556,626 | 37.5% | ||
cheese4ead | 0 | 548,512,930 | 0.4% | ||
talentclub | 0 | 775,628,540 | 0.4% | ||
roozeec | 0 | 489,862,983 | 10% | ||
steemulant | 0 | 529,737,883 | 25.03% | ||
bflanagin | 0 | 609,935,282 | 0.4% | ||
montanacellist | 0 | 2,888,538,635 | 37.5% | ||
mastersa | 0 | 1,898,893,938 | 37.5% | ||
armandosodano | 0 | 1,610,012,779 | 0.4% | ||
teamvn | 0 | 26,380,142,292 | 25.03% | ||
goblinknackers | 0 | 40,600,607,801 | 7% | ||
smartvote | 0 | 172,476,479,842 | 8% | ||
kylealex | 0 | 4,540,200,434 | 10% | ||
riottales | 0 | 978,367,291 | 37.5% | ||
thelittlebank | 0 | 2,519,609,069 | 0.4% | ||
pboulet | 0 | 17,458,228,278 | 8% | ||
paololuffy91 | 0 | 531,561,451 | 30% | ||
agrovision | 0 | 1,853,036,142 | 5% | ||
topworlds | 0 | 823,109,891 | 67.5% | ||
sbi9 | 0 | 68,522,553,723 | 58.37% | ||
merlin7 | 0 | 1,563,683,524 | 0.8% | ||
brianoflondon | 0 | 5,119,587,806 | 0.12% | ||
steemcryptosicko | 0 | 1,724,391,273 | 0.16% | ||
ennydee | 0 | 549,893,601 | 37.5% | ||
starbooks | 0 | 2,132,275,476 | 37.5% | ||
cakemonster | 0 | 662,069,094 | 0.8% | ||
stem.witness | 0 | 546,393,798 | 10% | ||
khan.dayyanz | 0 | 4,596,223,764 | 5% | ||
jacuzzi | 0 | 12,624,146,485 | 7.5% | ||
gettinmoney | 0 | 0 | 100% | ||
steemstorage | 0 | 914,415,802 | 0.8% | ||
steemegg | 0 | 14,038,422,970 | 37.5% | ||
crowdwitness | 0 | 6,256,656,840 | 5% | ||
apokruphos | 0 | 3,625,731,242 | 1% | ||
steemtelly | 0 | 7,830,671,850 | 25.03% | ||
anna.kathaxrina | 0 | 778,594,938 | 37.5% | ||
steemean | 0 | 10,051,543,750 | 5% | ||
filosof103 | 0 | 10,203,249,410 | 37.5% | ||
swirly | 0 | 12,724,151,975 | 37.5% | ||
robibasa | 0 | 25,789,717,601 | 10% | ||
aicu | 0 | 5,053,909,251 | 0.8% | ||
pingit | 0 | 0 | 100% | ||
thesoundof | 0 | 1,657,184,644 | 100% | ||
lookplz | 0 | 76,204,299,132 | 100% | ||
psyo | 0 | 4,415,221,068 | 37.5% | ||
mindtrap-leo | 0 | 700,570,567 | 30% | ||
sixsixsix | 0 | 1,584,081,416 | 100% | ||
iod | 0 | 1,582,991,010 | 100% | ||
onehundredmen | 0 | 0 | 100% | ||
taskmaster4450le | 0 | 693,561,643,887 | 30% | ||
beta500 | 0 | 815,219,100 | 0.8% | ||
elianaicgomes | 0 | 3,776,101,289 | 5% | ||
pouchon.tribes | 0 | 31,948,843,399 | 24% | ||
nullandvoid | 0 | 423,076,678 | 100% | ||
emeka4 | 0 | 55,228,416,289 | 100% | ||
steemstem-trig | 0 | 770,978,364 | 10% | ||
atheistrepublic | 0 | 764,698,400 | 0.4% | ||
lnakuma | 0 | 9,977,713,785 | 30% | ||
prize.hoard | 0 | 9,556,712,934 | 100% | ||
laruche | 0 | 51,277,415,356 | 1% | ||
ykretz | 0 | 2,899,448,219 | 5% | ||
stemsocial | 0 | 84,072,680,325 | 10% | ||
globalcurrencies | 0 | 1,765,319,364 | 21% | ||
taniagonzalez | 0 | 1,473,765,055 | 10% | ||
abkevwe | 0 | 655,438,798 | 37.5% | ||
noelyss | 0 | 3,127,869,351 | 5% | ||
daniky | 0 | 6,941,974,277 | 18.75% | ||
poshtoken | 0 | 1,820,365,874,232 | 33.33% | ||
tajimkhan | 0 | 1,479,739,624 | 37.5% | ||
aabcent | 0 | 1,686,392,542 | 0.64% | ||
eddie-earner | 0 | 2,332,138,897 | 30% | ||
eniola1990 | 0 | 520,091,918 | 37.5% | ||
meritocracy | 0 | 8,378,185,670 | 0.08% | ||
he-index | 0 | 3,629,120,289 | 10% | ||
lbi-token | 0 | 83,225,097,993 | 30% | ||
godfather.ftw | 0 | 3,066,015,798 | 5% | ||
dcrops | 0 | 5,414,642,265 | 0.4% | ||
lancergrows | 0 | 646,399,750 | 37.5% | ||
pimpstudio-cash | 0 | 765,451,425 | 100% | ||
hykss.leo | 0 | 42,471,780,508 | 4.5% | ||
traderhive | 0 | 697,970,716 | 0.8% | ||
cbridges573 | 0 | 699,249,835 | 2.5% | ||
star.leo | 0 | 948,619,453 | 30% | ||
dodovietnam | 0 | 836,697,250 | 0.4% | ||
drricksanchez | 0 | 1,880,483,904 | 0.4% | ||
eythorphoto | 0 | 4,015,248,994 | 37.5% | ||
maxelitereturned | 0 | 1,765,443,403 | 37.5% | ||
nfttunz | 0 | 1,321,703,271 | 0.08% | ||
robmojo.leo | 0 | 499,906,484 | 15% | ||
podping | 0 | 579,785,620 | 0.12% | ||
pinkfloyd878 | 0 | 4,446,999,770 | 100% | ||
jocieprosza.leo | 0 | 1,037,212,031 | 30% | ||
seinkalar | 0 | 490,809,606 | 0.8% | ||
bai123 | 0 | 741,845,580 | 37.5% | ||
aries90 | 0 | 6,004,644,329 | 0.8% | ||
martinthemass | 0 | 489,782,958 | 100% | ||
poggersdude | 0 | 1,262,586,828 | 37.5% | ||
mofobunny | 0 | 527,678,314 | 37.5% | ||
yixn | 0 | 1,220,013,255 | 0.4% | ||
waivio.curator | 0 | 2,794,118,872 | 5.3% | ||
iumac03 | 0 | 7,702,610,282 | 37.5% | ||
aioflureedb | 0 | 3,753,430,597 | 99.5% | ||
theindiankid | 0 | 551,099,279 | 37.5% | ||
netvalar | 0 | 4,251,200,545 | 50% | ||
wrestorgonline | 0 | 482,809,902,852 | 5% | ||
marynn | 0 | 2,239,770,196 | 92.3% | ||
sam9999 | 0 | 7,317,071,646 | 37.5% | ||
perinator | 0 | 1,371,285,787 | 37.5% | ||
dondido | 0 | 3,400,554,682 | 0.8% | ||
njclabaugh | 0 | 490,128,274 | 100% | ||
ramon2024 | 0 | 2,668,332,855 | 100% | ||
genepoolcardlord | 0 | 31,333,812,209 | 37.5% | ||
maxhustle | 0 | 37,561,953,943 | 100% | ||
hiveinvest | 0 | 950,248,942 | 100% | ||
xenotype | 0 | 3,496,833,170 | 100% | ||
greatpyramids | 0 | 1,988,846,519 | 100% | ||
rent-an-ape | 0 | 7,075,546,400 | 37.5% | ||
vankushfamily | 0 | 650,982,582 | 37.5% | ||
anvildrak | 0 | 1,749,477,026 | 100% | ||
minas-glory | 0 | 745,222,786 | 0.4% | ||
the-grandmaster | 0 | 621,360,227 | 0.4% | ||
the-burn | 0 | 797,415,053 | 0.4% | ||
ambicrypto | 0 | 1,088,016,272 | 0.8% | ||
peakecoin | 0 | 963,323,435 | 100% | ||
reverio | 0 | 884,602,904 | 5% |
Congratulations @rufans! You have completed the following achievement on the Hive blockchain And have been rewarded with New badge(s) <table><tr><td><img src="https://images.hive.blog/60x70/http://hivebuzz.me/@rufans/upvotes.png?202212180908"></td><td>You distributed more than 19000 upvotes.<br>Your next target is to reach 20000 upvotes.</td></tr> </table> <sub>_You can view your badges on [your board](https://hivebuzz.me/@rufans) and compare yourself to others in the [Ranking](https://hivebuzz.me/ranking)_</sub> <sub>_If you no longer want to receive notifications, reply to this comment with the word_ `STOP`</sub> **Check out our last posts:** <table><tr><td><a href="/hive-102201/@hivebuzz/wc2022-recap-final-day1"><img src="https://images.hive.blog/64x128/https://i.imgur.com/uNPMgnd.png"></a></td><td><a href="/hive-102201/@hivebuzz/wc2022-recap-final-day1">HiveBuzz World Cup Contest - Recap of 3rd Place match</a></td></tr><tr><td><a href="/hive-139531/@hivebuzz/proposal-2324"><img src="https://images.hive.blog/64x128/https://i.imgur.com/RNIZ1N6.png"></a></td><td><a href="/hive-139531/@hivebuzz/proposal-2324">The Hive Gamification Proposal Renewal</a></td></tr></table> ###### Support the HiveBuzz project. [Vote](https://hivesigner.com/sign/update_proposal_votes?proposal_ids=%5B%22248%22%5D&approve=true) for [our proposal](https://peakd.com/me/proposals/248)!
author | hivebuzz |
---|---|
permlink | notify-rufans-20221218t092339 |
category | hive-169321 |
json_metadata | {"image":["http://hivebuzz.me/notify.t6.png"]} |
created | 2022-12-18 09:23:39 |
last_update | 2022-12-18 09:23:39 |
depth | 1 |
children | 0 |
last_payout | 2022-12-25 09:23: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 | 1,386 |
author_reputation | 369,834,706,217,582 |
root_title | "My Hive Blog Feeds Are Now Embedded In My Portfolio." |
beneficiaries | [] |
max_accepted_payout | 1,000,000.000 HBD |
percent_hbd | 10,000 |
post_id | 119,199,984 |
net_rshares | 0 |
https://twitter.com/801010600755286017/status/1603886313375137797 <sub> The rewards earned on this comment will go directly to the people sharing the post on Twitter as long as they are registered with @poshtoken. Sign up at https://hiveposh.com.</sub>
author | poshtoken | ||||||
---|---|---|---|---|---|---|---|
permlink | re-rufans-my-hive-blog-feeds-are-now-embedded-in-my-portfoli86844 | ||||||
category | hive-169321 | ||||||
json_metadata | "{"app":"Poshtoken 0.0.1","payoutToUser":[]}" | ||||||
created | 2022-12-16 22:57:27 | ||||||
last_update | 2022-12-16 22:57:27 | ||||||
depth | 1 | ||||||
children | 0 | ||||||
last_payout | 2022-12-23 22:57: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 | 253 | ||||||
author_reputation | 5,884,938,676,724,306 | ||||||
root_title | "My Hive Blog Feeds Are Now Embedded In My Portfolio." | ||||||
beneficiaries |
| ||||||
max_accepted_payout | 1,000,000.000 HBD | ||||||
percent_hbd | 0 | ||||||
post_id | 119,169,906 | ||||||
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-rufans-my-hive-blog-feeds-are-now-embedded-in-my-portfolio-20221217t044704391z |
category | hive-169321 |
json_metadata | {"app":"STEMsocial"} |
created | 2022-12-17 04:47:03 |
last_update | 2022-12-17 04:47:03 |
depth | 1 |
children | 0 |
last_payout | 2022-12-24 04:47:03 |
cashout_time | 1969-12-31 23:59:59 |
total_payout_value | 0.000 HBD |
curator_payout_value | 0.000 HBD |
pending_payout_value | 0.000 HBD |
promoted | 0.000 HBD |
body_length | 565 |
author_reputation | 22,933,079,831,358 |
root_title | "My Hive Blog Feeds Are Now Embedded In My Portfolio." |
beneficiaries | [] |
max_accepted_payout | 1,000,000.000 HBD |
percent_hbd | 10,000 |
post_id | 119,174,639 |
net_rshares | 0 |