<center></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></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 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.  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:  <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:  And this is my translation:  > 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.  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:  This method returns the filename part of a file path, similar to the Unix basename command. My translation:    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:  And in Spanish:  **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)  <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-25-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.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"]} | ||||||||||||
created | 2018-12-16 22:50:09 | ||||||||||||
last_update | 2018-12-16 22:50:09 | ||||||||||||
depth | 0 | ||||||||||||
children | 6 | ||||||||||||
last_payout | 2018-12-23 22:50:09 | ||||||||||||
cashout_time | 1969-12-31 23:59:59 | ||||||||||||
total_payout_value | 22.626 HBD | ||||||||||||
curator_payout_value | 8.346 HBD | ||||||||||||
pending_payout_value | 0.000 HBD | ||||||||||||
promoted | 0.000 HBD | ||||||||||||
body_length | 12,002 | ||||||||||||
author_reputation | 60,669,599,737,674 | ||||||||||||
root_title | "Spanish Translation of Node.js (Part 25) (1108 words)" | ||||||||||||
beneficiaries |
| ||||||||||||
max_accepted_payout | 1,000,000.000 HBD | ||||||||||||
percent_hbd | 10,000 | ||||||||||||
post_id | 76,938,957 | ||||||||||||
net_rshares | 60,331,921,694,268 | ||||||||||||
author_curate_reward | "" |
voter | weight | wgt% | rshares | pct | time |
---|---|---|---|---|---|
arcange | 0 | 35,758,263,747 | 4% | ||
raphaelle | 0 | 2,139,587,791 | 4% | ||
bukiland | 0 | 2,651,491,636 | 0.81% | ||
dimitrisp | 0 | 2,213,913,830 | 5% | ||
miniature-tiger | 0 | 220,252,902,142 | 100% | ||
jga | 0 | 3,057,957,256 | 22.09% | ||
mercadosaway | 0 | 1,410,876,001 | 100% | ||
destrudo | 0 | 15,278,487 | 15% | ||
codingdefined | 0 | 15,946,434,251 | 15% | ||
bachuslib | 0 | 20,576,617,760 | 100% | ||
themarkymark | 0 | 242,760,218,833 | 18% | ||
steemitri | 0 | 134,099,554,656 | 100% | ||
alexzicky | 0 | 51,250,865,592 | 70% | ||
silviu93 | 0 | 6,164,163,114 | 15% | ||
nicola71 | 0 | 15,623,217,560 | 49% | ||
espoem | 0 | 1,615,432,286 | 1% | ||
filipino | 0 | 615,982,867 | 10% | ||
mcfarhat | 0 | 14,236,521,590 | 18.28% | ||
nicejob | 0 | 85,943,930 | 22.5% | ||
rscalabrini | 0 | 2,510,470,608 | 30% | ||
loshcat | 0 | 3,085,854,800 | 100% | ||
pataty69 | 0 | 14,183,421,113 | 25% | ||
utopian-io | 0 | 57,306,926,785,412 | 44.19% | ||
shammi | 0 | 38,677,508,729 | 40% | ||
jaff8 | 0 | 73,550,011,472 | 45.71% | ||
gattino | 0 | 1,307,242,377 | 8% | ||
aboutcoolscience | 0 | 51,682,093,507 | 50% | ||
scipio | 0 | 119,657,382,556 | 50% | ||
imcesca | 0 | 7,260,502,490 | 15% | ||
mvanyi | 0 | 3,202,864,994 | 100% | ||
dedicatedguy | 0 | 156,671,669,936 | 100% | ||
amosbastian | 0 | 120,030,007,434 | 45.71% | ||
asaj | 0 | 17,279,926,348 | 100% | ||
baycan | 0 | 6,362,793,289 | 50% | ||
knfitaly | 0 | 4,885,258,753 | 24% | ||
magpielover | 0 | 75,746,702 | 100% | ||
viperblckz | 0 | 4,052,612,534 | 100% | ||
onin91 | 0 | 98,596,152 | 30% | ||
neokuduk | 0 | 3,064,534,635 | 100% | ||
tobias-g | 0 | 54,624,822,042 | 30% | ||
literaturk | 0 | 434,427,229 | 100% | ||
mondodidave73 | 0 | 15,390,679,197 | 42% | ||
sudefteri | 0 | 3,956,473,504 | 100% | ||
marugy99 | 0 | 27,881,998,170 | 100% | ||
micaelacf | 0 | 917,296,147 | 25% | ||
robertbira | 0 | 3,075,999,151 | 7.5% | ||
dr-frankenstein | 0 | 545,199,181 | 15% | ||
akifane | 0 | 581,558,778 | 100% | ||
rasit | 0 | 434,498,610 | 100% | ||
erikklok | 0 | 19,996,149,339 | 100% | ||
reazuliqbal | 0 | 28,648,118,302 | 20% | ||
maveraunnehr | 0 | 387,270,326 | 100% | ||
properfraction | 0 | 741,232,000 | 100% | ||
davinci.witness | 0 | 61,332,753,702 | 30% | ||
alejohannes | 0 | 31,054,148,050 | 100% | ||
hakancelik | 0 | 7,540,237,935 | 10% | ||
acknowledgement | 0 | 781,619,512 | 10% | ||
jacksartori | 0 | 67,816,977,844 | 80% | ||
spaghettiscience | 0 | 6,958,677,861 | 15% | ||
misia1979 | 0 | 9,691,443,094 | 50% | ||
enlighted | 0 | 85,235,682 | 25% | ||
phage93 | 0 | 8,010,118,377 | 41% | ||
davinci.polyglot | 0 | 243,851,308 | 30% | ||
fel1xw | 0 | 1,058,232,408 | 50% | ||
cryptomaniacsgr | 0 | 237,256,907 | 3% | ||
davinci.times | 0 | 5,519,813,743 | 30% | ||
marcuz | 0 | 622,485,841 | 15% | ||
itastem | 0 | 9,818,022,302 | 30% | ||
steemsig | 0 | 71,677,056 | 50% | ||
merlion | 0 | 4,553,646,238 | 4% | ||
yaroslav199 | 0 | 516,179,151 | 100% | ||
shavgen111 | 0 | 515,334,933 | 100% | ||
davinci.art | 0 | 613,487,999 | 30% | ||
glitterbot | 0 | 322,247,308 | 50% | ||
sstrazzefa | 0 | 515,614,735 | 100% | ||
sometimesrampant | 0 | 515,149,445 | 100% | ||
edmundocentenor | 0 | 920,864,726 | 100% | ||
pagliozzo | 0 | 2,493,154,208 | 25% | ||
filkreserved | 0 | 515,582,890 | 100% | ||
thusmow | 0 | 515,299,253 | 100% | ||
roomthundering | 0 | 515,127,964 | 100% | ||
steam.erotic | 0 | 230,220,969 | 15% | ||
dpoll.economy | 0 | 71,612,709 | 50% | ||
emma2it | 0 | 511,377,005 | 100% | ||
irina.abramovva | 0 | 515,767,670 | 100% | ||
serinpunctured | 0 | 515,534,249 | 100% | ||
hailspoon | 0 | 515,630,207 | 100% | ||
enstanlossma | 0 | 522,955,945 | 100% | ||
tarafceagar | 0 | 499,741,390 | 100% | ||
davinci.pay | 0 | 13,932,386,785 | 15% | ||
luc.real | 0 | 220,652,476 | 100% | ||
nieloagranca | 0 | 6,310,716,572 | 8% | ||
steemchoose | 0 | 103,862,448,749 | 5.01% | ||
algerianhaunt | 0 | 515,268,694 | 100% | ||
modelingkey | 0 | 515,898,489 | 100% | ||
definitefeed | 0 | 515,530,408 | 100% | ||
playactor | 0 | 516,097,570 | 100% | ||
diversityaback | 0 | 515,631,402 | 100% | ||
couldpinkie | 0 | 515,994,598 | 100% | ||
nseregin8 | 0 | 515,900,731 | 100% | ||
duarte9sousa | 0 | 2,156,097,871 | 2.5% | ||
spotted | 0 | 1,794,496,023 | 40% | ||
lecongdoo3 | 0 | 16,884,728,354 | 100% | ||
lauren432 | 0 | 501,718,959 | 100% | ||
davinci.vote | 0 | 318,310,630 | 30% | ||
durchmanfaimet | 0 | 522,923,684 | 100% | ||
bhaski | 0 | 2,116,273,185 | 25% | ||
minnowsmith | 0 | 1,202,493,505 | 40% | ||
tiagoferezin | 0 | 105,121,045 | 25% | ||
pitondessert | 0 | 515,833,888 | 100% | ||
trucksuperuser | 0 | 516,296,446 | 100% | ||
pawnpulley | 0 | 515,810,941 | 100% | ||
imaginaryclap | 0 | 516,207,168 | 100% | ||
statusrespond | 0 | 515,774,319 | 100% | ||
meowcliver | 0 | 386,258,285 | 50% | ||
icathadty1989 | 0 | 511,835,253 | 100% | ||
theotlanmerra | 0 | 500,616,564 | 100% | ||
branitmeotrus | 0 | 512,365,833 | 100% | ||
nuejoyprocer | 0 | 524,803,317 | 100% | ||
okalbucar | 0 | 533,632,000 | 100% | ||
smartcurator | 0 | 680,664,098 | 50% | ||
steem-ua | 0 | 877,451,946,288 | 7.46% | ||
taras.sergienko | 0 | 519,559,380 | 100% | ||
inns.shuvts | 0 | 519,245,759 | 100% | ||
officialex | 0 | 519,243,841 | 100% | ||
cremisi | 0 | 29,733,606,634 | 100% | ||
nfc | 0 | 29,798,901,195 | 4% | ||
curbot | 0 | 2,246,623,627 | 100% | ||
stmpay | 0 | 6,567,999,734 | 2.06% | ||
omtalk | 0 | 519,218,939 | 100% | ||
zaharia32zvezd | 0 | 519,160,043 | 100% | ||
miss.ritylechka | 0 | 519,167,034 | 100% | ||
rightfulsniff | 0 | 519,652,529 | 100% | ||
onitmukyta | 0 | 519,206,663 | 100% | ||
aristotle.team | 0 | 6,961,681,400 | 10% | ||
delabo | 0 | 102,210,732,175 | 50% | ||
phatima | 0 | 939,085,390 | 1% | ||
whitebot | 0 | 19,077,101,382 | 1% | ||
bejust | 0 | 131,202,158 | 100% | ||
cooperfelix | 0 | 352,964,874 | 12% | ||
tony.montana | 0 | 1,113,659,571 | 2.9% | ||
hamsa.quality | 0 | 985,689,776 | 1.82% | ||
curation.trail | 0 | 1,033,948,272 | 2.11% |
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)
author | alejohannes |
---|---|
permlink | re-marugy99-spanish-translation-of-node-js-part-25-1108-words-20181217t201128922z |
category | utopian-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"} |
created | 2018-12-17 19:42:48 |
last_update | 2018-12-17 19:42:48 |
depth | 1 |
children | 1 |
last_payout | 2018-12-24 19:42:48 |
cashout_time | 1969-12-31 23:59:59 |
total_payout_value | 5.655 HBD |
curator_payout_value | 1.793 HBD |
pending_payout_value | 0.000 HBD |
promoted | 0.000 HBD |
body_length | 1,021 |
author_reputation | 81,484,992,319,751 |
root_title | "Spanish Translation of Node.js (Part 25) (1108 words)" |
beneficiaries | [] |
max_accepted_payout | 1,000,000.000 HBD |
percent_hbd | 10,000 |
post_id | 76,980,870 |
net_rshares | 12,900,504,436,954 |
author_curate_reward | "" |
voter | weight | wgt% | rshares | pct | time |
---|---|---|---|---|---|
destrudo | 0 | 58,797,478 | 25% | ||
codingdefined | 0 | 15,744,117,556 | 15% | ||
alexzicky | 0 | 11,125,284,855 | 15% | ||
jadabug | 0 | 894,189,989 | 1% | ||
espoem | 0 | 24,335,803,271 | 15% | ||
utopian-io | 0 | 12,394,260,922,060 | 8.66% | ||
steemtaker | 0 | 7,949,143,177 | 7% | ||
aboutcoolscience | 0 | 30,861,998,335 | 30% | ||
amosbastian | 0 | 42,891,238,228 | 17.18% | ||
organicgardener | 0 | 8,092,062,498 | 25% | ||
reazuliqbal | 0 | 6,146,502,622 | 5% | ||
davinci.witness | 0 | 102,254,388,342 | 50% | ||
alejohannes | 0 | 29,823,067,471 | 100% | ||
ezravandi | 0 | 462,396,361 | 2.29% | ||
statsexpert | 0 | 8,737,908,953 | 100% | ||
mythosacademy | 0 | 504,448,925 | 6% | ||
davinci.polyglot | 0 | 439,752,180 | 50% | ||
davinci.times | 0 | 9,233,022,904 | 50% | ||
itastem | 0 | 16,396,703,836 | 50% | ||
davinci.art | 0 | 1,055,813,332 | 50% | ||
mightypanda | 0 | 128,443,904,037 | 60% | ||
davinci.pay | 0 | 23,005,800,806 | 25% | ||
fastandcurious | 0 | 2,740,371,241 | 60% | ||
davinci.vote | 0 | 563,851,050 | 50% | ||
piresfa | 0 | 387,932,138 | 100% | ||
votes4minnows | 0 | 842,927,587 | 6% | ||
cremisi | 0 | 29,215,279,983 | 100% | ||
hdu | 0 | 1,297,562,693 | 4.5% | ||
linknotfound | 0 | 1,767,804,333 | 100% | ||
monster-inc | 0 | 835,092,739 | 100% | ||
yff | 0 | 136,347,974 | 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-25-1108-words-20181217t201128922z-20181220t104157z |
category | utopian-io |
json_metadata | "{"app": "beem/0.20.9"}" |
created | 2018-12-20 10:41:57 |
last_update | 2018-12-20 10:41:57 |
depth | 2 |
children | 0 |
last_payout | 2018-12-27 10:41: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 | 63 |
author_reputation | 152,955,367,999,756 |
root_title | "Spanish Translation of Node.js (Part 25) (1108 words)" |
beneficiaries | [] |
max_accepted_payout | 1,000,000.000 HBD |
percent_hbd | 10,000 |
post_id | 77,113,820 |
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-25-1108-words-20181217t223516z |
category | utopian-io |
json_metadata | "{"app": "beem/0.20.14"}" |
created | 2018-12-17 22:35:18 |
last_update | 2018-12-17 22:35:18 |
depth | 1 |
children | 0 |
last_payout | 2018-12-24 22:35:18 |
cashout_time | 1969-12-31 23:59:59 |
total_payout_value | 0.000 HBD |
curator_payout_value | 0.000 HBD |
pending_payout_value | 0.000 HBD |
promoted | 0.000 HBD |
body_length | 287 |
author_reputation | 23,214,230,978,060 |
root_title | "Spanish Translation of Node.js (Part 25) (1108 words)" |
beneficiaries | [] |
max_accepted_payout | 1,000,000.000 HBD |
percent_hbd | 10,000 |
post_id | 76,987,006 |
net_rshares | 1,145,077,556 |
author_curate_reward | "" |
voter | weight | wgt% | rshares | pct | time |
---|---|---|---|---|---|
bondy007 | 0 | 571,850,329 | 20% | ||
penghuren | 0 | 573,227,227 | 10% |
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**!
author | steemitboard |
---|---|
permlink | steemitboard-notify-marugy99-20190105t081820000z |
category | utopian-io |
json_metadata | {"image":["https://steemitboard.com/img/notify.png"]} |
created | 2019-01-05 08:18:21 |
last_update | 2019-01-05 08:18:21 |
depth | 1 |
children | 0 |
last_payout | 2019-01-12 08:18:21 |
cashout_time | 1969-12-31 23:59:59 |
total_payout_value | 0.000 HBD |
curator_payout_value | 0.000 HBD |
pending_payout_value | 0.000 HBD |
promoted | 0.000 HBD |
body_length | 493 |
author_reputation | 38,975,615,169,260 |
root_title | "Spanish Translation of Node.js (Part 25) (1108 words)" |
beneficiaries | [] |
max_accepted_payout | 1,000,000.000 HBD |
percent_hbd | 10,000 |
post_id | 77,902,760 |
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/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**!
author | steemitboard |
---|---|
permlink | steemitboard-notify-marugy99-20190108t040650000z |
category | utopian-io |
json_metadata | {"image":["https://steemitboard.com/img/notify.png"]} |
created | 2019-01-08 04:06:48 |
last_update | 2019-01-08 04:06:48 |
depth | 1 |
children | 0 |
last_payout | 2019-01-15 04:06:48 |
cashout_time | 1969-12-31 23:59:59 |
total_payout_value | 0.000 HBD |
curator_payout_value | 0.000 HBD |
pending_payout_value | 0.000 HBD |
promoted | 0.000 HBD |
body_length | 1,626 |
author_reputation | 38,975,615,169,260 |
root_title | "Spanish Translation of Node.js (Part 25) (1108 words)" |
beneficiaries | [] |
max_accepted_payout | 1,000,000.000 HBD |
percent_hbd | 10,000 |
post_id | 78,052,865 |
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-25-1108-words-20181218t002703z |
category | utopian-io |
json_metadata | "{"app": "beem/0.20.9"}" |
created | 2018-12-18 00:27:06 |
last_update | 2018-12-18 00:27:06 |
depth | 1 |
children | 0 |
last_payout | 2018-12-25 00:27:06 |
cashout_time | 1969-12-31 23:59:59 |
total_payout_value | 0.000 HBD |
curator_payout_value | 0.000 HBD |
pending_payout_value | 0.000 HBD |
promoted | 0.000 HBD |
body_length | 590 |
author_reputation | 152,955,367,999,756 |
root_title | "Spanish Translation of Node.js (Part 25) (1108 words)" |
beneficiaries | [] |
max_accepted_payout | 1,000,000.000 HBD |
percent_hbd | 10,000 |
post_id | 76,990,585 |
net_rshares | 0 |