Task: https://busy.org/@gregory.latinier/utopian-v2-task-article-module-add-a-tag PR: https://github.com/utopian-io/v2.utopian.io/pull/224 This is my second Utopian contribution, and, as you can see in the task description, it is very similar to the [first one](https://busy.org/@adrielgs/first-contribution-to-utopian-profile-module-skills). The main difference is that a regex had to be checked because the user can only add lowercase alphanumeric characters, '-', '+', '.', and '#' for the article's tags.  While doing this task I realized that there were some improvements that could have been made, and so I added to this task, and also to the first task on a different [PR](https://github.com/utopian-io/v2.utopian.io/pull/225) The [Autocomplete Component](https://quasar-framework.org/components/autocomplete.html) works the same way as before: ``` q-field(orientation="vertical", :label="$t('articles.createEdit.tags.label')", :count="5") q-chips-input( v-model="article.tags" @duplicate="duplicatedTags" @input="chipsInputChange" :placeholder="article.tags.length === 0 ? $t('articles.createEdit.tags.placeholder') : ''" :error="$v.article.tags.$error" ) q-autocomplete(@search="tagsAutocomplete", :min-characters="2", :max-results="10") ```  The frontend validation is checked inside an `if statement` every time a new value is added to the field and it's automatically deleted if an error is found. Also, a message is displayed to the user. ``` chipsInputChange (newTags) { const regex = /^[a-z0-9-+.#]*$/ const newTag = newTags[newTags.length - 1] if (!newTag.match(regex)) { this.article.tags.pop() this.setAppError('articles.createEdit.tags.errors.invalidCharacters') } if (newTags.length > 5) { this.article.tags.pop() this.setAppError('articles.createEdit.tags.errors.maxItems') } } ``` Of course, a [backend](https://github.com/utopian-io/v2.utopian.io/pull/224/files#diff-ecfbb9d81548f0beae3ef1500c7a9233R19) validation was also done.  The UML for this task is `articles.tags[]`, so the Mongo query works the same way as the first task. ``` const tags = await Article.aggregate([ { '$unwind': '$tags' }, { '$match': { tags: { '$regex': `^${req.payload.partial}`, '$options': 'i', '$nin': req.payload.tags } } }, { '$group': { _id: '$tags', occurrences: { '$sum': 1 } } }, { '$limit': 10 }, { '$addFields': { name: '$_id' } }, { '$sort': { 'occurrences': -1, 'name': 1 } } ]) ``` [API TESTS](https://github.com/utopian-io/v2.utopian.io/pull/224/files#diff-255dc3107e95d0e48e4d8f9cc9fd785d) * Article creation: the `tag` object was added to all existent tests. * Search tag endpoint: After `['post-test', 'post-update', 'c++', 'c#', '.net']` was added as tags to an article, this [test](https://github.com/utopian-io/v2.utopian.io/pull/224/files#diff-255dc3107e95d0e48e4d8f9cc9fd785dR269) checks if `['post-update']` is returned as a autocomplete option when a user has [already typed](https://github.com/utopian-io/v2.utopian.io/pull/224/files#diff-255dc3107e95d0e48e4d8f9cc9fd785dR73) `'post-test'` as an article tag. This was also a great task for me because I realized a few things that I could have done better in the first one. When you develop a similar task, naturally, you have a more severe criticism of your own work and, consequently, you find ways to improve it. Thanks again for @utopian-io!
author | adrielgs |
---|---|
permlink | utopian-contribution-article-module-add-tags |
category | utopian-io |
json_metadata | {"community":"busy","app":"busy/2.5.6","format":"markdown","tags":["utopian-io","development"],"users":["gregory.latinier","adrielgs","duplicate","input","search","utopian-io"],"links":["https://busy.org/@gregory.latinier/utopian-v2-task-article-module-add-a-tag","https://github.com/utopian-io/v2.utopian.io/pull/224","https://busy.org/@adrielgs/first-contribution-to-utopian-profile-module-skills","https://github.com/utopian-io/v2.utopian.io/pull/225","https://quasar-framework.org/components/autocomplete.html","https://github.com/utopian-io/v2.utopian.io/pull/224/files#diff-ecfbb9d81548f0beae3ef1500c7a9233R19","https://github.com/utopian-io/v2.utopian.io/pull/224/files#diff-255dc3107e95d0e48e4d8f9cc9fd785d","https://github.com/utopian-io/v2.utopian.io/pull/224/files#diff-255dc3107e95d0e48e4d8f9cc9fd785dR269","https://github.com/utopian-io/v2.utopian.io/pull/224/files#diff-255dc3107e95d0e48e4d8f9cc9fd785dR73","/@utopian-io"],"image":["https://ipfs.busy.org/ipfs/QmZVYavcHjwNiuXwEpjVnaZSkTiN96DzJSqSXahxCkwr6Z","https://ipfs.busy.org/ipfs/Qmbnoiv1Y39ahv6KRheqGXQdUg226rJFtxgifodXcGVgTA","https://ipfs.busy.org/ipfs/QmaoLqgaUTUq3Rs38u3jj7EkCHGxLkNwNMac3rCkvxYZYG"]} |
created | 2018-12-21 20:14:21 |
last_update | 2018-12-21 20:14:21 |
depth | 0 |
children | 10 |
last_payout | 2018-12-28 20:14:21 |
cashout_time | 1969-12-31 23:59:59 |
total_payout_value | 41.623 HBD |
curator_payout_value | 13.486 HBD |
pending_payout_value | 0.000 HBD |
promoted | 0.000 HBD |
body_length | 3,755 |
author_reputation | 2,556,630,111,204 |
root_title | "Utopian contribution: "Article module: add tags"" |
beneficiaries | [] |
max_accepted_payout | 1,000,000.000 HBD |
percent_hbd | 10,000 |
post_id | 77,189,946 |
net_rshares | 99,517,181,239,327 |
author_curate_reward | "" |
voter | weight | wgt% | rshares | pct | time |
---|---|---|---|---|---|
icaro | 0 | 2,772,649,468 | 100% | ||
bukiland | 0 | 623,214,293 | 0.27% | ||
zephyraijunzo | 0 | 61,721,030,867 | 100% | ||
cryptoshack | 0 | 11,623,442,599 | 22% | ||
jga | 0 | 4,710,670,467 | 35% | ||
codingdefined | 0 | 16,319,138,425 | 15% | ||
themarkymark | 0 | 685,807,462,069 | 48% | ||
gregory.latinier | 0 | 6,339,739,216 | 100% | ||
jadabug | 0 | 1,025,363,161 | 1% | ||
mcfarhat | 0 | 45,085,694,518 | 31.26% | ||
utopian-io | 0 | 96,371,624,919,019 | 70% | ||
jaff8 | 0 | 123,896,237,306 | 78.17% | ||
adrielgs | 0 | 555,764,487 | 100% | ||
gattino | 0 | 1,362,912,323 | 8% | ||
scipio | 0 | 59,851,961,498 | 25% | ||
greenorange | 0 | 549,261,288 | 100% | ||
steemitag | 0 | 3,321,207,952 | 10% | ||
amosbastian | 0 | 181,726,912,333 | 78.17% | ||
tdre | 0 | 21,327,719,975 | 100% | ||
grzesiekb | 0 | 197,758,146,030 | 100% | ||
jjay | 0 | 419,907,122 | 100% | ||
tobias-g | 0 | 59,162,182,202 | 30% | ||
simplymike | 0 | 68,735,476,235 | 35% | ||
steiller | 0 | 398,055,925 | 100% | ||
ezravandi | 0 | 537,853,991 | 2.29% | ||
kgakakillerg | 0 | 4,715,553,903 | 7% | ||
mythosacademy | 0 | 547,711,465 | 6% | ||
no0 | 0 | 395,586,706 | 100% | ||
paidforwinrar | 0 | 395,587,533 | 100% | ||
ryuna.siege | 0 | 208,961,113 | 100% | ||
nooo | 0 | 398,067,149 | 100% | ||
fel1xw | 0 | 1,062,642,034 | 50% | ||
yeee | 0 | 396,189,213 | 100% | ||
steemsig | 0 | 71,677,056 | 50% | ||
petrm | 0 | 395,282,565 | 100% | ||
isabelll | 0 | 399,701,092 | 100% | ||
michael44 | 0 | 396,843,062 | 100% | ||
vvvvv | 0 | 395,717,932 | 100% | ||
pommer | 0 | 382,259,227 | 100% | ||
no0o | 0 | 393,682,633 | 100% | ||
seb3364 | 0 | 397,531,905 | 100% | ||
edm0nd24 | 0 | 396,782,345 | 100% | ||
rii | 0 | 373,536,749 | 100% | ||
jester87 | 0 | 399,952,854 | 100% | ||
walker5 | 0 | 399,018,059 | 100% | ||
gierit | 0 | 400,455,870 | 100% | ||
sp33dygonzales | 0 | 358,968,322 | 100% | ||
sjennifer | 0 | 395,837,473 | 100% | ||
dolleyb | 0 | 400,046,617 | 100% | ||
miggel | 0 | 398,325,515 | 100% | ||
selise | 0 | 374,058,400 | 100% | ||
m3ik3 | 0 | 401,144,944 | 100% | ||
apt-get | 0 | 376,040,968 | 100% | ||
saiyajin | 0 | 398,678,780 | 100% | ||
kleinheim | 0 | 394,652,762 | 100% | ||
bajaro | 0 | 394,260,523 | 100% | ||
badeder | 0 | 374,383,255 | 100% | ||
francescak | 0 | 0 | 1% | ||
lordofreward | 0 | 354,742,040 | 100% | ||
stoerte | 0 | 398,475,593 | 100% | ||
kraggan | 0 | 398,588,337 | 100% | ||
beissler | 0 | 374,370,687 | 100% | ||
fister | 0 | 397,414,635 | 100% | ||
glitterbot | 0 | 321,093,522 | 50% | ||
joshi110 | 0 | 399,089,388 | 100% | ||
lumix | 0 | 396,479,800 | 100% | ||
mightypanda | 0 | 73,811,544,722 | 35% | ||
emmam | 0 | 398,918,305 | 100% | ||
madel | 0 | 392,493,014 | 100% | ||
hljk | 0 | 392,246,765 | 100% | ||
house-targaryen | 0 | 375,457,262 | 100% | ||
royjim | 0 | 376,007,271 | 100% | ||
irenweiher | 0 | 391,495,193 | 100% | ||
steem.doctor | 0 | 362,543,532 | 100% | ||
spotted | 0 | 1,776,348,077 | 40% | ||
lost-and-found | 0 | 397,848,341 | 100% | ||
wirsing | 0 | 394,243,220 | 100% | ||
rij | 0 | 393,758,329 | 100% | ||
cceleste | 0 | 396,389,228 | 100% | ||
samuelgr | 0 | 393,198,311 | 100% | ||
rpc34 | 0 | 399,082,306 | 100% | ||
weback | 0 | 400,694,475 | 100% | ||
b1337 | 0 | 399,691,590 | 100% | ||
b33r | 0 | 399,681,191 | 100% | ||
huber | 0 | 398,409,254 | 100% | ||
minnowsmith | 0 | 1,220,777,524 | 40% | ||
bullinachinashop | 0 | 3,766,361,806 | 100% | ||
maozedongthought | 0 | 244,760,200 | 100% | ||
truetinker | 0 | 393,223,197 | 100% | ||
tokyoduck | 0 | 396,198,120 | 100% | ||
potsdam | 0 | 384,975,450 | 100% | ||
piresfa | 0 | 400,918,903 | 100% | ||
redradish | 0 | 398,250,730 | 100% | ||
awesome-n | 0 | 391,475,065 | 100% | ||
to-upgrade | 0 | 400,640,113 | 100% | ||
heger | 0 | 394,854,241 | 100% | ||
enriquo | 0 | 400,498,856 | 100% | ||
rustyrobert | 0 | 392,448,353 | 100% | ||
smartcurator | 0 | 685,681,256 | 50% | ||
steem-ua | 0 | 1,321,575,668,906 | 11% | ||
depaldelta | 0 | 371,416,310 | 100% | ||
petergriffin2 | 0 | 384,222,528 | 100% | ||
freeskate | 0 | 359,251,766 | 100% | ||
jackmoksha | 0 | 394,490,200 | 100% | ||
giesela | 0 | 386,500,984 | 100% | ||
multibeam | 0 | 396,487,961 | 100% | ||
votes4minnows | 0 | 464,364,141 | 3% | ||
thevoteproject | 0 | 396,257,668 | 100% | ||
manhat | 0 | 393,382,745 | 100% | ||
n33d | 0 | 396,309,444 | 100% | ||
nothingismagick | 0 | 270,853,878 | 100% | ||
vote-o-mator | 0 | 395,257,366 | 100% | ||
jgrimm | 0 | 396,699,539 | 100% | ||
dontblink | 0 | 401,637,402 | 100% | ||
largeadultson | 0 | 855,914,876 | 4.88% | ||
hdu | 0 | 462,165,807 | 1.5% | ||
primeradue | 0 | 12,285,567,540 | 17.5% | ||
delabo | 0 | 104,438,401,371 | 50% | ||
phatima | 0 | 901,556,853 | 1% | ||
steem.create | 0 | 1,167,963,426 | 2.5% | ||
priyankachauhan | 0 | 150,998,787 | 5.5% | ||
luna777 | 0 | 906,646,379 | 2.5% | ||
steemmovies | 0 | 167,652,554 | 100% | ||
someaddons | 0 | 7,322,446,274 | 100% | ||
argentdawn | 0 | 365,679,784 | 100% | ||
voteengine | 0 | 53,731,576 | 100% | ||
mgranja | 0 | 19,013,203,597 | 45% | ||
hamsa.quality | 0 | 1,060,858,860 | 2.5% | ||
xrp.trail | 0 | 1,438,221,810 | 2.5% |
Again a great job. Controlling and improving the work you already did is even better. I'm glad to have you on board. Keep up the good work! Your contribution has been evaluated according to [Utopian policies and guidelines](https://join.utopian.io/guidelines), as well as a predefined set of questions pertaining to the category. To view those questions and the relevant answers related to your post, [click here](https://review.utopian.io/result/3/1-2-2-1-2-1-1-). ---- Need help? Write a ticket on https://support.utopian.io/. Chat with us on [Discord](https://discord.gg/uTyJkNm). [[utopian-moderator]](https://join.utopian.io/)
author | gregory.latinier |
---|---|
permlink | re-adrielgs-utopian-contribution-article-module-add-tags-20181221t214417621z |
category | utopian-io |
json_metadata | {"tags":["utopian-io"],"links":["https://join.utopian.io/guidelines","https://review.utopian.io/result/3/1-2-2-1-2-1-1-","https://support.utopian.io/","https://discord.gg/uTyJkNm","https://join.utopian.io/"],"app":"steemit/0.1"} |
created | 2018-12-21 21:44:18 |
last_update | 2018-12-21 21:44:18 |
depth | 1 |
children | 1 |
last_payout | 2018-12-28 21:44:18 |
cashout_time | 1969-12-31 23:59:59 |
total_payout_value | 5.850 HBD |
curator_payout_value | 1.879 HBD |
pending_payout_value | 0.000 HBD |
promoted | 0.000 HBD |
body_length | 638 |
author_reputation | 34,278,323,818,021 |
root_title | "Utopian contribution: "Article module: add tags"" |
beneficiaries | [] |
max_accepted_payout | 1,000,000.000 HBD |
percent_hbd | 10,000 |
post_id | 77,193,000 |
net_rshares | 13,968,169,250,665 |
author_curate_reward | "" |
voter | weight | wgt% | rshares | pct | time |
---|---|---|---|---|---|
codingdefined | 0 | 16,344,098,295 | 15% | ||
jadabug | 0 | 2,065,626,218 | 2% | ||
utopian-io | 0 | 13,741,060,477,123 | 9.69% | ||
amosbastian | 0 | 51,877,783,951 | 22.77% | ||
organicgardener | 0 | 7,486,396,495 | 25% | ||
reazuliqbal | 0 | 5,594,440,348 | 5% | ||
steiller | 0 | 396,210,725 | 100% | ||
ezravandi | 0 | 532,720,182 | 2.29% | ||
mythosacademy | 0 | 543,070,308 | 6% | ||
no0 | 0 | 394,082,509 | 100% | ||
nooo | 0 | 396,757,657 | 100% | ||
yeee | 0 | 394,666,318 | 100% | ||
petrm | 0 | 394,029,370 | 100% | ||
seb3364 | 0 | 396,279,183 | 100% | ||
edm0nd24 | 0 | 395,597,882 | 100% | ||
walker5 | 0 | 397,722,739 | 100% | ||
lordofreward | 0 | 361,129,234 | 100% | ||
stoerte | 0 | 397,195,078 | 100% | ||
kraggan | 0 | 397,374,841 | 100% | ||
fister | 0 | 396,070,533 | 100% | ||
mightypanda | 0 | 124,345,598,218 | 60% | ||
fastandcurious | 0 | 2,704,761,144 | 60% | ||
lost-and-found | 0 | 396,414,868 | 100% | ||
cceleste | 0 | 395,062,325 | 100% | ||
huber | 0 | 388,060,214 | 100% | ||
redradish | 0 | 396,891,471 | 100% | ||
multibeam | 0 | 395,220,470 | 100% | ||
votes4minnows | 0 | 457,897,073 | 3% | ||
thevoteproject | 0 | 395,001,244 | 100% | ||
n33d | 0 | 395,018,604 | 100% | ||
largeadultson | 0 | 857,157,880 | 4.98% | ||
hdu | 0 | 4,522,069,826 | 13.5% | ||
linknotfound | 0 | 1,527,820,623 | 100% | ||
monster-inc | 0 | 770,547,716 | 100% |
Thank you for your review, @gregory.latinier! Keep up the good work!
author | utopian-io |
---|---|
permlink | re-re-adrielgs-utopian-contribution-article-module-add-tags-20181221t214417621z-20181224t065734z |
category | utopian-io |
json_metadata | "{"app": "beem/0.20.9"}" |
created | 2018-12-24 06:57:36 |
last_update | 2018-12-24 06:57:36 |
depth | 2 |
children | 0 |
last_payout | 2018-12-31 06:57: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 | 68 |
author_reputation | 152,955,367,999,756 |
root_title | "Utopian contribution: "Article module: add tags"" |
beneficiaries | [] |
max_accepted_payout | 1,000,000.000 HBD |
percent_hbd | 10,000 |
post_id | 77,304,559 |
net_rshares | 0 |
Nice work, my friend!
author | icaro |
---|---|
permlink | re-adrielgs-utopian-contribution-article-module-add-tags-20181221t202209304z |
category | utopian-io |
json_metadata | {"community":"busy","app":"busy/2.5.6","format":"markdown","tags":["utopian-io"],"users":[],"links":[],"image":[]} |
created | 2018-12-21 20:22:09 |
last_update | 2018-12-21 20:22:09 |
depth | 1 |
children | 0 |
last_payout | 2018-12-28 20:22:09 |
cashout_time | 1969-12-31 23:59:59 |
total_payout_value | 0.000 HBD |
curator_payout_value | 0.000 HBD |
pending_payout_value | 0.000 HBD |
promoted | 0.000 HBD |
body_length | 21 |
author_reputation | 4,395,967,672,831 |
root_title | "Utopian contribution: "Article module: add tags"" |
beneficiaries | [] |
max_accepted_payout | 1,000,000.000 HBD |
percent_hbd | 10,000 |
post_id | 77,190,153 |
net_rshares | 0 |
I totally agree with @gregory.latinier - Nice job.
author | nothingismagick |
---|---|
permlink | re-adrielgs-utopian-contribution-article-module-add-tags-20181223t094719672z |
category | utopian-io |
json_metadata | {"community":"busy","app":"busy/2.5.6","format":"markdown","tags":["utopian-io"],"users":["gregory.latinier"],"links":["/@gregory.latinier"],"image":[]} |
created | 2018-12-23 09:47:24 |
last_update | 2018-12-23 09:47:24 |
depth | 1 |
children | 0 |
last_payout | 2018-12-30 09:47: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 | 51 |
author_reputation | 4,247,535,102,225 |
root_title | "Utopian contribution: "Article module: add tags"" |
beneficiaries | [] |
max_accepted_payout | 1,000,000.000 HBD |
percent_hbd | 10,000 |
post_id | 77,263,007 |
net_rshares | 0 |
[](https://partiko-io.app.link/A27hLeUkgT)
author | partiko |
---|---|
permlink | partiko-re-adrielgs-utopian-contribution-article-module-add-tags-20190118t033345187z |
category | utopian-io |
json_metadata | {"app":"partiko"} |
created | 2019-01-18 03:33:45 |
last_update | 2019-01-18 03:33:45 |
depth | 1 |
children | 0 |
last_payout | 2019-01-25 03:33:45 |
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 | 129 |
author_reputation | 39,207,160,334,751 |
root_title | "Utopian contribution: "Article module: add tags"" |
beneficiaries | [] |
max_accepted_payout | 1,000,000.000 HBD |
percent_hbd | 10,000 |
post_id | 78,529,510 |
net_rshares | 0 |
#### Hi @adrielgs! Your post was upvoted by @steem-ua, new Steem dApp, using UserAuthority for algorithmic post curation! Your post is eligible for our upvote, thanks to our collaboration with @utopian-io! **Feel free to join our [@steem-ua Discord server](https://discord.gg/KpBNYGz)**
author | steem-ua |
---|---|
permlink | re-utopian-contribution-article-module-add-tags-20181222t021025z |
category | utopian-io |
json_metadata | "{"app": "beem/0.20.14"}" |
created | 2018-12-22 02:10:27 |
last_update | 2018-12-22 02:10:27 |
depth | 1 |
children | 0 |
last_payout | 2018-12-29 02:10: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 | 287 |
author_reputation | 23,214,230,978,060 |
root_title | "Utopian contribution: "Article module: add tags"" |
beneficiaries | [] |
max_accepted_payout | 1,000,000.000 HBD |
percent_hbd | 10,000 |
post_id | 77,201,144 |
net_rshares | 0 |
Congratulations @adrielgs! You have completed the following achievement on the Steem blockchain and have been rewarded with new badge(s) : <table><tr><td>https://steemitimages.com/60x70/http://steemitboard.com/@adrielgs/voted.png?201812212032</td><td>You received more than 100 upvotes. Your next target is to reach 250 upvotes.</td></tr> </table> <sub>_[Click here to view your Board of Honor](https://steemitboard.com/@adrielgs)_</sub> <sub>_If you no longer want to receive notifications, reply to this comment with the word_ `STOP`</sub> > Support [SteemitBoard's project](https://steemit.com/@steemitboard)! **[Vote for its witness](https://v2.steemconnect.com/sign/account-witness-vote?witness=steemitboard&approve=1)** and **get one more award**!
author | steemitboard |
---|---|
permlink | steemitboard-notify-adrielgs-20181221t205759000z |
category | utopian-io |
json_metadata | {"image":["https://steemitboard.com/img/notify.png"]} |
created | 2018-12-21 20:58:00 |
last_update | 2018-12-21 20:58:00 |
depth | 1 |
children | 0 |
last_payout | 2018-12-28 20:58: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 | 758 |
author_reputation | 38,975,615,169,260 |
root_title | "Utopian contribution: "Article module: add tags"" |
beneficiaries | [] |
max_accepted_payout | 1,000,000.000 HBD |
percent_hbd | 10,000 |
post_id | 77,191,304 |
net_rshares | 0 |
Congratulations @adrielgs! You have completed the following achievement on the Steem blockchain and have been rewarded with new badge(s) : <table><tr><td>https://steemitimages.com/60x70/http://steemitboard.com/@adrielgs/payout.png?201812290121</td><td>You received more than 100 as payout for your posts. Your next target is to reach a total payout of 250</td></tr> </table> <sub>_[Click here to view your Board](https://steemitboard.com/@adrielgs)_</sub> <sub>_If you no longer want to receive notifications, reply to this comment with the word_ `STOP`</sub> **Do not miss the last post from @steemitboard:** <table><tr><td><a href="https://steemit.com/christmas/@steemitboard/christmas-challenge-send-a-gift-to-to-your-friends-the-party-continues"><img src="https://steemitimages.com/64x128/http://i.cubeupload.com/kf4SJb.png"></a></td><td><a href="https://steemit.com/christmas/@steemitboard/christmas-challenge-send-a-gift-to-to-your-friends-the-party-continues">Christmas Challenge - The party continues</a></td></tr><tr><td><a href="https://steemit.com/christmas/@steemitboard/christmas-challenge-send-a-gift-to-to-your-friends"><img src="https://steemitimages.com/64x128/http://i.cubeupload.com/kf4SJb.png"></a></td><td><a href="https://steemit.com/christmas/@steemitboard/christmas-challenge-send-a-gift-to-to-your-friends">Christmas Challenge - Send a gift to to your friends</a></td></tr></table> > Support [SteemitBoard's project](https://steemit.com/@steemitboard)! **[Vote for its witness](https://v2.steemconnect.com/sign/account-witness-vote?witness=steemitboard&approve=1)** and **get one more award**!
author | steemitboard |
---|---|
permlink | steemitboard-notify-adrielgs-20181229t014026000z |
category | utopian-io |
json_metadata | {"image":["https://steemitboard.com/img/notify.png"]} |
created | 2018-12-29 01:40:24 |
last_update | 2018-12-29 01:40:24 |
depth | 1 |
children | 0 |
last_payout | 2019-01-05 01:40: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 | 1,624 |
author_reputation | 38,975,615,169,260 |
root_title | "Utopian contribution: "Article module: add tags"" |
beneficiaries | [] |
max_accepted_payout | 1,000,000.000 HBD |
percent_hbd | 10,000 |
post_id | 77,521,087 |
net_rshares | 0 |
Congratulations @adrielgs! You received a personal award! <table><tr><td>https://steemitimages.com/70x70/http://steemitboard.com/@adrielgs/birthday2.png</td><td>Happy Birthday! - You are on the Steem blockchain for 2 years!</td></tr></table> <sub>_You can view [your badges on your Steem Board](https://steemitboard.com/@adrielgs) and compare to others on the [Steem Ranking](https://steemitboard.com/ranking/index.php?name=adrielgs)_</sub> **Do not miss the last post from @steemitboard:** <table><tr><td><a href="https://steemit.com/steemfest/@steemitboard/the-new-steemfest-badge-is-ready"><img src="https://steemitimages.com/64x128/https://cdn.steemitimages.com/DQmRUkELn2Fd13pWFkmWU2wBMMx39EBX5V3cHBEZ2d7f3Ve/image.png"></a></td><td><a href="https://steemit.com/steemfest/@steemitboard/the-new-steemfest-badge-is-ready">The new SteemFest⁴ badge is ready</a></td></tr></table> ###### [Vote for @Steemitboard as a witness](https://v2.steemconnect.com/sign/account-witness-vote?witness=steemitboard&approve=1) to get one more award and increased upvotes!
author | steemitboard |
---|---|
permlink | steemitboard-notify-adrielgs-20191009t184356000z |
category | utopian-io |
json_metadata | {"image":["https://steemitboard.com/img/notify.png"]} |
created | 2019-10-09 18:43:57 |
last_update | 2019-10-09 18:43:57 |
depth | 1 |
children | 0 |
last_payout | 2019-10-16 18:43: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 | 1,062 |
author_reputation | 38,975,615,169,260 |
root_title | "Utopian contribution: "Article module: add tags"" |
beneficiaries | [] |
max_accepted_payout | 1,000,000.000 HBD |
percent_hbd | 10,000 |
post_id | 91,390,680 |
net_rshares | 0 |
Hey, @adrielgs! **Thanks for contributing on Utopian**. Congratulations! Your contribution was Staff Picked to receive a maximum vote for the development category on Utopian for being of significant value to the project and the open source community. We’re already looking forward to your next contribution! **Get higher incentives and support Utopian.io!** Simply set @utopian.pay as a 5% (or higher) payout beneficiary on your contribution post (via [SteemPlus](https://chrome.google.com/webstore/detail/steemplus/mjbkjgcplmaneajhcbegoffkedeankaj?hl=en) or [Steeditor](https://steeditor.app)). **Want to chat? Join us on Discord https://discord.gg/h52nFrV.** <a href='https://steemconnect.com/sign/account-witness-vote?witness=utopian-io&approve=1'>Vote for Utopian Witness!</a>
author | utopian-io |
---|---|
permlink | re-utopian-contribution-article-module-add-tags-20181222t070820z |
category | utopian-io |
json_metadata | "{"app": "beem/0.20.9"}" |
created | 2018-12-22 07:08:21 |
last_update | 2018-12-22 07:08:21 |
depth | 1 |
children | 0 |
last_payout | 2018-12-29 07:08: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 | 786 |
author_reputation | 152,955,367,999,756 |
root_title | "Utopian contribution: "Article module: add tags"" |
beneficiaries | [] |
max_accepted_payout | 1,000,000.000 HBD |
percent_hbd | 10,000 |
post_id | 77,209,854 |
net_rshares | 0 |