 <center>[Logo source](https://commons.wikimedia.org/wiki/File:Node.js_logo_2015.svg)</center> Hello, This is my 19th 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 31% 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> This is my 7th contribution to the folder _**buffer.md**_ on v6 and I’m finally reaching its end. The Spanish team started to translate Node’s files of the v10, now we’re progressively moving to the version 6. Since I’m not a guru in computer science I had to read a lot before I could feel confident enough to translate the content of this folder, which is something you must regularly do while translating Node.js since it has many specific terms related to computer science. _**buffer.md**_ talks about the Buffer class and all of its functions inside Node.js. This time I translated the methods: _buf.length, buf.readDoubleBE(offset[, noAssert]), buf.readDoubleLE(offset[, noAssert]), buf.readFloatBE(offset[, noAssert]), buf.readFloatLE(offset[, noAssert]), buf.readInt8(offset[, noAssert]), buf.readInt16BE(offset[, noAssert]), buf.readInt32BE(offset[, noAssert]), buf.slice([start[, end]]), buf.swap16(),_ and _buf.values()._ > In my [previous](https://steemit.com/utopian-io/@marugy99/spanish-translation-of-node-js-part-14-1029-words) contribution I explained how _streams are basically a sequence of data (normally bytes) being moved from one point to another over time. Binary data is the only type of data that can be executed by a computer and it’s represented in combinations of ones and zeros. And a Buffer is a portion of the memory that stores a stream that's then collected and stored in variables inside the same Buffer._ > _So the Buffer class is basically a “waiting area” for information! When Node.js receives data that’s not ready to be processed yet it will send it to the Buffer and store it there until it’s ready._ *** Like I’ve mentioned before, inside this folder there are all the Buffer methods with a brief explanation of how to use them, the values you have to use to active the method and an example of the code. Once you understand how they work it gets easier to translate the text. This time there were several methods that were very simple and easy to understand, such as:  Just like you can see in the picture, this method returns an iterator object that contains the value of each byte inside a buffer object. In case you’re wondering, an iterator is an object that represents a stream of data, and that is able to traverse through elements in a container, normally lists and sets. Basically, an iterator allows programmers to process every element of a container while at the same time isolates the user from the internal structure of the container. This short section could not be translated to Spanish because both sentences represent code values that belong to Node.js, therefore they would lose their true meaning and function if translated.   In simple words, this method writes the specified string into a buffer at the specified position, according to the character encoding. Inside the `length` parameter one must put the number of bytes to write into the buffer and lastly, it will return an integer that represents the number of bytes written. Here’s how I translated that paragraph:    ts purpose is to extract parts of a string and return the extracted parts inside a new string. The `start` parameter represents the position where to begin the extraction, and the `end` parameter represents where to finish the extraction. According to the documentation of Node.js, if `end` it’s not specified this method will select all the characters from the start-position to the end of the string. Here’s how I translated that paragraph:   There was one particular term that was mentioned several time during this contribution: **JSON**. It stands for “JavaScript Object Notation” and it’s used to transmit human-readable data objects and array data types between servers and web applications. It was first conceived in 2000 by Douglas Crockford and it was derived from JavaScript. <center></center> <center>[Source](https://meta.data.world/json-exposed-2c9c8fe1187d?gi=6bc5d04835ba)</center> <h4>Here are some other translation samples:</h4> **English:** _Setting `noAssert` to true allows `offset` to be beyond the end of `buf`, but the resulting behavior is undefined._ **Spanish:** _Configurar `noAssert ` a true permite que `offset ` esté más allá del final de `buf`, pero el comportamiento resultante es indefinido._ **English:** _Reads `byteLength` number of bytes from `buf` at the specified `offset` and interprets the result as an unsigned integer. Supports up to 48 bits of accuracy._ **Spanish:** _Lee el número de bytes `byteLength` desde `buf` en el `offset` especificado e interpreta el resultado como un entero sin signo. Soporta hasta 48 bits de precisión._ 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 1143 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) <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-19-1158-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://steemit.com/utopian-io/@marugy99/spanish-translation-of-node-js-part-14-1029-words","https://meta.data.world/json-exposed-2c9c8fe1187d?gi=6bc5d04835ba","https://steemit.com/utopian-io/@marugy99/spanish-translation-of-node-js-part-1-1031-words","https://steemit.com/utopian-io/@marugy99/spanish-translation-of-node-js-part-2-1135-words","https://steemit.com/utopian-io/@marugy99/spanish-translation-of-node-js-part-3-1112-words"],"image":["https://cdn.steemitimages.com/DQmf5sg7vYMStJt3op5msMEkx5ftpX6SUDZ1TEg3ezLjNbW/node.js%20maru%207.png","https://cdn.steemitimages.com/DQmb6uAn9hmgYTGhCrzKZh7NhS1Y76BYzbUNMD6auG1taS3/image.png","https://cdn.steemitimages.com/DQmR9A29SBiqzVd4xpRBpTp2mbvDaS7mpqB6CBfKjHkZJiN/image.png","https://cdn.steemitimages.com/DQmTAyQzvnNxfm4SDfkrm7oDqk75LQsT8arC2ebcW44J27L/main-qimg-b07ce87264a4c3891182582dadb1eadd.png","https://cdn.steemitimages.com/DQmTJkQuu6tJZoRPWVuiPvw6cE8GdYjvmbriCZ5VAgPGRYV/1.PNG","https://cdn.steemitimages.com/DQmPt78L24TT5n4ZGjYaLZpZP9PYZuVTy7yKgt9341489CF/DQmU4k8R9asoiB2q6MVP1v8LLRYDiUK753kqqsr7RLvfgyu.jpg","https://cdn.steemitimages.com/DQmSYanjBLhzG5ekxvBdvEv9HY1Z7vBYAEtFyBRmRmVNoE2/2.PNG","https://cdn.steemitimages.com/DQmTozEFyVrJFETYYPEjogGcD3Hxg8dUF3ybxdm3JjWwc1m/image.png","https://cdn.steemitimages.com/DQmPt78L24TT5n4ZGjYaLZpZP9PYZuVTy7yKgt9341489CF/DQmU4k8R9asoiB2q6MVP1v8LLRYDiUK753kqqsr7RLvfgyu.jpg","https://cdn.steemitimages.com/DQmY94GarNnKgc4F3GQY3TxMM2oK2swbrLKoyMJWoq9q5ma/image.png","https://cdn.steemitimages.com/DQmd7qUkirmcj6obdZoeDsJxJB66JNXfsR1SynyiXJKVZnN/image.png","https://cdn.steemitimages.com/DQmPt78L24TT5n4ZGjYaLZpZP9PYZuVTy7yKgt9341489CF/DQmU4k8R9asoiB2q6MVP1v8LLRYDiUK753kqqsr7RLvfgyu.jpg","https://cdn.steemitimages.com/DQmcF4cMVsaWTnEL3xNfjSLQKkooHpnMkfkdidsosG6KQYF/1_BzD9VGIbTmQpANue7eC1Rw.png","https://cdn.steemitimages.com/DQmVmCuvX9RVoYa5uwsuUdyiFLD2Lda67W3HfzTCdRvBTzV/server-nodejs.png"]} | ||||||||||||
created | 2018-11-14 02:45:36 | ||||||||||||
last_update | 2018-11-14 02:45:36 | ||||||||||||
depth | 0 | ||||||||||||
children | 5 | ||||||||||||
last_payout | 2018-11-21 02:45:36 | ||||||||||||
cashout_time | 1969-12-31 23:59:59 | ||||||||||||
total_payout_value | 23.290 HBD | ||||||||||||
curator_payout_value | 8.554 HBD | ||||||||||||
pending_payout_value | 0.000 HBD | ||||||||||||
promoted | 0.000 HBD | ||||||||||||
body_length | 11,714 | ||||||||||||
author_reputation | 60,669,599,737,674 | ||||||||||||
root_title | "Spanish Translation of Node.js (Part 19) (1158 words)" | ||||||||||||
beneficiaries |
| ||||||||||||
max_accepted_payout | 1,000,000.000 HBD | ||||||||||||
percent_hbd | 10,000 | ||||||||||||
post_id | 75,248,820 | ||||||||||||
net_rshares | 45,955,852,334,363 | ||||||||||||
author_curate_reward | "" |
voter | weight | wgt% | rshares | pct | time |
---|---|---|---|---|---|
arcange | 0 | 38,669,239,644 | 5% | ||
raphaelle | 0 | 2,988,663,631 | 5% | ||
bukiland | 0 | 106,791,522,186 | 26% | ||
dimitrisp | 0 | 2,321,474,216 | 5% | ||
jga | 0 | 3,124,011,026 | 16.06% | ||
pinoy | 0 | 4,639,514,200 | 100% | ||
destrudo | 0 | 15,278,487 | 15% | ||
bachuslib | 0 | 20,424,273,395 | 100% | ||
alexzicky | 0 | 41,454,832,911 | 70% | ||
aafeng | 0 | 36,835,766,606 | 50% | ||
silviu93 | 0 | 5,883,390,878 | 15% | ||
accelerator | 0 | 19,498,880,011 | 1.4% | ||
nicola71 | 0 | 21,107,155,514 | 49% | ||
espoem | 0 | 1,715,193,015 | 1% | ||
filipino | 0 | 596,626,116 | 10% | ||
mcfarhat | 0 | 13,850,328,807 | 18.54% | ||
nicejob | 0 | 87,074,890 | 22.5% | ||
rscalabrini | 0 | 5,464,739,752 | 30% | ||
loshcat | 0 | 3,058,226,126 | 100% | ||
pataty69 | 0 | 10,467,434,200 | 25% | ||
utopian-io | 0 | 44,004,089,716,693 | 32.13% | ||
shammi | 0 | 37,311,278,577 | 40% | ||
steemtaker | 0 | 3,347,072,729 | 3% | ||
newsrx | 0 | 1,360,600,248 | 100% | ||
aboutcoolscience | 0 | 48,852,375,695 | 50% | ||
scipio | 0 | 31,849,421,191 | 33.33% | ||
imcesca | 0 | 6,855,511,015 | 15% | ||
funtraveller | 0 | 8,614,954,559 | 1% | ||
dedicatedguy | 0 | 152,804,726,043 | 100% | ||
amosbastian | 0 | 100,642,634,764 | 46.35% | ||
tdre | 0 | 15,308,461,919 | 100% | ||
jjay | 0 | 419,778,324 | 100% | ||
knfitaly | 0 | 9,372,988,695 | 24% | ||
portugalcoin | 0 | 2,878,639,453 | 15% | ||
giornalista | 0 | 1,496,277,468 | 15% | ||
onin91 | 0 | 97,117,178 | 30% | ||
neokuduk | 0 | 1,347,498,052 | 100% | ||
tobias-g | 0 | 1,221,863,860 | 1% | ||
michealkey | 0 | 79,821,671 | 15% | ||
osazuisdela | 0 | 662,548,192 | 20% | ||
mondodidave73 | 0 | 19,470,718,178 | 42% | ||
sudefteri | 0 | 3,725,842,985 | 100% | ||
marugy99 | 0 | 21,689,747,027 | 100% | ||
midun | 0 | 18,019,682,803 | 70% | ||
micaelacf | 0 | 1,050,520,496 | 25% | ||
robertbira | 0 | 3,074,734,725 | 7.5% | ||
akifane | 0 | 393,978,446 | 100% | ||
chriselyngascon | 0 | 92,930,994 | 15% | ||
deusjudo | 0 | 11,901,100,412 | 49% | ||
properfraction | 0 | 719,154,828 | 100% | ||
davinci.witness | 0 | 49,274,221,216 | 30% | ||
hakancelik | 0 | 35,538,150,023 | 50% | ||
acknowledgement | 0 | 757,764,330 | 10% | ||
jacksartori | 0 | 69,373,489,814 | 80% | ||
effofex | 0 | 80,550,343 | 0.7% | ||
spaghettiscience | 0 | 6,858,015,961 | 15% | ||
acehero | 0 | 4,612,466,779 | 100% | ||
enlighted | 0 | 82,905,586 | 25% | ||
phage93 | 0 | 1,372,603,850 | 7.5% | ||
ryuna.siege | 0 | 208,886,732 | 100% | ||
davinci.polyglot | 0 | 243,754,648 | 30% | ||
davinci.times | 0 | 5,470,654,665 | 30% | ||
itastem | 0 | 7,635,543,685 | 30% | ||
davinci.art | 0 | 390,624,214 | 30% | ||
suonghuynh | 0 | 95,653,175,112 | 5.01% | ||
noobster | 0 | 887,981,602 | 100% | ||
pagliozzo | 0 | 3,236,424,803 | 35% | ||
weiti | 0 | 451,226,829 | 100% | ||
eprocomtu | 0 | 392,937,914 | 100% | ||
lovebwk | 0 | 364,216,972 | 100% | ||
steam.erotic | 0 | 217,251,923 | 15% | ||
rioplotunook | 0 | 362,702,602 | 100% | ||
prohunonir | 0 | 422,709,086 | 100% | ||
jefohube | 0 | 405,516,628 | 100% | ||
davinci.pay | 0 | 16,552,166,190 | 15% | ||
steemchoose | 0 | 87,192,558,983 | 5.01% | ||
duarte9sousa | 0 | 2,449,116,465 | 2.5% | ||
munhenhos | 0 | 1,700,510,940 | 25% | ||
lecongdoo3 | 0 | 16,414,892,247 | 100% | ||
davinci.vote | 0 | 318,117,238 | 30% | ||
bhaski | 0 | 2,213,224,009 | 25% | ||
merlin7 | 0 | 19,850,532,310 | 1% | ||
edwinbasu | 0 | 1,444,401,888 | 100% | ||
steem-ua | 0 | 548,077,188,835 | 4.35% | ||
cremisi | 0 | 15,844,899,898 | 100% | ||
nfc | 0 | 37,557,282,350 | 3% | ||
curbot | 0 | 4,136,821,476 | 10% | ||
aristotle.team | 0 | 6,400,554,052 | 10% | ||
adamantino | 0 | 1,552,769,259 | 50% | ||
phatima | 0 | 7,092,537,977 | 5% | ||
whitebot | 0 | 55,015,662,098 | 3% |
Greetings, @marugy99. Thanks for submitting your contribution! * The presentation and contents of your post are great! 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 amazingly clear and complete. As a reader, I am very pleased with this translation report! * Good formatting and customization of your post. #### 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-19-1158-words-20181116t041126920z |
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-16 03:42:36 |
last_update | 2018-11-16 03:43:27 |
depth | 1 |
children | 1 |
last_payout | 2018-11-23 03:42:36 |
cashout_time | 1969-12-31 23:59:59 |
total_payout_value | 3.868 HBD |
curator_payout_value | 1.236 HBD |
pending_payout_value | 0.000 HBD |
promoted | 0.000 HBD |
body_length | 1,088 |
author_reputation | 81,484,992,319,751 |
root_title | "Spanish Translation of Node.js (Part 19) (1158 words)" |
beneficiaries | [] |
max_accepted_payout | 1,000,000.000 HBD |
percent_hbd | 10,000 |
post_id | 75,369,546 |
net_rshares | 8,036,410,036,276 |
author_curate_reward | "" |
voter | weight | wgt% | rshares | pct | time |
---|---|---|---|---|---|
destrudo | 0 | 58,797,478 | 25% | ||
codingdefined | 0 | 7,627,120,171 | 7.5% | ||
alexzicky | 0 | 9,114,730,689 | 15% | ||
jadabug | 0 | 885,858,629 | 2.4% | ||
utopian-io | 0 | 7,699,403,362,133 | 5.29% | ||
steemtaker | 0 | 7,883,224,649 | 7% | ||
cheneats | 0 | 366,907,360 | 5% | ||
aboutcoolscience | 0 | 30,389,353,967 | 30% | ||
amosbastian | 0 | 22,131,366,934 | 10.49% | ||
organicgardener | 0 | 4,940,247,585 | 25% | ||
penghuren | 0 | 313,103,029 | 60% | ||
davinci.witness | 0 | 82,135,876,468 | 50% | ||
alejohannes | 0 | 30,302,396,164 | 100% | ||
hakancelik | 0 | 6,877,123,944 | 10% | ||
statsexpert | 0 | 6,570,149,958 | 100% | ||
davinci.polyglot | 0 | 439,591,080 | 50% | ||
davinci.times | 0 | 9,151,091,108 | 50% | ||
itastem | 0 | 12,757,627,347 | 50% | ||
davinci.art | 0 | 684,373,690 | 50% | ||
mightypanda | 0 | 52,989,007,958 | 35% | ||
davinci.pay | 0 | 28,050,013,855 | 25% | ||
fastandcurious | 0 | 1,164,720,327 | 30% | ||
davinci.vote | 0 | 563,528,729 | 50% | ||
chillibeans | 0 | 83,615,775 | 2% | ||
rij | 0 | 421,941,284 | 100% | ||
cremisi | 0 | 21,104,905,965 | 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-19-1158-words-20181116t041126920z-20181118t235012z |
category | utopian-io |
json_metadata | "{"app": "beem/0.20.9"}" |
created | 2018-11-18 23:50:12 |
last_update | 2018-11-18 23:50:12 |
depth | 2 |
children | 0 |
last_payout | 2018-11-25 23:50:12 |
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 19) (1158 words)" |
beneficiaries | [] |
max_accepted_payout | 1,000,000.000 HBD |
percent_hbd | 10,000 |
post_id | 75,523,493 |
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-19-1158-words-20181116t042858z |
category | utopian-io |
json_metadata | "{"app": "beem/0.20.9"}" |
created | 2018-11-16 04:29:00 |
last_update | 2018-11-16 04:29:00 |
depth | 1 |
children | 0 |
last_payout | 2018-11-23 04:29: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 | 287 |
author_reputation | 23,214,230,978,060 |
root_title | "Spanish Translation of Node.js (Part 19) (1158 words)" |
beneficiaries | [] |
max_accepted_payout | 1,000,000.000 HBD |
percent_hbd | 10,000 |
post_id | 75,371,238 |
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/voted.png?201811171953</td><td>You received more than 5000 upvotes. Your next target is to reach 6000 upvotes.</td></tr> <tr><td>https://steemitimages.com/60x70/http://steemitboard.com/@marugy99/comments.png?201811171953</td><td>You made more than 400 comments. Your next target is to reach 500 comments.</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> **Do not miss the last post from @steemitboard:** <table><tr><td><a href="https://steemit.com/steemfest/@steemitboard/meet-the-steemians-contest-intermediate-results"><img src="https://steemitimages.com/64x128/https://cdn.steemitimages.com/DQmeLukvNFRsa7RURqsFpiLGEZZD49MiU52JtWmjS5S2wtW/image.png"></a></td><td><a href="https://steemit.com/steemfest/@steemitboard/meet-the-steemians-contest-intermediate-results">Meet the Steemians Contest - Intermediate results</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-20181117t211517000z |
category | utopian-io |
json_metadata | {"image":["https://steemitboard.com/img/notify.png"]} |
created | 2018-11-17 21:15:15 |
last_update | 2018-11-17 21:15:15 |
depth | 1 |
children | 0 |
last_payout | 2018-11-24 21:15:15 |
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,441 |
author_reputation | 38,975,615,169,260 |
root_title | "Spanish Translation of Node.js (Part 19) (1158 words)" |
beneficiaries | [] |
max_accepted_payout | 1,000,000.000 HBD |
percent_hbd | 10,000 |
post_id | 75,462,314 |
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-19-1158-words-20181116t145739z |
category | utopian-io |
json_metadata | "{"app": "beem/0.20.9"}" |
created | 2018-11-16 14:57:42 |
last_update | 2018-11-16 14:57:42 |
depth | 1 |
children | 0 |
last_payout | 2018-11-23 14:57:42 |
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 19) (1158 words)" |
beneficiaries | [] |
max_accepted_payout | 1,000,000.000 HBD |
percent_hbd | 10,000 |
post_id | 75,395,852 |
net_rshares | 0 |