<center>  </center> ## SPANISH Les saluda su querid铆simo nekito incubo favorito 馃樃, 隆y hoy les traigo un tip s煤per 煤til! Como saben, soy de M茅xico, y me he encontrado con un reto t茅cnico que tal vez muchos de ustedes tambi茅n hayan enfrentado: la limpieza de archivos XML. En este pa铆s, los XML son bastante comunes, especialmente en temas de facturaci贸n y tr谩mites, pero trabajar con ellos a veces puede ser un dolor de cabeza, ya que suelen venir llenos de caracteres extra帽os o desordenados que dificultan su lectura. ## Desglose del C贸digo para Procesar y Limpiar XML Este peque帽o c贸digo procesa una respuesta en formato XML, extrayendo la informaci贸n que necesitamos, ya sea desde un archivo o directamente desde la base de datos, y lo limpia para su posterior uso, utilizando el lenguaje de PHP . En este caso, el contenido en XML que queremos manejar se encuentra en una secci贸n espec铆fica marcada por las etiquetas <s0:xml> ... </s0:xml>. El objetivo es lograr que el XML quede en un formato limpio y estructurado, lo que nos facilita mucho el trabajo de interpretaci贸n. Ahora, te explico cada parte para que puedas implementarlo f谩cilmente. 1. Decodificaci贸n y eliminaci贸n de espacios ``` $stm = trim(htmlspecialchars_decode(html_entity_decode($xml->response)), " \t\n\r\""); ``` - ``` html_entity_decode($xml->response)``` : Decodifica cualquier entidad HTML en xml->response (por ejemplo, convierte & en &). - ``` htmlspecialchars_decode(...)``` : Elimina cualquier codificaci贸n de caracteres especiales HTML (por ejemplo, convierte " en "). - ``` trim(..., " \t\n\r\"")``` : Elimina espacios en blanco, tabulaciones, saltos de l铆nea, retornos de carro y comillas (") del principio y final de la cadena resultante. El resultado es que $stm contiene el texto XML decodificado y limpiado de espacios y comillas externas. 2. C谩lculo de la longitud total de la cadena ```$str_fin = strlen($stm);``` Aqu铆 simplemente se obtiene la longitud de la cadena $stm y se guarda en $str_fin, para usarla luego en la extracci贸n. 3. Localizaci贸n de la posici贸n de la etiqueta ```<s0:xml>``` ```$str_inicio = strpos($stm, '<s0:xml>') + 8;``` - ```strpos($stm, '<s0:xml>')```: Encuentra la posici贸n donde aparece la etiqueta ```<s0:xml>``` en $stm. - ```+ 8```: Suma 8 al 铆ndice encontrado para saltar la etiqueta completa (```<s0:xml>```), de modo que el 铆ndice de ```$str_inicio``` apunte justo despu茅s de la etiqueta de apertura. 4. Extracci贸n del contenido despu茅s de <s0:xml> ```$str_tmp = substr($stm, $str_inicio, $str_fin);``` - ```substr($stm, $str_inicio, $str_fin)```: Extrae una subcadena de $stm comenzando en $str_inicio y extendi茅ndose hasta $str_fin (longitud completa de $stm). - Esto guarda en $str_tmp todo el contenido que est谩 despu茅s de la etiqueta <s0:xml>. 5. Localizaci贸n de la posici贸n de cierre </s0:xml> ```$str_fin = strpos($str_tmp, '</s0:xml>');``` - ```strpos($str_tmp, '</s0:xml>')```: Encuentra la posici贸n de la etiqueta de cierre </s0:xml> dentro de $str_tmp, indicando el final de la porci贸n XML que nos interesa. 6. Extracci贸n del contenido XML ```$str_tmp = substr($str_tmp, 0, $str_fin);``` - ```substr($str_tmp, 0, $str_fin)```: Extrae la subcadena desde el inicio de $str_tmp hasta la posici贸n de cierre </s0:xml>, guardando solo el contenido XML deseado en $str_tmp. 7. Limpieza final de saltos de l铆nea ```$str_tmp = preg_replace("/[\r\n|\n|\r]+/", "", $str_tmp);``` - ```preg_replace("/[\r\n|\n|\r]+/", "", $str_tmp)```: Elimina todos los saltos de l铆nea (\r y \n) de $str_tmp, dej谩ndolo en una sola l铆nea sin saltos. codigo completo <code> $stm = trim(htmlspecialchars_decode(html_entity_decode($xml->response))," \t\n\r\""); $str_fin = strlen($stm); $str_inicio = strpos($stm, '<s0:xml>') + 8; $str_tmp = substr($stm,$str_inicio,$str_fin); $str_fin = strpos($str_tmp, '</s0:xml>'); $str_tmp = substr($str_tmp,0,$str_fin); $str_tmp = preg_replace("/[\r\n|\n|\r]+/", "", $str_tmp); </code> Con este proceso, logramos tomar solo la informaci贸n relevante, limpiar esos molestos caracteres, y dejar el XML listo para usar en nuestras aplicaciones. Adem谩s, algo que me encanta de esta soluci贸n es su flexibilidad, porque podr铆as adaptarlo para otras etiquetas o incluso para datos similares que necesites en otros proyectos. Con esta t茅cnica espero que puedan encontrar una soluci贸n pr谩ctica para limpiar sus archivos XML o, al menos, que les sirva como gu铆a para resolver problemas similares que encuentren en sus proyectos. 隆La idea es facilitarles el trabajo y que puedan interpretar sus datos sin estr茅s! ### 隆Espero que este tip les sea de gran ayuda! As铆 que ya saben, si en alg煤n momento se encuentran con un archivo XML desordenado o con caracteres extra帽os, 隆prueben este m茅todo y me cuentan c贸mo les va! Nos vemos en la pr贸xima, y recuerden que estoy aqu铆 para ayudarles en sus aventuras tecnol贸gicas. 馃樃  <hr> ## ENGLISH Greetings from your beloved favorite incubator 馃樃, and today I bring you a super useful tip! As you know, I'm from Mexico, and I've encountered a technical challenge that perhaps many of you have also faced: cleaning XML files. In this country, XMLs are quite common, especially in billing and paperwork issues, but working with them can sometimes be a headache, since they usually come full of strange or disordered characters that make them difficult to read. ## Code Breakdown to Process and Clean XML This little code processes a response in XML format, extracting the information we need, either from a file or directly from the database, and cleans it for later use, using the PHP language. In this case, the XML content we want to handle is located in a specific section marked by the tags <s0:xml> ... </s0:xml>. The goal is to get the XML into a clean and structured format, which makes it much easier for us to interpret it. Now, I'll explain each part so you can easily implement it. 1. Decoding and removing spaces ``` $stm = trim(htmlspecialchars_decode(html_entity_decode($xml->response)), " \t\n\r\""); ``` - ``` html_entity_decode($xml->response)``` : Decodes any HTML entity in xml->response (e.g. converts & to &). - ``` htmlspecialchars_decode(...)``` : Removes any HTML special character encoding (e.g. converts " to "). - ``` trim(..., " \t\n\r\"")``` : Removes whitespace, tabs, line breaks, carriage returns and quotes (") from the beginning and end of the resulting string. The result is that $stm contains the decoded XML text cleaned of spaces and external quotes. 2. Calculating the total length of the string ```$str_fin = strlen($stm);``` Here we simply obtain the length of the string $stm and save it in $str_fin, to be used later in the extraction. 3. Locating the position of the ```<s0:xml>``` tag ```$str_start = strpos($stm, '<s0:xml>') + 8;``` - ```strpos($stm, '<s0:xml>')```: Finds the position where the ```<s0:xml>``` tag appears in $stm. - ```+ 8```: Adds 8 to the index found to skip the entire tag (```<s0:xml>```), so that the index of ```$str_start``` points right after the opening tag. 4. Extracting content after <s0:xml> ```$str_tmp = substr($stm, $str_start, $str_end);``` - ```substr($stm, $str_start, $str_end)```: Extracts a substring from $stm starting at $str_start and extending to $str_end (full length of $stm). - This saves all content after the <s0:xml> tag to $str_tmp. 5. Finding the closing position </s0:xml> ```$str_fin = strpos($str_tmp, '</s0:xml>');``` - ```strpos($str_tmp, '</s0:xml>')```: Finds the position of the closing tag </s0:xml> within $str_tmp, indicating the end of the XML portion we are interested in. 6. Extracting the XML content ```$str_tmp = substr($str_tmp, 0, $str_fin);``` - ```substr($str_tmp, 0, $str_fin)```: Extracts the substring from the start of $str_tmp to the closing position </s0:xml>, saving only the desired XML content in $str_tmp. 7. Final line break cleanup ```$str_tmp = preg_replace("/[\r\n|\n|\r]+/", "", $str_tmp);``` - ```preg_replace("/[\r\n|\n|\r]+/", "", $str_tmp)```: Removes all line breaks (\r and \n) from $str_tmp, leaving it on a single line without any breaks. full code <code> $stm = trim(htmlspecialchars_decode(html_entity_decode($xml->response))," \t\n\r\""); $str_fin = strlen($stm); $str_inicio = strpos($stm, '<s0:xml>') + 8; $str_tmp = substr($stm,$str_inicio,$str_fin); $str_fin = strpos($str_tmp, '</s0:xml>'); $str_tmp = substr($str_tmp,0,$str_fin); $str_tmp = preg_replace("/[\r\n|\n|\r]+/", "", $str_tmp); </code> With this process, we manage to take only the relevant information, clean those annoying characters, and leave the XML ready to use in our applications. Also, something I love about this solution is its flexibility, because you could adapt it for other tags or even for similar data that you need in other projects. With this technique I hope you can find a practical solution to clean up your XML files or, at least, that it serves as a guide to solve similar problems you encounter in your projects. The idea is to make your work easier and that you can interpret your data without stress! ### I hope this tip is of great help to you! So you know, if at any time you find yourself with a messy XML file or with strange characters, try this method and tell me how it goes! See you next time, and remember that I am here to help you in your technological adventures. 馃樃  <hr> <center>  Portada realizada en photoshop Separador realizado por @softy1231 [softy1231](https://linktr.ee/softy_1231) Vtuber, Paneles realizado por @panna-natha [pannanatha](https://linktr.ee/natha_arceramos) Logo realizado por [KivaVT](https://x.com/KivaVT) Porta base realizada por @smile27 [<img src="https://images.ecency.com/DQmY6nYuMxRjGNTCqtNvgdbaZBEv4d3Vfv2iQpUbtQuuDyS/redes.png" alt="Redes Sociales">](https://linktr.ee/misticogama)  </center>
author | misticogama |
---|---|
permlink | clean-xml-files |
category | hive-116823 |
json_metadata | "{"app":"ecency/4.0.1-vision","tags":["hive-116823","spanish","php","clean","xml","tips","hueso","ecency"],"format":"markdown+html","image":["https://images.ecency.com/DQmaCujnBwgHUizNcSAM4orXNxzH7uCQtk1GxNWrSc6Jntq/clean.png","https://images.ecency.com/DQmYJfbBHnbc7Nmc8rMFCAt9hdyFzcM6mUzQxJEc6YuaGiW/separador_mistico_.png","https://images.ecency.com/DQmWoDZ3uM1U33NcXDSp63byePECwJxLFXA6VC2B5iC6tky/creditos.png","https://images.ecency.com/DQmY6nYuMxRjGNTCqtNvgdbaZBEv4d3Vfv2iQpUbtQuuDyS/redes.png","https://images.ecency.com/DQmSbDJo2VWyLHpDThxRecw7cZ4jJYLU5bo6CcRTsD9d5xW/misticogama.gif"],"thumbnails":["https://images.ecency.com/DQmaCujnBwgHUizNcSAM4orXNxzH7uCQtk1GxNWrSc6Jntq/clean.png","https://images.ecency.com/DQmYJfbBHnbc7Nmc8rMFCAt9hdyFzcM6mUzQxJEc6YuaGiW/separador_mistico_.png","https://images.ecency.com/DQmYJfbBHnbc7Nmc8rMFCAt9hdyFzcM6mUzQxJEc6YuaGiW/separador_mistico_.png","https://images.ecency.com/DQmWoDZ3uM1U33NcXDSp63byePECwJxLFXA6VC2B5iC6tky/creditos.png","https://images.ecency.com/DQmY6nYuMxRjGNTCqtNvgdbaZBEv4d3Vfv2iQpUbtQuuDyS/redes.png","https://images.ecency.com/DQmSbDJo2VWyLHpDThxRecw7cZ4jJYLU5bo6CcRTsD9d5xW/misticogama.gif"],"description":"SPANISH Les saluda su querid铆simo nekito incubo favorito 馃樃, 隆y hoy les traigo un tip s煤per 煤til! Como saben, soy de M茅xico, y me he encontrado con un reto t茅cnico que tal vez muchos de ustedes tambi茅n","image_ratios":["1.9000","9.6855","1.0000","1.0000","2.0000"]}" |
created | 2024-11-13 06:00:45 |
last_update | 2024-11-13 06:00:45 |
depth | 0 |
children | 7 |
last_payout | 2024-11-20 06:00:45 |
cashout_time | 1969-12-31 23:59:59 |
total_payout_value | 3.804 HBD |
curator_payout_value | 3.771 HBD |
pending_payout_value | 0.000 HBD |
promoted | 0.000 HBD |
body_length | 10,299 |
author_reputation | 79,669,929,914,684 |
root_title | "Clean XML files" |
beneficiaries | [] |
max_accepted_payout | 1,000,000.000 HBD |
percent_hbd | 10,000 |
post_id | 138,429,662 |
net_rshares | 22,541,361,770,022 |
author_curate_reward | "" |
voter | weight | wgt% | rshares | pct | time |
---|---|---|---|---|---|
pharesim | 0 | 146,972,273,009 | 12.28% | ||
leprechaun | 0 | 512,259,299 | 2.78% | ||
roelandp | 0 | 6,968,296,008 | 0.37% | ||
gikitiki | 0 | 5,081,954,000 | 6.14% | ||
arcange | 0 | 1,051,593,371,027 | 5% | ||
shaka | 0 | 634,890,910,856 | 8.59% | ||
avellana | 0 | 88,796,416,873 | 80% | ||
sunshine | 0 | 35,554,490,282 | 6.14% | ||
josepimpo | 0 | 2,229,085,523 | 2.45% | ||
anarcist69 | 0 | 11,536,316,525 | 20% | ||
bryan-imhoff | 0 | 14,919,786,413 | 12.28% | ||
rmach | 0 | 1,019,876,103 | 6.14% | ||
uwelang | 0 | 127,264,995,238 | 4.29% | ||
abh12345 | 0 | 28,480,183,022 | 10% | ||
clayboyn | 0 | 13,759,566,291 | 20% | ||
discovereurovelo | 0 | 1,117,126,435 | 0.75% | ||
justinw | 0 | 20,663,974,319 | 4.05% | ||
walterjay | 0 | 12,174,065,767 | 1.22% | ||
erikaflynn | 0 | 2,654,099,639 | 3.68% | ||
fronttowardenemy | 0 | 4,057,122,898 | 1.5% | ||
dimarss | 0 | 4,179,859,895 | 20% | ||
lizanomadsoul | 0 | 2,578,365,426 | 1.5% | ||
dreamon | 0 | 991,574,227 | 22.2% | ||
schlees | 0 | 383,799,122,262 | 20% | ||
sustainablyyours | 0 | 3,630,688,311 | 6.14% | ||
qsounds | 0 | 1,143,554,329 | 12.28% | ||
crimsonclad | 0 | 964,810,689,082 | 40% | ||
dandesign86 | 0 | 17,486,744,527 | 8% | ||
jayna | 0 | 22,057,211,146 | 3.07% | ||
techken | 0 | 44,946,238,699 | 50% | ||
princessmewmew | 0 | 1,958,000,943 | 0.75% | ||
joeyarnoldvn | 0 | 459,713,212 | 1.47% | ||
diabolika | 0 | 2,539,599,998 | 6.14% | ||
grocko | 0 | 6,299,073,289 | 6.14% | ||
diegoameerali | 0 | 625,442,167 | 3.68% | ||
felt.buzz | 0 | 18,879,343,854 | 3.07% | ||
cesar.oat | 0 | 5,346,617,783 | 50% | ||
cranium | 0 | 2,064,830,873 | 1.5% | ||
sandrag89 | 0 | 686,632,987 | 70% | ||
horpey | 0 | 3,463,855,924 | 4.91% | ||
aaronleang | 0 | 10,141,958,247 | 20% | ||
enrique89 | 0 | 402,196,761,663 | 50% | ||
rafaelaquino | 0 | 18,203,574,779 | 100% | ||
samic | 0 | 4,434,147,894 | 30% | ||
sorin.cristescu | 0 | 6,679,492,420 | 1.22% | ||
mballesteros | 0 | 9,769,525,631 | 6.14% | ||
jlsplatts | 0 | 24,198,218,975 | 2% | ||
bigdizzle91 | 0 | 33,132,030,616 | 100% | ||
votovzla | 0 | 1,560,140,554,391 | 100% | ||
afterglow | 0 | 481,408,483 | 5% | ||
fknmayhem | 0 | 492,567,897 | 5.15% | ||
bluefinstudios | 0 | 8,165,523,300 | 3.07% | ||
paulmoon410 | 0 | 13,457,159,459 | 45% | ||
xsasj | 0 | 1,955,477,654 | 1.5% | ||
robotics101 | 0 | 706,789,180 | 2.45% | ||
auleo | 0 | 1,708,121,626 | 2.45% | ||
sco | 0 | 2,336,046,767 | 7.36% | ||
abeba | 0 | 6,730,296,031 | 100% | ||
gabrielatravels | 0 | 871,385,503 | 0.52% | ||
alarconr22.arte | 0 | 60,297,448,721 | 100% | ||
dcardozo25 | 0 | 4,883,136,570 | 100% | ||
iamevilradio | 0 | 1,476,727,733 | 6.14% | ||
manncpt | 0 | 2,838,045,550 | 1.5% | ||
jnmarteau | 0 | 574,955,543 | 1.5% | ||
cherryng | 0 | 1,652,994,555 | 2.45% | ||
lemony-cricket | 0 | 34,894,161,820 | 6.14% | ||
franciscomarval | 0 | 17,780,916,290 | 100% | ||
bertrayo | 0 | 6,623,614,946 | 6.14% | ||
antoniarhuiz | 0 | 530,575,329 | 1.84% | ||
oadissin | 0 | 9,394,357,220 | 2.5% | ||
emperatriz1503 | 0 | 623,273,562 | 100% | ||
azircon | 0 | 2,174,800,000,299 | 10.43% | ||
vcclothing | 0 | 1,002,994,695 | 0.6% | ||
louis88 | 0 | 93,065,938,989 | 3.68% | ||
koenau | 0 | 1,494,708,866 | 6.14% | ||
reversehitler88 | 0 | 1,411,656,822 | 10% | ||
greddyforce | 0 | 9,048,753,139 | 3.68% | ||
racibo | 0 | 513,759,052 | 0.5% | ||
juanmanuellopez1 | 0 | 3,298,496,033 | 80% | ||
ikasumanera | 0 | 1,040,563,360 | 100% | ||
richjr | 0 | 11,936,743,954 | 100% | ||
manuelmusic | 0 | 9,182,997,362 | 60% | ||
tijntje | 0 | 1,346,269,042 | 6.14% | ||
marijo-rm | 0 | 107,225,623,892 | 100% | ||
taldor | 0 | 903,528,199 | 3.68% | ||
saboin | 0 | 27,158,661,573 | 3.83% | ||
raorac | 0 | 1,302,047,773 | 35% | ||
yaraha | 0 | 3,241,613,662 | 20% | ||
coloneljethro | 0 | 9,239,051,361 | 6.14% | ||
gwilberiol | 0 | 202,900,126,428 | 55% | ||
crimo | 0 | 500,364,312 | 10% | ||
gabrielr29 | 0 | 1,929,599,016 | 50% | ||
doctor-cog-diss | 0 | 7,221,937,757 | 7.36% | ||
vensurfer61 | 0 | 1,166,071,043 | 50% | ||
juliocesar7 | 0 | 1,491,642,162 | 50% | ||
remotehorst23 | 0 | 4,382,999,831 | 12.28% | ||
radiosteemit | 0 | 18,903,940,230 | 100% | ||
cmplxty | 0 | 134,345,855,760 | 9.21% | ||
bflanagin | 0 | 6,236,318,137 | 6.14% | ||
schlunior | 0 | 21,202,212,499 | 20% | ||
ezunjoshy | 0 | 1,384,331,710 | 6.14% | ||
anttn | 0 | 3,377,450,564 | 6.14% | ||
mariichuy | 0 | 1,662,796,367 | 50% | ||
coccodema | 0 | 667,314,358 | 6.14% | ||
voxmortis | 0 | 2,251,655,139 | 1.22% | ||
nsfw-power | 0 | 31,737,694,193 | 12.28% | ||
evacortez | 0 | 543,570,817 | 10% | ||
thelittlebank | 0 | 97,157,982,466 | 6.14% | ||
memes777 | 0 | 11,379,263,927 | 75% | ||
lagitana | 0 | 4,550,875,813 | 80% | ||
macoolette | 0 | 6,274,955,276 | 3.68% | ||
tommyl33 | 0 | 940,388,593 | 6.14% | ||
thevil | 0 | 60,966,176,179 | 6.14% | ||
janettyanez | 0 | 5,493,132,285 | 100% | ||
milky-concrete | 0 | 10,188,079,584 | 6.14% | ||
anarcist | 0 | 2,032,218,469 | 40% | ||
cesarisaad | 0 | 3,011,687,263 | 30% | ||
phototalent | 0 | 2,004,571,410 | 100% | ||
equipodelta | 0 | 169,203,835,589 | 80% | ||
shainemata | 0 | 23,718,565,536 | 5% | ||
apokruphos | 0 | 102,496,799,175 | 25% | ||
synergized | 0 | 487,116,065 | 6.14% | ||
monster-one | 0 | 970,650,607 | 9% | ||
dfacademy | 0 | 15,980,361,712 | 6.14% | ||
sophieandhenrik | 0 | 611,867,510 | 4.29% | ||
lionsaturbix | 0 | 1,679,994,126 | 6.14% | ||
dawnoner | 0 | 14,469,126,509 | 3.07% | ||
wallvater | 0 | 1,082,475,302 | 20% | ||
epicdice | 0 | 4,290,286,229 | 3.68% | ||
lmvc | 0 | 1,570,266,741 | 64% | ||
ssiena | 0 | 2,391,434,954 | 9.21% | ||
babytarazkp | 0 | 525,054,183 | 10% | ||
lmvc-spaco | 0 | 840,281,184 | 64% | ||
samgiset | 0 | 417,279,784,871 | 60% | ||
curangel | 0 | 10,011,553,335,928 | 12.28% | ||
ang.spc | 0 | 899,080,723 | 80% | ||
pavelsku | 0 | 86,000,768,780 | 50% | ||
mvanhauten | 0 | 460,466,619 | 20% | ||
nanyuris | 0 | 1,910,511,736 | 100% | ||
gloriaolar | 0 | 2,343,574,459 | 3% | ||
bilpcoinbpc | 0 | 1,140,590,301 | 5% | ||
nerdvana | 0 | 580,648,468 | 6.14% | ||
dpend.active | 0 | 899,017,670 | 2.45% | ||
hivebuzz | 0 | 18,121,417,438 | 3% | ||
pinmapple | 0 | 1,504,925,985 | 1.5% | ||
radiohive | 0 | 28,070,949,008 | 100% | ||
laruche | 0 | 3,740,602,727 | 2.45% | ||
ykretz | 0 | 459,690,072 | 5% | ||
kvfm | 0 | 2,300,659,849 | 50% | ||
laradio | 0 | 4,983,805,352 | 100% | ||
flewsplash | 0 | 1,271,364,986 | 9.82% | ||
gabilan55 | 0 | 836,960,200 | 6.14% | ||
carmenm20 | 0 | 3,206,845,225 | 100% | ||
thaliaf | 0 | 1,886,054,121 | 50% | ||
goliathus | 0 | 486,930,984 | 6.14% | ||
rafabvr | 0 | 529,835,384 | 100% | ||
r-nyn | 0 | 18,929,016,047 | 11% | ||
jemmarti | 0 | 7,822,235,751 | 100% | ||
hive-world | 0 | 880,437,220 | 6.14% | ||
altleft | 0 | 313,889,678,380 | 0.61% | ||
cleydimar2000 | 0 | 10,261,224,731 | 50% | ||
borniet | 0 | 3,174,967,122 | 6.14% | ||
radiolovers | 0 | 22,686,453,818 | 100% | ||
ciresophen | 0 | 6,464,021,414 | 100% | ||
rima11 | 0 | 65,285,990,424 | 2.45% | ||
paolazun | 0 | 693,912,901 | 6.14% | ||
alberto0607 | 0 | 46,117,561,131 | 100% | ||
junydoble | 0 | 1,453,770,614 | 70% | ||
victor816 | 0 | 1,173,130,872 | 100% | ||
meritocracy | 0 | 664,108,390,244 | 6.14% | ||
jmsansan | 0 | 10,551,619,852 | 6.14% | ||
bea23 | 0 | 23,884,805,996 | 100% | ||
hiveart | 0 | 495,875,027 | 6.14% | ||
hivechat | 0 | 622,649,087 | 6.14% | ||
druckado | 0 | 606,700,152 | 20% | ||
ciudadcreativa | 0 | 4,086,868,779 | 80% | ||
zanoz | 0 | 2,708,593,851 | 6.14% | ||
traderhive | 0 | 2,296,945,957 | 12.28% | ||
tawadak24 | 0 | 9,500,299,886 | 6.14% | ||
freed99 | 0 | 16,260,129,655 | 50% | ||
robvector | 0 | 6,247,248,597 | 6.14% | ||
timmy-turnip | 0 | 678,315,790 | 6.14% | ||
cherryblossom20 | 0 | 626,912,402 | 12.28% | ||
mrhoofman | 0 | 504,137,520 | 3.07% | ||
edinson001 | 0 | 1,230,290,038 | 100% | ||
luisestaba23 | 0 | 489,750,726 | 50% | ||
nahueldare3627 | 0 | 5,698,213,999 | 100% | ||
helencct | 0 | 2,062,273,776 | 100% | ||
brume7 | 0 | 693,328,040 | 40% | ||
egistar | 0 | 590,639,465 | 2.5% | ||
xaviduran | 0 | 1,841,188,687 | 6.14% | ||
lxsxl | 0 | 4,034,576,571 | 6.14% | ||
jessicaossom | 0 | 3,093,693,008 | 6.14% | ||
carlos13 | 0 | 17,754,120,737 | 100% | ||
josdelmi | 0 | 2,044,764,347 | 6.14% | ||
proymet | 0 | 6,320,377,423 | 100% | ||
dungeondog | 0 | 13,845,409,281 | 20% | ||
ischmieregal | 0 | 6,966,659,960 | 20% | ||
hive-130560 | 0 | 45,648,593,024 | 80% | ||
fabianar25 | 0 | 1,130,654,201 | 50% | ||
lauracraft | 0 | 898,810,350 | 6.14% | ||
r0nny | 0 | 7,085,635,928 | 20% | ||
ronymaffi | 0 | 6,532,706,603 | 100% | ||
kalivankush | 0 | 1,788,973,915 | 6.14% | ||
shakavon | 0 | 810,044,039 | 50% | ||
esbat | 0 | 12,283,472,106 | 100% | ||
tanzil2024 | 0 | 1,979,490,585 | 1% | ||
sidalim88 | 0 | 17,695,974,211 | 12.28% | ||
mochilub | 0 | 1,016,893,998 | 5.21% | ||
elderdark | 0 | 601,866,590 | 2.5% | ||
chuiiiiiiii | 0 | 2,322,285,147 | 69% | ||
marsupia | 0 | 2,180,672,416 | 50% | ||
collacolla | 0 | 1,729,334,707 | 100% | ||
michupa | 0 | 16,893,778,585 | 5% | ||
mcookies | 0 | 920,743,155 | 6.14% | ||
susurrodmisterio | 0 | 3,692,686,497 | 50% | ||
eduard20 | 0 | 501,876,073 | 40% | ||
taradraz1 | 0 | 2,375,284,277 | 100% | ||
dr-animation | 0 | 801,451,890 | 45% | ||
allentaylor | 0 | 1,700,041,519 | 3.68% | ||
der.merlin | 0 | 776,832,659 | 20% | ||
marlasinger666 | 0 | 470,761,959 | 12.28% | ||
elchaleefatoe15 | 0 | 684,350,426 | 2.45% | ||
drivingindevon | 0 | 3,783,579,275 | 9.82% | ||
prosocialise | 0 | 28,682,864,199 | 6.14% | ||
shaialfonzo | 0 | 470,445,620 | 100% | ||
chechostreet | 0 | 10,532,074,764 | 100% | ||
visualblock | 0 | 262,345,060,917 | 100% | ||
castri-ja | 0 | 997,314,426 | 3.07% | ||
llunasoul | 0 | 630,099,335 | 1.11% | ||
growandbow | 0 | 13,217,362,467 | 1.11% | ||
juansitosaiyayin | 0 | 1,224,932,802 | 100% | ||
justbekindtoday | 0 | 201,475,350,048 | 5% | ||
acgalarza | 0 | 9,410,611,904 | 2.45% | ||
marnu | 0 | 146,570,839 | 100% | ||
bluepark | 0 | 807,030,192 | 6.14% | ||
callmesmile | 0 | 9,742,360,536 | 6.14% | ||
hayleysv | 0 | 1,281,494,132 | 40% | ||
jijisaurart | 0 | 5,519,781,494 | 6.14% | ||
geelocks | 0 | 535,209,863 | 6.14% | ||
nahuelgameplays | 0 | 3,298,888,028 | 100% | ||
jloberiza | 0 | 896,095,837 | 6.14% | ||
minas-glory | 0 | 760,599,573 | 6.14% | ||
the-burn | 0 | 3,711,735,097 | 6.14% | ||
peakecoin | 0 | 525,664,835 | 45% | ||
ijelady | 0 | 833,797,745 | 50% | ||
empressjay | 0 | 700,264,219 | 6.14% | ||
catrynart | 0 | 1,170,878,177 | 6.14% | ||
antonioeviesart | 0 | 570,559,971 | 12.28% | ||
chinay04 | 0 | 45,019,564,605 | 100% | ||
paolasinaid | 0 | 1,645,454,708 | 100% | ||
lettinggotech | 0 | 2,904,460,807 | 6.14% | ||
pit3r | 0 | 3,345,944,326 | 20% | ||
y3ssi | 0 | 3,063,399,350 | 20% | ||
hive-bounty | 0 | 466,156,943 | 20% | ||
thezyppi | 0 | 5,845,694,521 | 20% | ||
ayamihaya | 0 | 3,219,767,462 | 42% | ||
scraptrader | 0 | 2,045,634,488 | 6.14% | ||
aslamrer | 0 | 1,278,524,086 | 6.14% | ||
astronerd | 0 | 846,419,977 | 6.14% | ||
hive-up | 0 | 203,339,787,202 | 50% | ||
sagarkothari | 0 | 32,783,885,591 | 6.14% | ||
cumanadigital | 0 | 542,413,782 | 50% | ||
itz.inno | 0 | 1,654,126,483 | 6.14% | ||
hivediy | 0 | 8,484,283,089 | 80% | ||
xlety | 0 | 2,544,620,541 | 6.14% | ||
ghilvar | 0 | 852,777,237 | 12.28% | ||
mariiale1979 | 0 | 65,576,762,067 | 100% | ||
angeluxx | 0 | 99,026,010,022 | 100% | ||
ineyashami | 0 | 8,420,696,946 | 100% | ||
propolis.wiki | 0 | 827,550,419 | 12.28% | ||
alexstrike30 | 0 | 12,631,775,195 | 100% | ||
rcreationalgames | 0 | 3,594,389,799 | 40% | ||
henrysw | 0 | 513,453,119 | 12.28% | ||
strangedad | 0 | 1,279,256,320 | 100% | ||
bhr-curation | 0 | 45,668,807,719 | 100% |
@misticogama un abrazo. Gracias por compartir este script, es bueno tener esta informaci贸n porque puede ser de gran utilidad cuando nos enfrentamos a esos molestos archivos XML. Bienvenido a la comunidad. Hoy estaremos compartiendo #ViernesDeEscritorio por si usas alguna distribuci贸n GNU/Linux.
author | alberto0607 |
---|---|
permlink | re-misticogama-smz6cp |
category | hive-116823 |
json_metadata | {"tags":["hive-116823"],"app":"peakd/2024.11.1","image":[],"users":["misticogama"]} |
created | 2024-11-15 04:41:15 |
last_update | 2024-11-15 04:41:15 |
depth | 1 |
children | 1 |
last_payout | 2024-11-22 04:41: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 | 296 |
author_reputation | 85,381,778,745,006 |
root_title | "Clean XML files" |
beneficiaries | [] |
max_accepted_payout | 1,000,000.000 HBD |
percent_hbd | 10,000 |
post_id | 138,465,837 |
net_rshares | 0 |
Claro, espero que les ayude a alguien a futuro o darse ideas a su solucion, de que se trata lo que me comentas?
author | misticogama |
---|---|
permlink | re-alberto0607-20241115t0320616z |
category | hive-116823 |
json_metadata | {"content_type":"general","type":"comment","tags":["hive-116823"],"app":"ecency/3.1.6-mobile","format":"markdown+html"} |
created | 2024-11-15 06:03:21 |
last_update | 2024-11-15 06:03:21 |
depth | 2 |
children | 0 |
last_payout | 2024-11-22 06:03: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 | 111 |
author_reputation | 79,669,929,914,684 |
root_title | "Clean XML files" |
beneficiaries | [] |
max_accepted_payout | 1,000,000.000 HBD |
percent_hbd | 10,000 |
post_id | 138,466,750 |
net_rshares | 0 |
No entiendo nada, pero es muy linda tu indormaci贸n
author | angeluxx |
---|---|
permlink | re-misticogama-smx9zc |
category | hive-116823 |
json_metadata | {"tags":["hive-116823"],"app":"peakd/2024.11.1","image":[],"users":[]} |
created | 2024-11-14 04:04:27 |
last_update | 2024-11-14 04:04:27 |
depth | 1 |
children | 1 |
last_payout | 2024-11-21 04:04:27 |
cashout_time | 1969-12-31 23:59:59 |
total_payout_value | 0.000 HBD |
curator_payout_value | 0.000 HBD |
pending_payout_value | 0.000 HBD |
promoted | 0.000 HBD |
body_length | 50 |
author_reputation | 74,304,625,043,853 |
root_title | "Clean XML files" |
beneficiaries | [] |
max_accepted_payout | 1,000,000.000 HBD |
percent_hbd | 10,000 |
post_id | 138,447,740 |
net_rshares | 0 |
Muchas gracias
author | misticogama |
---|---|
permlink | re-angeluxx-20241114t10232339z |
category | hive-116823 |
json_metadata | {"tags":["hive-116823"],"app":"ecency/4.0.1-vision","format":"markdown+html"} |
created | 2024-11-14 16:02:33 |
last_update | 2024-11-14 16:02:33 |
depth | 2 |
children | 0 |
last_payout | 2024-11-21 16:02:33 |
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 | 14 |
author_reputation | 79,669,929,914,684 |
root_title | "Clean XML files" |
beneficiaries | [] |
max_accepted_payout | 1,000,000.000 HBD |
percent_hbd | 10,000 |
post_id | 138,456,239 |
net_rshares | 0 |
Congratulations @misticogama! You have completed the following achievement on the Hive blockchain And have been rewarded with New badge(s) <table><tr><td><img src="https://images.hive.blog/60x70/https://hivebuzz.me/@misticogama/comments.png?202411140306"></td><td>You made more than 2500 comments.<br>Your next target is to reach 3000 comments.</td></tr> </table> <sub>_You can view your badges on [your board](https://hivebuzz.me/@misticogama) and compare yourself to others in the [Ranking](https://hivebuzz.me/ranking)_</sub> <sub>_If you no longer want to receive notifications, reply to this comment with the word_ `STOP`</sub> **Check out our last posts:** <table><tr><td><a href="/hive-122221/@hivebuzz/lpud-202411"><img src="https://images.hive.blog/64x128/https://i.imgur.com/pVZi2Md.png"></a></td><td><a href="/hive-122221/@hivebuzz/lpud-202411">LEO Power Up Day - November 15, 2024</a></td></tr></table>
author | hivebuzz |
---|---|
permlink | notify-1731553877 |
category | hive-116823 |
json_metadata | {"image":["https://hivebuzz.me/notify.t6.png"]} |
created | 2024-11-14 03:11:18 |
last_update | 2024-11-14 03:11:18 |
depth | 1 |
children | 0 |
last_payout | 2024-11-21 03:11: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 | 919 |
author_reputation | 369,400,396,067,243 |
root_title | "Clean XML files" |
beneficiaries | [] |
max_accepted_payout | 1,000,000.000 HBD |
percent_hbd | 10,000 |
post_id | 138,447,231 |
net_rshares | 0 |
Interesting information that can help to reduce inconveniences with the files, I will keep that in mind.
author | mariiale1979 |
---|---|
permlink | re-misticogama-smx5od |
category | hive-116823 |
json_metadata | {"tags":["hive-116823"],"app":"peakd/2024.11.1","image":[],"users":[]} |
created | 2024-11-14 02:31:24 |
last_update | 2024-11-14 02:31:24 |
depth | 1 |
children | 1 |
last_payout | 2024-11-21 02:31:24 |
cashout_time | 1969-12-31 23:59:59 |
total_payout_value | 0.000 HBD |
curator_payout_value | 0.000 HBD |
pending_payout_value | 0.000 HBD |
promoted | 0.000 HBD |
body_length | 104 |
author_reputation | 94,519,449,782,743 |
root_title | "Clean XML files" |
beneficiaries | [] |
max_accepted_payout | 1,000,000.000 HBD |
percent_hbd | 10,000 |
post_id | 138,446,842 |
net_rshares | 0 |
That's right, thank you very much
author | misticogama |
---|---|
permlink | re-mariiale1979-20241114t10254524z |
category | hive-116823 |
json_metadata | {"tags":["hive-116823"],"app":"ecency/4.0.1-vision","format":"markdown+html"} |
created | 2024-11-14 16:02:57 |
last_update | 2024-11-14 16:02:57 |
depth | 2 |
children | 0 |
last_payout | 2024-11-21 16:02: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 | 33 |
author_reputation | 79,669,929,914,684 |
root_title | "Clean XML files" |
beneficiaries | [] |
max_accepted_payout | 1,000,000.000 HBD |
percent_hbd | 10,000 |
post_id | 138,456,247 |
net_rshares | 0 |