create account

Spanish Translation of Node.js (Part 25) (1108 words) by marugy99

View this thread on: hive.blogpeakd.comecency.com
· @marugy99 ·
$30.97
Spanish Translation of Node.js (Part 25) (1108 words)
<center>![node.js maru 13.png](https://cdn.steemitimages.com/DQmWXbLKzPJieKuHaaowH6hUHkS7ndPNZfhWvNYv3wLVAMe/node.js%20maru%2013.png)</center>

<center>[Logo source](https://commons.wikimedia.org/wiki/File:Node.js_logo_2015.svg)</center>

Hello,

This is my 25th 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 39% on Crowdin:

<center>![](https://cdn.steemitimages.com/DQmP9pK8PGNMGRZfTPhL8u76rixznErLeTnD65hbAP6KdXo/image.png)</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>![](https://cdn.steemitimages.com/DQmR9A29SBiqzVd4xpRBpTp2mbvDaS7mpqB6CBfKjHkZJiN/image.png)</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>![main-qimg-b07ce87264a4c3891182582dadb1eadd.png](https://cdn.steemitimages.com/DQmTAyQzvnNxfm4SDfkrm7oDqk75LQsT8arC2ebcW44J27L/main-qimg-b07ce87264a4c3891182582dadb1eadd.png)</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 finished working on “child_process” inside the version 6.

As I mentioned on one of my previous post:

> _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. 

I translated the functions: <em>subprocess.stderr, subprocess.stdin, subprocess.stdio, subprocess.stdout, and the maxBuffer option.</em> Each one contains a set of paragraphs that explain their functionalities. 

![DQmU4k8R9asoiB2q6MVP1v8LLRYDiUK753kqqsr7RLvfgyu.jpg](https://cdn.steemitimages.com/DQmPt78L24TT5n4ZGjYaLZpZP9PYZuVTy7yKgt9341489CF/DQmU4k8R9asoiB2q6MVP1v8LLRYDiUK753kqqsr7RLvfgyu.jpg)

Then, I started to translate the “path” folder, also inside the version 6. Basically, the path module provides a way of working with directories and file paths, as well as many useful functionalities to access and interact with the file system. 

A file system stores and organizes files in a way that they can be easily retrieved. A path is the complete location or name of where a computer file, object or web page, is located. It’s important to know that _a file will always be identified by its path through the file system, beginning from the root node._

Here on this picture you can see an example of a command line path in Windows:

  ![path.gif](https://cdn.steemitimages.com/DQmcE9ftuQptT2L5QkgV6BxxqyefWnCDYxqCVdEojoZdgnp/path.gif)

<center>[Source](https://www.computerhope.com/jargon/p/path.htm)</center>

The default operation of the “path” module in Node.js varies based on the operating system on which a Node.js application is running. That is why the first paragraph of this folder provides an explanation of the differences between using Windows and Posix.

Here is an example:

![1.PNG](https://cdn.steemitimages.com/DQmcB6meuHnPkTtpwvHTGJwGhTCi6NopcUAMZNkCCCvRGMH/1.PNG)

And this is my translation:

![2.PNG](https://cdn.steemitimages.com/DQmVGXWMGGQcdrR4B7hTzcczvyahE4GmZMoqNYGipr4gY4v/2.PNG)

> Let’s remember that POSIX stands for “Portable Operating System Interface” and it is a set of standard operating system interfaces based on the Unix operating system.

![DQmU4k8R9asoiB2q6MVP1v8LLRYDiUK753kqqsr7RLvfgyu.jpg](https://cdn.steemitimages.com/DQmPt78L24TT5n4ZGjYaLZpZP9PYZuVTy7yKgt9341489CF/DQmU4k8R9asoiB2q6MVP1v8LLRYDiUK753kqqsr7RLvfgyu.jpg)

I also translated the functions: _path.basename(path[, ext]), path.delimiter, path.dirname(path), path.extname(path), path.format(pathObject),_ and _path.isAbsolute(path)._ They were very short and concise. I’ll explain some of them:

![3.PNG](https://cdn.steemitimages.com/DQmVmtUjeKitLdvL8nERzeW4iQwtUjQwrUpKSFpH28ZwuAF/3.PNG)

This method returns the filename part of a file path, similar to the Unix basename command.

My translation:

![4.PNG](https://cdn.steemitimages.com/DQmeJRaSmzSYESGsAXZCFzzEEvMpM6MyHnAch1y32ScHHc4/4.PNG)


![DQmU4k8R9asoiB2q6MVP1v8LLRYDiUK753kqqsr7RLvfgyu.jpg](https://cdn.steemitimages.com/DQmPt78L24TT5n4ZGjYaLZpZP9PYZuVTy7yKgt9341489CF/DQmU4k8R9asoiB2q6MVP1v8LLRYDiUK753kqqsr7RLvfgyu.jpg)

![](https://cdn.steemitimages.com/DQmY4agxFEb53QWPxQvkH8yF7dvhMeY62GG5RKzGpXSt2SE/image.png)

Next we have the “path.delimeter” function, which returns the delimiter specified for the platform. The delimiter character is the one that separates each path component. They are most commonly the slash ("/"), the backslash character ("\"), or colon (":"), but this depends on the operating system.

In this case, it will be: 

![6.PNG](https://cdn.steemitimages.com/DQmeaVin4hyWvsr88mShAXmDhS71hZLzRv6NdpbjUWMUm4W/6.PNG)

And in Spanish:

![5.PNG](https://cdn.steemitimages.com/DQmUP8t5E5EBsaEh39wRq4gJnXsLDELst4MFPC3QZGsGd48/5.PNG)

**These were the sites I used as references:** [1](https://docs.oracle.com/javase/tutorial/essential/io/path.html),       [2](https://www.computerhope.com/jargon/m/msdos.htm) ,   [3](https://en.wikipedia.org/wiki/Path_(computing)),  [4](https://www.w3schools.com/nodejs/ref_path.asp) 

<h4>Other translation samples:</h4>

**English:**

_To achieve consistent results when working with Windows file paths on any operating system, use `[path.win32][]:`_

**Spanish:**

_Para alcanzar resultados consistentes cuando se trabaja con rutas de archivo Windows en cualquier sistema operativo, utilice `[path.win32][]:`_

**English:**

_When providing properties to the `pathObject` remember that there are combinations where one property has priority over another._


**Spanish:**

_Al proporcionar propiedades al `pathObject`, recuerde que hay combinaciones donde una propiedad tiene prioridad sobre otra._


**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)   
- [21st contribution](https://steemit.com/utopian-io/@marugy99/spanish-translation-of-node-js-part-21-1108-words)     
- [22nd contribution](https://steemit.com/utopian-io/@marugy99/spanish-translation-of-node-js-part-22-1091-words)      
- [23rd contribution](https://steemit.com/utopian-io/@marugy99/spanish-translation-of-node-js-part-23-1042-words)    
- [24th contribution](https://steemit.com/utopian-io/@marugy99/spanish-translation-of-node-js-part-24-1166-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)

![server-nodejs.png](https://cdn.steemitimages.com/DQmVmCuvX9RVoYa5uwsuUdyiFLD2Lda67W3HfzTCdRvBTzV/server-nodejs.png)

<center>[Source](https://tecnonucleous.com/2017/11/13/como-crear-un-bot-de-telegram-en-nodejs/)</center>
👍  , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , and 79 others
properties (23)
authormarugy99
permlinkspanish-translation-of-node-js-part-25-1108-words
categoryutopian-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.computerhope.com/jargon/p/path.htm","https://docs.oracle.com/javase/tutorial/essential/io/path.html","https://www.computerhope.com/jargon/m/msdos.htm","https://en.wikipedia.org/wiki/Path_(computing)","https://www.w3schools.com/nodejs/ref_path.asp"],"image":["https://cdn.steemitimages.com/DQmWXbLKzPJieKuHaaowH6hUHkS7ndPNZfhWvNYv3wLVAMe/node.js%20maru%2013.png","https://cdn.steemitimages.com/DQmP9pK8PGNMGRZfTPhL8u76rixznErLeTnD65hbAP6KdXo/image.png","https://cdn.steemitimages.com/DQmR9A29SBiqzVd4xpRBpTp2mbvDaS7mpqB6CBfKjHkZJiN/image.png","https://cdn.steemitimages.com/DQmTAyQzvnNxfm4SDfkrm7oDqk75LQsT8arC2ebcW44J27L/main-qimg-b07ce87264a4c3891182582dadb1eadd.png","https://cdn.steemitimages.com/DQmPt78L24TT5n4ZGjYaLZpZP9PYZuVTy7yKgt9341489CF/DQmU4k8R9asoiB2q6MVP1v8LLRYDiUK753kqqsr7RLvfgyu.jpg","https://cdn.steemitimages.com/DQmcE9ftuQptT2L5QkgV6BxxqyefWnCDYxqCVdEojoZdgnp/path.gif","https://cdn.steemitimages.com/DQmcB6meuHnPkTtpwvHTGJwGhTCi6NopcUAMZNkCCCvRGMH/1.PNG","https://cdn.steemitimages.com/DQmVGXWMGGQcdrR4B7hTzcczvyahE4GmZMoqNYGipr4gY4v/2.PNG","https://cdn.steemitimages.com/DQmPt78L24TT5n4ZGjYaLZpZP9PYZuVTy7yKgt9341489CF/DQmU4k8R9asoiB2q6MVP1v8LLRYDiUK753kqqsr7RLvfgyu.jpg","https://cdn.steemitimages.com/DQmVmtUjeKitLdvL8nERzeW4iQwtUjQwrUpKSFpH28ZwuAF/3.PNG","https://cdn.steemitimages.com/DQmeJRaSmzSYESGsAXZCFzzEEvMpM6MyHnAch1y32ScHHc4/4.PNG","https://cdn.steemitimages.com/DQmPt78L24TT5n4ZGjYaLZpZP9PYZuVTy7yKgt9341489CF/DQmU4k8R9asoiB2q6MVP1v8LLRYDiUK753kqqsr7RLvfgyu.jpg","https://cdn.steemitimages.com/DQmY4agxFEb53QWPxQvkH8yF7dvhMeY62GG5RKzGpXSt2SE/image.png","https://cdn.steemitimages.com/DQmeaVin4hyWvsr88mShAXmDhS71hZLzRv6NdpbjUWMUm4W/6.PNG","https://cdn.steemitimages.com/DQmUP8t5E5EBsaEh39wRq4gJnXsLDELst4MFPC3QZGsGd48/5.PNG","https://cdn.steemitimages.com/DQmVmCuvX9RVoYa5uwsuUdyiFLD2Lda67W3HfzTCdRvBTzV/server-nodejs.png"]}
created2018-12-16 22:50:09
last_update2018-12-16 22:50:09
depth0
children6
last_payout2018-12-23 22:50:09
cashout_time1969-12-31 23:59:59
total_payout_value22.626 HBD
curator_payout_value8.346 HBD
pending_payout_value0.000 HBD
promoted0.000 HBD
body_length12,002
author_reputation60,669,599,737,674
root_title"Spanish Translation of Node.js (Part 25) (1108 words)"
beneficiaries
0.
accountdavinci.pay
weight1,000
1.
accountutopian.pay
weight500
max_accepted_payout1,000,000.000 HBD
percent_hbd10,000
post_id76,938,957
net_rshares60,331,921,694,268
author_curate_reward""
vote details (143)
@alejohannes ·
$7.45
Greetings, @marugy99. Thanks for submitting your contribution!

* The presentation and contents of your post are good. It satisfies the requirements for a complete evaluation of your contribution.
* The translated content fits coherently the general meaning and use of the enlisted strings.
* 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 and their utility was very clear and complete.

#### Congratulations on this contribution. 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/12/1-4-1-1-1-6-).

---- 
Chat with us on [Discord](https://discord.gg/vMGmDSm)
👍  , , , , , , , , , , , , , , , , , , , , , , , , , , , , , ,
properties (23)
authoralejohannes
permlinkre-marugy99-spanish-translation-of-node-js-part-25-1108-words-20181217t201128922z
categoryutopian-io
json_metadata{"tags":["utopian-io"],"users":["marugy99"],"links":["https://join.utopian.io/guidelines","https://review.utopian.io/result/12/1-4-1-1-1-6-","https://discord.gg/vMGmDSm"],"app":"steemit/0.1"}
created2018-12-17 19:42:48
last_update2018-12-17 19:42:48
depth1
children1
last_payout2018-12-24 19:42:48
cashout_time1969-12-31 23:59:59
total_payout_value5.655 HBD
curator_payout_value1.793 HBD
pending_payout_value0.000 HBD
promoted0.000 HBD
body_length1,021
author_reputation81,484,992,319,751
root_title"Spanish Translation of Node.js (Part 25) (1108 words)"
beneficiaries[]
max_accepted_payout1,000,000.000 HBD
percent_hbd10,000
post_id76,980,870
net_rshares12,900,504,436,954
author_curate_reward""
vote details (31)
@utopian-io ·
Thank you for your review, @alejohannes! Keep up the good work!
properties (22)
authorutopian-io
permlinkre-re-marugy99-spanish-translation-of-node-js-part-25-1108-words-20181217t201128922z-20181220t104157z
categoryutopian-io
json_metadata"{"app": "beem/0.20.9"}"
created2018-12-20 10:41:57
last_update2018-12-20 10:41:57
depth2
children0
last_payout2018-12-27 10:41:57
cashout_time1969-12-31 23:59:59
total_payout_value0.000 HBD
curator_payout_value0.000 HBD
pending_payout_value0.000 HBD
promoted0.000 HBD
body_length63
author_reputation152,955,367,999,756
root_title"Spanish Translation of Node.js (Part 25) (1108 words)"
beneficiaries[]
max_accepted_payout1,000,000.000 HBD
percent_hbd10,000
post_id77,113,820
net_rshares0
@steem-ua ·
#### 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)**
👍  ,
properties (23)
authorsteem-ua
permlinkre-spanish-translation-of-node-js-part-25-1108-words-20181217t223516z
categoryutopian-io
json_metadata"{"app": "beem/0.20.14"}"
created2018-12-17 22:35:18
last_update2018-12-17 22:35:18
depth1
children0
last_payout2018-12-24 22:35:18
cashout_time1969-12-31 23:59:59
total_payout_value0.000 HBD
curator_payout_value0.000 HBD
pending_payout_value0.000 HBD
promoted0.000 HBD
body_length287
author_reputation23,214,230,978,060
root_title"Spanish Translation of Node.js (Part 25) (1108 words)"
beneficiaries[]
max_accepted_payout1,000,000.000 HBD
percent_hbd10,000
post_id76,987,006
net_rshares1,145,077,556
author_curate_reward""
vote details (2)
@steemitboard ·
Congratulations @marugy99! You received a personal award!

<table><tr><td>https://steemitimages.com/70x70/http://steemitboard.com/@marugy99/birthday1.png</td><td>1 Year on Steemit</td></tr></table>

<sub>_[Click here to view your Board](https://steemitboard.com/@marugy99)_</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**!
properties (22)
authorsteemitboard
permlinksteemitboard-notify-marugy99-20190105t081820000z
categoryutopian-io
json_metadata{"image":["https://steemitboard.com/img/notify.png"]}
created2019-01-05 08:18:21
last_update2019-01-05 08:18:21
depth1
children0
last_payout2019-01-12 08:18:21
cashout_time1969-12-31 23:59:59
total_payout_value0.000 HBD
curator_payout_value0.000 HBD
pending_payout_value0.000 HBD
promoted0.000 HBD
body_length493
author_reputation38,975,615,169,260
root_title"Spanish Translation of Node.js (Part 25) (1108 words)"
beneficiaries[]
max_accepted_payout1,000,000.000 HBD
percent_hbd10,000
post_id77,902,760
net_rshares0
@steemitboard ·
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/payout.png?201901080345</td><td>You received more than 3000 as payout for your posts. Your next target is to reach a total payout of 4000</td></tr>
</table>

<sub>_[Click here to view your Board](https://steemitboard.com/@marugy99)_</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/steem/@steemitboard/steemwhales-has-officially-moved-to-steemitboard-ranking"><img src="https://steemitimages.com/64x128/https://cdn.steemitimages.com/DQmfRVpHQhLDhnjDtqck8GPv9NPvNKPfMsDaAFDE1D9Er2Z/header_ranking.png"></a></td><td><a href="https://steemit.com/steem/@steemitboard/steemwhales-has-officially-moved-to-steemitboard-ranking">SteemWhales has officially moved to SteemitBoard Ranking</a></td></tr><tr><td><a href="https://steemit.com/steemitboard/@steemitboard/steemitboard-witness-update-2019-01-07"><img src="https://steemitimages.com/64x128/http://i.cubeupload.com/7CiQEO.png"></a></td><td><a href="https://steemit.com/steemitboard/@steemitboard/steemitboard-witness-update-2019-01-07">SteemitBoard - Witness Update</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**!
properties (22)
authorsteemitboard
permlinksteemitboard-notify-marugy99-20190108t040650000z
categoryutopian-io
json_metadata{"image":["https://steemitboard.com/img/notify.png"]}
created2019-01-08 04:06:48
last_update2019-01-08 04:06:48
depth1
children0
last_payout2019-01-15 04:06:48
cashout_time1969-12-31 23:59:59
total_payout_value0.000 HBD
curator_payout_value0.000 HBD
pending_payout_value0.000 HBD
promoted0.000 HBD
body_length1,626
author_reputation38,975,615,169,260
root_title"Spanish Translation of Node.js (Part 25) (1108 words)"
beneficiaries[]
max_accepted_payout1,000,000.000 HBD
percent_hbd10,000
post_id78,052,865
net_rshares0
@utopian-io ·
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>
properties (22)
authorutopian-io
permlinkre-spanish-translation-of-node-js-part-25-1108-words-20181218t002703z
categoryutopian-io
json_metadata"{"app": "beem/0.20.9"}"
created2018-12-18 00:27:06
last_update2018-12-18 00:27:06
depth1
children0
last_payout2018-12-25 00:27:06
cashout_time1969-12-31 23:59:59
total_payout_value0.000 HBD
curator_payout_value0.000 HBD
pending_payout_value0.000 HBD
promoted0.000 HBD
body_length590
author_reputation152,955,367,999,756
root_title"Spanish Translation of Node.js (Part 25) (1108 words)"
beneficiaries[]
max_accepted_payout1,000,000.000 HBD
percent_hbd10,000
post_id76,990,585
net_rshares0