 <center>[Logo source](https://commons.wikimedia.org/wiki/File:Node.js_logo_2015.svg)</center> Hello, This is my 21st contribution to Node.js. I’m currently translating this project into Spanish, along with an awesome group of translators and moderators from Utopian + Da Vinci, we are doing our best to do everything correctly. If you are interested in open-source projects, I encourage you to keep reading. Node.js is a very extensive project, it may seem impossible to translate it completely, but the Spanish team is working really and we are slowly making progress. It’s currently at 33% on Crowdin: <center></center> <h4>Repository</h4> https://github.com/nodejs/i18n <h3>Project Details</h3> > Node.js is an open-source, cross-platform JavaScript run-time environment that executes JavaScript code outside of a browser. It achieves low latency and high throughput by taking a “non-blocking” approach to serving requests. Basically, Node.js can open, create, read, write, close and delete files on a server, using JavaScript. It also includes tasks that will be executed on certain servers. <center></center> <center>[Source](https://www.123rf.com/photo_103166479_stock-illustration-data-exchange-icon-line-style-icon-design-ui-illustration-of-data-exchange-icon-pictogram-isolated-o.html)</center> _I know it can be a bit confusing at first, so let me explain it to you in simpler words:_ Let’s say you want to build a software to keep record of your company’s earnings. A feature where viewing your monthly earnings is updated live can be very useful. In that way, if one of your sales employees is busy, another employee could still be seeing the updates live, without reloading the page. This has been done before using another technologies. However, Node.js is way faster and better. So, yes it is the best option for developers who want to build real-time applications where both the server and the client can exchange data freely with no restrictions. [Node.js official webpage](https://nodejs.org/es/) <center></center> <center>[Source](https://www.quora.com/What-are-the-special-features-of-Node-js)</center> <h3>Contribution Specifications</h3> Being such an important project, Node.js is being translated to several languages so it can reach many people around the world. As it for me, I am contributing to the Spanish language. <h3>Translation Overview</h3> During this contribution I continued working on “child_process” inside the version 6. Basically, there are some operating systems that need to execute multiple tasks at the same time, so they have to create multiple processes in order to work properly, because one process in one CPU is not going to be enough to handle the increasing workload of an application. A parent process can create many child processes and if a process does not have a parent, it is assumed to be created directly by the kernel, which is a computer program that has control over everything in the system, so it’s like the heart of the OS. The **child_process** module in Node.js has several purposes: it allows the user to access the Operating System functionalities by running any system command, as well as controlling the arguments to be passed to the underlying OS command. It also enable us to control the input stream of an specified child process and listen to its output stream. The module child_process has three ways to create a child process: [child_process.spawn()][], [child_process.fork()][], [child_process.exec()]. They all return a ChildProcess instance and they implement the Node.js `[EventEmitter][]` API, allowing the parent process to register listener functions that are called. This time, I translated the methods: _child_process.exec(command[, options][, callback]), child_process.execFile(file[, args][, options][, callback]), child_process.fork(modulePath[, args][, options])_ and _child_process.spawn(command[, args][, options])._ Each method contains an explanation of its parameters and the values you must use to activate the method. I’ll explain some of them... Unlike the previous folder I translated, this time the paragraphs are way longer:  The function **child_process.exec** spawns a shell then executes the command within that shell, buffering any generated output. It allows the user to execute more than one command on a shell. When using exec, if we need to pass arguments to the command, they should be part of the whole command string. _Alright, that was very interesting, but…What is a shell?_ > A shell is a software interface for an operating system that provides users access to the kernel's services. On some systems, the shell is just an environment where applications can run in protected memory space, others just run everything inside the shell. Node.js allows users to spawn shells in order to direct operations through computer commands. The word “shell” was left untranslated since it’s considered a universal term in the computer science scope. Here is my translation of the paragraph:   This is the next function:  This function is very similar to the previous one, except that it does not spawn a shell. Rather, the specified executable file is spawned directly as a new process making it slightly more efficient than **[child_process.exec()][]**. According to Node’s documentation, it executes an external application, given optional arguments and callback with the buffered output after the application exits. Here is my translation of the paragraph:  These are the sites I used as reference: [1](https://www.techopedia.com/definition/26327/child-process), [2](https://medium.freecodecamp.org/node-js-child-processes-everything-you-need-to-know-e69498fe970a), [3](https://node.readthedocs.io/en/latest/api/child_process/),[4](https://www.techopedia.com/definition/3427/shell)  <h4>Other translation samples:</h4> **English:** _The `options` argument may be passed as the second argument to customize how the process is spawned._ **Spanish:** _El argumento `options` puede ser pasado como el segundo argumento para personalizar cómo es generado el proceso._ **English:** _If a `callback` function is provided, it is called with the arguments `(error, stdout, stderr)`. On success, `error` will be `null`. On error, `error` will be an instance of `[Error][]`._ **Spanish:** _Si se proporciona una función `callback`, es llamada con los argumentos `(error, stdout, stderr)`. Si tiene éxito, `error` será `null`. Si falla, `error` será una instancia de `[Error][].`_ Some words and code values were left untranslated on purpose, otherwise, their true meaning would be lost in the translation. <h3>Languages</h3> - Source Language: English - Translated Language: Spanish I have worked as a translator for the project Da Vinci Polyglot and I am currently working as a language moderator for the Utopian + Da Vinci translation category. And of course, I am part of the Spanish team! <h3>Word Count</h3> I translated 1108 words on this contribution. - [1st contribution](https://steemit.com/utopian-io/@marugy99/spanish-translation-of-node-js-part-1-1031-words) - [2nd contribution](https://steemit.com/utopian-io/@marugy99/spanish-translation-of-node-js-part-2-1135-words) - [3rd contribution](https://steemit.com/utopian-io/@marugy99/spanish-translation-of-node-js-part-3-1112-words) - [4th contribution](https://steemit.com/utopian-io/@marugy99/spanish-translation-of-node-js-part-4-1050-words) - [5th contribution](https://steemit.com/utopian-io/@marugy99/spanish-translation-of-node-js-part-5-1071-words) - [6th contribution](https://steemit.com/utopian-io/@marugy99/spanish-translation-of-node-js-part-6-1060-words) - [7th contribution](https://steemit.com/utopian-io/@marugy99/spanish-translation-of-node-js-part-7-1068-words) - [8th contribution](https://steemit.com/utopian-io/@marugy99/spanish-translation-of-node-js-part-8-1073-words) - [9th contribution](https://steemit.com/utopian-io/@marugy99/spanish-translation-of-node-js-part-9-1120-words) - [10th contribution](https://steemit.com/utopian-io/@marugy99/spanish-translation-of-node-js-part-10-1079-words) - [11th contribution](https://steemit.com/utopian-io/@marugy99/spanish-translation-of-node-js-part-11-1085-words) - [12th contribution](https://steemit.com/utopian-io/@marugy99/spanish-translation-of-node-js-part-12-1035-words) - [13th contribution](https://steemit.com/utopian-io/@marugy99/spanish-translation-of-node-js-part-13-1057-words) - [14th contribution](https://steemit.com/utopian-io/@marugy99/spanish-translation-of-node-js-part-14-1029-words) - [15th contribution](https://steemit.com/utopian-io/@marugy99/spanish-translation-of-node-js-part-15-1045-words) - [16th contribution](https://steemit.com/utopian-io/@marugy99/spanish-translation-of-node-js-part-16-1045-words) - [17th contribution](https://steemit.com/utopian-io/@marugy99/spanish-translation-of-node-js-part-17-1060-words) - [18th contribution](https://steemit.com/utopian-io/@marugy99/spanish-translation-of-node-js-part-18-1158-words) - [19th contribution](https://steemit.com/utopian-io/@marugy99/spanish-translation-of-node-js-part-19-1158-words) - [20th contribution](https://steemit.com/utopian-io/@marugy99/spanish-translation-of-node-js-part-20-1109-words) <h3>Proof of Authorship</h3> - [Node.js official Crowdin page](https://crowdin.com/project/nodejs) - [My Crowdin Profile](https://crowdin.com/profile) - [My activity on Crowdin](https://crowdin.com/profile/marugy99/activity)  <center>[Source](https://tecnonucleous.com/2017/11/13/como-crear-un-bot-de-telegram-en-nodejs/)</center>
author | marugy99 | ||||||||||||
---|---|---|---|---|---|---|---|---|---|---|---|---|---|
permlink | spanish-translation-of-node-js-part-21-1108-words | ||||||||||||
category | utopian-io | ||||||||||||
json_metadata | {"community":"busy","app":"busy/2.4.0","format":"markdown","tags":["utopian-io","translations","davinci","nodejs"],"users":["marugy99"],"links":["https://commons.wikimedia.org/wiki/File:Node.js_logo_2015.svg","https://github.com/nodejs/i18n","https://www.123rf.com/photo_103166479_stock-illustration-data-exchange-icon-line-style-icon-design-ui-illustration-of-data-exchange-icon-pictogram-isolated-o.html","https://nodejs.org/es/","https://www.quora.com/What-are-the-special-features-of-Node-js","https://www.techopedia.com/definition/26327/child-process","https://medium.freecodecamp.org/node-js-child-processes-everything-you-need-to-know-e69498fe970a","https://node.readthedocs.io/en/latest/api/child_process/","https://www.techopedia.com/definition/3427/shell","https://steemit.com/utopian-io/@marugy99/spanish-translation-of-node-js-part-1-1031-words"],"image":["https://cdn.steemitimages.com/DQmTvbZwFCbuL7tZHRSKq9s8E7jS1TQe6VeG9VuQ939f1D4/node.js%20maru%209.png","https://cdn.steemitimages.com/DQmZ84eevRT8AERM14cJEEFFPgJrrSfY5T3N7UnJZMJgn3R/image.png","https://cdn.steemitimages.com/DQmR9A29SBiqzVd4xpRBpTp2mbvDaS7mpqB6CBfKjHkZJiN/image.png","https://cdn.steemitimages.com/DQmTAyQzvnNxfm4SDfkrm7oDqk75LQsT8arC2ebcW44J27L/main-qimg-b07ce87264a4c3891182582dadb1eadd.png","https://cdn.steemitimages.com/DQmU4m7qemWwaUWLwi6276B8QzfgE98ZhUAmparWRxkq7nZ/ahhhh.PNG","https://cdn.steemitimages.com/DQmU51ZLvMR2SDZ7AwrJ2pwvPuorp4iqPEUEa2Z1cdHT2xY/ahhhh2.PNG","https://cdn.steemitimages.com/DQmPt78L24TT5n4ZGjYaLZpZP9PYZuVTy7yKgt9341489CF/DQmU4k8R9asoiB2q6MVP1v8LLRYDiUK753kqqsr7RLvfgyu.jpg","https://cdn.steemitimages.com/DQmRjTToq3sJrcrLGJBkjo8yhkefreSFyKPzAkcURhABD2K/ahhhh3.PNG","https://cdn.steemitimages.com/DQmNruKK9xJYMtp9id15aqVD8rdHdh4v1EAdzSAJMG5xR1V/ahhhh4.PNG","https://cdn.steemitimages.com/DQmPt78L24TT5n4ZGjYaLZpZP9PYZuVTy7yKgt9341489CF/DQmU4k8R9asoiB2q6MVP1v8LLRYDiUK753kqqsr7RLvfgyu.jpg","https://cdn.steemitimages.com/DQmVmCuvX9RVoYa5uwsuUdyiFLD2Lda67W3HfzTCdRvBTzV/server-nodejs.png"]} | ||||||||||||
created | 2018-11-22 02:06:15 | ||||||||||||
last_update | 2018-11-22 02:06:15 | ||||||||||||
depth | 0 | ||||||||||||
children | 5 | ||||||||||||
last_payout | 2018-11-29 02:06:15 | ||||||||||||
cashout_time | 1969-12-31 23:59:59 | ||||||||||||
total_payout_value | 17.317 HBD | ||||||||||||
curator_payout_value | 6.342 HBD | ||||||||||||
pending_payout_value | 0.000 HBD | ||||||||||||
promoted | 0.000 HBD | ||||||||||||
body_length | 11,049 | ||||||||||||
author_reputation | 60,669,599,737,674 | ||||||||||||
root_title | "Spanish Translation of Node.js (Part 21) (1108 words)" | ||||||||||||
beneficiaries |
| ||||||||||||
max_accepted_payout | 1,000,000.000 HBD | ||||||||||||
percent_hbd | 10,000 | ||||||||||||
post_id | 75,706,427 | ||||||||||||
net_rshares | 43,968,259,180,323 | ||||||||||||
author_curate_reward | "" |
voter | weight | wgt% | rshares | pct | time |
---|---|---|---|---|---|
arcange | 0 | 20,695,193,103 | 3% | ||
raphaelle | 0 | 1,369,386,336 | 3% | ||
dimitrisp | 0 | 2,275,810,566 | 5% | ||
miniature-tiger | 0 | 101,684,442,938 | 50% | ||
elowin | 0 | 160,437,313 | 80% | ||
jga | 0 | 2,667,601,740 | 16.06% | ||
yehey | 0 | 10,822,582,575 | 10% | ||
destrudo | 0 | 15,278,487 | 15% | ||
codingdefined | 0 | 7,823,071,775 | 7.5% | ||
bachuslib | 0 | 19,271,104,798 | 100% | ||
alexzicky | 0 | 45,096,544,554 | 70% | ||
aafeng | 0 | 61,377,716,021 | 80% | ||
silviu93 | 0 | 6,032,865,464 | 15% | ||
accelerator | 0 | 20,514,643,828 | 1.5% | ||
nicola71 | 0 | 20,059,158,799 | 49% | ||
espoem | 0 | 1,642,136,808 | 1% | ||
mcfarhat | 0 | 13,640,698,833 | 18.41% | ||
nicejob | 0 | 87,074,890 | 22.5% | ||
martusamak | 0 | 3,331,432,971 | 25% | ||
rscalabrini | 0 | 5,450,361,329 | 30% | ||
loshcat | 0 | 3,067,693,419 | 100% | ||
pataty69 | 0 | 9,901,804,253 | 25% | ||
utopian-io | 0 | 41,914,731,254,720 | 32.13% | ||
gattino | 0 | 1,000,028,249 | 8% | ||
aboutcoolscience | 0 | 47,768,186,180 | 50% | ||
scipio | 0 | 33,782,446,025 | 14.28% | ||
imcesca | 0 | 6,745,658,242 | 15% | ||
mvanyi | 0 | 2,711,653,527 | 100% | ||
steemitag | 0 | 3,297,075,385 | 10% | ||
dedicatedguy | 0 | 150,380,660,544 | 100% | ||
amosbastian | 0 | 98,921,724,260 | 46.04% | ||
knfitaly | 0 | 9,061,518,435 | 24% | ||
portugalcoin | 0 | 3,241,024,555 | 15% | ||
giornalista | 0 | 447,745,963 | 4.5% | ||
onin91 | 0 | 82,951,453 | 30% | ||
neokuduk | 0 | 2,957,635,982 | 100% | ||
ailindigo | 0 | 1,827,911,364 | 100% | ||
michealkey | 0 | 64,259,170 | 15% | ||
migueldavidor | 0 | 156,209,529 | 100% | ||
literaturk | 0 | 439,722,664 | 100% | ||
osazuisdela | 0 | 467,621,637 | 20% | ||
mondodidave73 | 0 | 19,031,332,296 | 42% | ||
joaorafael | 0 | 3,103,113,041 | 70% | ||
sudefteri | 0 | 3,487,750,331 | 100% | ||
marugy99 | 0 | 22,636,132,978 | 100% | ||
micaelacf | 0 | 903,747,218 | 25% | ||
robertbira | 0 | 3,080,455,703 | 7.5% | ||
dr-frankenstein | 0 | 213,677,874 | 15% | ||
akifane | 0 | 439,913,810 | 100% | ||
rasit | 0 | 439,898,100 | 100% | ||
froq | 0 | 13,182,774,540 | 100% | ||
deusjudo | 0 | 12,599,324,510 | 49% | ||
erikklok | 0 | 14,428,291,951 | 100% | ||
reazuliqbal | 0 | 25,631,167,050 | 25% | ||
maveraunnehr | 0 | 392,690,523 | 100% | ||
properfraction | 0 | 750,903,127 | 100% | ||
davinci.witness | 0 | 52,498,107,938 | 30% | ||
alejohannes | 0 | 29,102,726,136 | 100% | ||
inespereira | 0 | 288,068,332 | 70% | ||
xinvista | 0 | 73,059,295 | 100% | ||
jacksartori | 0 | 57,475,657,855 | 80% | ||
effofex | 0 | 84,384,449 | 0.75% | ||
codebull | 0 | 343,053,597 | 65% | ||
spaghettiscience | 0 | 6,941,018,921 | 15% | ||
enlighted | 0 | 82,198,736 | 25% | ||
phage93 | 0 | 6,027,597,382 | 34% | ||
davinci.polyglot | 0 | 243,790,917 | 30% | ||
fel1xw | 0 | 1,016,885,048 | 50% | ||
davinci.times | 0 | 5,483,324,908 | 30% | ||
itastem | 0 | 8,181,774,768 | 30% | ||
davinci.art | 0 | 591,124,662 | 30% | ||
glitterbot | 0 | 316,349,949 | 50% | ||
maluninivan | 0 | 491,255,914 | 100% | ||
algo.coder | 0 | 122,595,398,407 | 100% | ||
billycrou | 0 | 491,050,136 | 100% | ||
jamesloydd | 0 | 491,062,504 | 100% | ||
mightypanda | 0 | 54,985,079,242 | 40% | ||
pagliozzo | 0 | 2,303,926,017 | 25% | ||
blanaresam1978 | 0 | 531,225,124 | 100% | ||
akrasira | 0 | 519,532,990 | 100% | ||
tiokiamunga | 0 | 568,561,162 | 100% | ||
molichyga | 0 | 569,484,842 | 100% | ||
petrov21 | 0 | 490,692,031 | 100% | ||
steam.erotic | 0 | 226,592,973 | 15% | ||
motmagerbti | 0 | 537,301,923 | 100% | ||
sitcutactnec | 0 | 558,055,941 | 100% | ||
semirovaalinka | 0 | 491,643,767 | 100% | ||
antalovaelena | 0 | 491,322,892 | 100% | ||
olegperytov | 0 | 491,311,511 | 100% | ||
feettool | 0 | 491,069,833 | 100% | ||
davinci.pay | 0 | 15,866,570,819 | 15% | ||
steemchoose | 0 | 89,469,432,691 | 5.01% | ||
tbtek | 0 | 809,721,888 | 25% | ||
shalelinkage | 0 | 491,857,929 | 100% | ||
amichman | 0 | 491,397,275 | 100% | ||
duarte9sousa | 0 | 2,423,311,154 | 2.5% | ||
spotted | 0 | 1,749,531,768 | 40% | ||
lecongdoo3 | 0 | 15,664,990,510 | 100% | ||
isabelpereira | 0 | 92,018,760 | 5% | ||
davinci.vote | 0 | 318,213,999 | 30% | ||
bhaski | 0 | 2,104,010,973 | 25% | ||
minnowsmith | 0 | 985,416,593 | 40% | ||
tiagoferezin | 0 | 105,110,727 | 25% | ||
paololuffy91 | 0 | 559,438,788 | 20% | ||
bullinachinashop | 0 | 3,756,110,066 | 100% | ||
smartcurator | 0 | 658,073,663 | 50% | ||
steem-ua | 0 | 533,544,059,217 | 4.35% | ||
cremisi | 0 | 22,890,061,723 | 100% | ||
joseindriago20 | 0 | 546,695,939 | 100% | ||
nfc | 0 | 52,148,435,341 | 5% | ||
teamcr | 0 | 285,747,354 | 40% | ||
curbot | 0 | 2,043,074,245 | 100% | ||
observedkey | 0 | 495,089,581 | 100% | ||
jappinesswrench | 0 | 495,165,196 | 100% | ||
valeev.anton | 0 | 495,170,839 | 100% | ||
celestacrid | 0 | 495,068,523 | 100% | ||
coulombprincess | 0 | 495,109,476 | 100% | ||
aristotle.team | 0 | 6,509,823,584 | 10% | ||
adamantino | 0 | 1,555,968,435 | 50% | ||
delabo | 0 | 99,247,311,429 | 50% |
Greetings, @marugy99. Thanks for submitting your contribution! * The presentation and contents of your post are very good! It satisfies the requirements for a complete evaluation of your contribution. * The translated content fits coherently the general meaning and use of the strings enlisted. * You did a very precise use of the terminology of the project. * Thanks for explaining the contents of the folder you translated and adding several examples of your job. * Your description of the way the addressed strings work was very clear and complete. The readers of this post know now a little more about Node.js! #### Congratulations on this contribution! # 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/12/13131). ---- Chat with us on [Discord](https://discord.gg/vMGmDSm)
author | alejohannes |
---|---|
permlink | re-marugy99-spanish-translation-of-node-js-part-21-1108-words-20181122t171523057z |
category | utopian-io |
json_metadata | {"tags":["utopian-io"],"users":["marugy99"],"links":["https://join.utopian.io/guidelines","https://review.utopian.io/result/12/13131","https://discord.gg/vMGmDSm"],"app":"steemit/0.1"} |
created | 2018-11-22 16:46:33 |
last_update | 2018-11-22 16:46:33 |
depth | 1 |
children | 1 |
last_payout | 2018-11-29 16:46:33 |
cashout_time | 1969-12-31 23:59:59 |
total_payout_value | 5.901 HBD |
curator_payout_value | 1.891 HBD |
pending_payout_value | 0.000 HBD |
promoted | 0.000 HBD |
body_length | 1,041 |
author_reputation | 81,484,992,319,751 |
root_title | "Spanish Translation of Node.js (Part 21) (1108 words)" |
beneficiaries | [] |
max_accepted_payout | 1,000,000.000 HBD |
percent_hbd | 10,000 |
post_id | 75,742,253 |
net_rshares | 12,750,707,228,604 |
author_curate_reward | "" |
voter | weight | wgt% | rshares | pct | time |
---|---|---|---|---|---|
destrudo | 0 | 58,797,478 | 25% | ||
codingdefined | 0 | 7,889,232,137 | 7.5% | ||
alexzicky | 0 | 10,267,430,494 | 15% | ||
jadabug | 0 | 1,847,146,114 | 4.8% | ||
utopian-io | 0 | 12,398,624,482,770 | 8.67% | ||
steemtaker | 0 | 7,958,593,470 | 7% | ||
aboutcoolscience | 0 | 30,403,007,176 | 30% | ||
amosbastian | 0 | 35,504,357,391 | 16.56% | ||
organicgardener | 0 | 4,817,790,070 | 25% | ||
reazuliqbal | 0 | 6,978,933,108 | 8% | ||
davinci.witness | 0 | 87,530,179,896 | 50% | ||
alejohannes | 0 | 27,743,186,903 | 100% | ||
ezravandi | 0 | 420,191,653 | 2.29% | ||
statsexpert | 0 | 7,571,915,574 | 100% | ||
davinci.polyglot | 0 | 439,651,528 | 50% | ||
davinci.times | 0 | 9,172,208,179 | 50% | ||
itastem | 0 | 13,667,791,501 | 50% | ||
davinci.art | 0 | 1,018,541,102 | 50% | ||
mightypanda | 0 | 47,786,937,835 | 35% | ||
davinci.pay | 0 | 26,181,259,855 | 25% | ||
fastandcurious | 0 | 1,012,303,998 | 30% | ||
davinci.vote | 0 | 563,689,998 | 50% | ||
cremisi | 0 | 23,249,600,374 | 100% |
Thank you for your review, @alejohannes! Keep up the good work!
author | utopian-io |
---|---|
permlink | re-re-marugy99-spanish-translation-of-node-js-part-21-1108-words-20181122t171523057z-20181124t205148z |
category | utopian-io |
json_metadata | "{"app": "beem/0.20.9"}" |
created | 2018-11-24 20:51:51 |
last_update | 2018-11-24 20:51:51 |
depth | 2 |
children | 0 |
last_payout | 2018-12-01 20:51: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 | 63 |
author_reputation | 152,955,367,999,756 |
root_title | "Spanish Translation of Node.js (Part 21) (1108 words)" |
beneficiaries | [] |
max_accepted_payout | 1,000,000.000 HBD |
percent_hbd | 10,000 |
post_id | 75,851,045 |
net_rshares | 0 |
#### Hi @marugy99! 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-spanish-translation-of-node-js-part-21-1108-words-20181122t171934z |
category | utopian-io |
json_metadata | "{"app": "beem/0.20.9"}" |
created | 2018-11-22 17:19:36 |
last_update | 2018-11-22 17:19:36 |
depth | 1 |
children | 0 |
last_payout | 2018-11-29 17: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 | 287 |
author_reputation | 23,214,230,978,060 |
root_title | "Spanish Translation of Node.js (Part 21) (1108 words)" |
beneficiaries | [] |
max_accepted_payout | 1,000,000.000 HBD |
percent_hbd | 10,000 |
post_id | 75,743,803 |
net_rshares | 0 |
Congratulations @marugy99! 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/@marugy99/votes.png?201811260231</td><td>You made more than 400 upvotes. Your next target is to reach 500 upvotes.</td></tr> </table> <sub>_[Click here to view your Board of Honor](https://steemitboard.com/@marugy99)_</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-marugy99-20181126t090246000z |
category | utopian-io |
json_metadata | {"image":["https://steemitboard.com/img/notify.png"]} |
created | 2018-11-26 09:02:45 |
last_update | 2018-11-26 09:02:45 |
depth | 1 |
children | 0 |
last_payout | 2018-12-03 09:02: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 | 754 |
author_reputation | 38,975,615,169,260 |
root_title | "Spanish Translation of Node.js (Part 21) (1108 words)" |
beneficiaries | [] |
max_accepted_payout | 1,000,000.000 HBD |
percent_hbd | 10,000 |
post_id | 75,924,037 |
net_rshares | 0 |
Hey, @marugy99! **Thanks for contributing on Utopian**. 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-spanish-translation-of-node-js-part-21-1108-words-20181123t062600z |
category | utopian-io |
json_metadata | "{"app": "beem/0.20.9"}" |
created | 2018-11-23 06:26:03 |
last_update | 2018-11-23 06:26:03 |
depth | 1 |
children | 0 |
last_payout | 2018-11-30 06:26: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 | 590 |
author_reputation | 152,955,367,999,756 |
root_title | "Spanish Translation of Node.js (Part 21) (1108 words)" |
beneficiaries | [] |
max_accepted_payout | 1,000,000.000 HBD |
percent_hbd | 10,000 |
post_id | 75,770,744 |
net_rshares | 0 |